@logto/api 1.35.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -0
- package/lib/generated-types/management.d.ts +1216 -91
- package/lib/management.d.ts +39 -0
- package/lib/management.js +42 -10
- package/package.json +4 -3
|
@@ -539,6 +539,30 @@ export interface paths {
|
|
|
539
539
|
patch?: never;
|
|
540
540
|
trace?: never;
|
|
541
541
|
};
|
|
542
|
+
"/api/configs/id-token": {
|
|
543
|
+
parameters: {
|
|
544
|
+
query?: never;
|
|
545
|
+
header?: never;
|
|
546
|
+
path?: never;
|
|
547
|
+
cookie?: never;
|
|
548
|
+
};
|
|
549
|
+
/**
|
|
550
|
+
* Get ID token claims configuration
|
|
551
|
+
* @description Get the ID token extended claims configuration for the tenant. This configuration controls which extended claims (e.g., `custom_data`, `identities`, `roles`, `organizations`, `organization_roles`) are included in ID tokens.
|
|
552
|
+
*/
|
|
553
|
+
get: operations["GetIdTokenConfig"];
|
|
554
|
+
/**
|
|
555
|
+
* Upsert ID token claims configuration
|
|
556
|
+
* @description Create or update the ID token extended claims configuration for the tenant. This controls which extended claims are included in ID tokens when the corresponding scopes are requested.
|
|
557
|
+
*/
|
|
558
|
+
put: operations["UpsertIdTokenConfig"];
|
|
559
|
+
post?: never;
|
|
560
|
+
delete?: never;
|
|
561
|
+
options?: never;
|
|
562
|
+
head?: never;
|
|
563
|
+
patch?: never;
|
|
564
|
+
trace?: never;
|
|
565
|
+
};
|
|
542
566
|
"/api/connectors": {
|
|
543
567
|
parameters: {
|
|
544
568
|
query?: never;
|
|
@@ -3260,6 +3284,26 @@ export interface paths {
|
|
|
3260
3284
|
patch?: never;
|
|
3261
3285
|
trace?: never;
|
|
3262
3286
|
};
|
|
3287
|
+
"/api/.well-known/account-center": {
|
|
3288
|
+
parameters: {
|
|
3289
|
+
query?: never;
|
|
3290
|
+
header?: never;
|
|
3291
|
+
path?: never;
|
|
3292
|
+
cookie?: never;
|
|
3293
|
+
};
|
|
3294
|
+
/**
|
|
3295
|
+
* Get default account center
|
|
3296
|
+
* @description Get the default account center configuration.
|
|
3297
|
+
*/
|
|
3298
|
+
get: operations["GetWellKnownAccountCenter"];
|
|
3299
|
+
put?: never;
|
|
3300
|
+
post?: never;
|
|
3301
|
+
delete?: never;
|
|
3302
|
+
options?: never;
|
|
3303
|
+
head?: never;
|
|
3304
|
+
patch?: never;
|
|
3305
|
+
trace?: never;
|
|
3306
|
+
};
|
|
3263
3307
|
"/api/status": {
|
|
3264
3308
|
parameters: {
|
|
3265
3309
|
query?: never;
|
|
@@ -3637,8 +3681,10 @@ export interface components {
|
|
|
3637
3681
|
"oneTimeTokenId-root": string;
|
|
3638
3682
|
/** @description The unique identifier of the one time token. */
|
|
3639
3683
|
oneTimeTokenId: string;
|
|
3640
|
-
/** @description The
|
|
3641
|
-
"
|
|
3684
|
+
/** @description The unique identifier of the session. */
|
|
3685
|
+
"sessionId-root": string;
|
|
3686
|
+
/** @description The unique identifier of the session. */
|
|
3687
|
+
sessionId: string;
|
|
3642
3688
|
/** @description The ID of the SAML application. */
|
|
3643
3689
|
"samlId-root": string;
|
|
3644
3690
|
};
|
|
@@ -3686,8 +3732,8 @@ export interface operations {
|
|
|
3686
3732
|
/** @enum {string} */
|
|
3687
3733
|
type: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
3688
3734
|
oidcClientMetadata: {
|
|
3689
|
-
redirectUris:
|
|
3690
|
-
postLogoutRedirectUris: string[];
|
|
3735
|
+
redirectUris: Record<string, never>[];
|
|
3736
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
3691
3737
|
/** Format: url */
|
|
3692
3738
|
backchannelLogoutUri?: string;
|
|
3693
3739
|
backchannelLogoutSessionRequired?: boolean;
|
|
@@ -3701,6 +3747,7 @@ export interface operations {
|
|
|
3701
3747
|
tenantId?: string;
|
|
3702
3748
|
alwaysIssueRefreshToken?: boolean;
|
|
3703
3749
|
rotateRefreshToken?: boolean;
|
|
3750
|
+
allowTokenExchange?: boolean;
|
|
3704
3751
|
};
|
|
3705
3752
|
protectedAppMetadata: {
|
|
3706
3753
|
host: string;
|
|
@@ -3777,8 +3824,8 @@ export interface operations {
|
|
|
3777
3824
|
/** @enum {string} */
|
|
3778
3825
|
type: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
3779
3826
|
oidcClientMetadata?: {
|
|
3780
|
-
redirectUris:
|
|
3781
|
-
postLogoutRedirectUris: string[];
|
|
3827
|
+
redirectUris: Record<string, never>[];
|
|
3828
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
3782
3829
|
/** Format: url */
|
|
3783
3830
|
backchannelLogoutUri?: string;
|
|
3784
3831
|
backchannelLogoutSessionRequired?: boolean;
|
|
@@ -3792,6 +3839,7 @@ export interface operations {
|
|
|
3792
3839
|
tenantId?: string;
|
|
3793
3840
|
alwaysIssueRefreshToken?: boolean;
|
|
3794
3841
|
rotateRefreshToken?: boolean;
|
|
3842
|
+
allowTokenExchange?: boolean;
|
|
3795
3843
|
};
|
|
3796
3844
|
/** @description arbitrary */
|
|
3797
3845
|
customData?: Record<string, never>;
|
|
@@ -3822,8 +3870,8 @@ export interface operations {
|
|
|
3822
3870
|
/** @enum {string} */
|
|
3823
3871
|
type: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
3824
3872
|
oidcClientMetadata: {
|
|
3825
|
-
redirectUris:
|
|
3826
|
-
postLogoutRedirectUris: string[];
|
|
3873
|
+
redirectUris: Record<string, never>[];
|
|
3874
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
3827
3875
|
/** Format: url */
|
|
3828
3876
|
backchannelLogoutUri?: string;
|
|
3829
3877
|
backchannelLogoutSessionRequired?: boolean;
|
|
@@ -3837,6 +3885,7 @@ export interface operations {
|
|
|
3837
3885
|
tenantId?: string;
|
|
3838
3886
|
alwaysIssueRefreshToken?: boolean;
|
|
3839
3887
|
rotateRefreshToken?: boolean;
|
|
3888
|
+
allowTokenExchange?: boolean;
|
|
3840
3889
|
};
|
|
3841
3890
|
protectedAppMetadata: {
|
|
3842
3891
|
host: string;
|
|
@@ -3939,8 +3988,8 @@ export interface operations {
|
|
|
3939
3988
|
/** @enum {string} */
|
|
3940
3989
|
type: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
3941
3990
|
oidcClientMetadata: {
|
|
3942
|
-
redirectUris:
|
|
3943
|
-
postLogoutRedirectUris: string[];
|
|
3991
|
+
redirectUris: Record<string, never>[];
|
|
3992
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
3944
3993
|
/** Format: url */
|
|
3945
3994
|
backchannelLogoutUri?: string;
|
|
3946
3995
|
backchannelLogoutSessionRequired?: boolean;
|
|
@@ -3954,6 +4003,7 @@ export interface operations {
|
|
|
3954
4003
|
tenantId?: string;
|
|
3955
4004
|
alwaysIssueRefreshToken?: boolean;
|
|
3956
4005
|
rotateRefreshToken?: boolean;
|
|
4006
|
+
allowTokenExchange?: boolean;
|
|
3957
4007
|
};
|
|
3958
4008
|
protectedAppMetadata: {
|
|
3959
4009
|
host: string;
|
|
@@ -4095,8 +4145,8 @@ export interface operations {
|
|
|
4095
4145
|
name?: string;
|
|
4096
4146
|
description?: string | null;
|
|
4097
4147
|
oidcClientMetadata?: {
|
|
4098
|
-
redirectUris:
|
|
4099
|
-
postLogoutRedirectUris: string[];
|
|
4148
|
+
redirectUris: Record<string, never>[];
|
|
4149
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
4100
4150
|
/** Format: url */
|
|
4101
4151
|
backchannelLogoutUri?: string;
|
|
4102
4152
|
backchannelLogoutSessionRequired?: boolean;
|
|
@@ -4110,6 +4160,7 @@ export interface operations {
|
|
|
4110
4160
|
tenantId?: string;
|
|
4111
4161
|
alwaysIssueRefreshToken?: boolean;
|
|
4112
4162
|
rotateRefreshToken?: boolean;
|
|
4163
|
+
allowTokenExchange?: boolean;
|
|
4113
4164
|
};
|
|
4114
4165
|
/** @description arbitrary */
|
|
4115
4166
|
customData?: Record<string, never>;
|
|
@@ -4141,8 +4192,8 @@ export interface operations {
|
|
|
4141
4192
|
/** @enum {string} */
|
|
4142
4193
|
type: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
4143
4194
|
oidcClientMetadata: {
|
|
4144
|
-
redirectUris:
|
|
4145
|
-
postLogoutRedirectUris: string[];
|
|
4195
|
+
redirectUris: Record<string, never>[];
|
|
4196
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
4146
4197
|
/** Format: url */
|
|
4147
4198
|
backchannelLogoutUri?: string;
|
|
4148
4199
|
backchannelLogoutSessionRequired?: boolean;
|
|
@@ -4156,6 +4207,7 @@ export interface operations {
|
|
|
4156
4207
|
tenantId?: string;
|
|
4157
4208
|
alwaysIssueRefreshToken?: boolean;
|
|
4158
4209
|
rotateRefreshToken?: boolean;
|
|
4210
|
+
allowTokenExchange?: boolean;
|
|
4159
4211
|
};
|
|
4160
4212
|
protectedAppMetadata: {
|
|
4161
4213
|
host: string;
|
|
@@ -4878,8 +4930,8 @@ export interface operations {
|
|
|
4878
4930
|
/** @enum {string} */
|
|
4879
4931
|
type: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
4880
4932
|
oidcClientMetadata: {
|
|
4881
|
-
redirectUris:
|
|
4882
|
-
postLogoutRedirectUris: string[];
|
|
4933
|
+
redirectUris: Record<string, never>[];
|
|
4934
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
4883
4935
|
/** Format: url */
|
|
4884
4936
|
backchannelLogoutUri?: string;
|
|
4885
4937
|
backchannelLogoutSessionRequired?: boolean;
|
|
@@ -4893,6 +4945,7 @@ export interface operations {
|
|
|
4893
4945
|
tenantId?: string;
|
|
4894
4946
|
alwaysIssueRefreshToken?: boolean;
|
|
4895
4947
|
rotateRefreshToken?: boolean;
|
|
4948
|
+
allowTokenExchange?: boolean;
|
|
4896
4949
|
};
|
|
4897
4950
|
protectedAppMetadata: {
|
|
4898
4951
|
host: string;
|
|
@@ -5270,7 +5323,7 @@ export interface operations {
|
|
|
5270
5323
|
}[];
|
|
5271
5324
|
}[];
|
|
5272
5325
|
/** @description A list of user scope enum value assigned to the application. */
|
|
5273
|
-
userScopes: ("profile" | "email" | "phone" | "address" | "custom_data" | "identities" | "roles" | "urn:logto:scope:organizations" | "urn:logto:scope:organization_roles")[];
|
|
5326
|
+
userScopes: ("profile" | "email" | "phone" | "address" | "custom_data" | "identities" | "roles" | "urn:logto:scope:organizations" | "urn:logto:scope:organization_roles" | "urn:logto:scope:sessions")[];
|
|
5274
5327
|
};
|
|
5275
5328
|
};
|
|
5276
5329
|
};
|
|
@@ -5324,7 +5377,7 @@ export interface operations {
|
|
|
5324
5377
|
/** @description A list of organization resource scope id to assign to the application. Throws error if any given resource scope is not found. */
|
|
5325
5378
|
organizationResourceScopes?: string[];
|
|
5326
5379
|
/** @description A list of user scope enum value to assign to the application. */
|
|
5327
|
-
userScopes?: ("profile" | "email" | "phone" | "address" | "custom_data" | "identities" | "roles" | "urn:logto:scope:organizations" | "urn:logto:scope:organization_roles")[];
|
|
5380
|
+
userScopes?: ("profile" | "email" | "phone" | "address" | "custom_data" | "identities" | "roles" | "urn:logto:scope:organizations" | "urn:logto:scope:organization_roles" | "urn:logto:scope:sessions")[];
|
|
5328
5381
|
};
|
|
5329
5382
|
};
|
|
5330
5383
|
};
|
|
@@ -6398,7 +6451,7 @@ export interface operations {
|
|
|
6398
6451
|
phone?: string;
|
|
6399
6452
|
name?: string;
|
|
6400
6453
|
avatar?: string;
|
|
6401
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
6454
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
6402
6455
|
};
|
|
6403
6456
|
} | {
|
|
6404
6457
|
id: string;
|
|
@@ -6411,7 +6464,7 @@ export interface operations {
|
|
|
6411
6464
|
phone?: string;
|
|
6412
6465
|
name?: string;
|
|
6413
6466
|
avatar?: string;
|
|
6414
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
6467
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
6415
6468
|
};
|
|
6416
6469
|
issuer?: string;
|
|
6417
6470
|
} | {
|
|
@@ -6428,11 +6481,18 @@ export interface operations {
|
|
|
6428
6481
|
code?: string;
|
|
6429
6482
|
} | {
|
|
6430
6483
|
id: string;
|
|
6484
|
+
verified: boolean;
|
|
6485
|
+
registrationRpId?: string;
|
|
6431
6486
|
/** Format: "WebAuthn" */
|
|
6432
6487
|
type: string;
|
|
6433
6488
|
userId: string;
|
|
6489
|
+
} | {
|
|
6490
|
+
id: string;
|
|
6434
6491
|
verified: boolean;
|
|
6435
6492
|
registrationRpId?: string;
|
|
6493
|
+
/** Format: "SignInWebAuthn" */
|
|
6494
|
+
type: string;
|
|
6495
|
+
userId?: string;
|
|
6436
6496
|
} | {
|
|
6437
6497
|
id: string;
|
|
6438
6498
|
/** Format: "OneTimeToken" */
|
|
@@ -6456,6 +6516,69 @@ export interface operations {
|
|
|
6456
6516
|
value: string;
|
|
6457
6517
|
};
|
|
6458
6518
|
})[];
|
|
6519
|
+
signInContext?: {
|
|
6520
|
+
[key: string]: string;
|
|
6521
|
+
};
|
|
6522
|
+
};
|
|
6523
|
+
application?: {
|
|
6524
|
+
tenantId?: string;
|
|
6525
|
+
id?: string;
|
|
6526
|
+
name?: string;
|
|
6527
|
+
description?: string | null;
|
|
6528
|
+
/** @enum {string} */
|
|
6529
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
6530
|
+
oidcClientMetadata?: {
|
|
6531
|
+
redirectUris: Record<string, never>[];
|
|
6532
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
6533
|
+
/** Format: url */
|
|
6534
|
+
backchannelLogoutUri?: string;
|
|
6535
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
6536
|
+
logoUri?: string;
|
|
6537
|
+
};
|
|
6538
|
+
customClientMetadata?: {
|
|
6539
|
+
corsAllowedOrigins?: string[];
|
|
6540
|
+
idTokenTtl?: number;
|
|
6541
|
+
refreshTokenTtl?: number;
|
|
6542
|
+
refreshTokenTtlInDays?: number;
|
|
6543
|
+
tenantId?: string;
|
|
6544
|
+
alwaysIssueRefreshToken?: boolean;
|
|
6545
|
+
rotateRefreshToken?: boolean;
|
|
6546
|
+
allowTokenExchange?: boolean;
|
|
6547
|
+
};
|
|
6548
|
+
protectedAppMetadata?: {
|
|
6549
|
+
host: string;
|
|
6550
|
+
origin: string;
|
|
6551
|
+
sessionDuration: number;
|
|
6552
|
+
pageRules: {
|
|
6553
|
+
path: string;
|
|
6554
|
+
}[];
|
|
6555
|
+
customDomains?: {
|
|
6556
|
+
domain: string;
|
|
6557
|
+
/** @enum {string} */
|
|
6558
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
6559
|
+
errorMessage: string | null;
|
|
6560
|
+
dnsRecords: {
|
|
6561
|
+
name: string;
|
|
6562
|
+
type: string;
|
|
6563
|
+
value: string;
|
|
6564
|
+
}[];
|
|
6565
|
+
cloudflareData: {
|
|
6566
|
+
id: string;
|
|
6567
|
+
status: string;
|
|
6568
|
+
ssl: {
|
|
6569
|
+
status: string;
|
|
6570
|
+
validation_errors?: {
|
|
6571
|
+
message: string;
|
|
6572
|
+
}[];
|
|
6573
|
+
};
|
|
6574
|
+
verification_errors?: string[];
|
|
6575
|
+
} | null;
|
|
6576
|
+
}[];
|
|
6577
|
+
} | null;
|
|
6578
|
+
/** @description arbitrary */
|
|
6579
|
+
customData?: Record<string, never>;
|
|
6580
|
+
isThirdParty?: boolean;
|
|
6581
|
+
createdAt?: number;
|
|
6459
6582
|
};
|
|
6460
6583
|
};
|
|
6461
6584
|
tokenSample?: {
|
|
@@ -6477,8 +6600,68 @@ export interface operations {
|
|
|
6477
6600
|
environmentVariables?: {
|
|
6478
6601
|
[key: string]: string;
|
|
6479
6602
|
};
|
|
6480
|
-
|
|
6481
|
-
|
|
6603
|
+
contextSample?: {
|
|
6604
|
+
application?: {
|
|
6605
|
+
tenantId?: string;
|
|
6606
|
+
id?: string;
|
|
6607
|
+
name?: string;
|
|
6608
|
+
description?: string | null;
|
|
6609
|
+
/** @enum {string} */
|
|
6610
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
6611
|
+
oidcClientMetadata?: {
|
|
6612
|
+
redirectUris: Record<string, never>[];
|
|
6613
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
6614
|
+
/** Format: url */
|
|
6615
|
+
backchannelLogoutUri?: string;
|
|
6616
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
6617
|
+
logoUri?: string;
|
|
6618
|
+
};
|
|
6619
|
+
customClientMetadata?: {
|
|
6620
|
+
corsAllowedOrigins?: string[];
|
|
6621
|
+
idTokenTtl?: number;
|
|
6622
|
+
refreshTokenTtl?: number;
|
|
6623
|
+
refreshTokenTtlInDays?: number;
|
|
6624
|
+
tenantId?: string;
|
|
6625
|
+
alwaysIssueRefreshToken?: boolean;
|
|
6626
|
+
rotateRefreshToken?: boolean;
|
|
6627
|
+
allowTokenExchange?: boolean;
|
|
6628
|
+
};
|
|
6629
|
+
protectedAppMetadata?: {
|
|
6630
|
+
host: string;
|
|
6631
|
+
origin: string;
|
|
6632
|
+
sessionDuration: number;
|
|
6633
|
+
pageRules: {
|
|
6634
|
+
path: string;
|
|
6635
|
+
}[];
|
|
6636
|
+
customDomains?: {
|
|
6637
|
+
domain: string;
|
|
6638
|
+
/** @enum {string} */
|
|
6639
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
6640
|
+
errorMessage: string | null;
|
|
6641
|
+
dnsRecords: {
|
|
6642
|
+
name: string;
|
|
6643
|
+
type: string;
|
|
6644
|
+
value: string;
|
|
6645
|
+
}[];
|
|
6646
|
+
cloudflareData: {
|
|
6647
|
+
id: string;
|
|
6648
|
+
status: string;
|
|
6649
|
+
ssl: {
|
|
6650
|
+
status: string;
|
|
6651
|
+
validation_errors?: {
|
|
6652
|
+
message: string;
|
|
6653
|
+
}[];
|
|
6654
|
+
};
|
|
6655
|
+
verification_errors?: string[];
|
|
6656
|
+
} | null;
|
|
6657
|
+
}[];
|
|
6658
|
+
} | null;
|
|
6659
|
+
/** @description arbitrary */
|
|
6660
|
+
customData?: Record<string, never>;
|
|
6661
|
+
isThirdParty?: boolean;
|
|
6662
|
+
createdAt?: number;
|
|
6663
|
+
};
|
|
6664
|
+
};
|
|
6482
6665
|
tokenSample?: {
|
|
6483
6666
|
jti?: string;
|
|
6484
6667
|
aud?: string | string[];
|
|
@@ -6691,7 +6874,7 @@ export interface operations {
|
|
|
6691
6874
|
phone?: string;
|
|
6692
6875
|
name?: string;
|
|
6693
6876
|
avatar?: string;
|
|
6694
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
6877
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
6695
6878
|
};
|
|
6696
6879
|
} | {
|
|
6697
6880
|
id: string;
|
|
@@ -6704,7 +6887,7 @@ export interface operations {
|
|
|
6704
6887
|
phone?: string;
|
|
6705
6888
|
name?: string;
|
|
6706
6889
|
avatar?: string;
|
|
6707
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
6890
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
6708
6891
|
};
|
|
6709
6892
|
issuer?: string;
|
|
6710
6893
|
} | {
|
|
@@ -6721,11 +6904,18 @@ export interface operations {
|
|
|
6721
6904
|
code?: string;
|
|
6722
6905
|
} | {
|
|
6723
6906
|
id: string;
|
|
6907
|
+
verified: boolean;
|
|
6908
|
+
registrationRpId?: string;
|
|
6724
6909
|
/** Format: "WebAuthn" */
|
|
6725
6910
|
type: string;
|
|
6726
6911
|
userId: string;
|
|
6912
|
+
} | {
|
|
6913
|
+
id: string;
|
|
6727
6914
|
verified: boolean;
|
|
6728
6915
|
registrationRpId?: string;
|
|
6916
|
+
/** Format: "SignInWebAuthn" */
|
|
6917
|
+
type: string;
|
|
6918
|
+
userId?: string;
|
|
6729
6919
|
} | {
|
|
6730
6920
|
id: string;
|
|
6731
6921
|
/** Format: "OneTimeToken" */
|
|
@@ -6749,6 +6939,69 @@ export interface operations {
|
|
|
6749
6939
|
value: string;
|
|
6750
6940
|
};
|
|
6751
6941
|
})[];
|
|
6942
|
+
signInContext?: {
|
|
6943
|
+
[key: string]: string;
|
|
6944
|
+
};
|
|
6945
|
+
};
|
|
6946
|
+
application?: {
|
|
6947
|
+
tenantId?: string;
|
|
6948
|
+
id?: string;
|
|
6949
|
+
name?: string;
|
|
6950
|
+
description?: string | null;
|
|
6951
|
+
/** @enum {string} */
|
|
6952
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
6953
|
+
oidcClientMetadata?: {
|
|
6954
|
+
redirectUris: Record<string, never>[];
|
|
6955
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
6956
|
+
/** Format: url */
|
|
6957
|
+
backchannelLogoutUri?: string;
|
|
6958
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
6959
|
+
logoUri?: string;
|
|
6960
|
+
};
|
|
6961
|
+
customClientMetadata?: {
|
|
6962
|
+
corsAllowedOrigins?: string[];
|
|
6963
|
+
idTokenTtl?: number;
|
|
6964
|
+
refreshTokenTtl?: number;
|
|
6965
|
+
refreshTokenTtlInDays?: number;
|
|
6966
|
+
tenantId?: string;
|
|
6967
|
+
alwaysIssueRefreshToken?: boolean;
|
|
6968
|
+
rotateRefreshToken?: boolean;
|
|
6969
|
+
allowTokenExchange?: boolean;
|
|
6970
|
+
};
|
|
6971
|
+
protectedAppMetadata?: {
|
|
6972
|
+
host: string;
|
|
6973
|
+
origin: string;
|
|
6974
|
+
sessionDuration: number;
|
|
6975
|
+
pageRules: {
|
|
6976
|
+
path: string;
|
|
6977
|
+
}[];
|
|
6978
|
+
customDomains?: {
|
|
6979
|
+
domain: string;
|
|
6980
|
+
/** @enum {string} */
|
|
6981
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
6982
|
+
errorMessage: string | null;
|
|
6983
|
+
dnsRecords: {
|
|
6984
|
+
name: string;
|
|
6985
|
+
type: string;
|
|
6986
|
+
value: string;
|
|
6987
|
+
}[];
|
|
6988
|
+
cloudflareData: {
|
|
6989
|
+
id: string;
|
|
6990
|
+
status: string;
|
|
6991
|
+
ssl: {
|
|
6992
|
+
status: string;
|
|
6993
|
+
validation_errors?: {
|
|
6994
|
+
message: string;
|
|
6995
|
+
}[];
|
|
6996
|
+
};
|
|
6997
|
+
verification_errors?: string[];
|
|
6998
|
+
} | null;
|
|
6999
|
+
}[];
|
|
7000
|
+
} | null;
|
|
7001
|
+
/** @description arbitrary */
|
|
7002
|
+
customData?: Record<string, never>;
|
|
7003
|
+
isThirdParty?: boolean;
|
|
7004
|
+
createdAt?: number;
|
|
6752
7005
|
};
|
|
6753
7006
|
};
|
|
6754
7007
|
tokenSample?: {
|
|
@@ -6770,8 +7023,68 @@ export interface operations {
|
|
|
6770
7023
|
environmentVariables?: {
|
|
6771
7024
|
[key: string]: string;
|
|
6772
7025
|
};
|
|
6773
|
-
|
|
6774
|
-
|
|
7026
|
+
contextSample?: {
|
|
7027
|
+
application?: {
|
|
7028
|
+
tenantId?: string;
|
|
7029
|
+
id?: string;
|
|
7030
|
+
name?: string;
|
|
7031
|
+
description?: string | null;
|
|
7032
|
+
/** @enum {string} */
|
|
7033
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
7034
|
+
oidcClientMetadata?: {
|
|
7035
|
+
redirectUris: Record<string, never>[];
|
|
7036
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
7037
|
+
/** Format: url */
|
|
7038
|
+
backchannelLogoutUri?: string;
|
|
7039
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
7040
|
+
logoUri?: string;
|
|
7041
|
+
};
|
|
7042
|
+
customClientMetadata?: {
|
|
7043
|
+
corsAllowedOrigins?: string[];
|
|
7044
|
+
idTokenTtl?: number;
|
|
7045
|
+
refreshTokenTtl?: number;
|
|
7046
|
+
refreshTokenTtlInDays?: number;
|
|
7047
|
+
tenantId?: string;
|
|
7048
|
+
alwaysIssueRefreshToken?: boolean;
|
|
7049
|
+
rotateRefreshToken?: boolean;
|
|
7050
|
+
allowTokenExchange?: boolean;
|
|
7051
|
+
};
|
|
7052
|
+
protectedAppMetadata?: {
|
|
7053
|
+
host: string;
|
|
7054
|
+
origin: string;
|
|
7055
|
+
sessionDuration: number;
|
|
7056
|
+
pageRules: {
|
|
7057
|
+
path: string;
|
|
7058
|
+
}[];
|
|
7059
|
+
customDomains?: {
|
|
7060
|
+
domain: string;
|
|
7061
|
+
/** @enum {string} */
|
|
7062
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
7063
|
+
errorMessage: string | null;
|
|
7064
|
+
dnsRecords: {
|
|
7065
|
+
name: string;
|
|
7066
|
+
type: string;
|
|
7067
|
+
value: string;
|
|
7068
|
+
}[];
|
|
7069
|
+
cloudflareData: {
|
|
7070
|
+
id: string;
|
|
7071
|
+
status: string;
|
|
7072
|
+
ssl: {
|
|
7073
|
+
status: string;
|
|
7074
|
+
validation_errors?: {
|
|
7075
|
+
message: string;
|
|
7076
|
+
}[];
|
|
7077
|
+
};
|
|
7078
|
+
verification_errors?: string[];
|
|
7079
|
+
} | null;
|
|
7080
|
+
}[];
|
|
7081
|
+
} | null;
|
|
7082
|
+
/** @description arbitrary */
|
|
7083
|
+
customData?: Record<string, never>;
|
|
7084
|
+
isThirdParty?: boolean;
|
|
7085
|
+
createdAt?: number;
|
|
7086
|
+
};
|
|
7087
|
+
};
|
|
6775
7088
|
tokenSample?: {
|
|
6776
7089
|
jti?: string;
|
|
6777
7090
|
aud?: string | string[];
|
|
@@ -6929,7 +7242,7 @@ export interface operations {
|
|
|
6929
7242
|
phone?: string;
|
|
6930
7243
|
name?: string;
|
|
6931
7244
|
avatar?: string;
|
|
6932
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
7245
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
6933
7246
|
};
|
|
6934
7247
|
} | {
|
|
6935
7248
|
id: string;
|
|
@@ -6942,7 +7255,7 @@ export interface operations {
|
|
|
6942
7255
|
phone?: string;
|
|
6943
7256
|
name?: string;
|
|
6944
7257
|
avatar?: string;
|
|
6945
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
7258
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
6946
7259
|
};
|
|
6947
7260
|
issuer?: string;
|
|
6948
7261
|
} | {
|
|
@@ -6959,11 +7272,18 @@ export interface operations {
|
|
|
6959
7272
|
code?: string;
|
|
6960
7273
|
} | {
|
|
6961
7274
|
id: string;
|
|
7275
|
+
verified: boolean;
|
|
7276
|
+
registrationRpId?: string;
|
|
6962
7277
|
/** Format: "WebAuthn" */
|
|
6963
7278
|
type: string;
|
|
6964
7279
|
userId: string;
|
|
7280
|
+
} | {
|
|
7281
|
+
id: string;
|
|
6965
7282
|
verified: boolean;
|
|
6966
7283
|
registrationRpId?: string;
|
|
7284
|
+
/** Format: "SignInWebAuthn" */
|
|
7285
|
+
type: string;
|
|
7286
|
+
userId?: string;
|
|
6967
7287
|
} | {
|
|
6968
7288
|
id: string;
|
|
6969
7289
|
/** Format: "OneTimeToken" */
|
|
@@ -6987,6 +7307,69 @@ export interface operations {
|
|
|
6987
7307
|
value: string;
|
|
6988
7308
|
};
|
|
6989
7309
|
})[];
|
|
7310
|
+
signInContext?: {
|
|
7311
|
+
[key: string]: string;
|
|
7312
|
+
};
|
|
7313
|
+
};
|
|
7314
|
+
application?: {
|
|
7315
|
+
tenantId?: string;
|
|
7316
|
+
id?: string;
|
|
7317
|
+
name?: string;
|
|
7318
|
+
description?: string | null;
|
|
7319
|
+
/** @enum {string} */
|
|
7320
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
7321
|
+
oidcClientMetadata?: {
|
|
7322
|
+
redirectUris: Record<string, never>[];
|
|
7323
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
7324
|
+
/** Format: url */
|
|
7325
|
+
backchannelLogoutUri?: string;
|
|
7326
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
7327
|
+
logoUri?: string;
|
|
7328
|
+
};
|
|
7329
|
+
customClientMetadata?: {
|
|
7330
|
+
corsAllowedOrigins?: string[];
|
|
7331
|
+
idTokenTtl?: number;
|
|
7332
|
+
refreshTokenTtl?: number;
|
|
7333
|
+
refreshTokenTtlInDays?: number;
|
|
7334
|
+
tenantId?: string;
|
|
7335
|
+
alwaysIssueRefreshToken?: boolean;
|
|
7336
|
+
rotateRefreshToken?: boolean;
|
|
7337
|
+
allowTokenExchange?: boolean;
|
|
7338
|
+
};
|
|
7339
|
+
protectedAppMetadata?: {
|
|
7340
|
+
host: string;
|
|
7341
|
+
origin: string;
|
|
7342
|
+
sessionDuration: number;
|
|
7343
|
+
pageRules: {
|
|
7344
|
+
path: string;
|
|
7345
|
+
}[];
|
|
7346
|
+
customDomains?: {
|
|
7347
|
+
domain: string;
|
|
7348
|
+
/** @enum {string} */
|
|
7349
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
7350
|
+
errorMessage: string | null;
|
|
7351
|
+
dnsRecords: {
|
|
7352
|
+
name: string;
|
|
7353
|
+
type: string;
|
|
7354
|
+
value: string;
|
|
7355
|
+
}[];
|
|
7356
|
+
cloudflareData: {
|
|
7357
|
+
id: string;
|
|
7358
|
+
status: string;
|
|
7359
|
+
ssl: {
|
|
7360
|
+
status: string;
|
|
7361
|
+
validation_errors?: {
|
|
7362
|
+
message: string;
|
|
7363
|
+
}[];
|
|
7364
|
+
};
|
|
7365
|
+
verification_errors?: string[];
|
|
7366
|
+
} | null;
|
|
7367
|
+
}[];
|
|
7368
|
+
} | null;
|
|
7369
|
+
/** @description arbitrary */
|
|
7370
|
+
customData?: Record<string, never>;
|
|
7371
|
+
isThirdParty?: boolean;
|
|
7372
|
+
createdAt?: number;
|
|
6990
7373
|
};
|
|
6991
7374
|
};
|
|
6992
7375
|
tokenSample?: {
|
|
@@ -7008,8 +7391,68 @@ export interface operations {
|
|
|
7008
7391
|
environmentVariables?: {
|
|
7009
7392
|
[key: string]: string;
|
|
7010
7393
|
};
|
|
7011
|
-
|
|
7012
|
-
|
|
7394
|
+
contextSample?: {
|
|
7395
|
+
application?: {
|
|
7396
|
+
tenantId?: string;
|
|
7397
|
+
id?: string;
|
|
7398
|
+
name?: string;
|
|
7399
|
+
description?: string | null;
|
|
7400
|
+
/** @enum {string} */
|
|
7401
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
7402
|
+
oidcClientMetadata?: {
|
|
7403
|
+
redirectUris: Record<string, never>[];
|
|
7404
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
7405
|
+
/** Format: url */
|
|
7406
|
+
backchannelLogoutUri?: string;
|
|
7407
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
7408
|
+
logoUri?: string;
|
|
7409
|
+
};
|
|
7410
|
+
customClientMetadata?: {
|
|
7411
|
+
corsAllowedOrigins?: string[];
|
|
7412
|
+
idTokenTtl?: number;
|
|
7413
|
+
refreshTokenTtl?: number;
|
|
7414
|
+
refreshTokenTtlInDays?: number;
|
|
7415
|
+
tenantId?: string;
|
|
7416
|
+
alwaysIssueRefreshToken?: boolean;
|
|
7417
|
+
rotateRefreshToken?: boolean;
|
|
7418
|
+
allowTokenExchange?: boolean;
|
|
7419
|
+
};
|
|
7420
|
+
protectedAppMetadata?: {
|
|
7421
|
+
host: string;
|
|
7422
|
+
origin: string;
|
|
7423
|
+
sessionDuration: number;
|
|
7424
|
+
pageRules: {
|
|
7425
|
+
path: string;
|
|
7426
|
+
}[];
|
|
7427
|
+
customDomains?: {
|
|
7428
|
+
domain: string;
|
|
7429
|
+
/** @enum {string} */
|
|
7430
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
7431
|
+
errorMessage: string | null;
|
|
7432
|
+
dnsRecords: {
|
|
7433
|
+
name: string;
|
|
7434
|
+
type: string;
|
|
7435
|
+
value: string;
|
|
7436
|
+
}[];
|
|
7437
|
+
cloudflareData: {
|
|
7438
|
+
id: string;
|
|
7439
|
+
status: string;
|
|
7440
|
+
ssl: {
|
|
7441
|
+
status: string;
|
|
7442
|
+
validation_errors?: {
|
|
7443
|
+
message: string;
|
|
7444
|
+
}[];
|
|
7445
|
+
};
|
|
7446
|
+
verification_errors?: string[];
|
|
7447
|
+
} | null;
|
|
7448
|
+
}[];
|
|
7449
|
+
} | null;
|
|
7450
|
+
/** @description arbitrary */
|
|
7451
|
+
customData?: Record<string, never>;
|
|
7452
|
+
isThirdParty?: boolean;
|
|
7453
|
+
createdAt?: number;
|
|
7454
|
+
};
|
|
7455
|
+
};
|
|
7013
7456
|
tokenSample?: {
|
|
7014
7457
|
jti?: string;
|
|
7015
7458
|
aud?: string | string[];
|
|
@@ -7264,7 +7707,7 @@ export interface operations {
|
|
|
7264
7707
|
phone?: string;
|
|
7265
7708
|
name?: string;
|
|
7266
7709
|
avatar?: string;
|
|
7267
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
7710
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
7268
7711
|
};
|
|
7269
7712
|
} | {
|
|
7270
7713
|
id: string;
|
|
@@ -7277,7 +7720,7 @@ export interface operations {
|
|
|
7277
7720
|
phone?: string;
|
|
7278
7721
|
name?: string;
|
|
7279
7722
|
avatar?: string;
|
|
7280
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
7723
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
7281
7724
|
};
|
|
7282
7725
|
issuer?: string;
|
|
7283
7726
|
} | {
|
|
@@ -7294,11 +7737,18 @@ export interface operations {
|
|
|
7294
7737
|
code?: string;
|
|
7295
7738
|
} | {
|
|
7296
7739
|
id: string;
|
|
7740
|
+
verified: boolean;
|
|
7741
|
+
registrationRpId?: string;
|
|
7297
7742
|
/** Format: "WebAuthn" */
|
|
7298
7743
|
type: string;
|
|
7299
7744
|
userId: string;
|
|
7745
|
+
} | {
|
|
7746
|
+
id: string;
|
|
7300
7747
|
verified: boolean;
|
|
7301
7748
|
registrationRpId?: string;
|
|
7749
|
+
/** Format: "SignInWebAuthn" */
|
|
7750
|
+
type: string;
|
|
7751
|
+
userId?: string;
|
|
7302
7752
|
} | {
|
|
7303
7753
|
id: string;
|
|
7304
7754
|
/** Format: "OneTimeToken" */
|
|
@@ -7322,6 +7772,69 @@ export interface operations {
|
|
|
7322
7772
|
value: string;
|
|
7323
7773
|
};
|
|
7324
7774
|
})[];
|
|
7775
|
+
signInContext?: {
|
|
7776
|
+
[key: string]: string;
|
|
7777
|
+
};
|
|
7778
|
+
};
|
|
7779
|
+
application?: {
|
|
7780
|
+
tenantId?: string;
|
|
7781
|
+
id?: string;
|
|
7782
|
+
name?: string;
|
|
7783
|
+
description?: string | null;
|
|
7784
|
+
/** @enum {string} */
|
|
7785
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
7786
|
+
oidcClientMetadata?: {
|
|
7787
|
+
redirectUris: Record<string, never>[];
|
|
7788
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
7789
|
+
/** Format: url */
|
|
7790
|
+
backchannelLogoutUri?: string;
|
|
7791
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
7792
|
+
logoUri?: string;
|
|
7793
|
+
};
|
|
7794
|
+
customClientMetadata?: {
|
|
7795
|
+
corsAllowedOrigins?: string[];
|
|
7796
|
+
idTokenTtl?: number;
|
|
7797
|
+
refreshTokenTtl?: number;
|
|
7798
|
+
refreshTokenTtlInDays?: number;
|
|
7799
|
+
tenantId?: string;
|
|
7800
|
+
alwaysIssueRefreshToken?: boolean;
|
|
7801
|
+
rotateRefreshToken?: boolean;
|
|
7802
|
+
allowTokenExchange?: boolean;
|
|
7803
|
+
};
|
|
7804
|
+
protectedAppMetadata?: {
|
|
7805
|
+
host: string;
|
|
7806
|
+
origin: string;
|
|
7807
|
+
sessionDuration: number;
|
|
7808
|
+
pageRules: {
|
|
7809
|
+
path: string;
|
|
7810
|
+
}[];
|
|
7811
|
+
customDomains?: {
|
|
7812
|
+
domain: string;
|
|
7813
|
+
/** @enum {string} */
|
|
7814
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
7815
|
+
errorMessage: string | null;
|
|
7816
|
+
dnsRecords: {
|
|
7817
|
+
name: string;
|
|
7818
|
+
type: string;
|
|
7819
|
+
value: string;
|
|
7820
|
+
}[];
|
|
7821
|
+
cloudflareData: {
|
|
7822
|
+
id: string;
|
|
7823
|
+
status: string;
|
|
7824
|
+
ssl: {
|
|
7825
|
+
status: string;
|
|
7826
|
+
validation_errors?: {
|
|
7827
|
+
message: string;
|
|
7828
|
+
}[];
|
|
7829
|
+
};
|
|
7830
|
+
verification_errors?: string[];
|
|
7831
|
+
} | null;
|
|
7832
|
+
}[];
|
|
7833
|
+
} | null;
|
|
7834
|
+
/** @description arbitrary */
|
|
7835
|
+
customData?: Record<string, never>;
|
|
7836
|
+
isThirdParty?: boolean;
|
|
7837
|
+
createdAt?: number;
|
|
7325
7838
|
};
|
|
7326
7839
|
};
|
|
7327
7840
|
tokenSample?: {
|
|
@@ -7343,8 +7856,68 @@ export interface operations {
|
|
|
7343
7856
|
environmentVariables?: {
|
|
7344
7857
|
[key: string]: string;
|
|
7345
7858
|
};
|
|
7346
|
-
|
|
7347
|
-
|
|
7859
|
+
contextSample?: {
|
|
7860
|
+
application?: {
|
|
7861
|
+
tenantId?: string;
|
|
7862
|
+
id?: string;
|
|
7863
|
+
name?: string;
|
|
7864
|
+
description?: string | null;
|
|
7865
|
+
/** @enum {string} */
|
|
7866
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
7867
|
+
oidcClientMetadata?: {
|
|
7868
|
+
redirectUris: Record<string, never>[];
|
|
7869
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
7870
|
+
/** Format: url */
|
|
7871
|
+
backchannelLogoutUri?: string;
|
|
7872
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
7873
|
+
logoUri?: string;
|
|
7874
|
+
};
|
|
7875
|
+
customClientMetadata?: {
|
|
7876
|
+
corsAllowedOrigins?: string[];
|
|
7877
|
+
idTokenTtl?: number;
|
|
7878
|
+
refreshTokenTtl?: number;
|
|
7879
|
+
refreshTokenTtlInDays?: number;
|
|
7880
|
+
tenantId?: string;
|
|
7881
|
+
alwaysIssueRefreshToken?: boolean;
|
|
7882
|
+
rotateRefreshToken?: boolean;
|
|
7883
|
+
allowTokenExchange?: boolean;
|
|
7884
|
+
};
|
|
7885
|
+
protectedAppMetadata?: {
|
|
7886
|
+
host: string;
|
|
7887
|
+
origin: string;
|
|
7888
|
+
sessionDuration: number;
|
|
7889
|
+
pageRules: {
|
|
7890
|
+
path: string;
|
|
7891
|
+
}[];
|
|
7892
|
+
customDomains?: {
|
|
7893
|
+
domain: string;
|
|
7894
|
+
/** @enum {string} */
|
|
7895
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
7896
|
+
errorMessage: string | null;
|
|
7897
|
+
dnsRecords: {
|
|
7898
|
+
name: string;
|
|
7899
|
+
type: string;
|
|
7900
|
+
value: string;
|
|
7901
|
+
}[];
|
|
7902
|
+
cloudflareData: {
|
|
7903
|
+
id: string;
|
|
7904
|
+
status: string;
|
|
7905
|
+
ssl: {
|
|
7906
|
+
status: string;
|
|
7907
|
+
validation_errors?: {
|
|
7908
|
+
message: string;
|
|
7909
|
+
}[];
|
|
7910
|
+
};
|
|
7911
|
+
verification_errors?: string[];
|
|
7912
|
+
} | null;
|
|
7913
|
+
}[];
|
|
7914
|
+
} | null;
|
|
7915
|
+
/** @description arbitrary */
|
|
7916
|
+
customData?: Record<string, never>;
|
|
7917
|
+
isThirdParty?: boolean;
|
|
7918
|
+
createdAt?: number;
|
|
7919
|
+
};
|
|
7920
|
+
};
|
|
7348
7921
|
tokenSample?: {
|
|
7349
7922
|
jti?: string;
|
|
7350
7923
|
aud?: string | string[];
|
|
@@ -7544,7 +8117,7 @@ export interface operations {
|
|
|
7544
8117
|
phone?: string;
|
|
7545
8118
|
name?: string;
|
|
7546
8119
|
avatar?: string;
|
|
7547
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
8120
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
7548
8121
|
};
|
|
7549
8122
|
} | {
|
|
7550
8123
|
id: string;
|
|
@@ -7557,7 +8130,7 @@ export interface operations {
|
|
|
7557
8130
|
phone?: string;
|
|
7558
8131
|
name?: string;
|
|
7559
8132
|
avatar?: string;
|
|
7560
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
8133
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
7561
8134
|
};
|
|
7562
8135
|
issuer?: string;
|
|
7563
8136
|
} | {
|
|
@@ -7574,11 +8147,18 @@ export interface operations {
|
|
|
7574
8147
|
code?: string;
|
|
7575
8148
|
} | {
|
|
7576
8149
|
id: string;
|
|
8150
|
+
verified: boolean;
|
|
8151
|
+
registrationRpId?: string;
|
|
7577
8152
|
/** Format: "WebAuthn" */
|
|
7578
8153
|
type: string;
|
|
7579
8154
|
userId: string;
|
|
8155
|
+
} | {
|
|
8156
|
+
id: string;
|
|
7580
8157
|
verified: boolean;
|
|
7581
8158
|
registrationRpId?: string;
|
|
8159
|
+
/** Format: "SignInWebAuthn" */
|
|
8160
|
+
type: string;
|
|
8161
|
+
userId?: string;
|
|
7582
8162
|
} | {
|
|
7583
8163
|
id: string;
|
|
7584
8164
|
/** Format: "OneTimeToken" */
|
|
@@ -7602,6 +8182,69 @@ export interface operations {
|
|
|
7602
8182
|
value: string;
|
|
7603
8183
|
};
|
|
7604
8184
|
})[];
|
|
8185
|
+
signInContext?: {
|
|
8186
|
+
[key: string]: string;
|
|
8187
|
+
};
|
|
8188
|
+
};
|
|
8189
|
+
application?: {
|
|
8190
|
+
tenantId?: string;
|
|
8191
|
+
id?: string;
|
|
8192
|
+
name?: string;
|
|
8193
|
+
description?: string | null;
|
|
8194
|
+
/** @enum {string} */
|
|
8195
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
8196
|
+
oidcClientMetadata?: {
|
|
8197
|
+
redirectUris: Record<string, never>[];
|
|
8198
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
8199
|
+
/** Format: url */
|
|
8200
|
+
backchannelLogoutUri?: string;
|
|
8201
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
8202
|
+
logoUri?: string;
|
|
8203
|
+
};
|
|
8204
|
+
customClientMetadata?: {
|
|
8205
|
+
corsAllowedOrigins?: string[];
|
|
8206
|
+
idTokenTtl?: number;
|
|
8207
|
+
refreshTokenTtl?: number;
|
|
8208
|
+
refreshTokenTtlInDays?: number;
|
|
8209
|
+
tenantId?: string;
|
|
8210
|
+
alwaysIssueRefreshToken?: boolean;
|
|
8211
|
+
rotateRefreshToken?: boolean;
|
|
8212
|
+
allowTokenExchange?: boolean;
|
|
8213
|
+
};
|
|
8214
|
+
protectedAppMetadata?: {
|
|
8215
|
+
host: string;
|
|
8216
|
+
origin: string;
|
|
8217
|
+
sessionDuration: number;
|
|
8218
|
+
pageRules: {
|
|
8219
|
+
path: string;
|
|
8220
|
+
}[];
|
|
8221
|
+
customDomains?: {
|
|
8222
|
+
domain: string;
|
|
8223
|
+
/** @enum {string} */
|
|
8224
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
8225
|
+
errorMessage: string | null;
|
|
8226
|
+
dnsRecords: {
|
|
8227
|
+
name: string;
|
|
8228
|
+
type: string;
|
|
8229
|
+
value: string;
|
|
8230
|
+
}[];
|
|
8231
|
+
cloudflareData: {
|
|
8232
|
+
id: string;
|
|
8233
|
+
status: string;
|
|
8234
|
+
ssl: {
|
|
8235
|
+
status: string;
|
|
8236
|
+
validation_errors?: {
|
|
8237
|
+
message: string;
|
|
8238
|
+
}[];
|
|
8239
|
+
};
|
|
8240
|
+
verification_errors?: string[];
|
|
8241
|
+
} | null;
|
|
8242
|
+
}[];
|
|
8243
|
+
} | null;
|
|
8244
|
+
/** @description arbitrary */
|
|
8245
|
+
customData?: Record<string, never>;
|
|
8246
|
+
isThirdParty?: boolean;
|
|
8247
|
+
createdAt?: number;
|
|
7605
8248
|
};
|
|
7606
8249
|
};
|
|
7607
8250
|
tokenSample?: {
|
|
@@ -7627,8 +8270,68 @@ export interface operations {
|
|
|
7627
8270
|
environmentVariables?: {
|
|
7628
8271
|
[key: string]: string;
|
|
7629
8272
|
};
|
|
7630
|
-
|
|
7631
|
-
|
|
8273
|
+
contextSample?: {
|
|
8274
|
+
application?: {
|
|
8275
|
+
tenantId?: string;
|
|
8276
|
+
id?: string;
|
|
8277
|
+
name?: string;
|
|
8278
|
+
description?: string | null;
|
|
8279
|
+
/** @enum {string} */
|
|
8280
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
8281
|
+
oidcClientMetadata?: {
|
|
8282
|
+
redirectUris: Record<string, never>[];
|
|
8283
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
8284
|
+
/** Format: url */
|
|
8285
|
+
backchannelLogoutUri?: string;
|
|
8286
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
8287
|
+
logoUri?: string;
|
|
8288
|
+
};
|
|
8289
|
+
customClientMetadata?: {
|
|
8290
|
+
corsAllowedOrigins?: string[];
|
|
8291
|
+
idTokenTtl?: number;
|
|
8292
|
+
refreshTokenTtl?: number;
|
|
8293
|
+
refreshTokenTtlInDays?: number;
|
|
8294
|
+
tenantId?: string;
|
|
8295
|
+
alwaysIssueRefreshToken?: boolean;
|
|
8296
|
+
rotateRefreshToken?: boolean;
|
|
8297
|
+
allowTokenExchange?: boolean;
|
|
8298
|
+
};
|
|
8299
|
+
protectedAppMetadata?: {
|
|
8300
|
+
host: string;
|
|
8301
|
+
origin: string;
|
|
8302
|
+
sessionDuration: number;
|
|
8303
|
+
pageRules: {
|
|
8304
|
+
path: string;
|
|
8305
|
+
}[];
|
|
8306
|
+
customDomains?: {
|
|
8307
|
+
domain: string;
|
|
8308
|
+
/** @enum {string} */
|
|
8309
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
8310
|
+
errorMessage: string | null;
|
|
8311
|
+
dnsRecords: {
|
|
8312
|
+
name: string;
|
|
8313
|
+
type: string;
|
|
8314
|
+
value: string;
|
|
8315
|
+
}[];
|
|
8316
|
+
cloudflareData: {
|
|
8317
|
+
id: string;
|
|
8318
|
+
status: string;
|
|
8319
|
+
ssl: {
|
|
8320
|
+
status: string;
|
|
8321
|
+
validation_errors?: {
|
|
8322
|
+
message: string;
|
|
8323
|
+
}[];
|
|
8324
|
+
};
|
|
8325
|
+
verification_errors?: string[];
|
|
8326
|
+
} | null;
|
|
8327
|
+
}[];
|
|
8328
|
+
} | null;
|
|
8329
|
+
/** @description arbitrary */
|
|
8330
|
+
customData?: Record<string, never>;
|
|
8331
|
+
isThirdParty?: boolean;
|
|
8332
|
+
createdAt?: number;
|
|
8333
|
+
};
|
|
8334
|
+
};
|
|
7632
8335
|
tokenSample?: {
|
|
7633
8336
|
jti?: string;
|
|
7634
8337
|
aud?: string | string[];
|
|
@@ -7835,7 +8538,7 @@ export interface operations {
|
|
|
7835
8538
|
phone?: string;
|
|
7836
8539
|
name?: string;
|
|
7837
8540
|
avatar?: string;
|
|
7838
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
8541
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
7839
8542
|
};
|
|
7840
8543
|
} | {
|
|
7841
8544
|
id: string;
|
|
@@ -7848,7 +8551,7 @@ export interface operations {
|
|
|
7848
8551
|
phone?: string;
|
|
7849
8552
|
name?: string;
|
|
7850
8553
|
avatar?: string;
|
|
7851
|
-
rawData?: (Record<string, never> | (string | number | boolean |
|
|
8554
|
+
rawData?: (Record<string, never> | (string | number | boolean | (string | null) | Record<string, never>)[] | string | number | boolean) | null;
|
|
7852
8555
|
};
|
|
7853
8556
|
issuer?: string;
|
|
7854
8557
|
} | {
|
|
@@ -7865,11 +8568,18 @@ export interface operations {
|
|
|
7865
8568
|
code?: string;
|
|
7866
8569
|
} | {
|
|
7867
8570
|
id: string;
|
|
8571
|
+
verified: boolean;
|
|
8572
|
+
registrationRpId?: string;
|
|
7868
8573
|
/** Format: "WebAuthn" */
|
|
7869
8574
|
type: string;
|
|
7870
8575
|
userId: string;
|
|
8576
|
+
} | {
|
|
8577
|
+
id: string;
|
|
7871
8578
|
verified: boolean;
|
|
7872
8579
|
registrationRpId?: string;
|
|
8580
|
+
/** Format: "SignInWebAuthn" */
|
|
8581
|
+
type: string;
|
|
8582
|
+
userId?: string;
|
|
7873
8583
|
} | {
|
|
7874
8584
|
id: string;
|
|
7875
8585
|
/** Format: "OneTimeToken" */
|
|
@@ -7893,6 +8603,69 @@ export interface operations {
|
|
|
7893
8603
|
value: string;
|
|
7894
8604
|
};
|
|
7895
8605
|
})[];
|
|
8606
|
+
signInContext?: {
|
|
8607
|
+
[key: string]: string;
|
|
8608
|
+
};
|
|
8609
|
+
};
|
|
8610
|
+
application?: {
|
|
8611
|
+
tenantId?: string;
|
|
8612
|
+
id?: string;
|
|
8613
|
+
name?: string;
|
|
8614
|
+
description?: string | null;
|
|
8615
|
+
/** @enum {string} */
|
|
8616
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
8617
|
+
oidcClientMetadata?: {
|
|
8618
|
+
redirectUris: Record<string, never>[];
|
|
8619
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
8620
|
+
/** Format: url */
|
|
8621
|
+
backchannelLogoutUri?: string;
|
|
8622
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
8623
|
+
logoUri?: string;
|
|
8624
|
+
};
|
|
8625
|
+
customClientMetadata?: {
|
|
8626
|
+
corsAllowedOrigins?: string[];
|
|
8627
|
+
idTokenTtl?: number;
|
|
8628
|
+
refreshTokenTtl?: number;
|
|
8629
|
+
refreshTokenTtlInDays?: number;
|
|
8630
|
+
tenantId?: string;
|
|
8631
|
+
alwaysIssueRefreshToken?: boolean;
|
|
8632
|
+
rotateRefreshToken?: boolean;
|
|
8633
|
+
allowTokenExchange?: boolean;
|
|
8634
|
+
};
|
|
8635
|
+
protectedAppMetadata?: {
|
|
8636
|
+
host: string;
|
|
8637
|
+
origin: string;
|
|
8638
|
+
sessionDuration: number;
|
|
8639
|
+
pageRules: {
|
|
8640
|
+
path: string;
|
|
8641
|
+
}[];
|
|
8642
|
+
customDomains?: {
|
|
8643
|
+
domain: string;
|
|
8644
|
+
/** @enum {string} */
|
|
8645
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
8646
|
+
errorMessage: string | null;
|
|
8647
|
+
dnsRecords: {
|
|
8648
|
+
name: string;
|
|
8649
|
+
type: string;
|
|
8650
|
+
value: string;
|
|
8651
|
+
}[];
|
|
8652
|
+
cloudflareData: {
|
|
8653
|
+
id: string;
|
|
8654
|
+
status: string;
|
|
8655
|
+
ssl: {
|
|
8656
|
+
status: string;
|
|
8657
|
+
validation_errors?: {
|
|
8658
|
+
message: string;
|
|
8659
|
+
}[];
|
|
8660
|
+
};
|
|
8661
|
+
verification_errors?: string[];
|
|
8662
|
+
} | null;
|
|
8663
|
+
}[];
|
|
8664
|
+
} | null;
|
|
8665
|
+
/** @description arbitrary */
|
|
8666
|
+
customData?: Record<string, never>;
|
|
8667
|
+
isThirdParty?: boolean;
|
|
8668
|
+
createdAt?: number;
|
|
7896
8669
|
};
|
|
7897
8670
|
};
|
|
7898
8671
|
} | {
|
|
@@ -7910,6 +8683,68 @@ export interface operations {
|
|
|
7910
8683
|
/** Format: "ClientCredentials" */
|
|
7911
8684
|
kind?: string;
|
|
7912
8685
|
};
|
|
8686
|
+
context: {
|
|
8687
|
+
application?: {
|
|
8688
|
+
tenantId?: string;
|
|
8689
|
+
id?: string;
|
|
8690
|
+
name?: string;
|
|
8691
|
+
description?: string | null;
|
|
8692
|
+
/** @enum {string} */
|
|
8693
|
+
type?: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
8694
|
+
oidcClientMetadata?: {
|
|
8695
|
+
redirectUris: Record<string, never>[];
|
|
8696
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
8697
|
+
/** Format: url */
|
|
8698
|
+
backchannelLogoutUri?: string;
|
|
8699
|
+
backchannelLogoutSessionRequired?: boolean;
|
|
8700
|
+
logoUri?: string;
|
|
8701
|
+
};
|
|
8702
|
+
customClientMetadata?: {
|
|
8703
|
+
corsAllowedOrigins?: string[];
|
|
8704
|
+
idTokenTtl?: number;
|
|
8705
|
+
refreshTokenTtl?: number;
|
|
8706
|
+
refreshTokenTtlInDays?: number;
|
|
8707
|
+
tenantId?: string;
|
|
8708
|
+
alwaysIssueRefreshToken?: boolean;
|
|
8709
|
+
rotateRefreshToken?: boolean;
|
|
8710
|
+
allowTokenExchange?: boolean;
|
|
8711
|
+
};
|
|
8712
|
+
protectedAppMetadata?: {
|
|
8713
|
+
host: string;
|
|
8714
|
+
origin: string;
|
|
8715
|
+
sessionDuration: number;
|
|
8716
|
+
pageRules: {
|
|
8717
|
+
path: string;
|
|
8718
|
+
}[];
|
|
8719
|
+
customDomains?: {
|
|
8720
|
+
domain: string;
|
|
8721
|
+
/** @enum {string} */
|
|
8722
|
+
status: "PendingVerification" | "PendingSsl" | "Active" | "Error";
|
|
8723
|
+
errorMessage: string | null;
|
|
8724
|
+
dnsRecords: {
|
|
8725
|
+
name: string;
|
|
8726
|
+
type: string;
|
|
8727
|
+
value: string;
|
|
8728
|
+
}[];
|
|
8729
|
+
cloudflareData: {
|
|
8730
|
+
id: string;
|
|
8731
|
+
status: string;
|
|
8732
|
+
ssl: {
|
|
8733
|
+
status: string;
|
|
8734
|
+
validation_errors?: {
|
|
8735
|
+
message: string;
|
|
8736
|
+
}[];
|
|
8737
|
+
};
|
|
8738
|
+
verification_errors?: string[];
|
|
8739
|
+
} | null;
|
|
8740
|
+
}[];
|
|
8741
|
+
} | null;
|
|
8742
|
+
/** @description arbitrary */
|
|
8743
|
+
customData?: Record<string, never>;
|
|
8744
|
+
isThirdParty?: boolean;
|
|
8745
|
+
createdAt?: number;
|
|
8746
|
+
};
|
|
8747
|
+
};
|
|
7913
8748
|
});
|
|
7914
8749
|
};
|
|
7915
8750
|
};
|
|
@@ -7953,6 +8788,99 @@ export interface operations {
|
|
|
7953
8788
|
};
|
|
7954
8789
|
};
|
|
7955
8790
|
};
|
|
8791
|
+
GetIdTokenConfig: {
|
|
8792
|
+
parameters: {
|
|
8793
|
+
query?: never;
|
|
8794
|
+
header?: never;
|
|
8795
|
+
path?: never;
|
|
8796
|
+
cookie?: never;
|
|
8797
|
+
};
|
|
8798
|
+
requestBody?: never;
|
|
8799
|
+
responses: {
|
|
8800
|
+
/** @description The ID token claims configuration. */
|
|
8801
|
+
200: {
|
|
8802
|
+
headers: {
|
|
8803
|
+
[name: string]: unknown;
|
|
8804
|
+
};
|
|
8805
|
+
content: {
|
|
8806
|
+
"application/json": {
|
|
8807
|
+
enabledExtendedClaims?: ("custom_data" | "identities" | "sso_identities" | "roles" | "organizations" | "organization_data" | "organization_roles")[];
|
|
8808
|
+
};
|
|
8809
|
+
};
|
|
8810
|
+
};
|
|
8811
|
+
/** @description Unauthorized */
|
|
8812
|
+
401: {
|
|
8813
|
+
headers: {
|
|
8814
|
+
[name: string]: unknown;
|
|
8815
|
+
};
|
|
8816
|
+
content?: never;
|
|
8817
|
+
};
|
|
8818
|
+
/** @description Forbidden */
|
|
8819
|
+
403: {
|
|
8820
|
+
headers: {
|
|
8821
|
+
[name: string]: unknown;
|
|
8822
|
+
};
|
|
8823
|
+
content?: never;
|
|
8824
|
+
};
|
|
8825
|
+
/** @description Configuration not found. */
|
|
8826
|
+
404: {
|
|
8827
|
+
headers: {
|
|
8828
|
+
[name: string]: unknown;
|
|
8829
|
+
};
|
|
8830
|
+
content?: never;
|
|
8831
|
+
};
|
|
8832
|
+
};
|
|
8833
|
+
};
|
|
8834
|
+
UpsertIdTokenConfig: {
|
|
8835
|
+
parameters: {
|
|
8836
|
+
query?: never;
|
|
8837
|
+
header?: never;
|
|
8838
|
+
path?: never;
|
|
8839
|
+
cookie?: never;
|
|
8840
|
+
};
|
|
8841
|
+
requestBody: {
|
|
8842
|
+
content: {
|
|
8843
|
+
"application/json": {
|
|
8844
|
+
/** @description An array of extended claims to include in ID tokens. Possible values: `custom_data`, `identities`, `sso_identities`, `roles`, `organizations`, `organization_data`, `organization_roles`. */
|
|
8845
|
+
enabledExtendedClaims?: ("custom_data" | "identities" | "sso_identities" | "roles" | "organizations" | "organization_data" | "organization_roles")[];
|
|
8846
|
+
};
|
|
8847
|
+
};
|
|
8848
|
+
};
|
|
8849
|
+
responses: {
|
|
8850
|
+
/** @description The updated ID token claims configuration. */
|
|
8851
|
+
200: {
|
|
8852
|
+
headers: {
|
|
8853
|
+
[name: string]: unknown;
|
|
8854
|
+
};
|
|
8855
|
+
content: {
|
|
8856
|
+
"application/json": {
|
|
8857
|
+
enabledExtendedClaims?: ("custom_data" | "identities" | "sso_identities" | "roles" | "organizations" | "organization_data" | "organization_roles")[];
|
|
8858
|
+
};
|
|
8859
|
+
};
|
|
8860
|
+
};
|
|
8861
|
+
/** @description Bad Request */
|
|
8862
|
+
400: {
|
|
8863
|
+
headers: {
|
|
8864
|
+
[name: string]: unknown;
|
|
8865
|
+
};
|
|
8866
|
+
content?: never;
|
|
8867
|
+
};
|
|
8868
|
+
/** @description Unauthorized */
|
|
8869
|
+
401: {
|
|
8870
|
+
headers: {
|
|
8871
|
+
[name: string]: unknown;
|
|
8872
|
+
};
|
|
8873
|
+
content?: never;
|
|
8874
|
+
};
|
|
8875
|
+
/** @description The tenant's subscription plan does not support this feature. */
|
|
8876
|
+
403: {
|
|
8877
|
+
headers: {
|
|
8878
|
+
[name: string]: unknown;
|
|
8879
|
+
};
|
|
8880
|
+
content?: never;
|
|
8881
|
+
};
|
|
8882
|
+
};
|
|
8883
|
+
};
|
|
7956
8884
|
ListConnectors: {
|
|
7957
8885
|
parameters: {
|
|
7958
8886
|
query?: {
|
|
@@ -9743,6 +10671,7 @@ export interface operations {
|
|
|
9743
10671
|
};
|
|
9744
10672
|
socialSignIn: {
|
|
9745
10673
|
automaticAccountLinking?: boolean;
|
|
10674
|
+
skipRequiredIdentifiers?: boolean;
|
|
9746
10675
|
};
|
|
9747
10676
|
/** @description Enabled social sign-in connectors, will displayed on the sign-in page. */
|
|
9748
10677
|
socialSignInConnectorTargets: string[];
|
|
@@ -9791,6 +10720,10 @@ export interface operations {
|
|
|
9791
10720
|
/** @enum {string} */
|
|
9792
10721
|
organizationRequiredMfaPolicy?: "NoPrompt" | "Mandatory";
|
|
9793
10722
|
};
|
|
10723
|
+
/** @description Adaptive MFA settings. */
|
|
10724
|
+
adaptiveMfa: {
|
|
10725
|
+
enabled?: boolean;
|
|
10726
|
+
};
|
|
9794
10727
|
singleSignOnEnabled: boolean;
|
|
9795
10728
|
/** @description The support email address to display on the error pages. */
|
|
9796
10729
|
supportEmail: string | null;
|
|
@@ -9817,6 +10750,11 @@ export interface operations {
|
|
|
9817
10750
|
blockDisposableAddress?: unknown;
|
|
9818
10751
|
};
|
|
9819
10752
|
forgotPasswordMethods: ("EmailVerificationCode" | "PhoneVerificationCode")[] | null;
|
|
10753
|
+
passkeySignIn: {
|
|
10754
|
+
enabled?: boolean;
|
|
10755
|
+
showPasskeyButton?: boolean;
|
|
10756
|
+
allowAutofill?: boolean;
|
|
10757
|
+
};
|
|
9820
10758
|
};
|
|
9821
10759
|
};
|
|
9822
10760
|
};
|
|
@@ -9910,6 +10848,7 @@ export interface operations {
|
|
|
9910
10848
|
};
|
|
9911
10849
|
socialSignIn?: {
|
|
9912
10850
|
automaticAccountLinking?: boolean;
|
|
10851
|
+
skipRequiredIdentifiers?: boolean;
|
|
9913
10852
|
};
|
|
9914
10853
|
/** @description Specify the social sign-in connectors to display on the sign-in page. */
|
|
9915
10854
|
socialSignInConnectorTargets?: string[];
|
|
@@ -9978,6 +10917,11 @@ export interface operations {
|
|
|
9978
10917
|
blockDisposableAddress?: unknown;
|
|
9979
10918
|
};
|
|
9980
10919
|
forgotPasswordMethods?: ("EmailVerificationCode" | "PhoneVerificationCode")[] | null;
|
|
10920
|
+
passkeySignIn?: {
|
|
10921
|
+
enabled?: boolean;
|
|
10922
|
+
showPasskeyButton?: boolean;
|
|
10923
|
+
allowAutofill?: boolean;
|
|
10924
|
+
};
|
|
9981
10925
|
termsOfUseUrl?: (string | null) | string;
|
|
9982
10926
|
privacyPolicyUrl?: (string | null) | string;
|
|
9983
10927
|
/** @description The support email address to display on the error pages. */
|
|
@@ -9986,6 +10930,8 @@ export interface operations {
|
|
|
9986
10930
|
supportWebsiteUrl?: (string | null) | string;
|
|
9987
10931
|
/** @description The fallback URL to redirect users when the sign-in session does not exist or unknown. Client should initiate a new authentication flow after the redirection. */
|
|
9988
10932
|
unknownSessionRedirectUrl?: (string | null) | string;
|
|
10933
|
+
/** @description Adaptive MFA settings. Only effective when developer features are enabled. */
|
|
10934
|
+
adaptiveMfa?: unknown;
|
|
9989
10935
|
};
|
|
9990
10936
|
};
|
|
9991
10937
|
};
|
|
@@ -10046,6 +10992,7 @@ export interface operations {
|
|
|
10046
10992
|
};
|
|
10047
10993
|
socialSignIn: {
|
|
10048
10994
|
automaticAccountLinking?: boolean;
|
|
10995
|
+
skipRequiredIdentifiers?: boolean;
|
|
10049
10996
|
};
|
|
10050
10997
|
socialSignInConnectorTargets: string[];
|
|
10051
10998
|
/** @enum {string} */
|
|
@@ -10090,6 +11037,9 @@ export interface operations {
|
|
|
10090
11037
|
/** @enum {string} */
|
|
10091
11038
|
organizationRequiredMfaPolicy?: "NoPrompt" | "Mandatory";
|
|
10092
11039
|
};
|
|
11040
|
+
adaptiveMfa: {
|
|
11041
|
+
enabled?: boolean;
|
|
11042
|
+
};
|
|
10093
11043
|
singleSignOnEnabled: boolean;
|
|
10094
11044
|
supportEmail: string | null;
|
|
10095
11045
|
supportWebsiteUrl: string | null;
|
|
@@ -10107,6 +11057,11 @@ export interface operations {
|
|
|
10107
11057
|
customBlocklist?: string[];
|
|
10108
11058
|
};
|
|
10109
11059
|
forgotPasswordMethods: ("EmailVerificationCode" | "PhoneVerificationCode")[] | null;
|
|
11060
|
+
passkeySignIn: {
|
|
11061
|
+
enabled?: boolean;
|
|
11062
|
+
showPasskeyButton?: boolean;
|
|
11063
|
+
allowAutofill?: boolean;
|
|
11064
|
+
};
|
|
10110
11065
|
};
|
|
10111
11066
|
};
|
|
10112
11067
|
};
|
|
@@ -10699,6 +11654,10 @@ export interface operations {
|
|
|
10699
11654
|
"application/json": {
|
|
10700
11655
|
mfa: {
|
|
10701
11656
|
skipped: boolean;
|
|
11657
|
+
skipMfaOnSignIn: boolean;
|
|
11658
|
+
};
|
|
11659
|
+
passkeySignIn: {
|
|
11660
|
+
skipped: boolean;
|
|
10702
11661
|
};
|
|
10703
11662
|
};
|
|
10704
11663
|
};
|
|
@@ -10749,6 +11708,10 @@ export interface operations {
|
|
|
10749
11708
|
mfa: {
|
|
10750
11709
|
/** @description Set whether the user is marked as having skipped MFA binding. */
|
|
10751
11710
|
skipped: boolean;
|
|
11711
|
+
skipMfaOnSignIn: boolean;
|
|
11712
|
+
};
|
|
11713
|
+
passkeySignIn: {
|
|
11714
|
+
skipped: boolean;
|
|
10752
11715
|
};
|
|
10753
11716
|
};
|
|
10754
11717
|
};
|
|
@@ -10763,6 +11726,10 @@ export interface operations {
|
|
|
10763
11726
|
"application/json": {
|
|
10764
11727
|
mfa: {
|
|
10765
11728
|
skipped: boolean;
|
|
11729
|
+
skipMfaOnSignIn: boolean;
|
|
11730
|
+
};
|
|
11731
|
+
passkeySignIn: {
|
|
11732
|
+
skipped: boolean;
|
|
10766
11733
|
};
|
|
10767
11734
|
};
|
|
10768
11735
|
};
|
|
@@ -11599,7 +12566,10 @@ export interface operations {
|
|
|
11599
12566
|
[name: string]: unknown;
|
|
11600
12567
|
};
|
|
11601
12568
|
content: {
|
|
11602
|
-
"application/json":
|
|
12569
|
+
"application/json": {
|
|
12570
|
+
/** @description An array of API resource role IDs assigned to the user. */
|
|
12571
|
+
roleIds: string[];
|
|
12572
|
+
};
|
|
11603
12573
|
};
|
|
11604
12574
|
};
|
|
11605
12575
|
/** @description Bad Request */
|
|
@@ -11664,7 +12634,12 @@ export interface operations {
|
|
|
11664
12634
|
[name: string]: unknown;
|
|
11665
12635
|
};
|
|
11666
12636
|
content: {
|
|
11667
|
-
"application/json":
|
|
12637
|
+
"application/json": {
|
|
12638
|
+
/** @description An array of API resource role IDs requested for assignment. */
|
|
12639
|
+
roleIds: string[];
|
|
12640
|
+
/** @description An array of API resource role IDs newly assigned to the user. */
|
|
12641
|
+
addedRoleIds: string[];
|
|
12642
|
+
};
|
|
11668
12643
|
};
|
|
11669
12644
|
};
|
|
11670
12645
|
/** @description Bad Request */
|
|
@@ -13001,6 +13976,31 @@ export interface operations {
|
|
|
13001
13976
|
} | string;
|
|
13002
13977
|
ip?: string;
|
|
13003
13978
|
userAgent?: string;
|
|
13979
|
+
userAgentParsed?: {
|
|
13980
|
+
ua?: string;
|
|
13981
|
+
browser?: {
|
|
13982
|
+
name?: string;
|
|
13983
|
+
version?: string;
|
|
13984
|
+
major?: string;
|
|
13985
|
+
type?: string;
|
|
13986
|
+
};
|
|
13987
|
+
device?: {
|
|
13988
|
+
model?: string;
|
|
13989
|
+
type?: string;
|
|
13990
|
+
vendor?: string;
|
|
13991
|
+
};
|
|
13992
|
+
engine?: {
|
|
13993
|
+
name?: string;
|
|
13994
|
+
version?: string;
|
|
13995
|
+
};
|
|
13996
|
+
os?: {
|
|
13997
|
+
name?: string;
|
|
13998
|
+
version?: string;
|
|
13999
|
+
};
|
|
14000
|
+
cpu?: {
|
|
14001
|
+
architecture?: string;
|
|
14002
|
+
};
|
|
14003
|
+
};
|
|
13004
14004
|
userId?: string;
|
|
13005
14005
|
applicationId?: string;
|
|
13006
14006
|
sessionId?: string;
|
|
@@ -13066,6 +14066,31 @@ export interface operations {
|
|
|
13066
14066
|
} | string;
|
|
13067
14067
|
ip?: string;
|
|
13068
14068
|
userAgent?: string;
|
|
14069
|
+
userAgentParsed?: {
|
|
14070
|
+
ua?: string;
|
|
14071
|
+
browser?: {
|
|
14072
|
+
name?: string;
|
|
14073
|
+
version?: string;
|
|
14074
|
+
major?: string;
|
|
14075
|
+
type?: string;
|
|
14076
|
+
};
|
|
14077
|
+
device?: {
|
|
14078
|
+
model?: string;
|
|
14079
|
+
type?: string;
|
|
14080
|
+
vendor?: string;
|
|
14081
|
+
};
|
|
14082
|
+
engine?: {
|
|
14083
|
+
name?: string;
|
|
14084
|
+
version?: string;
|
|
14085
|
+
};
|
|
14086
|
+
os?: {
|
|
14087
|
+
name?: string;
|
|
14088
|
+
version?: string;
|
|
14089
|
+
};
|
|
14090
|
+
cpu?: {
|
|
14091
|
+
architecture?: string;
|
|
14092
|
+
};
|
|
14093
|
+
};
|
|
13069
14094
|
userId?: string;
|
|
13070
14095
|
applicationId?: string;
|
|
13071
14096
|
sessionId?: string;
|
|
@@ -13714,8 +14739,8 @@ export interface operations {
|
|
|
13714
14739
|
/** @enum {string} */
|
|
13715
14740
|
type: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
13716
14741
|
oidcClientMetadata: {
|
|
13717
|
-
redirectUris:
|
|
13718
|
-
postLogoutRedirectUris: string[];
|
|
14742
|
+
redirectUris: Record<string, never>[];
|
|
14743
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
13719
14744
|
/** Format: url */
|
|
13720
14745
|
backchannelLogoutUri?: string;
|
|
13721
14746
|
backchannelLogoutSessionRequired?: boolean;
|
|
@@ -13729,6 +14754,7 @@ export interface operations {
|
|
|
13729
14754
|
tenantId?: string;
|
|
13730
14755
|
alwaysIssueRefreshToken?: boolean;
|
|
13731
14756
|
rotateRefreshToken?: boolean;
|
|
14757
|
+
allowTokenExchange?: boolean;
|
|
13732
14758
|
};
|
|
13733
14759
|
protectedAppMetadata: {
|
|
13734
14760
|
host: string;
|
|
@@ -14504,8 +15530,8 @@ export interface operations {
|
|
|
14504
15530
|
id: string;
|
|
14505
15531
|
name: string;
|
|
14506
15532
|
/** @enum {string|null} */
|
|
14507
|
-
event: "PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
14508
|
-
events: ("PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
15533
|
+
event: "PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
15534
|
+
events: ("PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
14509
15535
|
config: {
|
|
14510
15536
|
url: string;
|
|
14511
15537
|
headers?: {
|
|
@@ -14564,9 +15590,9 @@ export interface operations {
|
|
|
14564
15590
|
* @description Use `events` instead.
|
|
14565
15591
|
* @enum {string}
|
|
14566
15592
|
*/
|
|
14567
|
-
event?: "PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout";
|
|
15593
|
+
event?: "PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout";
|
|
14568
15594
|
/** @description An array of hook events. */
|
|
14569
|
-
events?: ("PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
15595
|
+
events?: ("PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
14570
15596
|
config: {
|
|
14571
15597
|
url: string;
|
|
14572
15598
|
headers?: {
|
|
@@ -14595,8 +15621,8 @@ export interface operations {
|
|
|
14595
15621
|
id: string;
|
|
14596
15622
|
name: string;
|
|
14597
15623
|
/** @enum {string|null} */
|
|
14598
|
-
event: "PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
14599
|
-
events: ("PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
15624
|
+
event: "PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
15625
|
+
events: ("PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
14600
15626
|
config: {
|
|
14601
15627
|
url: string;
|
|
14602
15628
|
headers?: {
|
|
@@ -14659,8 +15685,8 @@ export interface operations {
|
|
|
14659
15685
|
id: string;
|
|
14660
15686
|
name: string;
|
|
14661
15687
|
/** @enum {string|null} */
|
|
14662
|
-
event: "PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
14663
|
-
events: ("PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
15688
|
+
event: "PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
15689
|
+
events: ("PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
14664
15690
|
config: {
|
|
14665
15691
|
url: string;
|
|
14666
15692
|
headers?: {
|
|
@@ -14778,9 +15804,9 @@ export interface operations {
|
|
|
14778
15804
|
* @description Use `events` instead.
|
|
14779
15805
|
* @enum {string|null}
|
|
14780
15806
|
*/
|
|
14781
|
-
event?: "PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
15807
|
+
event?: "PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
14782
15808
|
/** @description An array of updated hook events. */
|
|
14783
|
-
events?: ("PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
15809
|
+
events?: ("PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
14784
15810
|
config?: {
|
|
14785
15811
|
url: string;
|
|
14786
15812
|
headers?: {
|
|
@@ -14809,8 +15835,8 @@ export interface operations {
|
|
|
14809
15835
|
id: string;
|
|
14810
15836
|
name: string;
|
|
14811
15837
|
/** @enum {string|null} */
|
|
14812
|
-
event: "PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
14813
|
-
events: ("PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
15838
|
+
event: "PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
15839
|
+
events: ("PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
14814
15840
|
config: {
|
|
14815
15841
|
url: string;
|
|
14816
15842
|
headers?: {
|
|
@@ -14891,6 +15917,31 @@ export interface operations {
|
|
|
14891
15917
|
} | string;
|
|
14892
15918
|
ip?: string;
|
|
14893
15919
|
userAgent?: string;
|
|
15920
|
+
userAgentParsed?: {
|
|
15921
|
+
ua?: string;
|
|
15922
|
+
browser?: {
|
|
15923
|
+
name?: string;
|
|
15924
|
+
version?: string;
|
|
15925
|
+
major?: string;
|
|
15926
|
+
type?: string;
|
|
15927
|
+
};
|
|
15928
|
+
device?: {
|
|
15929
|
+
model?: string;
|
|
15930
|
+
type?: string;
|
|
15931
|
+
vendor?: string;
|
|
15932
|
+
};
|
|
15933
|
+
engine?: {
|
|
15934
|
+
name?: string;
|
|
15935
|
+
version?: string;
|
|
15936
|
+
};
|
|
15937
|
+
os?: {
|
|
15938
|
+
name?: string;
|
|
15939
|
+
version?: string;
|
|
15940
|
+
};
|
|
15941
|
+
cpu?: {
|
|
15942
|
+
architecture?: string;
|
|
15943
|
+
};
|
|
15944
|
+
};
|
|
14894
15945
|
userId?: string;
|
|
14895
15946
|
applicationId?: string;
|
|
14896
15947
|
sessionId?: string;
|
|
@@ -14939,7 +15990,7 @@ export interface operations {
|
|
|
14939
15990
|
content: {
|
|
14940
15991
|
"application/json": {
|
|
14941
15992
|
/** @description An array of hook events for testing. */
|
|
14942
|
-
events: ("PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
15993
|
+
events: ("PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
14943
15994
|
/** @description The hook configuration for testing. */
|
|
14944
15995
|
config: {
|
|
14945
15996
|
url: string;
|
|
@@ -15028,8 +16079,8 @@ export interface operations {
|
|
|
15028
16079
|
id: string;
|
|
15029
16080
|
name: string;
|
|
15030
16081
|
/** @enum {string|null} */
|
|
15031
|
-
event: "PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
15032
|
-
events: ("PostRegister" | "PostSignIn" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
16082
|
+
event: "PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout" | null;
|
|
16083
|
+
events: ("PostRegister" | "PostSignIn" | "PostSignInAdaptiveMfaTriggered" | "PostResetPassword" | "User.Created" | "User.Deleted" | "User.Data.Updated" | "User.SuspensionStatus.Updated" | "Role.Created" | "Role.Deleted" | "Role.Data.Updated" | "Role.Scopes.Updated" | "Scope.Created" | "Scope.Deleted" | "Scope.Data.Updated" | "Organization.Created" | "Organization.Deleted" | "Organization.Data.Updated" | "Organization.Membership.Updated" | "OrganizationRole.Created" | "OrganizationRole.Deleted" | "OrganizationRole.Data.Updated" | "OrganizationRole.Scopes.Updated" | "OrganizationScope.Created" | "OrganizationScope.Deleted" | "OrganizationScope.Data.Updated" | "Identifier.Lockout")[];
|
|
15033
16084
|
config: {
|
|
15034
16085
|
url: string;
|
|
15035
16086
|
headers?: {
|
|
@@ -18072,8 +19123,8 @@ export interface operations {
|
|
|
18072
19123
|
/** @enum {string} */
|
|
18073
19124
|
type: "Native" | "SPA" | "Traditional" | "MachineToMachine" | "Protected" | "SAML";
|
|
18074
19125
|
oidcClientMetadata: {
|
|
18075
|
-
redirectUris:
|
|
18076
|
-
postLogoutRedirectUris: string[];
|
|
19126
|
+
redirectUris: Record<string, never>[];
|
|
19127
|
+
postLogoutRedirectUris: Record<string, never>[];
|
|
18077
19128
|
/** Format: url */
|
|
18078
19129
|
backchannelLogoutUri?: string;
|
|
18079
19130
|
backchannelLogoutSessionRequired?: boolean;
|
|
@@ -18087,6 +19138,7 @@ export interface operations {
|
|
|
18087
19138
|
tenantId?: string;
|
|
18088
19139
|
alwaysIssueRefreshToken?: boolean;
|
|
18089
19140
|
rotateRefreshToken?: boolean;
|
|
19141
|
+
allowTokenExchange?: boolean;
|
|
18090
19142
|
};
|
|
18091
19143
|
protectedAppMetadata: {
|
|
18092
19144
|
host: string;
|
|
@@ -19878,6 +20930,8 @@ export interface operations {
|
|
|
19878
20930
|
customData?: "Off" | "ReadOnly" | "Edit";
|
|
19879
20931
|
/** @enum {string} */
|
|
19880
20932
|
mfa?: "Off" | "ReadOnly" | "Edit";
|
|
20933
|
+
/** @enum {string} */
|
|
20934
|
+
session?: "Off" | "ReadOnly" | "Edit";
|
|
19881
20935
|
};
|
|
19882
20936
|
webauthnRelatedOrigins: string[];
|
|
19883
20937
|
};
|
|
@@ -19933,6 +20987,8 @@ export interface operations {
|
|
|
19933
20987
|
customData?: "Off" | "ReadOnly" | "Edit";
|
|
19934
20988
|
/** @enum {string} */
|
|
19935
20989
|
mfa?: "Off" | "ReadOnly" | "Edit";
|
|
20990
|
+
/** @enum {string} */
|
|
20991
|
+
session?: "Off" | "ReadOnly" | "Edit";
|
|
19936
20992
|
};
|
|
19937
20993
|
/** @description The allowed domains for webauthn. */
|
|
19938
20994
|
webauthnRelatedOrigins?: string[];
|
|
@@ -19971,6 +21027,8 @@ export interface operations {
|
|
|
19971
21027
|
customData?: "Off" | "ReadOnly" | "Edit";
|
|
19972
21028
|
/** @enum {string} */
|
|
19973
21029
|
mfa?: "Off" | "ReadOnly" | "Edit";
|
|
21030
|
+
/** @enum {string} */
|
|
21031
|
+
session?: "Off" | "ReadOnly" | "Edit";
|
|
19974
21032
|
};
|
|
19975
21033
|
webauthnRelatedOrigins: string[];
|
|
19976
21034
|
};
|
|
@@ -20037,14 +21095,14 @@ export interface operations {
|
|
|
20037
21095
|
address?: string;
|
|
20038
21096
|
updated_at?: string;
|
|
20039
21097
|
username?: string;
|
|
21098
|
+
created_at?: string;
|
|
21099
|
+
custom_data?: string;
|
|
21100
|
+
identities?: string;
|
|
21101
|
+
sso_identities?: string;
|
|
20040
21102
|
roles?: string;
|
|
20041
21103
|
organizations?: string;
|
|
20042
21104
|
organization_data?: string;
|
|
20043
21105
|
organization_roles?: string;
|
|
20044
|
-
custom_data?: string;
|
|
20045
|
-
identities?: string;
|
|
20046
|
-
sso_identities?: string;
|
|
20047
|
-
created_at?: string;
|
|
20048
21106
|
};
|
|
20049
21107
|
entityId?: string | null;
|
|
20050
21108
|
/** @description The Assertion Consumer Service (ACS) URL where the SAML response will be sent. */
|
|
@@ -20099,14 +21157,14 @@ export interface operations {
|
|
|
20099
21157
|
address?: string;
|
|
20100
21158
|
updated_at?: string;
|
|
20101
21159
|
username?: string;
|
|
21160
|
+
created_at?: string;
|
|
21161
|
+
custom_data?: string;
|
|
21162
|
+
identities?: string;
|
|
21163
|
+
sso_identities?: string;
|
|
20102
21164
|
roles?: string;
|
|
20103
21165
|
organizations?: string;
|
|
20104
21166
|
organization_data?: string;
|
|
20105
21167
|
organization_roles?: string;
|
|
20106
|
-
custom_data?: string;
|
|
20107
|
-
identities?: string;
|
|
20108
|
-
sso_identities?: string;
|
|
20109
|
-
created_at?: string;
|
|
20110
21168
|
};
|
|
20111
21169
|
entityId: string | null;
|
|
20112
21170
|
acsUrl: {
|
|
@@ -20157,8 +21215,8 @@ export interface operations {
|
|
|
20157
21215
|
query?: never;
|
|
20158
21216
|
header?: never;
|
|
20159
21217
|
path: {
|
|
20160
|
-
/** @description The
|
|
20161
|
-
id:
|
|
21218
|
+
/** @description The unique identifier of the saml application. */
|
|
21219
|
+
id: components["parameters"]["samlApplicationId-root"];
|
|
20162
21220
|
};
|
|
20163
21221
|
cookie?: never;
|
|
20164
21222
|
};
|
|
@@ -20203,14 +21261,14 @@ export interface operations {
|
|
|
20203
21261
|
address?: string;
|
|
20204
21262
|
updated_at?: string;
|
|
20205
21263
|
username?: string;
|
|
21264
|
+
created_at?: string;
|
|
21265
|
+
custom_data?: string;
|
|
21266
|
+
identities?: string;
|
|
21267
|
+
sso_identities?: string;
|
|
20206
21268
|
roles?: string;
|
|
20207
21269
|
organizations?: string;
|
|
20208
21270
|
organization_data?: string;
|
|
20209
21271
|
organization_roles?: string;
|
|
20210
|
-
custom_data?: string;
|
|
20211
|
-
identities?: string;
|
|
20212
|
-
sso_identities?: string;
|
|
20213
|
-
created_at?: string;
|
|
20214
21272
|
};
|
|
20215
21273
|
entityId: string | null;
|
|
20216
21274
|
acsUrl: {
|
|
@@ -20360,14 +21418,14 @@ export interface operations {
|
|
|
20360
21418
|
address?: string;
|
|
20361
21419
|
updated_at?: string;
|
|
20362
21420
|
username?: string;
|
|
21421
|
+
created_at?: string;
|
|
21422
|
+
custom_data?: string;
|
|
21423
|
+
identities?: string;
|
|
21424
|
+
sso_identities?: string;
|
|
20363
21425
|
roles?: string;
|
|
20364
21426
|
organizations?: string;
|
|
20365
21427
|
organization_data?: string;
|
|
20366
21428
|
organization_roles?: string;
|
|
20367
|
-
custom_data?: string;
|
|
20368
|
-
identities?: string;
|
|
20369
|
-
sso_identities?: string;
|
|
20370
|
-
created_at?: string;
|
|
20371
21429
|
};
|
|
20372
21430
|
entityId?: string | null;
|
|
20373
21431
|
/** @description The Assertion Consumer Service (ACS) URL. */
|
|
@@ -20419,14 +21477,14 @@ export interface operations {
|
|
|
20419
21477
|
address?: string;
|
|
20420
21478
|
updated_at?: string;
|
|
20421
21479
|
username?: string;
|
|
21480
|
+
created_at?: string;
|
|
21481
|
+
custom_data?: string;
|
|
21482
|
+
identities?: string;
|
|
21483
|
+
sso_identities?: string;
|
|
20422
21484
|
roles?: string;
|
|
20423
21485
|
organizations?: string;
|
|
20424
21486
|
organization_data?: string;
|
|
20425
21487
|
organization_roles?: string;
|
|
20426
|
-
custom_data?: string;
|
|
20427
|
-
identities?: string;
|
|
20428
|
-
sso_identities?: string;
|
|
20429
|
-
created_at?: string;
|
|
20430
21488
|
};
|
|
20431
21489
|
entityId: string | null;
|
|
20432
21490
|
acsUrl: {
|
|
@@ -20557,8 +21615,8 @@ export interface operations {
|
|
|
20557
21615
|
query?: never;
|
|
20558
21616
|
header?: never;
|
|
20559
21617
|
path: {
|
|
20560
|
-
/** @description The
|
|
20561
|
-
id:
|
|
21618
|
+
/** @description The unique identifier of the saml application. */
|
|
21619
|
+
id: components["parameters"]["samlApplicationId-root"];
|
|
20562
21620
|
};
|
|
20563
21621
|
cookie?: never;
|
|
20564
21622
|
};
|
|
@@ -20627,8 +21685,8 @@ export interface operations {
|
|
|
20627
21685
|
query?: never;
|
|
20628
21686
|
header?: never;
|
|
20629
21687
|
path: {
|
|
20630
|
-
/** @description The
|
|
20631
|
-
id:
|
|
21688
|
+
/** @description The unique identifier of the saml application. */
|
|
21689
|
+
id: components["parameters"]["samlApplicationId-root"];
|
|
20632
21690
|
/** @description The unique identifier of the secret. */
|
|
20633
21691
|
secretId: components["parameters"]["secretId"];
|
|
20634
21692
|
};
|
|
@@ -22918,6 +23976,7 @@ export interface operations {
|
|
|
22918
23976
|
};
|
|
22919
23977
|
socialSignIn: {
|
|
22920
23978
|
automaticAccountLinking?: boolean;
|
|
23979
|
+
skipRequiredIdentifiers?: boolean;
|
|
22921
23980
|
};
|
|
22922
23981
|
socialSignInConnectorTargets: string[];
|
|
22923
23982
|
/** @enum {string} */
|
|
@@ -22962,6 +24021,9 @@ export interface operations {
|
|
|
22962
24021
|
/** @enum {string} */
|
|
22963
24022
|
organizationRequiredMfaPolicy?: "NoPrompt" | "Mandatory";
|
|
22964
24023
|
};
|
|
24024
|
+
adaptiveMfa: {
|
|
24025
|
+
enabled?: boolean;
|
|
24026
|
+
};
|
|
22965
24027
|
singleSignOnEnabled: boolean;
|
|
22966
24028
|
supportEmail: string | null;
|
|
22967
24029
|
supportWebsiteUrl: string | null;
|
|
@@ -22978,6 +24040,11 @@ export interface operations {
|
|
|
22978
24040
|
blockSubaddressing?: boolean;
|
|
22979
24041
|
customBlocklist?: string[];
|
|
22980
24042
|
};
|
|
24043
|
+
passkeySignIn: {
|
|
24044
|
+
enabled?: boolean;
|
|
24045
|
+
showPasskeyButton?: boolean;
|
|
24046
|
+
allowAutofill?: boolean;
|
|
24047
|
+
};
|
|
22981
24048
|
socialConnectors: {
|
|
22982
24049
|
id: string;
|
|
22983
24050
|
target: string;
|
|
@@ -23181,6 +24248,7 @@ export interface operations {
|
|
|
23181
24248
|
};
|
|
23182
24249
|
socialSignIn: {
|
|
23183
24250
|
automaticAccountLinking?: boolean;
|
|
24251
|
+
skipRequiredIdentifiers?: boolean;
|
|
23184
24252
|
};
|
|
23185
24253
|
socialSignInConnectorTargets: string[];
|
|
23186
24254
|
/** @enum {string} */
|
|
@@ -23225,6 +24293,9 @@ export interface operations {
|
|
|
23225
24293
|
/** @enum {string} */
|
|
23226
24294
|
organizationRequiredMfaPolicy?: "NoPrompt" | "Mandatory";
|
|
23227
24295
|
};
|
|
24296
|
+
adaptiveMfa: {
|
|
24297
|
+
enabled?: boolean;
|
|
24298
|
+
};
|
|
23228
24299
|
singleSignOnEnabled: boolean;
|
|
23229
24300
|
supportEmail: string | null;
|
|
23230
24301
|
supportWebsiteUrl: string | null;
|
|
@@ -23241,6 +24312,11 @@ export interface operations {
|
|
|
23241
24312
|
blockSubaddressing?: boolean;
|
|
23242
24313
|
customBlocklist?: string[];
|
|
23243
24314
|
};
|
|
24315
|
+
passkeySignIn: {
|
|
24316
|
+
enabled?: boolean;
|
|
24317
|
+
showPasskeyButton?: boolean;
|
|
24318
|
+
allowAutofill?: boolean;
|
|
24319
|
+
};
|
|
23244
24320
|
socialConnectors: {
|
|
23245
24321
|
id: string;
|
|
23246
24322
|
target: string;
|
|
@@ -23342,6 +24418,55 @@ export interface operations {
|
|
|
23342
24418
|
};
|
|
23343
24419
|
};
|
|
23344
24420
|
};
|
|
24421
|
+
GetWellKnownAccountCenter: {
|
|
24422
|
+
parameters: {
|
|
24423
|
+
query?: never;
|
|
24424
|
+
header?: never;
|
|
24425
|
+
path?: never;
|
|
24426
|
+
cookie?: never;
|
|
24427
|
+
};
|
|
24428
|
+
requestBody?: never;
|
|
24429
|
+
responses: {
|
|
24430
|
+
/** @description The default account center configuration. */
|
|
24431
|
+
200: {
|
|
24432
|
+
headers: {
|
|
24433
|
+
[name: string]: unknown;
|
|
24434
|
+
};
|
|
24435
|
+
content: {
|
|
24436
|
+
"application/json": {
|
|
24437
|
+
tenantId: string;
|
|
24438
|
+
id: string;
|
|
24439
|
+
enabled: boolean;
|
|
24440
|
+
fields: {
|
|
24441
|
+
/** @enum {string} */
|
|
24442
|
+
name?: "Off" | "ReadOnly" | "Edit";
|
|
24443
|
+
/** @enum {string} */
|
|
24444
|
+
avatar?: "Off" | "ReadOnly" | "Edit";
|
|
24445
|
+
/** @enum {string} */
|
|
24446
|
+
profile?: "Off" | "ReadOnly" | "Edit";
|
|
24447
|
+
/** @enum {string} */
|
|
24448
|
+
email?: "Off" | "ReadOnly" | "Edit";
|
|
24449
|
+
/** @enum {string} */
|
|
24450
|
+
phone?: "Off" | "ReadOnly" | "Edit";
|
|
24451
|
+
/** @enum {string} */
|
|
24452
|
+
password?: "Off" | "ReadOnly" | "Edit";
|
|
24453
|
+
/** @enum {string} */
|
|
24454
|
+
username?: "Off" | "ReadOnly" | "Edit";
|
|
24455
|
+
/** @enum {string} */
|
|
24456
|
+
social?: "Off" | "ReadOnly" | "Edit";
|
|
24457
|
+
/** @enum {string} */
|
|
24458
|
+
customData?: "Off" | "ReadOnly" | "Edit";
|
|
24459
|
+
/** @enum {string} */
|
|
24460
|
+
mfa?: "Off" | "ReadOnly" | "Edit";
|
|
24461
|
+
/** @enum {string} */
|
|
24462
|
+
session?: "Off" | "ReadOnly" | "Edit";
|
|
24463
|
+
};
|
|
24464
|
+
webauthnRelatedOrigins: string[];
|
|
24465
|
+
};
|
|
24466
|
+
};
|
|
24467
|
+
};
|
|
24468
|
+
};
|
|
24469
|
+
};
|
|
23345
24470
|
GetStatus: {
|
|
23346
24471
|
parameters: {
|
|
23347
24472
|
query?: never;
|
|
@@ -23488,8 +24613,8 @@ export interface operations {
|
|
|
23488
24613
|
query?: never;
|
|
23489
24614
|
header?: never;
|
|
23490
24615
|
path: {
|
|
23491
|
-
/** @description The
|
|
23492
|
-
id:
|
|
24616
|
+
/** @description The unique identifier of the saml application. */
|
|
24617
|
+
id: components["parameters"]["samlApplicationId-root"];
|
|
23493
24618
|
};
|
|
23494
24619
|
cookie?: never;
|
|
23495
24620
|
};
|
|
@@ -23535,8 +24660,8 @@ export interface operations {
|
|
|
23535
24660
|
};
|
|
23536
24661
|
header?: never;
|
|
23537
24662
|
path: {
|
|
23538
|
-
/** @description The
|
|
23539
|
-
id:
|
|
24663
|
+
/** @description The unique identifier of the saml application. */
|
|
24664
|
+
id: components["parameters"]["samlApplicationId-root"];
|
|
23540
24665
|
};
|
|
23541
24666
|
cookie?: never;
|
|
23542
24667
|
};
|