@@ -7002,6 +7002,7 @@ export interface GoogleApplicationConfiguration extends BaseIdentityProviderAppl
7002
7002
client_id ?: string ;
7003
7003
client_secret ?: string ;
7004
7004
loginMethod ?: IdentityProviderLoginMethod ;
7005
+ properties ?: GoogleIdentityProviderProperties ;
7005
7006
scope ?: string ;
7006
7007
}
7007
7008
@@ -7015,9 +7016,20 @@ export interface GoogleIdentityProvider extends BaseIdentityProvider<GoogleAppli
7015
7016
client_id ?: string ;
7016
7017
client_secret ?: string ;
7017
7018
loginMethod ?: IdentityProviderLoginMethod ;
7019
+ properties ?: GoogleIdentityProviderProperties ;
7018
7020
scope ?: string ;
7019
7021
}
7020
7022
7023
+ /**
7024
+ * Google social login provider parameters.
7025
+ *
7026
+ * @author Daniel DeGroff
7027
+ */
7028
+ export interface GoogleIdentityProviderProperties {
7029
+ api ?: string ;
7030
+ button ?: string ;
7031
+ }
7032
+
7021
7033
/**
7022
7034
* Authorization Grant types as defined by the <a href="https://tools.ietf.org/html/rfc6749">The OAuth 2.0 Authorization
7023
7035
* Framework - RFC 6749</a>.
@@ -7371,7 +7383,8 @@ export interface IdentityProviderLinkResponse {
7371
7383
*/
7372
7384
export enum IdentityProviderLoginMethod {
7373
7385
UsePopup = "UsePopup" ,
7374
- UseRedirect = "UseRedirect"
7386
+ UseRedirect = "UseRedirect" ,
7387
+ UseVendorJavaScript = "UseVendorJavaScript"
7375
7388
}
7376
7389
7377
7390
/**
@@ -9404,10 +9417,21 @@ export interface SortField {
9404
9417
order ?: Sort ;
9405
9418
}
9406
9419
9420
+ /**
9421
+ * Steam API modes.
9422
+ *
9423
+ * @author Daniel DeGroff
9424
+ */
9425
+ export enum SteamAPIMode {
9426
+ Public = "Public" ,
9427
+ Partner = "Partner"
9428
+ }
9429
+
9407
9430
/**
9408
9431
* @author Brett Pontarelli
9409
9432
*/
9410
9433
export interface SteamApplicationConfiguration extends BaseIdentityProviderApplicationConfiguration {
9434
+ apiMode ?: SteamAPIMode ;
9411
9435
buttonText ?: string ;
9412
9436
client_id ?: string ;
9413
9437
scope ?: string ;
@@ -9420,6 +9444,7 @@ export interface SteamApplicationConfiguration extends BaseIdentityProviderAppli
9420
9444
* @author Brett Pontarelli
9421
9445
*/
9422
9446
export interface SteamIdentityProvider extends BaseIdentityProvider < SteamApplicationConfiguration > {
9447
+ apiMode ?: SteamAPIMode ;
9423
9448
buttonText ?: string ;
9424
9449
client_id ?: string ;
9425
9450
scope ?: string ;
0 commit comments