File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @clerk/types ' : patch
3
+ ---
4
+
5
+ Add support for Enstall OAuth provider
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ export type BoxOauthProvider = 'box';
35
35
export type SlackOauthProvider = 'slack' ;
36
36
export type LinearOauthProvider = 'linear' ;
37
37
export type XOauthProvider = 'x' ;
38
+ export type EnstallOauthProvider = 'enstall' ;
38
39
39
40
export type OAuthProvider =
40
41
| FacebookOauthProvider
@@ -62,7 +63,8 @@ export type OAuthProvider =
62
63
| BoxOauthProvider
63
64
| SlackOauthProvider
64
65
| LinearOauthProvider
65
- | XOauthProvider ;
66
+ | XOauthProvider
67
+ | EnstallOauthProvider ;
66
68
67
69
export const OAUTH_PROVIDERS : OAuthProviderData [ ] = [
68
70
{
@@ -221,6 +223,12 @@ export const OAUTH_PROVIDERS: OAuthProviderData[] = [
221
223
name : 'X / Twitter' ,
222
224
docsUrl : 'https://clerk.com/docs/authentication/social-connections/x-twitter-v2' ,
223
225
} ,
226
+ {
227
+ provider : 'enstall' ,
228
+ strategy : 'oauth_enstall' ,
229
+ name : 'Enstall' ,
230
+ docsUrl : 'https://clerk.com/docs/authentication/social-connections/enstall' ,
231
+ } ,
224
232
] ;
225
233
226
234
interface getOAuthProviderDataProps {
You can’t perform that action at this time.
0 commit comments