Skip to content

Commit 3a5ce41

Browse files
authored
feat: add missing auth methods (#1509)
1 parent 4302c62 commit 3a5ce41

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/user-management/interfaces/authentication-response.interface.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,22 @@ type AuthenticationMethod =
88
| 'Passkey'
99
| 'AppleOAuth'
1010
| 'BitbucketOAuth'
11+
| 'DiscordOAuth'
1112
| 'GitHubOAuth'
1213
| 'GitLabOAuth'
1314
| 'GoogleOAuth'
15+
| 'IntuitOAuth'
1416
| 'LinkedInOAuth'
1517
| 'MicrosoftOAuth'
1618
| 'SalesforceOAuth'
19+
| 'SlackOAuth'
20+
| 'VercelMarketplaceOAuth'
1721
| 'VercelOAuth'
22+
| 'XeroOAuth'
1823
| 'MagicAuth'
1924
| 'CrossAppAuth'
25+
| 'ExternalAuth'
26+
| 'MigratedSession'
2027
| 'Impersonation';
2128

2229
export interface AuthenticationResponse {

src/user-management/interfaces/session.interface.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Impersonator } from './impersonator.interface';
22

33
export type AuthMethod =
4+
| 'cross_app_auth'
45
| 'external_auth'
56
| 'impersonation'
67
| 'magic_code'

0 commit comments

Comments
 (0)