authhero 8.20.0 → 8.21.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.
Files changed (40) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +136 -136
  3. package/dist/authhero.d.ts +182 -115
  4. package/dist/authhero.mjs +14055 -16300
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  7. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  8. package/dist/types/index.d.ts +182 -115
  9. package/dist/types/routes/auth-api/index.d.ts +28 -28
  10. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  11. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  12. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  13. package/dist/types/routes/auth-api/token.d.ts +10 -10
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/actions.d.ts +3 -1
  16. package/dist/types/routes/management-api/branding.d.ts +1 -1
  17. package/dist/types/routes/management-api/client-grants.d.ts +24 -8
  18. package/dist/types/routes/management-api/clients.d.ts +14 -13
  19. package/dist/types/routes/management-api/connections.d.ts +16 -15
  20. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  21. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  22. package/dist/types/routes/management-api/flows.d.ts +1 -0
  23. package/dist/types/routes/management-api/forms.d.ts +1 -0
  24. package/dist/types/routes/management-api/grants.d.ts +1 -0
  25. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  26. package/dist/types/routes/management-api/hooks.d.ts +1 -0
  27. package/dist/types/routes/management-api/index.d.ts +152 -85
  28. package/dist/types/routes/management-api/logs.d.ts +4 -3
  29. package/dist/types/routes/management-api/organizations.d.ts +37 -3
  30. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  31. package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
  32. package/dist/types/routes/management-api/roles.d.ts +2 -0
  33. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  34. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  35. package/dist/types/routes/management-api/users.d.ts +7 -2
  36. package/dist/types/routes/universal-login/common.d.ts +8 -8
  37. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  38. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  39. package/dist/types/routes/universal-login/index.d.ts +2 -2
  40. package/package.json +5 -5
@@ -62,8 +62,8 @@ export declare function init(config: AuthHeroConfig): {
62
62
  $get: {
63
63
  input: {
64
64
  query: {
65
- include_password_hashes?: "true" | "false" | undefined;
66
- gzip?: "true" | "false" | undefined;
65
+ include_password_hashes?: "false" | "true" | undefined;
66
+ gzip?: "false" | "true" | undefined;
67
67
  };
68
68
  } & {
69
69
  header: {
@@ -76,8 +76,8 @@ export declare function init(config: AuthHeroConfig): {
76
76
  } | {
77
77
  input: {
78
78
  query: {
79
- include_password_hashes?: "true" | "false" | undefined;
80
- gzip?: "true" | "false" | undefined;
79
+ include_password_hashes?: "false" | "true" | undefined;
80
+ gzip?: "false" | "true" | undefined;
81
81
  };
82
82
  } & {
83
83
  header: {
@@ -96,7 +96,7 @@ export declare function init(config: AuthHeroConfig): {
96
96
  $post: {
97
97
  input: {
98
98
  query: {
99
- include_password_hashes?: "true" | "false" | undefined;
99
+ include_password_hashes?: "false" | "true" | undefined;
100
100
  };
101
101
  } & {
102
102
  header: {
@@ -290,7 +290,7 @@ export declare function init(config: AuthHeroConfig): {
290
290
  };
291
291
  };
292
292
  output: {
293
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
293
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
294
294
  enabled: boolean;
295
295
  trial_expired?: boolean | undefined;
296
296
  }[];
@@ -445,7 +445,7 @@ export declare function init(config: AuthHeroConfig): {
445
445
  $get: {
446
446
  input: {
447
447
  param: {
448
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
448
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
449
449
  };
450
450
  } & {
451
451
  header: {
@@ -453,7 +453,7 @@ export declare function init(config: AuthHeroConfig): {
453
453
  };
454
454
  };
455
455
  output: {
456
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
456
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
457
457
  enabled: boolean;
458
458
  trial_expired?: boolean | undefined;
459
459
  };
@@ -466,7 +466,7 @@ export declare function init(config: AuthHeroConfig): {
466
466
  $put: {
467
467
  input: {
468
468
  param: {
469
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
469
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
470
470
  };
471
471
  } & {
472
472
  header: {
@@ -478,7 +478,7 @@ export declare function init(config: AuthHeroConfig): {
478
478
  };
479
479
  };
480
480
  output: {
481
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
481
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
482
482
  enabled: boolean;
483
483
  trial_expired?: boolean | undefined;
484
484
  };
@@ -608,6 +608,39 @@ export declare function init(config: AuthHeroConfig): {
608
608
  } | undefined;
609
609
  }[];
610
610
  total?: number | undefined;
611
+ next?: string | undefined;
612
+ } | {
613
+ organizations: {
614
+ created_at: string;
615
+ updated_at: string;
616
+ id: string;
617
+ name: string;
618
+ display_name?: string | undefined;
619
+ branding?: {
620
+ logo_url?: string | undefined;
621
+ colors?: {
622
+ primary?: string | undefined;
623
+ page_background?: string | undefined;
624
+ } | undefined;
625
+ } | undefined;
626
+ metadata?: {
627
+ [x: string]: any;
628
+ } | undefined;
629
+ enabled_connections?: {
630
+ connection_id: string;
631
+ assign_membership_on_login: boolean;
632
+ show_as_button: boolean;
633
+ is_signup_enabled: boolean;
634
+ }[] | undefined;
635
+ token_quota?: {
636
+ client_credentials?: {
637
+ enforce: boolean;
638
+ per_day: number;
639
+ per_hour: number;
640
+ } | undefined;
641
+ } | undefined;
642
+ }[];
643
+ next?: string | undefined;
611
644
  };
612
645
  outputFormat: "json";
613
646
  status: 200;
@@ -1224,10 +1257,10 @@ export declare function init(config: AuthHeroConfig): {
1224
1257
  email?: string | undefined;
1225
1258
  };
1226
1259
  id?: string | undefined;
1227
- app_metadata?: Record<string, any> | undefined;
1228
- user_metadata?: Record<string, any> | undefined;
1229
1260
  connection_id?: string | undefined;
1230
1261
  roles?: string[] | undefined;
1262
+ app_metadata?: Record<string, any> | undefined;
1263
+ user_metadata?: Record<string, any> | undefined;
1231
1264
  ttl_sec?: number | undefined;
1232
1265
  send_invitation_email?: boolean | undefined;
1233
1266
  };
@@ -1328,6 +1361,7 @@ export declare function init(config: AuthHeroConfig): {
1328
1361
  updated_at?: string | undefined;
1329
1362
  }[];
1330
1363
  total?: number | undefined;
1364
+ next?: string | undefined;
1331
1365
  };
1332
1366
  outputFormat: "json";
1333
1367
  status: 200;
@@ -1411,8 +1445,8 @@ export declare function init(config: AuthHeroConfig): {
1411
1445
  };
1412
1446
  } & {
1413
1447
  json: {
1414
- show_as_button?: boolean | undefined;
1415
1448
  assign_membership_on_login?: boolean | undefined;
1449
+ show_as_button?: boolean | undefined;
1416
1450
  is_signup_enabled?: boolean | undefined;
1417
1451
  };
1418
1452
  };
@@ -1540,6 +1574,7 @@ export declare function init(config: AuthHeroConfig): {
1540
1574
  updated_at?: string | undefined;
1541
1575
  }[];
1542
1576
  total?: number | undefined;
1577
+ next?: string | undefined;
1543
1578
  };
1544
1579
  outputFormat: "json";
1545
1580
  status: 200;
@@ -1811,6 +1846,7 @@ export declare function init(config: AuthHeroConfig): {
1811
1846
  updated_at?: string | undefined;
1812
1847
  }[];
1813
1848
  total?: number | undefined;
1849
+ next?: string | undefined;
1814
1850
  };
1815
1851
  outputFormat: "json";
1816
1852
  status: 200;
@@ -1966,6 +2002,7 @@ export declare function init(config: AuthHeroConfig): {
1966
2002
  created_at: string;
1967
2003
  }[];
1968
2004
  total?: number | undefined;
2005
+ next?: string | undefined;
1969
2006
  };
1970
2007
  outputFormat: "json";
1971
2008
  status: 200;
@@ -2143,6 +2180,7 @@ export declare function init(config: AuthHeroConfig): {
2143
2180
  id: string;
2144
2181
  }[];
2145
2182
  total?: number | undefined;
2183
+ next?: string | undefined;
2146
2184
  };
2147
2185
  outputFormat: "json";
2148
2186
  status: 200;
@@ -3671,6 +3709,7 @@ export declare function init(config: AuthHeroConfig): {
3671
3709
  } | undefined;
3672
3710
  }[];
3673
3711
  total?: number | undefined;
3712
+ next?: string | undefined;
3674
3713
  };
3675
3714
  outputFormat: "json";
3676
3715
  status: 200;
@@ -6882,7 +6921,7 @@ export declare function init(config: AuthHeroConfig): {
6882
6921
  };
6883
6922
  };
6884
6923
  output: {
6885
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6924
+ prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6886
6925
  language: string;
6887
6926
  }[];
6888
6927
  outputFormat: "json";
@@ -6920,7 +6959,7 @@ export declare function init(config: AuthHeroConfig): {
6920
6959
  $get: {
6921
6960
  input: {
6922
6961
  param: {
6923
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6962
+ prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6924
6963
  language: string;
6925
6964
  };
6926
6965
  } & {
@@ -6942,7 +6981,7 @@ export declare function init(config: AuthHeroConfig): {
6942
6981
  $put: {
6943
6982
  input: {
6944
6983
  param: {
6945
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6984
+ prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6946
6985
  language: string;
6947
6986
  };
6948
6987
  } & {
@@ -6966,7 +7005,7 @@ export declare function init(config: AuthHeroConfig): {
6966
7005
  $delete: {
6967
7006
  input: {
6968
7007
  param: {
6969
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7008
+ prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6970
7009
  language: string;
6971
7010
  };
6972
7011
  } & {
@@ -7058,7 +7097,7 @@ export declare function init(config: AuthHeroConfig): {
7058
7097
  active?: boolean | undefined;
7059
7098
  } | undefined;
7060
7099
  signup?: {
7061
- status?: "optional" | "required" | "disabled" | undefined;
7100
+ status?: "required" | "optional" | "disabled" | undefined;
7062
7101
  verification?: {
7063
7102
  active?: boolean | undefined;
7064
7103
  } | undefined;
@@ -7075,7 +7114,7 @@ export declare function init(config: AuthHeroConfig): {
7075
7114
  active?: boolean | undefined;
7076
7115
  } | undefined;
7077
7116
  signup?: {
7078
- status?: "optional" | "required" | "disabled" | undefined;
7117
+ status?: "required" | "optional" | "disabled" | undefined;
7079
7118
  } | undefined;
7080
7119
  validation?: {
7081
7120
  max_length?: number | undefined;
@@ -7092,7 +7131,7 @@ export declare function init(config: AuthHeroConfig): {
7092
7131
  active?: boolean | undefined;
7093
7132
  } | undefined;
7094
7133
  signup?: {
7095
- status?: "optional" | "required" | "disabled" | undefined;
7134
+ status?: "required" | "optional" | "disabled" | undefined;
7096
7135
  } | undefined;
7097
7136
  } | undefined;
7098
7137
  } | undefined;
@@ -7192,7 +7231,7 @@ export declare function init(config: AuthHeroConfig): {
7192
7231
  active?: boolean | undefined;
7193
7232
  } | undefined;
7194
7233
  signup?: {
7195
- status?: "optional" | "required" | "disabled" | undefined;
7234
+ status?: "required" | "optional" | "disabled" | undefined;
7196
7235
  verification?: {
7197
7236
  active?: boolean | undefined;
7198
7237
  } | undefined;
@@ -7209,7 +7248,7 @@ export declare function init(config: AuthHeroConfig): {
7209
7248
  active?: boolean | undefined;
7210
7249
  } | undefined;
7211
7250
  signup?: {
7212
- status?: "optional" | "required" | "disabled" | undefined;
7251
+ status?: "required" | "optional" | "disabled" | undefined;
7213
7252
  } | undefined;
7214
7253
  validation?: {
7215
7254
  max_length?: number | undefined;
@@ -7226,7 +7265,7 @@ export declare function init(config: AuthHeroConfig): {
7226
7265
  active?: boolean | undefined;
7227
7266
  } | undefined;
7228
7267
  signup?: {
7229
- status?: "optional" | "required" | "disabled" | undefined;
7268
+ status?: "required" | "optional" | "disabled" | undefined;
7230
7269
  } | undefined;
7231
7270
  } | undefined;
7232
7271
  } | undefined;
@@ -7265,6 +7304,7 @@ export declare function init(config: AuthHeroConfig): {
7265
7304
  is_system?: boolean | undefined;
7266
7305
  }[];
7267
7306
  total?: number | undefined;
7307
+ next?: string | undefined;
7268
7308
  };
7269
7309
  outputFormat: "json";
7270
7310
  status: 200;
@@ -7341,7 +7381,7 @@ export declare function init(config: AuthHeroConfig): {
7341
7381
  active?: boolean | undefined;
7342
7382
  } | undefined;
7343
7383
  signup?: {
7344
- status?: "optional" | "required" | "disabled" | undefined;
7384
+ status?: "required" | "optional" | "disabled" | undefined;
7345
7385
  verification?: {
7346
7386
  active?: boolean | undefined;
7347
7387
  } | undefined;
@@ -7358,7 +7398,7 @@ export declare function init(config: AuthHeroConfig): {
7358
7398
  active?: boolean | undefined;
7359
7399
  } | undefined;
7360
7400
  signup?: {
7361
- status?: "optional" | "required" | "disabled" | undefined;
7401
+ status?: "required" | "optional" | "disabled" | undefined;
7362
7402
  } | undefined;
7363
7403
  validation?: {
7364
7404
  max_length?: number | undefined;
@@ -7375,7 +7415,7 @@ export declare function init(config: AuthHeroConfig): {
7375
7415
  active?: boolean | undefined;
7376
7416
  } | undefined;
7377
7417
  signup?: {
7378
- status?: "optional" | "required" | "disabled" | undefined;
7418
+ status?: "required" | "optional" | "disabled" | undefined;
7379
7419
  } | undefined;
7380
7420
  } | undefined;
7381
7421
  } | undefined;
@@ -7520,7 +7560,7 @@ export declare function init(config: AuthHeroConfig): {
7520
7560
  active?: boolean | undefined;
7521
7561
  } | undefined;
7522
7562
  signup?: {
7523
- status?: "optional" | "required" | "disabled" | undefined;
7563
+ status?: "required" | "optional" | "disabled" | undefined;
7524
7564
  verification?: {
7525
7565
  active?: boolean | undefined;
7526
7566
  } | undefined;
@@ -7537,7 +7577,7 @@ export declare function init(config: AuthHeroConfig): {
7537
7577
  active?: boolean | undefined;
7538
7578
  } | undefined;
7539
7579
  signup?: {
7540
- status?: "optional" | "required" | "disabled" | undefined;
7580
+ status?: "required" | "optional" | "disabled" | undefined;
7541
7581
  } | undefined;
7542
7582
  validation?: {
7543
7583
  max_length?: number | undefined;
@@ -7554,7 +7594,7 @@ export declare function init(config: AuthHeroConfig): {
7554
7594
  active?: boolean | undefined;
7555
7595
  } | undefined;
7556
7596
  signup?: {
7557
- status?: "optional" | "required" | "disabled" | undefined;
7597
+ status?: "required" | "optional" | "disabled" | undefined;
7558
7598
  } | undefined;
7559
7599
  } | undefined;
7560
7600
  } | undefined;
@@ -7678,7 +7718,7 @@ export declare function init(config: AuthHeroConfig): {
7678
7718
  active?: boolean | undefined;
7679
7719
  } | undefined;
7680
7720
  signup?: {
7681
- status?: "optional" | "required" | "disabled" | undefined;
7721
+ status?: "required" | "optional" | "disabled" | undefined;
7682
7722
  verification?: {
7683
7723
  active?: boolean | undefined;
7684
7724
  } | undefined;
@@ -7695,7 +7735,7 @@ export declare function init(config: AuthHeroConfig): {
7695
7735
  active?: boolean | undefined;
7696
7736
  } | undefined;
7697
7737
  signup?: {
7698
- status?: "optional" | "required" | "disabled" | undefined;
7738
+ status?: "required" | "optional" | "disabled" | undefined;
7699
7739
  } | undefined;
7700
7740
  validation?: {
7701
7741
  max_length?: number | undefined;
@@ -7712,7 +7752,7 @@ export declare function init(config: AuthHeroConfig): {
7712
7752
  active?: boolean | undefined;
7713
7753
  } | undefined;
7714
7754
  signup?: {
7715
- status?: "optional" | "required" | "disabled" | undefined;
7755
+ status?: "required" | "optional" | "disabled" | undefined;
7716
7756
  } | undefined;
7717
7757
  } | undefined;
7718
7758
  } | undefined;
@@ -8103,6 +8143,7 @@ export declare function init(config: AuthHeroConfig): {
8103
8143
  } | undefined;
8104
8144
  })[];
8105
8145
  total?: number | undefined;
8146
+ next?: string | undefined;
8106
8147
  };
8107
8148
  outputFormat: "json";
8108
8149
  status: 200;
@@ -9117,7 +9158,7 @@ export declare function init(config: AuthHeroConfig): {
9117
9158
  };
9118
9159
  };
9119
9160
  output: {
9120
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9161
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9121
9162
  date: string;
9122
9163
  isMobile: boolean;
9123
9164
  log_id: string;
@@ -9156,7 +9197,7 @@ export declare function init(config: AuthHeroConfig): {
9156
9197
  limit: number;
9157
9198
  length: number;
9158
9199
  logs: {
9159
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9200
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9160
9201
  date: string;
9161
9202
  isMobile: boolean;
9162
9203
  log_id: string;
@@ -9192,6 +9233,7 @@ export declare function init(config: AuthHeroConfig): {
9192
9233
  } | undefined;
9193
9234
  }[];
9194
9235
  total?: number | undefined;
9236
+ next?: string | undefined;
9195
9237
  };
9196
9238
  outputFormat: "json";
9197
9239
  status: 200;
@@ -9210,7 +9252,7 @@ export declare function init(config: AuthHeroConfig): {
9210
9252
  };
9211
9253
  };
9212
9254
  output: {
9213
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9255
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9214
9256
  date: string;
9215
9257
  isMobile: boolean;
9216
9258
  log_id: string;
@@ -9313,6 +9355,7 @@ export declare function init(config: AuthHeroConfig): {
9313
9355
  audience?: string | undefined;
9314
9356
  }[];
9315
9357
  total?: number | undefined;
9358
+ next?: string | undefined;
9316
9359
  };
9317
9360
  outputFormat: "json";
9318
9361
  status: 200;
@@ -9365,7 +9408,7 @@ export declare function init(config: AuthHeroConfig): {
9365
9408
  audience?: string | undefined;
9366
9409
  client_id?: string | undefined;
9367
9410
  allow_any_organization?: string | undefined;
9368
- subject_type?: "user" | "client" | undefined;
9411
+ subject_type?: "client" | "user" | undefined;
9369
9412
  };
9370
9413
  } & {
9371
9414
  header: {
@@ -9380,7 +9423,7 @@ export declare function init(config: AuthHeroConfig): {
9380
9423
  organization_usage?: "deny" | "allow" | "require" | undefined;
9381
9424
  allow_any_organization?: boolean | undefined;
9382
9425
  is_system?: boolean | undefined;
9383
- subject_type?: "user" | "client" | undefined;
9426
+ subject_type?: "client" | "user" | undefined;
9384
9427
  authorization_details_types?: string[] | undefined;
9385
9428
  created_at?: string | undefined;
9386
9429
  updated_at?: string | undefined;
@@ -9396,12 +9439,28 @@ export declare function init(config: AuthHeroConfig): {
9396
9439
  organization_usage?: "deny" | "allow" | "require" | undefined;
9397
9440
  allow_any_organization?: boolean | undefined;
9398
9441
  is_system?: boolean | undefined;
9399
- subject_type?: "user" | "client" | undefined;
9442
+ subject_type?: "client" | "user" | undefined;
9400
9443
  authorization_details_types?: string[] | undefined;
9401
9444
  created_at?: string | undefined;
9402
9445
  updated_at?: string | undefined;
9403
9446
  }[];
9404
9447
  total?: number | undefined;
9448
+ next?: string | undefined;
9449
+ } | {
9450
+ client_grants: {
9451
+ id: string;
9452
+ client_id: string;
9453
+ audience: string;
9454
+ scope?: string[] | undefined;
9455
+ organization_usage?: "deny" | "allow" | "require" | undefined;
9456
+ allow_any_organization?: boolean | undefined;
9457
+ is_system?: boolean | undefined;
9458
+ subject_type?: "client" | "user" | undefined;
9459
+ authorization_details_types?: string[] | undefined;
9460
+ created_at?: string | undefined;
9461
+ updated_at?: string | undefined;
9462
+ }[];
9463
+ next?: string | undefined;
9405
9464
  };
9406
9465
  outputFormat: "json";
9407
9466
  status: 200;
@@ -9427,7 +9486,7 @@ export declare function init(config: AuthHeroConfig): {
9427
9486
  organization_usage?: "deny" | "allow" | "require" | undefined;
9428
9487
  allow_any_organization?: boolean | undefined;
9429
9488
  is_system?: boolean | undefined;
9430
- subject_type?: "user" | "client" | undefined;
9489
+ subject_type?: "client" | "user" | undefined;
9431
9490
  authorization_details_types?: string[] | undefined;
9432
9491
  created_at?: string | undefined;
9433
9492
  updated_at?: string | undefined;
@@ -9472,7 +9531,7 @@ export declare function init(config: AuthHeroConfig): {
9472
9531
  organization_usage?: "deny" | "allow" | "require" | undefined;
9473
9532
  allow_any_organization?: boolean | undefined;
9474
9533
  is_system?: boolean | undefined;
9475
- subject_type?: "user" | "client" | undefined;
9534
+ subject_type?: "client" | "user" | undefined;
9476
9535
  authorization_details_types?: string[] | undefined;
9477
9536
  };
9478
9537
  };
@@ -9484,7 +9543,7 @@ export declare function init(config: AuthHeroConfig): {
9484
9543
  organization_usage?: "deny" | "allow" | "require" | undefined;
9485
9544
  allow_any_organization?: boolean | undefined;
9486
9545
  is_system?: boolean | undefined;
9487
- subject_type?: "user" | "client" | undefined;
9546
+ subject_type?: "client" | "user" | undefined;
9488
9547
  authorization_details_types?: string[] | undefined;
9489
9548
  created_at?: string | undefined;
9490
9549
  updated_at?: string | undefined;
@@ -9508,7 +9567,7 @@ export declare function init(config: AuthHeroConfig): {
9508
9567
  organization_usage?: "deny" | "allow" | "require" | undefined;
9509
9568
  allow_any_organization?: boolean | undefined;
9510
9569
  is_system?: boolean | undefined;
9511
- subject_type?: "user" | "client" | undefined;
9570
+ subject_type?: "client" | "user" | undefined;
9512
9571
  authorization_details_types?: string[] | undefined;
9513
9572
  };
9514
9573
  };
@@ -9520,7 +9579,7 @@ export declare function init(config: AuthHeroConfig): {
9520
9579
  organization_usage?: "deny" | "allow" | "require" | undefined;
9521
9580
  allow_any_organization?: boolean | undefined;
9522
9581
  is_system?: boolean | undefined;
9523
- subject_type?: "user" | "client" | undefined;
9582
+ subject_type?: "client" | "user" | undefined;
9524
9583
  authorization_details_types?: string[] | undefined;
9525
9584
  created_at?: string | undefined;
9526
9585
  updated_at?: string | undefined;
@@ -9598,7 +9657,7 @@ export declare function init(config: AuthHeroConfig): {
9598
9657
  addons?: {
9599
9658
  [x: string]: any;
9600
9659
  } | undefined;
9601
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9660
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9602
9661
  client_metadata?: {
9603
9662
  [x: string]: string;
9604
9663
  } | undefined;
@@ -9694,7 +9753,7 @@ export declare function init(config: AuthHeroConfig): {
9694
9753
  addons?: {
9695
9754
  [x: string]: any;
9696
9755
  } | undefined;
9697
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9756
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9698
9757
  client_metadata?: {
9699
9758
  [x: string]: string;
9700
9759
  } | undefined;
@@ -9739,6 +9798,7 @@ export declare function init(config: AuthHeroConfig): {
9739
9798
  user_linking_mode?: "builtin" | "off" | undefined;
9740
9799
  }[];
9741
9800
  total?: number | undefined;
9801
+ next?: string | undefined;
9742
9802
  };
9743
9803
  outputFormat: "json";
9744
9804
  status: 200;
@@ -9805,7 +9865,7 @@ export declare function init(config: AuthHeroConfig): {
9805
9865
  addons?: {
9806
9866
  [x: string]: any;
9807
9867
  } | undefined;
9808
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9868
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9809
9869
  client_metadata?: {
9810
9870
  [x: string]: string;
9811
9871
  } | undefined;
@@ -9915,7 +9975,7 @@ export declare function init(config: AuthHeroConfig): {
9915
9975
  custom_login_page_preview?: string | undefined;
9916
9976
  form_template?: string | undefined;
9917
9977
  addons?: Record<string, any> | undefined;
9918
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9978
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9919
9979
  client_metadata?: Record<string, string> | undefined;
9920
9980
  hide_sign_up_disabled_error?: boolean | undefined;
9921
9981
  mobile?: Record<string, any> | undefined;
@@ -9995,7 +10055,7 @@ export declare function init(config: AuthHeroConfig): {
9995
10055
  addons?: {
9996
10056
  [x: string]: any;
9997
10057
  } | undefined;
9998
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10058
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9999
10059
  client_metadata?: {
10000
10060
  [x: string]: string;
10001
10061
  } | undefined;
@@ -10084,7 +10144,7 @@ export declare function init(config: AuthHeroConfig): {
10084
10144
  custom_login_page_preview?: string | undefined;
10085
10145
  form_template?: string | undefined;
10086
10146
  addons?: Record<string, any> | undefined;
10087
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10147
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10088
10148
  client_metadata?: Record<string, string> | undefined;
10089
10149
  hide_sign_up_disabled_error?: boolean | undefined;
10090
10150
  mobile?: Record<string, any> | undefined;
@@ -10164,7 +10224,7 @@ export declare function init(config: AuthHeroConfig): {
10164
10224
  addons?: {
10165
10225
  [x: string]: any;
10166
10226
  } | undefined;
10167
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10227
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10168
10228
  client_metadata?: {
10169
10229
  [x: string]: string;
10170
10230
  } | undefined;
@@ -10286,7 +10346,7 @@ export declare function init(config: AuthHeroConfig): {
10286
10346
  active?: boolean | undefined;
10287
10347
  } | undefined;
10288
10348
  signup?: {
10289
- status?: "optional" | "required" | "disabled" | undefined;
10349
+ status?: "required" | "optional" | "disabled" | undefined;
10290
10350
  verification?: {
10291
10351
  active?: boolean | undefined;
10292
10352
  } | undefined;
@@ -10303,7 +10363,7 @@ export declare function init(config: AuthHeroConfig): {
10303
10363
  active?: boolean | undefined;
10304
10364
  } | undefined;
10305
10365
  signup?: {
10306
- status?: "optional" | "required" | "disabled" | undefined;
10366
+ status?: "required" | "optional" | "disabled" | undefined;
10307
10367
  } | undefined;
10308
10368
  validation?: {
10309
10369
  max_length?: number | undefined;
@@ -10320,7 +10380,7 @@ export declare function init(config: AuthHeroConfig): {
10320
10380
  active?: boolean | undefined;
10321
10381
  } | undefined;
10322
10382
  signup?: {
10323
- status?: "optional" | "required" | "disabled" | undefined;
10383
+ status?: "required" | "optional" | "disabled" | undefined;
10324
10384
  } | undefined;
10325
10385
  } | undefined;
10326
10386
  } | undefined;
@@ -10440,7 +10500,7 @@ export declare function init(config: AuthHeroConfig): {
10440
10500
  active?: boolean | undefined;
10441
10501
  } | undefined;
10442
10502
  signup?: {
10443
- status?: "optional" | "required" | "disabled" | undefined;
10503
+ status?: "required" | "optional" | "disabled" | undefined;
10444
10504
  verification?: {
10445
10505
  active?: boolean | undefined;
10446
10506
  } | undefined;
@@ -10457,7 +10517,7 @@ export declare function init(config: AuthHeroConfig): {
10457
10517
  active?: boolean | undefined;
10458
10518
  } | undefined;
10459
10519
  signup?: {
10460
- status?: "optional" | "required" | "disabled" | undefined;
10520
+ status?: "required" | "optional" | "disabled" | undefined;
10461
10521
  } | undefined;
10462
10522
  validation?: {
10463
10523
  max_length?: number | undefined;
@@ -10474,7 +10534,7 @@ export declare function init(config: AuthHeroConfig): {
10474
10534
  active?: boolean | undefined;
10475
10535
  } | undefined;
10476
10536
  signup?: {
10477
- status?: "optional" | "required" | "disabled" | undefined;
10537
+ status?: "required" | "optional" | "disabled" | undefined;
10478
10538
  } | undefined;
10479
10539
  } | undefined;
10480
10540
  } | undefined;
@@ -10852,6 +10912,7 @@ export declare function init(config: AuthHeroConfig): {
10852
10912
  }[] | undefined;
10853
10913
  }[];
10854
10914
  total?: number | undefined;
10915
+ next?: string | undefined;
10855
10916
  };
10856
10917
  outputFormat: "json";
10857
10918
  status: 200;
@@ -11321,6 +11382,7 @@ export declare function init(config: AuthHeroConfig): {
11321
11382
  updated_at?: string | undefined;
11322
11383
  }[];
11323
11384
  total?: number | undefined;
11385
+ next?: string | undefined;
11324
11386
  };
11325
11387
  outputFormat: "json";
11326
11388
  status: 200;
@@ -11398,6 +11460,7 @@ export declare function init(config: AuthHeroConfig): {
11398
11460
  idle_expires_at?: string | undefined;
11399
11461
  }[];
11400
11462
  total?: number | undefined;
11463
+ next?: string | undefined;
11401
11464
  };
11402
11465
  outputFormat: "json";
11403
11466
  status: 200;
@@ -11428,7 +11491,7 @@ export declare function init(config: AuthHeroConfig): {
11428
11491
  };
11429
11492
  };
11430
11493
  output: {
11431
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11494
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11432
11495
  date: string;
11433
11496
  isMobile: boolean;
11434
11497
  log_id: string;
@@ -11467,7 +11530,7 @@ export declare function init(config: AuthHeroConfig): {
11467
11530
  limit: number;
11468
11531
  length: number;
11469
11532
  logs: {
11470
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11533
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11471
11534
  date: string;
11472
11535
  isMobile: boolean;
11473
11536
  log_id: string;
@@ -11503,6 +11566,7 @@ export declare function init(config: AuthHeroConfig): {
11503
11566
  } | undefined;
11504
11567
  }[];
11505
11568
  total?: number | undefined;
11569
+ next?: string | undefined;
11506
11570
  };
11507
11571
  outputFormat: "json";
11508
11572
  status: 200;
@@ -11752,6 +11816,7 @@ export declare function init(config: AuthHeroConfig): {
11752
11816
  } | undefined;
11753
11817
  }[];
11754
11818
  total?: number | undefined;
11819
+ next?: string | undefined;
11755
11820
  };
11756
11821
  outputFormat: "json";
11757
11822
  status: 200;
@@ -11784,7 +11849,7 @@ export declare function init(config: AuthHeroConfig): {
11784
11849
  };
11785
11850
  } & {
11786
11851
  json: {
11787
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11852
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11788
11853
  body: string;
11789
11854
  from: string;
11790
11855
  subject: string;
@@ -11805,7 +11870,7 @@ export declare function init(config: AuthHeroConfig): {
11805
11870
  };
11806
11871
  } & {
11807
11872
  json: {
11808
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11873
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11809
11874
  body: string;
11810
11875
  from: string;
11811
11876
  subject: string;
@@ -11817,7 +11882,7 @@ export declare function init(config: AuthHeroConfig): {
11817
11882
  };
11818
11883
  };
11819
11884
  output: {
11820
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11885
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11821
11886
  body: string;
11822
11887
  from: string;
11823
11888
  subject: string;
@@ -11840,7 +11905,7 @@ export declare function init(config: AuthHeroConfig): {
11840
11905
  };
11841
11906
  };
11842
11907
  output: {
11843
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11908
+ name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11844
11909
  body: string;
11845
11910
  subject: string;
11846
11911
  }[];
@@ -11853,7 +11918,7 @@ export declare function init(config: AuthHeroConfig): {
11853
11918
  $get: {
11854
11919
  input: {
11855
11920
  param: {
11856
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11921
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11857
11922
  };
11858
11923
  } & {
11859
11924
  header: {
@@ -11866,7 +11931,7 @@ export declare function init(config: AuthHeroConfig): {
11866
11931
  } | {
11867
11932
  input: {
11868
11933
  param: {
11869
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11934
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11870
11935
  };
11871
11936
  } & {
11872
11937
  header: {
@@ -11874,7 +11939,7 @@ export declare function init(config: AuthHeroConfig): {
11874
11939
  };
11875
11940
  };
11876
11941
  output: {
11877
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11942
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11878
11943
  body: string;
11879
11944
  from: string;
11880
11945
  subject: string;
@@ -11893,7 +11958,7 @@ export declare function init(config: AuthHeroConfig): {
11893
11958
  $put: {
11894
11959
  input: {
11895
11960
  param: {
11896
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11961
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11897
11962
  };
11898
11963
  } & {
11899
11964
  header: {
@@ -11901,7 +11966,7 @@ export declare function init(config: AuthHeroConfig): {
11901
11966
  };
11902
11967
  } & {
11903
11968
  json: {
11904
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11969
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11905
11970
  body: string;
11906
11971
  subject: string;
11907
11972
  syntax?: "liquid" | undefined;
@@ -11913,7 +11978,7 @@ export declare function init(config: AuthHeroConfig): {
11913
11978
  };
11914
11979
  };
11915
11980
  output: {
11916
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11981
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11917
11982
  body: string;
11918
11983
  from: string;
11919
11984
  subject: string;
@@ -11932,7 +11997,7 @@ export declare function init(config: AuthHeroConfig): {
11932
11997
  $patch: {
11933
11998
  input: {
11934
11999
  param: {
11935
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12000
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11936
12001
  };
11937
12002
  } & {
11938
12003
  header: {
@@ -11940,7 +12005,7 @@ export declare function init(config: AuthHeroConfig): {
11940
12005
  };
11941
12006
  } & {
11942
12007
  json: {
11943
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12008
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11944
12009
  body?: string | undefined;
11945
12010
  from?: string | undefined;
11946
12011
  subject?: string | undefined;
@@ -11957,7 +12022,7 @@ export declare function init(config: AuthHeroConfig): {
11957
12022
  } | {
11958
12023
  input: {
11959
12024
  param: {
11960
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12025
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11961
12026
  };
11962
12027
  } & {
11963
12028
  header: {
@@ -11965,7 +12030,7 @@ export declare function init(config: AuthHeroConfig): {
11965
12030
  };
11966
12031
  } & {
11967
12032
  json: {
11968
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12033
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11969
12034
  body?: string | undefined;
11970
12035
  from?: string | undefined;
11971
12036
  subject?: string | undefined;
@@ -11977,7 +12042,7 @@ export declare function init(config: AuthHeroConfig): {
11977
12042
  };
11978
12043
  };
11979
12044
  output: {
11980
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12045
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11981
12046
  body: string;
11982
12047
  from: string;
11983
12048
  subject: string;
@@ -11996,7 +12061,7 @@ export declare function init(config: AuthHeroConfig): {
11996
12061
  $delete: {
11997
12062
  input: {
11998
12063
  param: {
11999
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12064
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12000
12065
  };
12001
12066
  } & {
12002
12067
  header: {
@@ -12009,7 +12074,7 @@ export declare function init(config: AuthHeroConfig): {
12009
12074
  } | {
12010
12075
  input: {
12011
12076
  param: {
12012
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12077
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12013
12078
  };
12014
12079
  } & {
12015
12080
  header: {
@@ -12026,7 +12091,7 @@ export declare function init(config: AuthHeroConfig): {
12026
12091
  $post: {
12027
12092
  input: {
12028
12093
  param: {
12029
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12094
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12030
12095
  };
12031
12096
  } & {
12032
12097
  header: {
@@ -12309,7 +12374,7 @@ export declare function init(config: AuthHeroConfig): {
12309
12374
  type: "auth0_managed_certs" | "self_managed_certs";
12310
12375
  custom_domain_id: string;
12311
12376
  primary: boolean;
12312
- status: "pending" | "ready" | "disabled" | "pending_verification";
12377
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12313
12378
  verification_method?: "txt" | undefined;
12314
12379
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12315
12380
  domain_metadata?: {
@@ -12350,7 +12415,7 @@ export declare function init(config: AuthHeroConfig): {
12350
12415
  type: "auth0_managed_certs" | "self_managed_certs";
12351
12416
  custom_domain_id: string;
12352
12417
  primary: boolean;
12353
- status: "pending" | "ready" | "disabled" | "pending_verification";
12418
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12354
12419
  verification_method?: "txt" | undefined;
12355
12420
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12356
12421
  domain_metadata?: {
@@ -12414,7 +12479,7 @@ export declare function init(config: AuthHeroConfig): {
12414
12479
  type: "auth0_managed_certs" | "self_managed_certs";
12415
12480
  custom_domain_id: string;
12416
12481
  primary: boolean;
12417
- status: "pending" | "ready" | "disabled" | "pending_verification";
12482
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12418
12483
  verification_method?: "txt" | undefined;
12419
12484
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12420
12485
  domain_metadata?: {
@@ -12461,7 +12526,7 @@ export declare function init(config: AuthHeroConfig): {
12461
12526
  type: "auth0_managed_certs" | "self_managed_certs";
12462
12527
  custom_domain_id: string;
12463
12528
  primary: boolean;
12464
- status: "pending" | "ready" | "disabled" | "pending_verification";
12529
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12465
12530
  verification_method?: "txt" | undefined;
12466
12531
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12467
12532
  domain_metadata?: {
@@ -12507,7 +12572,7 @@ export declare function init(config: AuthHeroConfig): {
12507
12572
  type: "auth0_managed_certs" | "self_managed_certs";
12508
12573
  custom_domain_id: string;
12509
12574
  primary: boolean;
12510
- status: "pending" | "ready" | "disabled" | "pending_verification";
12575
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12511
12576
  verification_method?: "txt" | undefined;
12512
12577
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12513
12578
  domain_metadata?: {
@@ -12548,7 +12613,7 @@ export declare function init(config: AuthHeroConfig): {
12548
12613
  type: "auth0_managed_certs" | "self_managed_certs";
12549
12614
  custom_domain_id: string;
12550
12615
  primary: boolean;
12551
- status: "pending" | "ready" | "disabled" | "pending_verification";
12616
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12552
12617
  verification_method?: "txt" | undefined;
12553
12618
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12554
12619
  domain_metadata?: {
@@ -12978,7 +13043,7 @@ export declare function init(config: AuthHeroConfig): {
12978
13043
  } & {
12979
13044
  json: {
12980
13045
  body?: string | undefined;
12981
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
13046
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
12982
13047
  branding?: {
12983
13048
  colors?: {
12984
13049
  primary: string;
@@ -13269,7 +13334,7 @@ export declare function init(config: AuthHeroConfig): {
13269
13334
  logs: {
13270
13335
  action_name: string;
13271
13336
  lines: {
13272
- level: "log" | "error" | "info" | "warn" | "debug";
13337
+ level: "error" | "log" | "info" | "warn" | "debug";
13273
13338
  message: string;
13274
13339
  }[];
13275
13340
  }[];
@@ -13352,6 +13417,7 @@ export declare function init(config: AuthHeroConfig): {
13352
13417
  }[] | undefined;
13353
13418
  }[];
13354
13419
  total?: number | undefined;
13420
+ next?: string | undefined;
13355
13421
  };
13356
13422
  outputFormat: "json";
13357
13423
  status: 200;
@@ -13760,6 +13826,7 @@ export declare function init(config: AuthHeroConfig): {
13760
13826
  }[] | undefined;
13761
13827
  }[];
13762
13828
  total?: number | undefined;
13829
+ next?: string | undefined;
13763
13830
  };
13764
13831
  outputFormat: "json";
13765
13832
  status: 200;
@@ -13936,7 +14003,7 @@ export declare function init(config: AuthHeroConfig): {
13936
14003
  args: import("hono/utils/types").JSONValue[];
13937
14004
  }[];
13938
14005
  logs: {
13939
- level: "log" | "error" | "info" | "warn" | "debug";
14006
+ level: "error" | "log" | "info" | "warn" | "debug";
13940
14007
  message: string;
13941
14008
  }[];
13942
14009
  error?: string | undefined;
@@ -14247,7 +14314,7 @@ export declare function init(config: AuthHeroConfig): {
14247
14314
  scope?: string | undefined;
14248
14315
  grant_types?: string[] | undefined;
14249
14316
  response_types?: string[] | undefined;
14250
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14317
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
14251
14318
  jwks_uri?: string | undefined;
14252
14319
  jwks?: Record<string, unknown> | undefined;
14253
14320
  software_id?: string | undefined;
@@ -14336,7 +14403,7 @@ export declare function init(config: AuthHeroConfig): {
14336
14403
  scope?: string | undefined;
14337
14404
  grant_types?: string[] | undefined;
14338
14405
  response_types?: string[] | undefined;
14339
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14406
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
14340
14407
  jwks_uri?: string | undefined;
14341
14408
  jwks?: Record<string, unknown> | undefined;
14342
14409
  software_id?: string | undefined;
@@ -14682,16 +14749,16 @@ export declare function init(config: AuthHeroConfig): {
14682
14749
  email: string;
14683
14750
  send: "code" | "link";
14684
14751
  authParams: {
14685
- username?: string | undefined;
14686
- state?: string | undefined;
14687
14752
  audience?: string | undefined;
14688
- response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14689
- response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14690
14753
  scope?: string | undefined;
14754
+ username?: string | undefined;
14691
14755
  organization?: string | undefined;
14756
+ response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14757
+ response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14758
+ state?: string | undefined;
14692
14759
  nonce?: string | undefined;
14693
- redirect_uri?: string | undefined;
14694
14760
  act_as?: string | undefined;
14761
+ redirect_uri?: string | undefined;
14695
14762
  prompt?: string | undefined;
14696
14763
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14697
14764
  code_challenge?: string | undefined;
@@ -14718,16 +14785,16 @@ export declare function init(config: AuthHeroConfig): {
14718
14785
  phone_number: string;
14719
14786
  send: "code" | "link";
14720
14787
  authParams: {
14721
- username?: string | undefined;
14722
- state?: string | undefined;
14723
14788
  audience?: string | undefined;
14724
- response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14725
- response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14726
14789
  scope?: string | undefined;
14790
+ username?: string | undefined;
14727
14791
  organization?: string | undefined;
14792
+ response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14793
+ response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14794
+ state?: string | undefined;
14728
14795
  nonce?: string | undefined;
14729
- redirect_uri?: string | undefined;
14730
14796
  act_as?: string | undefined;
14797
+ redirect_uri?: string | undefined;
14731
14798
  prompt?: string | undefined;
14732
14799
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14733
14800
  code_challenge?: string | undefined;
@@ -14862,14 +14929,14 @@ export declare function init(config: AuthHeroConfig): {
14862
14929
  input: {
14863
14930
  form: {
14864
14931
  token: string;
14865
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14932
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14866
14933
  client_id?: string | undefined;
14867
14934
  client_secret?: string | undefined;
14868
14935
  };
14869
14936
  } & {
14870
14937
  json: {
14871
14938
  token: string;
14872
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14939
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14873
14940
  client_id?: string | undefined;
14874
14941
  client_secret?: string | undefined;
14875
14942
  };
@@ -14881,14 +14948,14 @@ export declare function init(config: AuthHeroConfig): {
14881
14948
  input: {
14882
14949
  form: {
14883
14950
  token: string;
14884
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14951
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14885
14952
  client_id?: string | undefined;
14886
14953
  client_secret?: string | undefined;
14887
14954
  };
14888
14955
  } & {
14889
14956
  json: {
14890
14957
  token: string;
14891
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14958
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14892
14959
  client_id?: string | undefined;
14893
14960
  client_secret?: string | undefined;
14894
14961
  };
@@ -14903,14 +14970,14 @@ export declare function init(config: AuthHeroConfig): {
14903
14970
  input: {
14904
14971
  form: {
14905
14972
  token: string;
14906
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14973
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14907
14974
  client_id?: string | undefined;
14908
14975
  client_secret?: string | undefined;
14909
14976
  };
14910
14977
  } & {
14911
14978
  json: {
14912
14979
  token: string;
14913
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14980
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14914
14981
  client_id?: string | undefined;
14915
14982
  client_secret?: string | undefined;
14916
14983
  };
@@ -14960,7 +15027,7 @@ export declare function init(config: AuthHeroConfig): {
14960
15027
  client_id: string;
14961
15028
  username: string;
14962
15029
  otp: string;
14963
- realm: "sms" | "email";
15030
+ realm: "email" | "sms";
14964
15031
  } | {
14965
15032
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14966
15033
  subject_token: string;
@@ -15007,7 +15074,7 @@ export declare function init(config: AuthHeroConfig): {
15007
15074
  client_id: string;
15008
15075
  username: string;
15009
15076
  otp: string;
15010
- realm: "sms" | "email";
15077
+ realm: "email" | "sms";
15011
15078
  } | {
15012
15079
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15013
15080
  subject_token: string;
@@ -15059,7 +15126,7 @@ export declare function init(config: AuthHeroConfig): {
15059
15126
  client_id: string;
15060
15127
  username: string;
15061
15128
  otp: string;
15062
- realm: "sms" | "email";
15129
+ realm: "email" | "sms";
15063
15130
  } | {
15064
15131
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15065
15132
  subject_token: string;
@@ -15106,7 +15173,7 @@ export declare function init(config: AuthHeroConfig): {
15106
15173
  client_id: string;
15107
15174
  username: string;
15108
15175
  otp: string;
15109
- realm: "sms" | "email";
15176
+ realm: "email" | "sms";
15110
15177
  } | {
15111
15178
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15112
15179
  subject_token: string;
@@ -15166,7 +15233,7 @@ export declare function init(config: AuthHeroConfig): {
15166
15233
  client_id: string;
15167
15234
  username: string;
15168
15235
  otp: string;
15169
- realm: "sms" | "email";
15236
+ realm: "email" | "sms";
15170
15237
  } | {
15171
15238
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15172
15239
  subject_token: string;
@@ -15213,7 +15280,7 @@ export declare function init(config: AuthHeroConfig): {
15213
15280
  client_id: string;
15214
15281
  username: string;
15215
15282
  otp: string;
15216
- realm: "sms" | "email";
15283
+ realm: "email" | "sms";
15217
15284
  } | {
15218
15285
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15219
15286
  subject_token: string;
@@ -15268,7 +15335,7 @@ export declare function init(config: AuthHeroConfig): {
15268
15335
  client_id: string;
15269
15336
  username: string;
15270
15337
  otp: string;
15271
- realm: "sms" | "email";
15338
+ realm: "email" | "sms";
15272
15339
  } | {
15273
15340
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15274
15341
  subject_token: string;
@@ -15315,7 +15382,7 @@ export declare function init(config: AuthHeroConfig): {
15315
15382
  client_id: string;
15316
15383
  username: string;
15317
15384
  otp: string;
15318
- realm: "sms" | "email";
15385
+ realm: "email" | "sms";
15319
15386
  } | {
15320
15387
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15321
15388
  subject_token: string;
@@ -15370,7 +15437,7 @@ export declare function init(config: AuthHeroConfig): {
15370
15437
  client_id: string;
15371
15438
  username: string;
15372
15439
  otp: string;
15373
- realm: "sms" | "email";
15440
+ realm: "email" | "sms";
15374
15441
  } | {
15375
15442
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15376
15443
  subject_token: string;
@@ -15417,7 +15484,7 @@ export declare function init(config: AuthHeroConfig): {
15417
15484
  client_id: string;
15418
15485
  username: string;
15419
15486
  otp: string;
15420
- realm: "sms" | "email";
15487
+ realm: "email" | "sms";
15421
15488
  } | {
15422
15489
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15423
15490
  subject_token: string;
@@ -16258,7 +16325,7 @@ export declare function init(config: AuthHeroConfig): {
16258
16325
  } & {
16259
16326
  form: {
16260
16327
  username: string;
16261
- login_selection?: "code" | "password" | undefined;
16328
+ login_selection?: "password" | "code" | undefined;
16262
16329
  };
16263
16330
  };
16264
16331
  output: {};
@@ -16272,7 +16339,7 @@ export declare function init(config: AuthHeroConfig): {
16272
16339
  } & {
16273
16340
  form: {
16274
16341
  username: string;
16275
- login_selection?: "code" | "password" | undefined;
16342
+ login_selection?: "password" | "code" | undefined;
16276
16343
  };
16277
16344
  };
16278
16345
  output: {};