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
@@ -3185,8 +3185,8 @@ declare function init(config: AuthHeroConfig): {
3185
3185
  $get: {
3186
3186
  input: {
3187
3187
  query: {
3188
- include_password_hashes?: "true" | "false" | undefined;
3189
- gzip?: "true" | "false" | undefined;
3188
+ include_password_hashes?: "false" | "true" | undefined;
3189
+ gzip?: "false" | "true" | undefined;
3190
3190
  };
3191
3191
  } & {
3192
3192
  header: {
@@ -3199,8 +3199,8 @@ declare function init(config: AuthHeroConfig): {
3199
3199
  } | {
3200
3200
  input: {
3201
3201
  query: {
3202
- include_password_hashes?: "true" | "false" | undefined;
3203
- gzip?: "true" | "false" | undefined;
3202
+ include_password_hashes?: "false" | "true" | undefined;
3203
+ gzip?: "false" | "true" | undefined;
3204
3204
  };
3205
3205
  } & {
3206
3206
  header: {
@@ -3219,7 +3219,7 @@ declare function init(config: AuthHeroConfig): {
3219
3219
  $post: {
3220
3220
  input: {
3221
3221
  query: {
3222
- include_password_hashes?: "true" | "false" | undefined;
3222
+ include_password_hashes?: "false" | "true" | undefined;
3223
3223
  };
3224
3224
  } & {
3225
3225
  header: {
@@ -3413,7 +3413,7 @@ declare function init(config: AuthHeroConfig): {
3413
3413
  };
3414
3414
  };
3415
3415
  output: {
3416
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3416
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3417
3417
  enabled: boolean;
3418
3418
  trial_expired?: boolean | undefined;
3419
3419
  }[];
@@ -3568,7 +3568,7 @@ declare function init(config: AuthHeroConfig): {
3568
3568
  $get: {
3569
3569
  input: {
3570
3570
  param: {
3571
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3571
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3572
3572
  };
3573
3573
  } & {
3574
3574
  header: {
@@ -3576,7 +3576,7 @@ declare function init(config: AuthHeroConfig): {
3576
3576
  };
3577
3577
  };
3578
3578
  output: {
3579
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3579
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3580
3580
  enabled: boolean;
3581
3581
  trial_expired?: boolean | undefined;
3582
3582
  };
@@ -3589,7 +3589,7 @@ declare function init(config: AuthHeroConfig): {
3589
3589
  $put: {
3590
3590
  input: {
3591
3591
  param: {
3592
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3592
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3593
3593
  };
3594
3594
  } & {
3595
3595
  header: {
@@ -3601,7 +3601,7 @@ declare function init(config: AuthHeroConfig): {
3601
3601
  };
3602
3602
  };
3603
3603
  output: {
3604
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3604
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3605
3605
  enabled: boolean;
3606
3606
  trial_expired?: boolean | undefined;
3607
3607
  };
@@ -3731,6 +3731,39 @@ declare function init(config: AuthHeroConfig): {
3731
3731
  } | undefined;
3732
3732
  }[];
3733
3733
  total?: number | undefined;
3734
+ next?: string | undefined;
3735
+ } | {
3736
+ organizations: {
3737
+ created_at: string;
3738
+ updated_at: string;
3739
+ id: string;
3740
+ name: string;
3741
+ display_name?: string | undefined;
3742
+ branding?: {
3743
+ logo_url?: string | undefined;
3744
+ colors?: {
3745
+ primary?: string | undefined;
3746
+ page_background?: string | undefined;
3747
+ } | undefined;
3748
+ } | undefined;
3749
+ metadata?: {
3750
+ [x: string]: any;
3751
+ } | undefined;
3752
+ enabled_connections?: {
3753
+ connection_id: string;
3754
+ assign_membership_on_login: boolean;
3755
+ show_as_button: boolean;
3756
+ is_signup_enabled: boolean;
3757
+ }[] | undefined;
3758
+ token_quota?: {
3759
+ client_credentials?: {
3760
+ enforce: boolean;
3761
+ per_day: number;
3762
+ per_hour: number;
3763
+ } | undefined;
3764
+ } | undefined;
3765
+ }[];
3766
+ next?: string | undefined;
3734
3767
  };
3735
3768
  outputFormat: "json";
3736
3769
  status: 200;
@@ -4347,10 +4380,10 @@ declare function init(config: AuthHeroConfig): {
4347
4380
  email?: string | undefined;
4348
4381
  };
4349
4382
  id?: string | undefined;
4350
- app_metadata?: Record<string, any> | undefined;
4351
- user_metadata?: Record<string, any> | undefined;
4352
4383
  connection_id?: string | undefined;
4353
4384
  roles?: string[] | undefined;
4385
+ app_metadata?: Record<string, any> | undefined;
4386
+ user_metadata?: Record<string, any> | undefined;
4354
4387
  ttl_sec?: number | undefined;
4355
4388
  send_invitation_email?: boolean | undefined;
4356
4389
  };
@@ -4451,6 +4484,7 @@ declare function init(config: AuthHeroConfig): {
4451
4484
  updated_at?: string | undefined;
4452
4485
  }[];
4453
4486
  total?: number | undefined;
4487
+ next?: string | undefined;
4454
4488
  };
4455
4489
  outputFormat: "json";
4456
4490
  status: 200;
@@ -4534,8 +4568,8 @@ declare function init(config: AuthHeroConfig): {
4534
4568
  };
4535
4569
  } & {
4536
4570
  json: {
4537
- show_as_button?: boolean | undefined;
4538
4571
  assign_membership_on_login?: boolean | undefined;
4572
+ show_as_button?: boolean | undefined;
4539
4573
  is_signup_enabled?: boolean | undefined;
4540
4574
  };
4541
4575
  };
@@ -4663,6 +4697,7 @@ declare function init(config: AuthHeroConfig): {
4663
4697
  updated_at?: string | undefined;
4664
4698
  }[];
4665
4699
  total?: number | undefined;
4700
+ next?: string | undefined;
4666
4701
  };
4667
4702
  outputFormat: "json";
4668
4703
  status: 200;
@@ -4934,6 +4969,7 @@ declare function init(config: AuthHeroConfig): {
4934
4969
  updated_at?: string | undefined;
4935
4970
  }[];
4936
4971
  total?: number | undefined;
4972
+ next?: string | undefined;
4937
4973
  };
4938
4974
  outputFormat: "json";
4939
4975
  status: 200;
@@ -5089,6 +5125,7 @@ declare function init(config: AuthHeroConfig): {
5089
5125
  created_at: string;
5090
5126
  }[];
5091
5127
  total?: number | undefined;
5128
+ next?: string | undefined;
5092
5129
  };
5093
5130
  outputFormat: "json";
5094
5131
  status: 200;
@@ -5266,6 +5303,7 @@ declare function init(config: AuthHeroConfig): {
5266
5303
  id: string;
5267
5304
  }[];
5268
5305
  total?: number | undefined;
5306
+ next?: string | undefined;
5269
5307
  };
5270
5308
  outputFormat: "json";
5271
5309
  status: 200;
@@ -6794,6 +6832,7 @@ declare function init(config: AuthHeroConfig): {
6794
6832
  } | undefined;
6795
6833
  }[];
6796
6834
  total?: number | undefined;
6835
+ next?: string | undefined;
6797
6836
  };
6798
6837
  outputFormat: "json";
6799
6838
  status: 200;
@@ -10005,7 +10044,7 @@ declare function init(config: AuthHeroConfig): {
10005
10044
  };
10006
10045
  };
10007
10046
  output: {
10008
- 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";
10047
+ 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";
10009
10048
  language: string;
10010
10049
  }[];
10011
10050
  outputFormat: "json";
@@ -10043,7 +10082,7 @@ declare function init(config: AuthHeroConfig): {
10043
10082
  $get: {
10044
10083
  input: {
10045
10084
  param: {
10046
- 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";
10085
+ 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";
10047
10086
  language: string;
10048
10087
  };
10049
10088
  } & {
@@ -10065,7 +10104,7 @@ declare function init(config: AuthHeroConfig): {
10065
10104
  $put: {
10066
10105
  input: {
10067
10106
  param: {
10068
- 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";
10107
+ 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";
10069
10108
  language: string;
10070
10109
  };
10071
10110
  } & {
@@ -10089,7 +10128,7 @@ declare function init(config: AuthHeroConfig): {
10089
10128
  $delete: {
10090
10129
  input: {
10091
10130
  param: {
10092
- 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";
10131
+ 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";
10093
10132
  language: string;
10094
10133
  };
10095
10134
  } & {
@@ -10181,7 +10220,7 @@ declare function init(config: AuthHeroConfig): {
10181
10220
  active?: boolean | undefined;
10182
10221
  } | undefined;
10183
10222
  signup?: {
10184
- status?: "optional" | "required" | "disabled" | undefined;
10223
+ status?: "required" | "optional" | "disabled" | undefined;
10185
10224
  verification?: {
10186
10225
  active?: boolean | undefined;
10187
10226
  } | undefined;
@@ -10198,7 +10237,7 @@ declare function init(config: AuthHeroConfig): {
10198
10237
  active?: boolean | undefined;
10199
10238
  } | undefined;
10200
10239
  signup?: {
10201
- status?: "optional" | "required" | "disabled" | undefined;
10240
+ status?: "required" | "optional" | "disabled" | undefined;
10202
10241
  } | undefined;
10203
10242
  validation?: {
10204
10243
  max_length?: number | undefined;
@@ -10215,7 +10254,7 @@ declare function init(config: AuthHeroConfig): {
10215
10254
  active?: boolean | undefined;
10216
10255
  } | undefined;
10217
10256
  signup?: {
10218
- status?: "optional" | "required" | "disabled" | undefined;
10257
+ status?: "required" | "optional" | "disabled" | undefined;
10219
10258
  } | undefined;
10220
10259
  } | undefined;
10221
10260
  } | undefined;
@@ -10315,7 +10354,7 @@ declare function init(config: AuthHeroConfig): {
10315
10354
  active?: boolean | undefined;
10316
10355
  } | undefined;
10317
10356
  signup?: {
10318
- status?: "optional" | "required" | "disabled" | undefined;
10357
+ status?: "required" | "optional" | "disabled" | undefined;
10319
10358
  verification?: {
10320
10359
  active?: boolean | undefined;
10321
10360
  } | undefined;
@@ -10332,7 +10371,7 @@ declare function init(config: AuthHeroConfig): {
10332
10371
  active?: boolean | undefined;
10333
10372
  } | undefined;
10334
10373
  signup?: {
10335
- status?: "optional" | "required" | "disabled" | undefined;
10374
+ status?: "required" | "optional" | "disabled" | undefined;
10336
10375
  } | undefined;
10337
10376
  validation?: {
10338
10377
  max_length?: number | undefined;
@@ -10349,7 +10388,7 @@ declare function init(config: AuthHeroConfig): {
10349
10388
  active?: boolean | undefined;
10350
10389
  } | undefined;
10351
10390
  signup?: {
10352
- status?: "optional" | "required" | "disabled" | undefined;
10391
+ status?: "required" | "optional" | "disabled" | undefined;
10353
10392
  } | undefined;
10354
10393
  } | undefined;
10355
10394
  } | undefined;
@@ -10388,6 +10427,7 @@ declare function init(config: AuthHeroConfig): {
10388
10427
  is_system?: boolean | undefined;
10389
10428
  }[];
10390
10429
  total?: number | undefined;
10430
+ next?: string | undefined;
10391
10431
  };
10392
10432
  outputFormat: "json";
10393
10433
  status: 200;
@@ -10464,7 +10504,7 @@ declare function init(config: AuthHeroConfig): {
10464
10504
  active?: boolean | undefined;
10465
10505
  } | undefined;
10466
10506
  signup?: {
10467
- status?: "optional" | "required" | "disabled" | undefined;
10507
+ status?: "required" | "optional" | "disabled" | undefined;
10468
10508
  verification?: {
10469
10509
  active?: boolean | undefined;
10470
10510
  } | undefined;
@@ -10481,7 +10521,7 @@ declare function init(config: AuthHeroConfig): {
10481
10521
  active?: boolean | undefined;
10482
10522
  } | undefined;
10483
10523
  signup?: {
10484
- status?: "optional" | "required" | "disabled" | undefined;
10524
+ status?: "required" | "optional" | "disabled" | undefined;
10485
10525
  } | undefined;
10486
10526
  validation?: {
10487
10527
  max_length?: number | undefined;
@@ -10498,7 +10538,7 @@ declare function init(config: AuthHeroConfig): {
10498
10538
  active?: boolean | undefined;
10499
10539
  } | undefined;
10500
10540
  signup?: {
10501
- status?: "optional" | "required" | "disabled" | undefined;
10541
+ status?: "required" | "optional" | "disabled" | undefined;
10502
10542
  } | undefined;
10503
10543
  } | undefined;
10504
10544
  } | undefined;
@@ -10643,7 +10683,7 @@ declare function init(config: AuthHeroConfig): {
10643
10683
  active?: boolean | undefined;
10644
10684
  } | undefined;
10645
10685
  signup?: {
10646
- status?: "optional" | "required" | "disabled" | undefined;
10686
+ status?: "required" | "optional" | "disabled" | undefined;
10647
10687
  verification?: {
10648
10688
  active?: boolean | undefined;
10649
10689
  } | undefined;
@@ -10660,7 +10700,7 @@ declare function init(config: AuthHeroConfig): {
10660
10700
  active?: boolean | undefined;
10661
10701
  } | undefined;
10662
10702
  signup?: {
10663
- status?: "optional" | "required" | "disabled" | undefined;
10703
+ status?: "required" | "optional" | "disabled" | undefined;
10664
10704
  } | undefined;
10665
10705
  validation?: {
10666
10706
  max_length?: number | undefined;
@@ -10677,7 +10717,7 @@ declare function init(config: AuthHeroConfig): {
10677
10717
  active?: boolean | undefined;
10678
10718
  } | undefined;
10679
10719
  signup?: {
10680
- status?: "optional" | "required" | "disabled" | undefined;
10720
+ status?: "required" | "optional" | "disabled" | undefined;
10681
10721
  } | undefined;
10682
10722
  } | undefined;
10683
10723
  } | undefined;
@@ -10801,7 +10841,7 @@ declare function init(config: AuthHeroConfig): {
10801
10841
  active?: boolean | undefined;
10802
10842
  } | undefined;
10803
10843
  signup?: {
10804
- status?: "optional" | "required" | "disabled" | undefined;
10844
+ status?: "required" | "optional" | "disabled" | undefined;
10805
10845
  verification?: {
10806
10846
  active?: boolean | undefined;
10807
10847
  } | undefined;
@@ -10818,7 +10858,7 @@ declare function init(config: AuthHeroConfig): {
10818
10858
  active?: boolean | undefined;
10819
10859
  } | undefined;
10820
10860
  signup?: {
10821
- status?: "optional" | "required" | "disabled" | undefined;
10861
+ status?: "required" | "optional" | "disabled" | undefined;
10822
10862
  } | undefined;
10823
10863
  validation?: {
10824
10864
  max_length?: number | undefined;
@@ -10835,7 +10875,7 @@ declare function init(config: AuthHeroConfig): {
10835
10875
  active?: boolean | undefined;
10836
10876
  } | undefined;
10837
10877
  signup?: {
10838
- status?: "optional" | "required" | "disabled" | undefined;
10878
+ status?: "required" | "optional" | "disabled" | undefined;
10839
10879
  } | undefined;
10840
10880
  } | undefined;
10841
10881
  } | undefined;
@@ -11226,6 +11266,7 @@ declare function init(config: AuthHeroConfig): {
11226
11266
  } | undefined;
11227
11267
  })[];
11228
11268
  total?: number | undefined;
11269
+ next?: string | undefined;
11229
11270
  };
11230
11271
  outputFormat: "json";
11231
11272
  status: 200;
@@ -12240,7 +12281,7 @@ declare function init(config: AuthHeroConfig): {
12240
12281
  };
12241
12282
  };
12242
12283
  output: {
12243
- 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";
12284
+ 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";
12244
12285
  date: string;
12245
12286
  isMobile: boolean;
12246
12287
  log_id: string;
@@ -12279,7 +12320,7 @@ declare function init(config: AuthHeroConfig): {
12279
12320
  limit: number;
12280
12321
  length: number;
12281
12322
  logs: {
12282
- 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";
12323
+ 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";
12283
12324
  date: string;
12284
12325
  isMobile: boolean;
12285
12326
  log_id: string;
@@ -12315,6 +12356,7 @@ declare function init(config: AuthHeroConfig): {
12315
12356
  } | undefined;
12316
12357
  }[];
12317
12358
  total?: number | undefined;
12359
+ next?: string | undefined;
12318
12360
  };
12319
12361
  outputFormat: "json";
12320
12362
  status: 200;
@@ -12333,7 +12375,7 @@ declare function init(config: AuthHeroConfig): {
12333
12375
  };
12334
12376
  };
12335
12377
  output: {
12336
- 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";
12378
+ 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";
12337
12379
  date: string;
12338
12380
  isMobile: boolean;
12339
12381
  log_id: string;
@@ -12436,6 +12478,7 @@ declare function init(config: AuthHeroConfig): {
12436
12478
  audience?: string | undefined;
12437
12479
  }[];
12438
12480
  total?: number | undefined;
12481
+ next?: string | undefined;
12439
12482
  };
12440
12483
  outputFormat: "json";
12441
12484
  status: 200;
@@ -12488,7 +12531,7 @@ declare function init(config: AuthHeroConfig): {
12488
12531
  audience?: string | undefined;
12489
12532
  client_id?: string | undefined;
12490
12533
  allow_any_organization?: string | undefined;
12491
- subject_type?: "user" | "client" | undefined;
12534
+ subject_type?: "client" | "user" | undefined;
12492
12535
  };
12493
12536
  } & {
12494
12537
  header: {
@@ -12503,7 +12546,7 @@ declare function init(config: AuthHeroConfig): {
12503
12546
  organization_usage?: "deny" | "allow" | "require" | undefined;
12504
12547
  allow_any_organization?: boolean | undefined;
12505
12548
  is_system?: boolean | undefined;
12506
- subject_type?: "user" | "client" | undefined;
12549
+ subject_type?: "client" | "user" | undefined;
12507
12550
  authorization_details_types?: string[] | undefined;
12508
12551
  created_at?: string | undefined;
12509
12552
  updated_at?: string | undefined;
@@ -12519,12 +12562,28 @@ declare function init(config: AuthHeroConfig): {
12519
12562
  organization_usage?: "deny" | "allow" | "require" | undefined;
12520
12563
  allow_any_organization?: boolean | undefined;
12521
12564
  is_system?: boolean | undefined;
12522
- subject_type?: "user" | "client" | undefined;
12565
+ subject_type?: "client" | "user" | undefined;
12523
12566
  authorization_details_types?: string[] | undefined;
12524
12567
  created_at?: string | undefined;
12525
12568
  updated_at?: string | undefined;
12526
12569
  }[];
12527
12570
  total?: number | undefined;
12571
+ next?: string | undefined;
12572
+ } | {
12573
+ client_grants: {
12574
+ id: string;
12575
+ client_id: string;
12576
+ audience: string;
12577
+ scope?: string[] | undefined;
12578
+ organization_usage?: "deny" | "allow" | "require" | undefined;
12579
+ allow_any_organization?: boolean | undefined;
12580
+ is_system?: boolean | undefined;
12581
+ subject_type?: "client" | "user" | undefined;
12582
+ authorization_details_types?: string[] | undefined;
12583
+ created_at?: string | undefined;
12584
+ updated_at?: string | undefined;
12585
+ }[];
12586
+ next?: string | undefined;
12528
12587
  };
12529
12588
  outputFormat: "json";
12530
12589
  status: 200;
@@ -12550,7 +12609,7 @@ declare function init(config: AuthHeroConfig): {
12550
12609
  organization_usage?: "deny" | "allow" | "require" | undefined;
12551
12610
  allow_any_organization?: boolean | undefined;
12552
12611
  is_system?: boolean | undefined;
12553
- subject_type?: "user" | "client" | undefined;
12612
+ subject_type?: "client" | "user" | undefined;
12554
12613
  authorization_details_types?: string[] | undefined;
12555
12614
  created_at?: string | undefined;
12556
12615
  updated_at?: string | undefined;
@@ -12595,7 +12654,7 @@ declare function init(config: AuthHeroConfig): {
12595
12654
  organization_usage?: "deny" | "allow" | "require" | undefined;
12596
12655
  allow_any_organization?: boolean | undefined;
12597
12656
  is_system?: boolean | undefined;
12598
- subject_type?: "user" | "client" | undefined;
12657
+ subject_type?: "client" | "user" | undefined;
12599
12658
  authorization_details_types?: string[] | undefined;
12600
12659
  };
12601
12660
  };
@@ -12607,7 +12666,7 @@ declare function init(config: AuthHeroConfig): {
12607
12666
  organization_usage?: "deny" | "allow" | "require" | undefined;
12608
12667
  allow_any_organization?: boolean | undefined;
12609
12668
  is_system?: boolean | undefined;
12610
- subject_type?: "user" | "client" | undefined;
12669
+ subject_type?: "client" | "user" | undefined;
12611
12670
  authorization_details_types?: string[] | undefined;
12612
12671
  created_at?: string | undefined;
12613
12672
  updated_at?: string | undefined;
@@ -12631,7 +12690,7 @@ declare function init(config: AuthHeroConfig): {
12631
12690
  organization_usage?: "deny" | "allow" | "require" | undefined;
12632
12691
  allow_any_organization?: boolean | undefined;
12633
12692
  is_system?: boolean | undefined;
12634
- subject_type?: "user" | "client" | undefined;
12693
+ subject_type?: "client" | "user" | undefined;
12635
12694
  authorization_details_types?: string[] | undefined;
12636
12695
  };
12637
12696
  };
@@ -12643,7 +12702,7 @@ declare function init(config: AuthHeroConfig): {
12643
12702
  organization_usage?: "deny" | "allow" | "require" | undefined;
12644
12703
  allow_any_organization?: boolean | undefined;
12645
12704
  is_system?: boolean | undefined;
12646
- subject_type?: "user" | "client" | undefined;
12705
+ subject_type?: "client" | "user" | undefined;
12647
12706
  authorization_details_types?: string[] | undefined;
12648
12707
  created_at?: string | undefined;
12649
12708
  updated_at?: string | undefined;
@@ -12721,7 +12780,7 @@ declare function init(config: AuthHeroConfig): {
12721
12780
  addons?: {
12722
12781
  [x: string]: any;
12723
12782
  } | undefined;
12724
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12783
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12725
12784
  client_metadata?: {
12726
12785
  [x: string]: string;
12727
12786
  } | undefined;
@@ -12817,7 +12876,7 @@ declare function init(config: AuthHeroConfig): {
12817
12876
  addons?: {
12818
12877
  [x: string]: any;
12819
12878
  } | undefined;
12820
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12879
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12821
12880
  client_metadata?: {
12822
12881
  [x: string]: string;
12823
12882
  } | undefined;
@@ -12862,6 +12921,7 @@ declare function init(config: AuthHeroConfig): {
12862
12921
  user_linking_mode?: "builtin" | "off" | undefined;
12863
12922
  }[];
12864
12923
  total?: number | undefined;
12924
+ next?: string | undefined;
12865
12925
  };
12866
12926
  outputFormat: "json";
12867
12927
  status: 200;
@@ -12928,7 +12988,7 @@ declare function init(config: AuthHeroConfig): {
12928
12988
  addons?: {
12929
12989
  [x: string]: any;
12930
12990
  } | undefined;
12931
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12991
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12932
12992
  client_metadata?: {
12933
12993
  [x: string]: string;
12934
12994
  } | undefined;
@@ -13038,7 +13098,7 @@ declare function init(config: AuthHeroConfig): {
13038
13098
  custom_login_page_preview?: string | undefined;
13039
13099
  form_template?: string | undefined;
13040
13100
  addons?: Record<string, any> | undefined;
13041
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13101
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13042
13102
  client_metadata?: Record<string, string> | undefined;
13043
13103
  hide_sign_up_disabled_error?: boolean | undefined;
13044
13104
  mobile?: Record<string, any> | undefined;
@@ -13118,7 +13178,7 @@ declare function init(config: AuthHeroConfig): {
13118
13178
  addons?: {
13119
13179
  [x: string]: any;
13120
13180
  } | undefined;
13121
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13181
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13122
13182
  client_metadata?: {
13123
13183
  [x: string]: string;
13124
13184
  } | undefined;
@@ -13207,7 +13267,7 @@ declare function init(config: AuthHeroConfig): {
13207
13267
  custom_login_page_preview?: string | undefined;
13208
13268
  form_template?: string | undefined;
13209
13269
  addons?: Record<string, any> | undefined;
13210
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13270
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13211
13271
  client_metadata?: Record<string, string> | undefined;
13212
13272
  hide_sign_up_disabled_error?: boolean | undefined;
13213
13273
  mobile?: Record<string, any> | undefined;
@@ -13287,7 +13347,7 @@ declare function init(config: AuthHeroConfig): {
13287
13347
  addons?: {
13288
13348
  [x: string]: any;
13289
13349
  } | undefined;
13290
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13350
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13291
13351
  client_metadata?: {
13292
13352
  [x: string]: string;
13293
13353
  } | undefined;
@@ -13409,7 +13469,7 @@ declare function init(config: AuthHeroConfig): {
13409
13469
  active?: boolean | undefined;
13410
13470
  } | undefined;
13411
13471
  signup?: {
13412
- status?: "optional" | "required" | "disabled" | undefined;
13472
+ status?: "required" | "optional" | "disabled" | undefined;
13413
13473
  verification?: {
13414
13474
  active?: boolean | undefined;
13415
13475
  } | undefined;
@@ -13426,7 +13486,7 @@ declare function init(config: AuthHeroConfig): {
13426
13486
  active?: boolean | undefined;
13427
13487
  } | undefined;
13428
13488
  signup?: {
13429
- status?: "optional" | "required" | "disabled" | undefined;
13489
+ status?: "required" | "optional" | "disabled" | undefined;
13430
13490
  } | undefined;
13431
13491
  validation?: {
13432
13492
  max_length?: number | undefined;
@@ -13443,7 +13503,7 @@ declare function init(config: AuthHeroConfig): {
13443
13503
  active?: boolean | undefined;
13444
13504
  } | undefined;
13445
13505
  signup?: {
13446
- status?: "optional" | "required" | "disabled" | undefined;
13506
+ status?: "required" | "optional" | "disabled" | undefined;
13447
13507
  } | undefined;
13448
13508
  } | undefined;
13449
13509
  } | undefined;
@@ -13563,7 +13623,7 @@ declare function init(config: AuthHeroConfig): {
13563
13623
  active?: boolean | undefined;
13564
13624
  } | undefined;
13565
13625
  signup?: {
13566
- status?: "optional" | "required" | "disabled" | undefined;
13626
+ status?: "required" | "optional" | "disabled" | undefined;
13567
13627
  verification?: {
13568
13628
  active?: boolean | undefined;
13569
13629
  } | undefined;
@@ -13580,7 +13640,7 @@ declare function init(config: AuthHeroConfig): {
13580
13640
  active?: boolean | undefined;
13581
13641
  } | undefined;
13582
13642
  signup?: {
13583
- status?: "optional" | "required" | "disabled" | undefined;
13643
+ status?: "required" | "optional" | "disabled" | undefined;
13584
13644
  } | undefined;
13585
13645
  validation?: {
13586
13646
  max_length?: number | undefined;
@@ -13597,7 +13657,7 @@ declare function init(config: AuthHeroConfig): {
13597
13657
  active?: boolean | undefined;
13598
13658
  } | undefined;
13599
13659
  signup?: {
13600
- status?: "optional" | "required" | "disabled" | undefined;
13660
+ status?: "required" | "optional" | "disabled" | undefined;
13601
13661
  } | undefined;
13602
13662
  } | undefined;
13603
13663
  } | undefined;
@@ -13975,6 +14035,7 @@ declare function init(config: AuthHeroConfig): {
13975
14035
  }[] | undefined;
13976
14036
  }[];
13977
14037
  total?: number | undefined;
14038
+ next?: string | undefined;
13978
14039
  };
13979
14040
  outputFormat: "json";
13980
14041
  status: 200;
@@ -14444,6 +14505,7 @@ declare function init(config: AuthHeroConfig): {
14444
14505
  updated_at?: string | undefined;
14445
14506
  }[];
14446
14507
  total?: number | undefined;
14508
+ next?: string | undefined;
14447
14509
  };
14448
14510
  outputFormat: "json";
14449
14511
  status: 200;
@@ -14521,6 +14583,7 @@ declare function init(config: AuthHeroConfig): {
14521
14583
  idle_expires_at?: string | undefined;
14522
14584
  }[];
14523
14585
  total?: number | undefined;
14586
+ next?: string | undefined;
14524
14587
  };
14525
14588
  outputFormat: "json";
14526
14589
  status: 200;
@@ -14551,7 +14614,7 @@ declare function init(config: AuthHeroConfig): {
14551
14614
  };
14552
14615
  };
14553
14616
  output: {
14554
- 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";
14617
+ 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";
14555
14618
  date: string;
14556
14619
  isMobile: boolean;
14557
14620
  log_id: string;
@@ -14590,7 +14653,7 @@ declare function init(config: AuthHeroConfig): {
14590
14653
  limit: number;
14591
14654
  length: number;
14592
14655
  logs: {
14593
- 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";
14656
+ 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";
14594
14657
  date: string;
14595
14658
  isMobile: boolean;
14596
14659
  log_id: string;
@@ -14626,6 +14689,7 @@ declare function init(config: AuthHeroConfig): {
14626
14689
  } | undefined;
14627
14690
  }[];
14628
14691
  total?: number | undefined;
14692
+ next?: string | undefined;
14629
14693
  };
14630
14694
  outputFormat: "json";
14631
14695
  status: 200;
@@ -14875,6 +14939,7 @@ declare function init(config: AuthHeroConfig): {
14875
14939
  } | undefined;
14876
14940
  }[];
14877
14941
  total?: number | undefined;
14942
+ next?: string | undefined;
14878
14943
  };
14879
14944
  outputFormat: "json";
14880
14945
  status: 200;
@@ -14907,7 +14972,7 @@ declare function init(config: AuthHeroConfig): {
14907
14972
  };
14908
14973
  } & {
14909
14974
  json: {
14910
- 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";
14975
+ 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";
14911
14976
  body: string;
14912
14977
  from: string;
14913
14978
  subject: string;
@@ -14928,7 +14993,7 @@ declare function init(config: AuthHeroConfig): {
14928
14993
  };
14929
14994
  } & {
14930
14995
  json: {
14931
- 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";
14996
+ 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";
14932
14997
  body: string;
14933
14998
  from: string;
14934
14999
  subject: string;
@@ -14940,7 +15005,7 @@ declare function init(config: AuthHeroConfig): {
14940
15005
  };
14941
15006
  };
14942
15007
  output: {
14943
- 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";
15008
+ 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";
14944
15009
  body: string;
14945
15010
  from: string;
14946
15011
  subject: string;
@@ -14963,7 +15028,7 @@ declare function init(config: AuthHeroConfig): {
14963
15028
  };
14964
15029
  };
14965
15030
  output: {
14966
- 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";
15031
+ 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";
14967
15032
  body: string;
14968
15033
  subject: string;
14969
15034
  }[];
@@ -14976,7 +15041,7 @@ declare function init(config: AuthHeroConfig): {
14976
15041
  $get: {
14977
15042
  input: {
14978
15043
  param: {
14979
- 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";
15044
+ 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";
14980
15045
  };
14981
15046
  } & {
14982
15047
  header: {
@@ -14989,7 +15054,7 @@ declare function init(config: AuthHeroConfig): {
14989
15054
  } | {
14990
15055
  input: {
14991
15056
  param: {
14992
- 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";
15057
+ 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";
14993
15058
  };
14994
15059
  } & {
14995
15060
  header: {
@@ -14997,7 +15062,7 @@ declare function init(config: AuthHeroConfig): {
14997
15062
  };
14998
15063
  };
14999
15064
  output: {
15000
- 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";
15065
+ 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";
15001
15066
  body: string;
15002
15067
  from: string;
15003
15068
  subject: string;
@@ -15016,7 +15081,7 @@ declare function init(config: AuthHeroConfig): {
15016
15081
  $put: {
15017
15082
  input: {
15018
15083
  param: {
15019
- 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";
15084
+ 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";
15020
15085
  };
15021
15086
  } & {
15022
15087
  header: {
@@ -15024,7 +15089,7 @@ declare function init(config: AuthHeroConfig): {
15024
15089
  };
15025
15090
  } & {
15026
15091
  json: {
15027
- 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";
15092
+ 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";
15028
15093
  body: string;
15029
15094
  subject: string;
15030
15095
  syntax?: "liquid" | undefined;
@@ -15036,7 +15101,7 @@ declare function init(config: AuthHeroConfig): {
15036
15101
  };
15037
15102
  };
15038
15103
  output: {
15039
- 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";
15104
+ 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";
15040
15105
  body: string;
15041
15106
  from: string;
15042
15107
  subject: string;
@@ -15055,7 +15120,7 @@ declare function init(config: AuthHeroConfig): {
15055
15120
  $patch: {
15056
15121
  input: {
15057
15122
  param: {
15058
- 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";
15123
+ 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";
15059
15124
  };
15060
15125
  } & {
15061
15126
  header: {
@@ -15063,7 +15128,7 @@ declare function init(config: AuthHeroConfig): {
15063
15128
  };
15064
15129
  } & {
15065
15130
  json: {
15066
- 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;
15131
+ 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;
15067
15132
  body?: string | undefined;
15068
15133
  from?: string | undefined;
15069
15134
  subject?: string | undefined;
@@ -15080,7 +15145,7 @@ declare function init(config: AuthHeroConfig): {
15080
15145
  } | {
15081
15146
  input: {
15082
15147
  param: {
15083
- 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";
15148
+ 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";
15084
15149
  };
15085
15150
  } & {
15086
15151
  header: {
@@ -15088,7 +15153,7 @@ declare function init(config: AuthHeroConfig): {
15088
15153
  };
15089
15154
  } & {
15090
15155
  json: {
15091
- 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;
15156
+ 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;
15092
15157
  body?: string | undefined;
15093
15158
  from?: string | undefined;
15094
15159
  subject?: string | undefined;
@@ -15100,7 +15165,7 @@ declare function init(config: AuthHeroConfig): {
15100
15165
  };
15101
15166
  };
15102
15167
  output: {
15103
- 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";
15168
+ 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";
15104
15169
  body: string;
15105
15170
  from: string;
15106
15171
  subject: string;
@@ -15119,7 +15184,7 @@ declare function init(config: AuthHeroConfig): {
15119
15184
  $delete: {
15120
15185
  input: {
15121
15186
  param: {
15122
- 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";
15187
+ 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";
15123
15188
  };
15124
15189
  } & {
15125
15190
  header: {
@@ -15132,7 +15197,7 @@ declare function init(config: AuthHeroConfig): {
15132
15197
  } | {
15133
15198
  input: {
15134
15199
  param: {
15135
- 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";
15200
+ 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";
15136
15201
  };
15137
15202
  } & {
15138
15203
  header: {
@@ -15149,7 +15214,7 @@ declare function init(config: AuthHeroConfig): {
15149
15214
  $post: {
15150
15215
  input: {
15151
15216
  param: {
15152
- 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";
15217
+ 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";
15153
15218
  };
15154
15219
  } & {
15155
15220
  header: {
@@ -15432,7 +15497,7 @@ declare function init(config: AuthHeroConfig): {
15432
15497
  type: "auth0_managed_certs" | "self_managed_certs";
15433
15498
  custom_domain_id: string;
15434
15499
  primary: boolean;
15435
- status: "pending" | "ready" | "disabled" | "pending_verification";
15500
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15436
15501
  verification_method?: "txt" | undefined;
15437
15502
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15438
15503
  domain_metadata?: {
@@ -15473,7 +15538,7 @@ declare function init(config: AuthHeroConfig): {
15473
15538
  type: "auth0_managed_certs" | "self_managed_certs";
15474
15539
  custom_domain_id: string;
15475
15540
  primary: boolean;
15476
- status: "pending" | "ready" | "disabled" | "pending_verification";
15541
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15477
15542
  verification_method?: "txt" | undefined;
15478
15543
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15479
15544
  domain_metadata?: {
@@ -15537,7 +15602,7 @@ declare function init(config: AuthHeroConfig): {
15537
15602
  type: "auth0_managed_certs" | "self_managed_certs";
15538
15603
  custom_domain_id: string;
15539
15604
  primary: boolean;
15540
- status: "pending" | "ready" | "disabled" | "pending_verification";
15605
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15541
15606
  verification_method?: "txt" | undefined;
15542
15607
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15543
15608
  domain_metadata?: {
@@ -15584,7 +15649,7 @@ declare function init(config: AuthHeroConfig): {
15584
15649
  type: "auth0_managed_certs" | "self_managed_certs";
15585
15650
  custom_domain_id: string;
15586
15651
  primary: boolean;
15587
- status: "pending" | "ready" | "disabled" | "pending_verification";
15652
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15588
15653
  verification_method?: "txt" | undefined;
15589
15654
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15590
15655
  domain_metadata?: {
@@ -15630,7 +15695,7 @@ declare function init(config: AuthHeroConfig): {
15630
15695
  type: "auth0_managed_certs" | "self_managed_certs";
15631
15696
  custom_domain_id: string;
15632
15697
  primary: boolean;
15633
- status: "pending" | "ready" | "disabled" | "pending_verification";
15698
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15634
15699
  verification_method?: "txt" | undefined;
15635
15700
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15636
15701
  domain_metadata?: {
@@ -15671,7 +15736,7 @@ declare function init(config: AuthHeroConfig): {
15671
15736
  type: "auth0_managed_certs" | "self_managed_certs";
15672
15737
  custom_domain_id: string;
15673
15738
  primary: boolean;
15674
- status: "pending" | "ready" | "disabled" | "pending_verification";
15739
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15675
15740
  verification_method?: "txt" | undefined;
15676
15741
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15677
15742
  domain_metadata?: {
@@ -16101,7 +16166,7 @@ declare function init(config: AuthHeroConfig): {
16101
16166
  } & {
16102
16167
  json: {
16103
16168
  body?: string | undefined;
16104
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
16169
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
16105
16170
  branding?: {
16106
16171
  colors?: {
16107
16172
  primary: string;
@@ -16392,7 +16457,7 @@ declare function init(config: AuthHeroConfig): {
16392
16457
  logs: {
16393
16458
  action_name: string;
16394
16459
  lines: {
16395
- level: "log" | "error" | "info" | "warn" | "debug";
16460
+ level: "error" | "log" | "info" | "warn" | "debug";
16396
16461
  message: string;
16397
16462
  }[];
16398
16463
  }[];
@@ -16475,6 +16540,7 @@ declare function init(config: AuthHeroConfig): {
16475
16540
  }[] | undefined;
16476
16541
  }[];
16477
16542
  total?: number | undefined;
16543
+ next?: string | undefined;
16478
16544
  };
16479
16545
  outputFormat: "json";
16480
16546
  status: 200;
@@ -16883,6 +16949,7 @@ declare function init(config: AuthHeroConfig): {
16883
16949
  }[] | undefined;
16884
16950
  }[];
16885
16951
  total?: number | undefined;
16952
+ next?: string | undefined;
16886
16953
  };
16887
16954
  outputFormat: "json";
16888
16955
  status: 200;
@@ -17059,7 +17126,7 @@ declare function init(config: AuthHeroConfig): {
17059
17126
  args: hono_utils_types.JSONValue[];
17060
17127
  }[];
17061
17128
  logs: {
17062
- level: "log" | "error" | "info" | "warn" | "debug";
17129
+ level: "error" | "log" | "info" | "warn" | "debug";
17063
17130
  message: string;
17064
17131
  }[];
17065
17132
  error?: string | undefined;
@@ -17370,7 +17437,7 @@ declare function init(config: AuthHeroConfig): {
17370
17437
  scope?: string | undefined;
17371
17438
  grant_types?: string[] | undefined;
17372
17439
  response_types?: string[] | undefined;
17373
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17440
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
17374
17441
  jwks_uri?: string | undefined;
17375
17442
  jwks?: Record<string, unknown> | undefined;
17376
17443
  software_id?: string | undefined;
@@ -17459,7 +17526,7 @@ declare function init(config: AuthHeroConfig): {
17459
17526
  scope?: string | undefined;
17460
17527
  grant_types?: string[] | undefined;
17461
17528
  response_types?: string[] | undefined;
17462
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17529
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
17463
17530
  jwks_uri?: string | undefined;
17464
17531
  jwks?: Record<string, unknown> | undefined;
17465
17532
  software_id?: string | undefined;
@@ -17805,16 +17872,16 @@ declare function init(config: AuthHeroConfig): {
17805
17872
  email: string;
17806
17873
  send: "code" | "link";
17807
17874
  authParams: {
17808
- username?: string | undefined;
17809
- state?: string | undefined;
17810
17875
  audience?: string | undefined;
17811
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17812
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17813
17876
  scope?: string | undefined;
17877
+ username?: string | undefined;
17814
17878
  organization?: string | undefined;
17879
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17880
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17881
+ state?: string | undefined;
17815
17882
  nonce?: string | undefined;
17816
- redirect_uri?: string | undefined;
17817
17883
  act_as?: string | undefined;
17884
+ redirect_uri?: string | undefined;
17818
17885
  prompt?: string | undefined;
17819
17886
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17820
17887
  code_challenge?: string | undefined;
@@ -17841,16 +17908,16 @@ declare function init(config: AuthHeroConfig): {
17841
17908
  phone_number: string;
17842
17909
  send: "code" | "link";
17843
17910
  authParams: {
17844
- username?: string | undefined;
17845
- state?: string | undefined;
17846
17911
  audience?: string | undefined;
17847
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17848
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17849
17912
  scope?: string | undefined;
17913
+ username?: string | undefined;
17850
17914
  organization?: string | undefined;
17915
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17916
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17917
+ state?: string | undefined;
17851
17918
  nonce?: string | undefined;
17852
- redirect_uri?: string | undefined;
17853
17919
  act_as?: string | undefined;
17920
+ redirect_uri?: string | undefined;
17854
17921
  prompt?: string | undefined;
17855
17922
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17856
17923
  code_challenge?: string | undefined;
@@ -17985,14 +18052,14 @@ declare function init(config: AuthHeroConfig): {
17985
18052
  input: {
17986
18053
  form: {
17987
18054
  token: string;
17988
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18055
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17989
18056
  client_id?: string | undefined;
17990
18057
  client_secret?: string | undefined;
17991
18058
  };
17992
18059
  } & {
17993
18060
  json: {
17994
18061
  token: string;
17995
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18062
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17996
18063
  client_id?: string | undefined;
17997
18064
  client_secret?: string | undefined;
17998
18065
  };
@@ -18004,14 +18071,14 @@ declare function init(config: AuthHeroConfig): {
18004
18071
  input: {
18005
18072
  form: {
18006
18073
  token: string;
18007
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18074
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18008
18075
  client_id?: string | undefined;
18009
18076
  client_secret?: string | undefined;
18010
18077
  };
18011
18078
  } & {
18012
18079
  json: {
18013
18080
  token: string;
18014
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18081
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18015
18082
  client_id?: string | undefined;
18016
18083
  client_secret?: string | undefined;
18017
18084
  };
@@ -18026,14 +18093,14 @@ declare function init(config: AuthHeroConfig): {
18026
18093
  input: {
18027
18094
  form: {
18028
18095
  token: string;
18029
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18096
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18030
18097
  client_id?: string | undefined;
18031
18098
  client_secret?: string | undefined;
18032
18099
  };
18033
18100
  } & {
18034
18101
  json: {
18035
18102
  token: string;
18036
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18103
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18037
18104
  client_id?: string | undefined;
18038
18105
  client_secret?: string | undefined;
18039
18106
  };
@@ -18083,7 +18150,7 @@ declare function init(config: AuthHeroConfig): {
18083
18150
  client_id: string;
18084
18151
  username: string;
18085
18152
  otp: string;
18086
- realm: "sms" | "email";
18153
+ realm: "email" | "sms";
18087
18154
  } | {
18088
18155
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18089
18156
  subject_token: string;
@@ -18130,7 +18197,7 @@ declare function init(config: AuthHeroConfig): {
18130
18197
  client_id: string;
18131
18198
  username: string;
18132
18199
  otp: string;
18133
- realm: "sms" | "email";
18200
+ realm: "email" | "sms";
18134
18201
  } | {
18135
18202
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18136
18203
  subject_token: string;
@@ -18182,7 +18249,7 @@ declare function init(config: AuthHeroConfig): {
18182
18249
  client_id: string;
18183
18250
  username: string;
18184
18251
  otp: string;
18185
- realm: "sms" | "email";
18252
+ realm: "email" | "sms";
18186
18253
  } | {
18187
18254
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18188
18255
  subject_token: string;
@@ -18229,7 +18296,7 @@ declare function init(config: AuthHeroConfig): {
18229
18296
  client_id: string;
18230
18297
  username: string;
18231
18298
  otp: string;
18232
- realm: "sms" | "email";
18299
+ realm: "email" | "sms";
18233
18300
  } | {
18234
18301
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18235
18302
  subject_token: string;
@@ -18289,7 +18356,7 @@ declare function init(config: AuthHeroConfig): {
18289
18356
  client_id: string;
18290
18357
  username: string;
18291
18358
  otp: string;
18292
- realm: "sms" | "email";
18359
+ realm: "email" | "sms";
18293
18360
  } | {
18294
18361
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18295
18362
  subject_token: string;
@@ -18336,7 +18403,7 @@ declare function init(config: AuthHeroConfig): {
18336
18403
  client_id: string;
18337
18404
  username: string;
18338
18405
  otp: string;
18339
- realm: "sms" | "email";
18406
+ realm: "email" | "sms";
18340
18407
  } | {
18341
18408
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18342
18409
  subject_token: string;
@@ -18391,7 +18458,7 @@ declare function init(config: AuthHeroConfig): {
18391
18458
  client_id: string;
18392
18459
  username: string;
18393
18460
  otp: string;
18394
- realm: "sms" | "email";
18461
+ realm: "email" | "sms";
18395
18462
  } | {
18396
18463
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18397
18464
  subject_token: string;
@@ -18438,7 +18505,7 @@ declare function init(config: AuthHeroConfig): {
18438
18505
  client_id: string;
18439
18506
  username: string;
18440
18507
  otp: string;
18441
- realm: "sms" | "email";
18508
+ realm: "email" | "sms";
18442
18509
  } | {
18443
18510
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18444
18511
  subject_token: string;
@@ -18493,7 +18560,7 @@ declare function init(config: AuthHeroConfig): {
18493
18560
  client_id: string;
18494
18561
  username: string;
18495
18562
  otp: string;
18496
- realm: "sms" | "email";
18563
+ realm: "email" | "sms";
18497
18564
  } | {
18498
18565
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18499
18566
  subject_token: string;
@@ -18540,7 +18607,7 @@ declare function init(config: AuthHeroConfig): {
18540
18607
  client_id: string;
18541
18608
  username: string;
18542
18609
  otp: string;
18543
- realm: "sms" | "email";
18610
+ realm: "email" | "sms";
18544
18611
  } | {
18545
18612
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18546
18613
  subject_token: string;
@@ -19381,7 +19448,7 @@ declare function init(config: AuthHeroConfig): {
19381
19448
  } & {
19382
19449
  form: {
19383
19450
  username: string;
19384
- login_selection?: "code" | "password" | undefined;
19451
+ login_selection?: "password" | "code" | undefined;
19385
19452
  };
19386
19453
  };
19387
19454
  output: {};
@@ -19395,7 +19462,7 @@ declare function init(config: AuthHeroConfig): {
19395
19462
  } & {
19396
19463
  form: {
19397
19464
  username: string;
19398
- login_selection?: "code" | "password" | undefined;
19465
+ login_selection?: "password" | "code" | undefined;
19399
19466
  };
19400
19467
  };
19401
19468
  output: {};