File size: 314 Bytes
c09f67c
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * Standardized OAuth error codes for app integrations
 * Used across all OAuth providers (Fortnox, Xero, QuickBooks, Gmail, Outlook, etc.)
 */
export type OAuthErrorCode =
  | "access_denied"
  | "missing_license"
  | "missing_permissions"
  | "invalid_state"
  | "token_exchange_failed"
  | "unknown_error";