We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4302c62 commit 3a5ce41Copy full SHA for 3a5ce41
2 files changed
src/user-management/interfaces/authentication-response.interface.ts
@@ -8,15 +8,22 @@ type AuthenticationMethod =
8
| 'Passkey'
9
| 'AppleOAuth'
10
| 'BitbucketOAuth'
11
+ | 'DiscordOAuth'
12
| 'GitHubOAuth'
13
| 'GitLabOAuth'
14
| 'GoogleOAuth'
15
+ | 'IntuitOAuth'
16
| 'LinkedInOAuth'
17
| 'MicrosoftOAuth'
18
| 'SalesforceOAuth'
19
+ | 'SlackOAuth'
20
+ | 'VercelMarketplaceOAuth'
21
| 'VercelOAuth'
22
+ | 'XeroOAuth'
23
| 'MagicAuth'
24
| 'CrossAppAuth'
25
+ | 'ExternalAuth'
26
+ | 'MigratedSession'
27
| 'Impersonation';
28
29
export interface AuthenticationResponse {
src/user-management/interfaces/session.interface.ts
@@ -1,6 +1,7 @@
1
import { Impersonator } from './impersonator.interface';
2
3
export type AuthMethod =
4
+ | 'cross_app_auth'
5
| 'external_auth'
6
| 'impersonation'
7
| 'magic_code'
0 commit comments