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 {
49634963 Twitter = "Twitter" ,
49644964 SAMLv2 = "SAMLv2" ,
49654965 HYPR = "HYPR" ,
4966- Apple = "Apple"
4966+ Apple = "Apple" ,
4967+ LinkedIn = "LinkedIn"
49674968}
49684969
49694970/**
@@ -5302,7 +5303,8 @@ export enum LambdaType {
53025303 GoogleReconcile = "GoogleReconcile" ,
53035304 HYPRReconcile = "HYPRReconcile" ,
53045305 TwitterReconcile = "TwitterReconcile" ,
5305- LDAPConnectorReconcile = "LDAPConnectorReconcile"
5306+ LDAPConnectorReconcile = "LDAPConnectorReconcile" ,
5307+ LinkedInReconcile = "LinkedInReconcile"
53065308}
53075309
53085310/**
@@ -5330,6 +5332,26 @@ export enum LDAPSecurityMethod {
53305332 StartTLS = "StartTLS"
53315333}
53325334
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+
53335355/**
53345356 * Models a set of localized Integers that can be stored as JSON.
53355357 *
You can’t perform that action at this time.
0 commit comments