File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -4963,7 +4963,8 @@ export enum IdentityProviderType {
4963
4963
Twitter = "Twitter" ,
4964
4964
SAMLv2 = "SAMLv2" ,
4965
4965
HYPR = "HYPR" ,
4966
- Apple = "Apple"
4966
+ Apple = "Apple" ,
4967
+ LinkedIn = "LinkedIn"
4967
4968
}
4968
4969
4969
4970
/**
@@ -5302,7 +5303,8 @@ export enum LambdaType {
5302
5303
GoogleReconcile = "GoogleReconcile" ,
5303
5304
HYPRReconcile = "HYPRReconcile" ,
5304
5305
TwitterReconcile = "TwitterReconcile" ,
5305
- LDAPConnectorReconcile = "LDAPConnectorReconcile"
5306
+ LDAPConnectorReconcile = "LDAPConnectorReconcile" ,
5307
+ LinkedInReconcile = "LinkedInReconcile"
5306
5308
}
5307
5309
5308
5310
/**
@@ -5330,6 +5332,26 @@ export enum LDAPSecurityMethod {
5330
5332
StartTLS = "StartTLS"
5331
5333
}
5332
5334
5335
+ /**
5336
+ * @author Daniel DeGroff
5337
+ */
5338
+ export interface LinkedInApplicationConfiguration extends BaseIdentityProviderApplicationConfiguration {
5339
+ buttonText ?: string ;
5340
+ client_id ?: string ;
5341
+ client_secret ?: string ;
5342
+ scope ?: string ;
5343
+ }
5344
+
5345
+ /**
5346
+ * @author Daniel DeGroff
5347
+ */
5348
+ export interface LinkedInIdentityProvider extends BaseIdentityProvider < LinkedInApplicationConfiguration > {
5349
+ buttonText ?: string ;
5350
+ client_id ?: string ;
5351
+ client_secret ?: string ;
5352
+ scope ?: string ;
5353
+ }
5354
+
5333
5355
/**
5334
5356
* Models a set of localized Integers that can be stored as JSON.
5335
5357
*
You can’t perform that action at this time.
0 commit comments