@logto/api 1.36.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.
@@ -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,6 +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;
3684
+ /** @description The unique identifier of the session. */
3685
+ "sessionId-root": string;
3686
+ /** @description The unique identifier of the session. */
3687
+ sessionId: string;
3640
3688
  /** @description The ID of the SAML application. */
3641
3689
  "samlId-root": string;
3642
3690
  };
@@ -5275,7 +5323,7 @@ export interface operations {
5275
5323
  }[];
5276
5324
  }[];
5277
5325
  /** @description A list of user scope enum value assigned to the application. */
5278
- 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")[];
5279
5327
  };
5280
5328
  };
5281
5329
  };
@@ -5329,7 +5377,7 @@ export interface operations {
5329
5377
  /** @description A list of organization resource scope id to assign to the application. Throws error if any given resource scope is not found. */
5330
5378
  organizationResourceScopes?: string[];
5331
5379
  /** @description A list of user scope enum value to assign to the application. */
5332
- 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")[];
5333
5381
  };
5334
5382
  };
5335
5383
  };
@@ -6433,11 +6481,18 @@ export interface operations {
6433
6481
  code?: string;
6434
6482
  } | {
6435
6483
  id: string;
6484
+ verified: boolean;
6485
+ registrationRpId?: string;
6436
6486
  /** Format: "WebAuthn" */
6437
6487
  type: string;
6438
6488
  userId: string;
6489
+ } | {
6490
+ id: string;
6439
6491
  verified: boolean;
6440
6492
  registrationRpId?: string;
6493
+ /** Format: "SignInWebAuthn" */
6494
+ type: string;
6495
+ userId?: string;
6441
6496
  } | {
6442
6497
  id: string;
6443
6498
  /** Format: "OneTimeToken" */
@@ -6461,6 +6516,69 @@ export interface operations {
6461
6516
  value: string;
6462
6517
  };
6463
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;
6464
6582
  };
6465
6583
  };
6466
6584
  tokenSample?: {
@@ -6482,8 +6600,68 @@ export interface operations {
6482
6600
  environmentVariables?: {
6483
6601
  [key: string]: string;
6484
6602
  };
6485
- /** @description arbitrary */
6486
- contextSample?: Record<string, never>;
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
+ };
6487
6665
  tokenSample?: {
6488
6666
  jti?: string;
6489
6667
  aud?: string | string[];
@@ -6726,11 +6904,18 @@ export interface operations {
6726
6904
  code?: string;
6727
6905
  } | {
6728
6906
  id: string;
6907
+ verified: boolean;
6908
+ registrationRpId?: string;
6729
6909
  /** Format: "WebAuthn" */
6730
6910
  type: string;
6731
6911
  userId: string;
6912
+ } | {
6913
+ id: string;
6732
6914
  verified: boolean;
6733
6915
  registrationRpId?: string;
6916
+ /** Format: "SignInWebAuthn" */
6917
+ type: string;
6918
+ userId?: string;
6734
6919
  } | {
6735
6920
  id: string;
6736
6921
  /** Format: "OneTimeToken" */
@@ -6754,6 +6939,69 @@ export interface operations {
6754
6939
  value: string;
6755
6940
  };
6756
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;
6757
7005
  };
6758
7006
  };
6759
7007
  tokenSample?: {
@@ -6775,8 +7023,68 @@ export interface operations {
6775
7023
  environmentVariables?: {
6776
7024
  [key: string]: string;
6777
7025
  };
6778
- /** @description arbitrary */
6779
- contextSample?: Record<string, never>;
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
+ };
6780
7088
  tokenSample?: {
6781
7089
  jti?: string;
6782
7090
  aud?: string | string[];
@@ -6964,11 +7272,18 @@ export interface operations {
6964
7272
  code?: string;
6965
7273
  } | {
6966
7274
  id: string;
7275
+ verified: boolean;
7276
+ registrationRpId?: string;
6967
7277
  /** Format: "WebAuthn" */
6968
7278
  type: string;
6969
7279
  userId: string;
7280
+ } | {
7281
+ id: string;
6970
7282
  verified: boolean;
6971
7283
  registrationRpId?: string;
7284
+ /** Format: "SignInWebAuthn" */
7285
+ type: string;
7286
+ userId?: string;
6972
7287
  } | {
6973
7288
  id: string;
6974
7289
  /** Format: "OneTimeToken" */
@@ -6992,6 +7307,69 @@ export interface operations {
6992
7307
  value: string;
6993
7308
  };
6994
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;
6995
7373
  };
6996
7374
  };
6997
7375
  tokenSample?: {
@@ -7013,8 +7391,68 @@ export interface operations {
7013
7391
  environmentVariables?: {
7014
7392
  [key: string]: string;
7015
7393
  };
7016
- /** @description arbitrary */
7017
- contextSample?: Record<string, never>;
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
+ };
7018
7456
  tokenSample?: {
7019
7457
  jti?: string;
7020
7458
  aud?: string | string[];
@@ -7299,11 +7737,18 @@ export interface operations {
7299
7737
  code?: string;
7300
7738
  } | {
7301
7739
  id: string;
7740
+ verified: boolean;
7741
+ registrationRpId?: string;
7302
7742
  /** Format: "WebAuthn" */
7303
7743
  type: string;
7304
7744
  userId: string;
7745
+ } | {
7746
+ id: string;
7305
7747
  verified: boolean;
7306
7748
  registrationRpId?: string;
7749
+ /** Format: "SignInWebAuthn" */
7750
+ type: string;
7751
+ userId?: string;
7307
7752
  } | {
7308
7753
  id: string;
7309
7754
  /** Format: "OneTimeToken" */
@@ -7327,6 +7772,69 @@ export interface operations {
7327
7772
  value: string;
7328
7773
  };
7329
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;
7330
7838
  };
7331
7839
  };
7332
7840
  tokenSample?: {
@@ -7348,8 +7856,68 @@ export interface operations {
7348
7856
  environmentVariables?: {
7349
7857
  [key: string]: string;
7350
7858
  };
7351
- /** @description arbitrary */
7352
- contextSample?: Record<string, never>;
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
+ };
7353
7921
  tokenSample?: {
7354
7922
  jti?: string;
7355
7923
  aud?: string | string[];
@@ -7579,11 +8147,18 @@ export interface operations {
7579
8147
  code?: string;
7580
8148
  } | {
7581
8149
  id: string;
8150
+ verified: boolean;
8151
+ registrationRpId?: string;
7582
8152
  /** Format: "WebAuthn" */
7583
8153
  type: string;
7584
8154
  userId: string;
8155
+ } | {
8156
+ id: string;
7585
8157
  verified: boolean;
7586
8158
  registrationRpId?: string;
8159
+ /** Format: "SignInWebAuthn" */
8160
+ type: string;
8161
+ userId?: string;
7587
8162
  } | {
7588
8163
  id: string;
7589
8164
  /** Format: "OneTimeToken" */
@@ -7607,6 +8182,69 @@ export interface operations {
7607
8182
  value: string;
7608
8183
  };
7609
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;
7610
8248
  };
7611
8249
  };
7612
8250
  tokenSample?: {
@@ -7632,8 +8270,68 @@ export interface operations {
7632
8270
  environmentVariables?: {
7633
8271
  [key: string]: string;
7634
8272
  };
7635
- /** @description arbitrary */
7636
- contextSample?: Record<string, never>;
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
+ };
7637
8335
  tokenSample?: {
7638
8336
  jti?: string;
7639
8337
  aud?: string | string[];
@@ -7870,11 +8568,18 @@ export interface operations {
7870
8568
  code?: string;
7871
8569
  } | {
7872
8570
  id: string;
8571
+ verified: boolean;
8572
+ registrationRpId?: string;
7873
8573
  /** Format: "WebAuthn" */
7874
8574
  type: string;
7875
8575
  userId: string;
8576
+ } | {
8577
+ id: string;
7876
8578
  verified: boolean;
7877
8579
  registrationRpId?: string;
8580
+ /** Format: "SignInWebAuthn" */
8581
+ type: string;
8582
+ userId?: string;
7878
8583
  } | {
7879
8584
  id: string;
7880
8585
  /** Format: "OneTimeToken" */
@@ -7898,6 +8603,69 @@ export interface operations {
7898
8603
  value: string;
7899
8604
  };
7900
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;
7901
8669
  };
7902
8670
  };
7903
8671
  } | {
@@ -7915,6 +8683,68 @@ export interface operations {
7915
8683
  /** Format: "ClientCredentials" */
7916
8684
  kind?: string;
7917
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
+ };
7918
8748
  });
7919
8749
  };
7920
8750
  };
@@ -7958,6 +8788,99 @@ export interface operations {
7958
8788
  };
7959
8789
  };
7960
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
+ };
7961
8884
  ListConnectors: {
7962
8885
  parameters: {
7963
8886
  query?: {
@@ -10731,6 +11654,10 @@ export interface operations {
10731
11654
  "application/json": {
10732
11655
  mfa: {
10733
11656
  skipped: boolean;
11657
+ skipMfaOnSignIn: boolean;
11658
+ };
11659
+ passkeySignIn: {
11660
+ skipped: boolean;
10734
11661
  };
10735
11662
  };
10736
11663
  };
@@ -10781,6 +11708,10 @@ export interface operations {
10781
11708
  mfa: {
10782
11709
  /** @description Set whether the user is marked as having skipped MFA binding. */
10783
11710
  skipped: boolean;
11711
+ skipMfaOnSignIn: boolean;
11712
+ };
11713
+ passkeySignIn: {
11714
+ skipped: boolean;
10784
11715
  };
10785
11716
  };
10786
11717
  };
@@ -10795,6 +11726,10 @@ export interface operations {
10795
11726
  "application/json": {
10796
11727
  mfa: {
10797
11728
  skipped: boolean;
11729
+ skipMfaOnSignIn: boolean;
11730
+ };
11731
+ passkeySignIn: {
11732
+ skipped: boolean;
10798
11733
  };
10799
11734
  };
10800
11735
  };
@@ -13066,9 +14001,6 @@ export interface operations {
13066
14001
  architecture?: string;
13067
14002
  };
13068
14003
  };
13069
- injectedHeaders?: {
13070
- [key: string]: string;
13071
- };
13072
14004
  userId?: string;
13073
14005
  applicationId?: string;
13074
14006
  sessionId?: string;
@@ -13159,9 +14091,6 @@ export interface operations {
13159
14091
  architecture?: string;
13160
14092
  };
13161
14093
  };
13162
- injectedHeaders?: {
13163
- [key: string]: string;
13164
- };
13165
14094
  userId?: string;
13166
14095
  applicationId?: string;
13167
14096
  sessionId?: string;
@@ -14601,8 +15530,8 @@ export interface operations {
14601
15530
  id: string;
14602
15531
  name: string;
14603
15532
  /** @enum {string|null} */
14604
- 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;
14605
- 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")[];
14606
15535
  config: {
14607
15536
  url: string;
14608
15537
  headers?: {
@@ -14661,9 +15590,9 @@ export interface operations {
14661
15590
  * @description Use `events` instead.
14662
15591
  * @enum {string}
14663
15592
  */
14664
- 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";
14665
15594
  /** @description An array of hook events. */
14666
- 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")[];
14667
15596
  config: {
14668
15597
  url: string;
14669
15598
  headers?: {
@@ -14692,8 +15621,8 @@ export interface operations {
14692
15621
  id: string;
14693
15622
  name: string;
14694
15623
  /** @enum {string|null} */
14695
- 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;
14696
- 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")[];
14697
15626
  config: {
14698
15627
  url: string;
14699
15628
  headers?: {
@@ -14756,8 +15685,8 @@ export interface operations {
14756
15685
  id: string;
14757
15686
  name: string;
14758
15687
  /** @enum {string|null} */
14759
- 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;
14760
- 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")[];
14761
15690
  config: {
14762
15691
  url: string;
14763
15692
  headers?: {
@@ -14875,9 +15804,9 @@ export interface operations {
14875
15804
  * @description Use `events` instead.
14876
15805
  * @enum {string|null}
14877
15806
  */
14878
- 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;
14879
15808
  /** @description An array of updated hook events. */
14880
- 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")[];
14881
15810
  config?: {
14882
15811
  url: string;
14883
15812
  headers?: {
@@ -14906,8 +15835,8 @@ export interface operations {
14906
15835
  id: string;
14907
15836
  name: string;
14908
15837
  /** @enum {string|null} */
14909
- 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;
14910
- 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")[];
14911
15840
  config: {
14912
15841
  url: string;
14913
15842
  headers?: {
@@ -15013,9 +15942,6 @@ export interface operations {
15013
15942
  architecture?: string;
15014
15943
  };
15015
15944
  };
15016
- injectedHeaders?: {
15017
- [key: string]: string;
15018
- };
15019
15945
  userId?: string;
15020
15946
  applicationId?: string;
15021
15947
  sessionId?: string;
@@ -15064,7 +15990,7 @@ export interface operations {
15064
15990
  content: {
15065
15991
  "application/json": {
15066
15992
  /** @description An array of hook events for testing. */
15067
- 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")[];
15068
15994
  /** @description The hook configuration for testing. */
15069
15995
  config: {
15070
15996
  url: string;
@@ -15153,8 +16079,8 @@ export interface operations {
15153
16079
  id: string;
15154
16080
  name: string;
15155
16081
  /** @enum {string|null} */
15156
- 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;
15157
- 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")[];
15158
16084
  config: {
15159
16085
  url: string;
15160
16086
  headers?: {
@@ -20004,6 +20930,8 @@ export interface operations {
20004
20930
  customData?: "Off" | "ReadOnly" | "Edit";
20005
20931
  /** @enum {string} */
20006
20932
  mfa?: "Off" | "ReadOnly" | "Edit";
20933
+ /** @enum {string} */
20934
+ session?: "Off" | "ReadOnly" | "Edit";
20007
20935
  };
20008
20936
  webauthnRelatedOrigins: string[];
20009
20937
  };
@@ -20059,6 +20987,8 @@ export interface operations {
20059
20987
  customData?: "Off" | "ReadOnly" | "Edit";
20060
20988
  /** @enum {string} */
20061
20989
  mfa?: "Off" | "ReadOnly" | "Edit";
20990
+ /** @enum {string} */
20991
+ session?: "Off" | "ReadOnly" | "Edit";
20062
20992
  };
20063
20993
  /** @description The allowed domains for webauthn. */
20064
20994
  webauthnRelatedOrigins?: string[];
@@ -20097,6 +21027,8 @@ export interface operations {
20097
21027
  customData?: "Off" | "ReadOnly" | "Edit";
20098
21028
  /** @enum {string} */
20099
21029
  mfa?: "Off" | "ReadOnly" | "Edit";
21030
+ /** @enum {string} */
21031
+ session?: "Off" | "ReadOnly" | "Edit";
20100
21032
  };
20101
21033
  webauthnRelatedOrigins: string[];
20102
21034
  };
@@ -20163,14 +21095,14 @@ export interface operations {
20163
21095
  address?: string;
20164
21096
  updated_at?: string;
20165
21097
  username?: string;
21098
+ created_at?: string;
21099
+ custom_data?: string;
21100
+ identities?: string;
21101
+ sso_identities?: string;
20166
21102
  roles?: string;
20167
21103
  organizations?: string;
20168
21104
  organization_data?: string;
20169
21105
  organization_roles?: string;
20170
- custom_data?: string;
20171
- identities?: string;
20172
- sso_identities?: string;
20173
- created_at?: string;
20174
21106
  };
20175
21107
  entityId?: string | null;
20176
21108
  /** @description The Assertion Consumer Service (ACS) URL where the SAML response will be sent. */
@@ -20225,14 +21157,14 @@ export interface operations {
20225
21157
  address?: string;
20226
21158
  updated_at?: string;
20227
21159
  username?: string;
21160
+ created_at?: string;
21161
+ custom_data?: string;
21162
+ identities?: string;
21163
+ sso_identities?: string;
20228
21164
  roles?: string;
20229
21165
  organizations?: string;
20230
21166
  organization_data?: string;
20231
21167
  organization_roles?: string;
20232
- custom_data?: string;
20233
- identities?: string;
20234
- sso_identities?: string;
20235
- created_at?: string;
20236
21168
  };
20237
21169
  entityId: string | null;
20238
21170
  acsUrl: {
@@ -20329,14 +21261,14 @@ export interface operations {
20329
21261
  address?: string;
20330
21262
  updated_at?: string;
20331
21263
  username?: string;
21264
+ created_at?: string;
21265
+ custom_data?: string;
21266
+ identities?: string;
21267
+ sso_identities?: string;
20332
21268
  roles?: string;
20333
21269
  organizations?: string;
20334
21270
  organization_data?: string;
20335
21271
  organization_roles?: string;
20336
- custom_data?: string;
20337
- identities?: string;
20338
- sso_identities?: string;
20339
- created_at?: string;
20340
21272
  };
20341
21273
  entityId: string | null;
20342
21274
  acsUrl: {
@@ -20486,14 +21418,14 @@ export interface operations {
20486
21418
  address?: string;
20487
21419
  updated_at?: string;
20488
21420
  username?: string;
21421
+ created_at?: string;
21422
+ custom_data?: string;
21423
+ identities?: string;
21424
+ sso_identities?: string;
20489
21425
  roles?: string;
20490
21426
  organizations?: string;
20491
21427
  organization_data?: string;
20492
21428
  organization_roles?: string;
20493
- custom_data?: string;
20494
- identities?: string;
20495
- sso_identities?: string;
20496
- created_at?: string;
20497
21429
  };
20498
21430
  entityId?: string | null;
20499
21431
  /** @description The Assertion Consumer Service (ACS) URL. */
@@ -20545,14 +21477,14 @@ export interface operations {
20545
21477
  address?: string;
20546
21478
  updated_at?: string;
20547
21479
  username?: string;
21480
+ created_at?: string;
21481
+ custom_data?: string;
21482
+ identities?: string;
21483
+ sso_identities?: string;
20548
21484
  roles?: string;
20549
21485
  organizations?: string;
20550
21486
  organization_data?: string;
20551
21487
  organization_roles?: string;
20552
- custom_data?: string;
20553
- identities?: string;
20554
- sso_identities?: string;
20555
- created_at?: string;
20556
21488
  };
20557
21489
  entityId: string | null;
20558
21490
  acsUrl: {
@@ -23486,6 +24418,55 @@ export interface operations {
23486
24418
  };
23487
24419
  };
23488
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
+ };
23489
24470
  GetStatus: {
23490
24471
  parameters: {
23491
24472
  query?: never;