authhero 5.17.0 → 5.17.1

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 (41) hide show
  1. package/dist/authhero.cjs +4 -4
  2. package/dist/authhero.d.ts +192 -192
  3. package/dist/authhero.mjs +48 -48
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/emails/defaults/Layout.d.ts +1 -1
  8. package/dist/types/emails/defaults/PrimaryButton.d.ts +1 -1
  9. package/dist/types/emails/defaults/ResetEmail.d.ts +1 -1
  10. package/dist/types/emails/defaults/ResetEmailByCode.d.ts +1 -1
  11. package/dist/types/emails/defaults/UserInvitation.d.ts +1 -1
  12. package/dist/types/emails/defaults/VerifyEmail.d.ts +1 -1
  13. package/dist/types/emails/defaults/VerifyEmailByCode.d.ts +1 -1
  14. package/dist/types/emails/defaults/WelcomeEmail.d.ts +1 -1
  15. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  16. package/dist/types/index.d.ts +191 -191
  17. package/dist/types/routes/auth-api/index.d.ts +20 -20
  18. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  19. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  20. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  21. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  22. package/dist/types/routes/management-api/actions.d.ts +1 -1
  23. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  24. package/dist/types/routes/management-api/clients.d.ts +7 -7
  25. package/dist/types/routes/management-api/connections.d.ts +1 -1
  26. package/dist/types/routes/management-api/email-templates.d.ts +14 -14
  27. package/dist/types/routes/management-api/forms.d.ts +119 -119
  28. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  29. package/dist/types/routes/management-api/index.d.ts +165 -165
  30. package/dist/types/routes/management-api/logs.d.ts +3 -3
  31. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  32. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  33. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  34. package/dist/types/routes/management-api/users.d.ts +2 -2
  35. package/dist/types/routes/universal-login/common.d.ts +2 -2
  36. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  37. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  39. package/dist/types/types/Hooks.d.ts +1 -1
  40. package/dist/types/types/IdToken.d.ts +1 -1
  41. package/package.json +5 -5
@@ -616,7 +616,7 @@ type HookEvent = {
616
616
  organization?: {
617
617
  id: string;
618
618
  name: string;
619
- display_name: string;
619
+ display_name?: string;
620
620
  metadata?: Record<string, unknown>;
621
621
  };
622
622
  resource_server?: {
@@ -2515,7 +2515,7 @@ declare function init(config: AuthHeroConfig): {
2515
2515
  };
2516
2516
  } & {
2517
2517
  json: {
2518
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
2518
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2519
2519
  phone_number?: string | undefined;
2520
2520
  totp_secret?: string | undefined;
2521
2521
  credential_id?: string | undefined;
@@ -2655,7 +2655,7 @@ declare function init(config: AuthHeroConfig): {
2655
2655
  };
2656
2656
  };
2657
2657
  output: {
2658
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2658
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2659
2659
  enabled: boolean;
2660
2660
  trial_expired?: boolean | undefined;
2661
2661
  }[];
@@ -2810,7 +2810,7 @@ declare function init(config: AuthHeroConfig): {
2810
2810
  $get: {
2811
2811
  input: {
2812
2812
  param: {
2813
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2813
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2814
2814
  };
2815
2815
  } & {
2816
2816
  header: {
@@ -2818,7 +2818,7 @@ declare function init(config: AuthHeroConfig): {
2818
2818
  };
2819
2819
  };
2820
2820
  output: {
2821
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2821
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2822
2822
  enabled: boolean;
2823
2823
  trial_expired?: boolean | undefined;
2824
2824
  };
@@ -2831,7 +2831,7 @@ declare function init(config: AuthHeroConfig): {
2831
2831
  $put: {
2832
2832
  input: {
2833
2833
  param: {
2834
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2834
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2835
2835
  };
2836
2836
  } & {
2837
2837
  header: {
@@ -2843,7 +2843,7 @@ declare function init(config: AuthHeroConfig): {
2843
2843
  };
2844
2844
  };
2845
2845
  output: {
2846
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2846
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2847
2847
  enabled: boolean;
2848
2848
  trial_expired?: boolean | undefined;
2849
2849
  };
@@ -3588,10 +3588,10 @@ declare function init(config: AuthHeroConfig): {
3588
3588
  invitee: {
3589
3589
  email?: string | undefined;
3590
3590
  };
3591
- id?: string | undefined;
3592
3591
  app_metadata?: Record<string, any> | undefined;
3593
3592
  user_metadata?: Record<string, any> | undefined;
3594
3593
  connection_id?: string | undefined;
3594
+ id?: string | undefined;
3595
3595
  roles?: string[] | undefined;
3596
3596
  ttl_sec?: number | undefined;
3597
3597
  send_invitation_email?: boolean | undefined;
@@ -5019,7 +5019,7 @@ declare function init(config: AuthHeroConfig): {
5019
5019
  hint?: string | undefined;
5020
5020
  messages?: {
5021
5021
  text: string;
5022
- type: "error" | "success" | "info" | "warning";
5022
+ type: "success" | "error" | "info" | "warning";
5023
5023
  id?: number | undefined;
5024
5024
  }[] | undefined;
5025
5025
  required?: boolean | undefined;
@@ -5037,7 +5037,7 @@ declare function init(config: AuthHeroConfig): {
5037
5037
  hint?: string | undefined;
5038
5038
  messages?: {
5039
5039
  text: string;
5040
- type: "error" | "success" | "info" | "warning";
5040
+ type: "success" | "error" | "info" | "warning";
5041
5041
  id?: number | undefined;
5042
5042
  }[] | undefined;
5043
5043
  required?: boolean | undefined;
@@ -5061,7 +5061,7 @@ declare function init(config: AuthHeroConfig): {
5061
5061
  hint?: string | undefined;
5062
5062
  messages?: {
5063
5063
  text: string;
5064
- type: "error" | "success" | "info" | "warning";
5064
+ type: "success" | "error" | "info" | "warning";
5065
5065
  id?: number | undefined;
5066
5066
  }[] | undefined;
5067
5067
  required?: boolean | undefined;
@@ -5085,7 +5085,7 @@ declare function init(config: AuthHeroConfig): {
5085
5085
  hint?: string | undefined;
5086
5086
  messages?: {
5087
5087
  text: string;
5088
- type: "error" | "success" | "info" | "warning";
5088
+ type: "success" | "error" | "info" | "warning";
5089
5089
  id?: number | undefined;
5090
5090
  }[] | undefined;
5091
5091
  required?: boolean | undefined;
@@ -5114,7 +5114,7 @@ declare function init(config: AuthHeroConfig): {
5114
5114
  hint?: string | undefined;
5115
5115
  messages?: {
5116
5116
  text: string;
5117
- type: "error" | "success" | "info" | "warning";
5117
+ type: "success" | "error" | "info" | "warning";
5118
5118
  id?: number | undefined;
5119
5119
  }[] | undefined;
5120
5120
  required?: boolean | undefined;
@@ -5129,7 +5129,7 @@ declare function init(config: AuthHeroConfig): {
5129
5129
  hint?: string | undefined;
5130
5130
  messages?: {
5131
5131
  text: string;
5132
- type: "error" | "success" | "info" | "warning";
5132
+ type: "success" | "error" | "info" | "warning";
5133
5133
  id?: number | undefined;
5134
5134
  }[] | undefined;
5135
5135
  required?: boolean | undefined;
@@ -5150,7 +5150,7 @@ declare function init(config: AuthHeroConfig): {
5150
5150
  hint?: string | undefined;
5151
5151
  messages?: {
5152
5152
  text: string;
5153
- type: "error" | "success" | "info" | "warning";
5153
+ type: "success" | "error" | "info" | "warning";
5154
5154
  id?: number | undefined;
5155
5155
  }[] | undefined;
5156
5156
  required?: boolean | undefined;
@@ -5175,7 +5175,7 @@ declare function init(config: AuthHeroConfig): {
5175
5175
  hint?: string | undefined;
5176
5176
  messages?: {
5177
5177
  text: string;
5178
- type: "error" | "success" | "info" | "warning";
5178
+ type: "success" | "error" | "info" | "warning";
5179
5179
  id?: number | undefined;
5180
5180
  }[] | undefined;
5181
5181
  required?: boolean | undefined;
@@ -5194,7 +5194,7 @@ declare function init(config: AuthHeroConfig): {
5194
5194
  hint?: string | undefined;
5195
5195
  messages?: {
5196
5196
  text: string;
5197
- type: "error" | "success" | "info" | "warning";
5197
+ type: "success" | "error" | "info" | "warning";
5198
5198
  id?: number | undefined;
5199
5199
  }[] | undefined;
5200
5200
  required?: boolean | undefined;
@@ -5214,7 +5214,7 @@ declare function init(config: AuthHeroConfig): {
5214
5214
  hint?: string | undefined;
5215
5215
  messages?: {
5216
5216
  text: string;
5217
- type: "error" | "success" | "info" | "warning";
5217
+ type: "success" | "error" | "info" | "warning";
5218
5218
  id?: number | undefined;
5219
5219
  }[] | undefined;
5220
5220
  required?: boolean | undefined;
@@ -5233,7 +5233,7 @@ declare function init(config: AuthHeroConfig): {
5233
5233
  hint?: string | undefined;
5234
5234
  messages?: {
5235
5235
  text: string;
5236
- type: "error" | "success" | "info" | "warning";
5236
+ type: "success" | "error" | "info" | "warning";
5237
5237
  id?: number | undefined;
5238
5238
  }[] | undefined;
5239
5239
  required?: boolean | undefined;
@@ -5255,7 +5255,7 @@ declare function init(config: AuthHeroConfig): {
5255
5255
  hint?: string | undefined;
5256
5256
  messages?: {
5257
5257
  text: string;
5258
- type: "error" | "success" | "info" | "warning";
5258
+ type: "success" | "error" | "info" | "warning";
5259
5259
  id?: number | undefined;
5260
5260
  }[] | undefined;
5261
5261
  required?: boolean | undefined;
@@ -5277,7 +5277,7 @@ declare function init(config: AuthHeroConfig): {
5277
5277
  hint?: string | undefined;
5278
5278
  messages?: {
5279
5279
  text: string;
5280
- type: "error" | "success" | "info" | "warning";
5280
+ type: "success" | "error" | "info" | "warning";
5281
5281
  id?: number | undefined;
5282
5282
  }[] | undefined;
5283
5283
  required?: boolean | undefined;
@@ -5296,7 +5296,7 @@ declare function init(config: AuthHeroConfig): {
5296
5296
  hint?: string | undefined;
5297
5297
  messages?: {
5298
5298
  text: string;
5299
- type: "error" | "success" | "info" | "warning";
5299
+ type: "success" | "error" | "info" | "warning";
5300
5300
  id?: number | undefined;
5301
5301
  }[] | undefined;
5302
5302
  required?: boolean | undefined;
@@ -5321,7 +5321,7 @@ declare function init(config: AuthHeroConfig): {
5321
5321
  hint?: string | undefined;
5322
5322
  messages?: {
5323
5323
  text: string;
5324
- type: "error" | "success" | "info" | "warning";
5324
+ type: "success" | "error" | "info" | "warning";
5325
5325
  id?: number | undefined;
5326
5326
  }[] | undefined;
5327
5327
  required?: boolean | undefined;
@@ -5342,7 +5342,7 @@ declare function init(config: AuthHeroConfig): {
5342
5342
  hint?: string | undefined;
5343
5343
  messages?: {
5344
5344
  text: string;
5345
- type: "error" | "success" | "info" | "warning";
5345
+ type: "success" | "error" | "info" | "warning";
5346
5346
  id?: number | undefined;
5347
5347
  }[] | undefined;
5348
5348
  required?: boolean | undefined;
@@ -5363,7 +5363,7 @@ declare function init(config: AuthHeroConfig): {
5363
5363
  hint?: string | undefined;
5364
5364
  messages?: {
5365
5365
  text: string;
5366
- type: "error" | "success" | "info" | "warning";
5366
+ type: "success" | "error" | "info" | "warning";
5367
5367
  id?: number | undefined;
5368
5368
  }[] | undefined;
5369
5369
  required?: boolean | undefined;
@@ -5596,7 +5596,7 @@ declare function init(config: AuthHeroConfig): {
5596
5596
  hint?: string | undefined;
5597
5597
  messages?: {
5598
5598
  text: string;
5599
- type: "error" | "success" | "info" | "warning";
5599
+ type: "success" | "error" | "info" | "warning";
5600
5600
  id?: number | undefined;
5601
5601
  }[] | undefined;
5602
5602
  required?: boolean | undefined;
@@ -5614,7 +5614,7 @@ declare function init(config: AuthHeroConfig): {
5614
5614
  hint?: string | undefined;
5615
5615
  messages?: {
5616
5616
  text: string;
5617
- type: "error" | "success" | "info" | "warning";
5617
+ type: "success" | "error" | "info" | "warning";
5618
5618
  id?: number | undefined;
5619
5619
  }[] | undefined;
5620
5620
  required?: boolean | undefined;
@@ -5638,7 +5638,7 @@ declare function init(config: AuthHeroConfig): {
5638
5638
  hint?: string | undefined;
5639
5639
  messages?: {
5640
5640
  text: string;
5641
- type: "error" | "success" | "info" | "warning";
5641
+ type: "success" | "error" | "info" | "warning";
5642
5642
  id?: number | undefined;
5643
5643
  }[] | undefined;
5644
5644
  required?: boolean | undefined;
@@ -5662,7 +5662,7 @@ declare function init(config: AuthHeroConfig): {
5662
5662
  hint?: string | undefined;
5663
5663
  messages?: {
5664
5664
  text: string;
5665
- type: "error" | "success" | "info" | "warning";
5665
+ type: "success" | "error" | "info" | "warning";
5666
5666
  id?: number | undefined;
5667
5667
  }[] | undefined;
5668
5668
  required?: boolean | undefined;
@@ -5691,7 +5691,7 @@ declare function init(config: AuthHeroConfig): {
5691
5691
  hint?: string | undefined;
5692
5692
  messages?: {
5693
5693
  text: string;
5694
- type: "error" | "success" | "info" | "warning";
5694
+ type: "success" | "error" | "info" | "warning";
5695
5695
  id?: number | undefined;
5696
5696
  }[] | undefined;
5697
5697
  required?: boolean | undefined;
@@ -5706,7 +5706,7 @@ declare function init(config: AuthHeroConfig): {
5706
5706
  hint?: string | undefined;
5707
5707
  messages?: {
5708
5708
  text: string;
5709
- type: "error" | "success" | "info" | "warning";
5709
+ type: "success" | "error" | "info" | "warning";
5710
5710
  id?: number | undefined;
5711
5711
  }[] | undefined;
5712
5712
  required?: boolean | undefined;
@@ -5727,7 +5727,7 @@ declare function init(config: AuthHeroConfig): {
5727
5727
  hint?: string | undefined;
5728
5728
  messages?: {
5729
5729
  text: string;
5730
- type: "error" | "success" | "info" | "warning";
5730
+ type: "success" | "error" | "info" | "warning";
5731
5731
  id?: number | undefined;
5732
5732
  }[] | undefined;
5733
5733
  required?: boolean | undefined;
@@ -5752,7 +5752,7 @@ declare function init(config: AuthHeroConfig): {
5752
5752
  hint?: string | undefined;
5753
5753
  messages?: {
5754
5754
  text: string;
5755
- type: "error" | "success" | "info" | "warning";
5755
+ type: "success" | "error" | "info" | "warning";
5756
5756
  id?: number | undefined;
5757
5757
  }[] | undefined;
5758
5758
  required?: boolean | undefined;
@@ -5771,7 +5771,7 @@ declare function init(config: AuthHeroConfig): {
5771
5771
  hint?: string | undefined;
5772
5772
  messages?: {
5773
5773
  text: string;
5774
- type: "error" | "success" | "info" | "warning";
5774
+ type: "success" | "error" | "info" | "warning";
5775
5775
  id?: number | undefined;
5776
5776
  }[] | undefined;
5777
5777
  required?: boolean | undefined;
@@ -5791,7 +5791,7 @@ declare function init(config: AuthHeroConfig): {
5791
5791
  hint?: string | undefined;
5792
5792
  messages?: {
5793
5793
  text: string;
5794
- type: "error" | "success" | "info" | "warning";
5794
+ type: "success" | "error" | "info" | "warning";
5795
5795
  id?: number | undefined;
5796
5796
  }[] | undefined;
5797
5797
  required?: boolean | undefined;
@@ -5810,7 +5810,7 @@ declare function init(config: AuthHeroConfig): {
5810
5810
  hint?: string | undefined;
5811
5811
  messages?: {
5812
5812
  text: string;
5813
- type: "error" | "success" | "info" | "warning";
5813
+ type: "success" | "error" | "info" | "warning";
5814
5814
  id?: number | undefined;
5815
5815
  }[] | undefined;
5816
5816
  required?: boolean | undefined;
@@ -5832,7 +5832,7 @@ declare function init(config: AuthHeroConfig): {
5832
5832
  hint?: string | undefined;
5833
5833
  messages?: {
5834
5834
  text: string;
5835
- type: "error" | "success" | "info" | "warning";
5835
+ type: "success" | "error" | "info" | "warning";
5836
5836
  id?: number | undefined;
5837
5837
  }[] | undefined;
5838
5838
  required?: boolean | undefined;
@@ -5854,7 +5854,7 @@ declare function init(config: AuthHeroConfig): {
5854
5854
  hint?: string | undefined;
5855
5855
  messages?: {
5856
5856
  text: string;
5857
- type: "error" | "success" | "info" | "warning";
5857
+ type: "success" | "error" | "info" | "warning";
5858
5858
  id?: number | undefined;
5859
5859
  }[] | undefined;
5860
5860
  required?: boolean | undefined;
@@ -5873,7 +5873,7 @@ declare function init(config: AuthHeroConfig): {
5873
5873
  hint?: string | undefined;
5874
5874
  messages?: {
5875
5875
  text: string;
5876
- type: "error" | "success" | "info" | "warning";
5876
+ type: "success" | "error" | "info" | "warning";
5877
5877
  id?: number | undefined;
5878
5878
  }[] | undefined;
5879
5879
  required?: boolean | undefined;
@@ -5898,7 +5898,7 @@ declare function init(config: AuthHeroConfig): {
5898
5898
  hint?: string | undefined;
5899
5899
  messages?: {
5900
5900
  text: string;
5901
- type: "error" | "success" | "info" | "warning";
5901
+ type: "success" | "error" | "info" | "warning";
5902
5902
  id?: number | undefined;
5903
5903
  }[] | undefined;
5904
5904
  required?: boolean | undefined;
@@ -5919,7 +5919,7 @@ declare function init(config: AuthHeroConfig): {
5919
5919
  hint?: string | undefined;
5920
5920
  messages?: {
5921
5921
  text: string;
5922
- type: "error" | "success" | "info" | "warning";
5922
+ type: "success" | "error" | "info" | "warning";
5923
5923
  id?: number | undefined;
5924
5924
  }[] | undefined;
5925
5925
  required?: boolean | undefined;
@@ -5940,7 +5940,7 @@ declare function init(config: AuthHeroConfig): {
5940
5940
  hint?: string | undefined;
5941
5941
  messages?: {
5942
5942
  text: string;
5943
- type: "error" | "success" | "info" | "warning";
5943
+ type: "success" | "error" | "info" | "warning";
5944
5944
  id?: number | undefined;
5945
5945
  }[] | undefined;
5946
5946
  required?: boolean | undefined;
@@ -6188,7 +6188,7 @@ declare function init(config: AuthHeroConfig): {
6188
6188
  hint?: string | undefined;
6189
6189
  messages?: {
6190
6190
  text: string;
6191
- type: "error" | "success" | "info" | "warning";
6191
+ type: "success" | "error" | "info" | "warning";
6192
6192
  id?: number | undefined;
6193
6193
  }[] | undefined;
6194
6194
  required?: boolean | undefined;
@@ -6206,7 +6206,7 @@ declare function init(config: AuthHeroConfig): {
6206
6206
  hint?: string | undefined;
6207
6207
  messages?: {
6208
6208
  text: string;
6209
- type: "error" | "success" | "info" | "warning";
6209
+ type: "success" | "error" | "info" | "warning";
6210
6210
  id?: number | undefined;
6211
6211
  }[] | undefined;
6212
6212
  required?: boolean | undefined;
@@ -6230,7 +6230,7 @@ declare function init(config: AuthHeroConfig): {
6230
6230
  hint?: string | undefined;
6231
6231
  messages?: {
6232
6232
  text: string;
6233
- type: "error" | "success" | "info" | "warning";
6233
+ type: "success" | "error" | "info" | "warning";
6234
6234
  id?: number | undefined;
6235
6235
  }[] | undefined;
6236
6236
  required?: boolean | undefined;
@@ -6254,7 +6254,7 @@ declare function init(config: AuthHeroConfig): {
6254
6254
  hint?: string | undefined;
6255
6255
  messages?: {
6256
6256
  text: string;
6257
- type: "error" | "success" | "info" | "warning";
6257
+ type: "success" | "error" | "info" | "warning";
6258
6258
  id?: number | undefined;
6259
6259
  }[] | undefined;
6260
6260
  required?: boolean | undefined;
@@ -6283,7 +6283,7 @@ declare function init(config: AuthHeroConfig): {
6283
6283
  hint?: string | undefined;
6284
6284
  messages?: {
6285
6285
  text: string;
6286
- type: "error" | "success" | "info" | "warning";
6286
+ type: "success" | "error" | "info" | "warning";
6287
6287
  id?: number | undefined;
6288
6288
  }[] | undefined;
6289
6289
  required?: boolean | undefined;
@@ -6298,7 +6298,7 @@ declare function init(config: AuthHeroConfig): {
6298
6298
  hint?: string | undefined;
6299
6299
  messages?: {
6300
6300
  text: string;
6301
- type: "error" | "success" | "info" | "warning";
6301
+ type: "success" | "error" | "info" | "warning";
6302
6302
  id?: number | undefined;
6303
6303
  }[] | undefined;
6304
6304
  required?: boolean | undefined;
@@ -6319,7 +6319,7 @@ declare function init(config: AuthHeroConfig): {
6319
6319
  hint?: string | undefined;
6320
6320
  messages?: {
6321
6321
  text: string;
6322
- type: "error" | "success" | "info" | "warning";
6322
+ type: "success" | "error" | "info" | "warning";
6323
6323
  id?: number | undefined;
6324
6324
  }[] | undefined;
6325
6325
  required?: boolean | undefined;
@@ -6344,7 +6344,7 @@ declare function init(config: AuthHeroConfig): {
6344
6344
  hint?: string | undefined;
6345
6345
  messages?: {
6346
6346
  text: string;
6347
- type: "error" | "success" | "info" | "warning";
6347
+ type: "success" | "error" | "info" | "warning";
6348
6348
  id?: number | undefined;
6349
6349
  }[] | undefined;
6350
6350
  required?: boolean | undefined;
@@ -6363,7 +6363,7 @@ declare function init(config: AuthHeroConfig): {
6363
6363
  hint?: string | undefined;
6364
6364
  messages?: {
6365
6365
  text: string;
6366
- type: "error" | "success" | "info" | "warning";
6366
+ type: "success" | "error" | "info" | "warning";
6367
6367
  id?: number | undefined;
6368
6368
  }[] | undefined;
6369
6369
  required?: boolean | undefined;
@@ -6383,7 +6383,7 @@ declare function init(config: AuthHeroConfig): {
6383
6383
  hint?: string | undefined;
6384
6384
  messages?: {
6385
6385
  text: string;
6386
- type: "error" | "success" | "info" | "warning";
6386
+ type: "success" | "error" | "info" | "warning";
6387
6387
  id?: number | undefined;
6388
6388
  }[] | undefined;
6389
6389
  required?: boolean | undefined;
@@ -6402,7 +6402,7 @@ declare function init(config: AuthHeroConfig): {
6402
6402
  hint?: string | undefined;
6403
6403
  messages?: {
6404
6404
  text: string;
6405
- type: "error" | "success" | "info" | "warning";
6405
+ type: "success" | "error" | "info" | "warning";
6406
6406
  id?: number | undefined;
6407
6407
  }[] | undefined;
6408
6408
  required?: boolean | undefined;
@@ -6424,7 +6424,7 @@ declare function init(config: AuthHeroConfig): {
6424
6424
  hint?: string | undefined;
6425
6425
  messages?: {
6426
6426
  text: string;
6427
- type: "error" | "success" | "info" | "warning";
6427
+ type: "success" | "error" | "info" | "warning";
6428
6428
  id?: number | undefined;
6429
6429
  }[] | undefined;
6430
6430
  required?: boolean | undefined;
@@ -6446,7 +6446,7 @@ declare function init(config: AuthHeroConfig): {
6446
6446
  hint?: string | undefined;
6447
6447
  messages?: {
6448
6448
  text: string;
6449
- type: "error" | "success" | "info" | "warning";
6449
+ type: "success" | "error" | "info" | "warning";
6450
6450
  id?: number | undefined;
6451
6451
  }[] | undefined;
6452
6452
  required?: boolean | undefined;
@@ -6465,7 +6465,7 @@ declare function init(config: AuthHeroConfig): {
6465
6465
  hint?: string | undefined;
6466
6466
  messages?: {
6467
6467
  text: string;
6468
- type: "error" | "success" | "info" | "warning";
6468
+ type: "success" | "error" | "info" | "warning";
6469
6469
  id?: number | undefined;
6470
6470
  }[] | undefined;
6471
6471
  required?: boolean | undefined;
@@ -6490,7 +6490,7 @@ declare function init(config: AuthHeroConfig): {
6490
6490
  hint?: string | undefined;
6491
6491
  messages?: {
6492
6492
  text: string;
6493
- type: "error" | "success" | "info" | "warning";
6493
+ type: "success" | "error" | "info" | "warning";
6494
6494
  id?: number | undefined;
6495
6495
  }[] | undefined;
6496
6496
  required?: boolean | undefined;
@@ -6511,7 +6511,7 @@ declare function init(config: AuthHeroConfig): {
6511
6511
  hint?: string | undefined;
6512
6512
  messages?: {
6513
6513
  text: string;
6514
- type: "error" | "success" | "info" | "warning";
6514
+ type: "success" | "error" | "info" | "warning";
6515
6515
  id?: number | undefined;
6516
6516
  }[] | undefined;
6517
6517
  required?: boolean | undefined;
@@ -6532,7 +6532,7 @@ declare function init(config: AuthHeroConfig): {
6532
6532
  hint?: string | undefined;
6533
6533
  messages?: {
6534
6534
  text: string;
6535
- type: "error" | "success" | "info" | "warning";
6535
+ type: "success" | "error" | "info" | "warning";
6536
6536
  id?: number | undefined;
6537
6537
  }[] | undefined;
6538
6538
  required?: boolean | undefined;
@@ -6786,7 +6786,7 @@ declare function init(config: AuthHeroConfig): {
6786
6786
  hint?: string | undefined;
6787
6787
  messages?: {
6788
6788
  text: string;
6789
- type: "error" | "success" | "info" | "warning";
6789
+ type: "success" | "error" | "info" | "warning";
6790
6790
  id?: number | undefined;
6791
6791
  }[] | undefined;
6792
6792
  required?: boolean | undefined;
@@ -6804,7 +6804,7 @@ declare function init(config: AuthHeroConfig): {
6804
6804
  hint?: string | undefined;
6805
6805
  messages?: {
6806
6806
  text: string;
6807
- type: "error" | "success" | "info" | "warning";
6807
+ type: "success" | "error" | "info" | "warning";
6808
6808
  id?: number | undefined;
6809
6809
  }[] | undefined;
6810
6810
  required?: boolean | undefined;
@@ -6828,7 +6828,7 @@ declare function init(config: AuthHeroConfig): {
6828
6828
  hint?: string | undefined;
6829
6829
  messages?: {
6830
6830
  text: string;
6831
- type: "error" | "success" | "info" | "warning";
6831
+ type: "success" | "error" | "info" | "warning";
6832
6832
  id?: number | undefined;
6833
6833
  }[] | undefined;
6834
6834
  required?: boolean | undefined;
@@ -6852,7 +6852,7 @@ declare function init(config: AuthHeroConfig): {
6852
6852
  hint?: string | undefined;
6853
6853
  messages?: {
6854
6854
  text: string;
6855
- type: "error" | "success" | "info" | "warning";
6855
+ type: "success" | "error" | "info" | "warning";
6856
6856
  id?: number | undefined;
6857
6857
  }[] | undefined;
6858
6858
  required?: boolean | undefined;
@@ -6877,7 +6877,7 @@ declare function init(config: AuthHeroConfig): {
6877
6877
  hint?: string | undefined;
6878
6878
  messages?: {
6879
6879
  text: string;
6880
- type: "error" | "success" | "info" | "warning";
6880
+ type: "success" | "error" | "info" | "warning";
6881
6881
  id?: number | undefined;
6882
6882
  }[] | undefined;
6883
6883
  required?: boolean | undefined;
@@ -6892,7 +6892,7 @@ declare function init(config: AuthHeroConfig): {
6892
6892
  hint?: string | undefined;
6893
6893
  messages?: {
6894
6894
  text: string;
6895
- type: "error" | "success" | "info" | "warning";
6895
+ type: "success" | "error" | "info" | "warning";
6896
6896
  id?: number | undefined;
6897
6897
  }[] | undefined;
6898
6898
  required?: boolean | undefined;
@@ -6913,7 +6913,7 @@ declare function init(config: AuthHeroConfig): {
6913
6913
  hint?: string | undefined;
6914
6914
  messages?: {
6915
6915
  text: string;
6916
- type: "error" | "success" | "info" | "warning";
6916
+ type: "success" | "error" | "info" | "warning";
6917
6917
  id?: number | undefined;
6918
6918
  }[] | undefined;
6919
6919
  required?: boolean | undefined;
@@ -6938,7 +6938,7 @@ declare function init(config: AuthHeroConfig): {
6938
6938
  hint?: string | undefined;
6939
6939
  messages?: {
6940
6940
  text: string;
6941
- type: "error" | "success" | "info" | "warning";
6941
+ type: "success" | "error" | "info" | "warning";
6942
6942
  id?: number | undefined;
6943
6943
  }[] | undefined;
6944
6944
  required?: boolean | undefined;
@@ -6957,7 +6957,7 @@ declare function init(config: AuthHeroConfig): {
6957
6957
  hint?: string | undefined;
6958
6958
  messages?: {
6959
6959
  text: string;
6960
- type: "error" | "success" | "info" | "warning";
6960
+ type: "success" | "error" | "info" | "warning";
6961
6961
  id?: number | undefined;
6962
6962
  }[] | undefined;
6963
6963
  required?: boolean | undefined;
@@ -6977,7 +6977,7 @@ declare function init(config: AuthHeroConfig): {
6977
6977
  hint?: string | undefined;
6978
6978
  messages?: {
6979
6979
  text: string;
6980
- type: "error" | "success" | "info" | "warning";
6980
+ type: "success" | "error" | "info" | "warning";
6981
6981
  id?: number | undefined;
6982
6982
  }[] | undefined;
6983
6983
  required?: boolean | undefined;
@@ -6996,7 +6996,7 @@ declare function init(config: AuthHeroConfig): {
6996
6996
  hint?: string | undefined;
6997
6997
  messages?: {
6998
6998
  text: string;
6999
- type: "error" | "success" | "info" | "warning";
6999
+ type: "success" | "error" | "info" | "warning";
7000
7000
  id?: number | undefined;
7001
7001
  }[] | undefined;
7002
7002
  required?: boolean | undefined;
@@ -7018,7 +7018,7 @@ declare function init(config: AuthHeroConfig): {
7018
7018
  hint?: string | undefined;
7019
7019
  messages?: {
7020
7020
  text: string;
7021
- type: "error" | "success" | "info" | "warning";
7021
+ type: "success" | "error" | "info" | "warning";
7022
7022
  id?: number | undefined;
7023
7023
  }[] | undefined;
7024
7024
  required?: boolean | undefined;
@@ -7040,7 +7040,7 @@ declare function init(config: AuthHeroConfig): {
7040
7040
  hint?: string | undefined;
7041
7041
  messages?: {
7042
7042
  text: string;
7043
- type: "error" | "success" | "info" | "warning";
7043
+ type: "success" | "error" | "info" | "warning";
7044
7044
  id?: number | undefined;
7045
7045
  }[] | undefined;
7046
7046
  required?: boolean | undefined;
@@ -7059,7 +7059,7 @@ declare function init(config: AuthHeroConfig): {
7059
7059
  hint?: string | undefined;
7060
7060
  messages?: {
7061
7061
  text: string;
7062
- type: "error" | "success" | "info" | "warning";
7062
+ type: "success" | "error" | "info" | "warning";
7063
7063
  id?: number | undefined;
7064
7064
  }[] | undefined;
7065
7065
  required?: boolean | undefined;
@@ -7084,7 +7084,7 @@ declare function init(config: AuthHeroConfig): {
7084
7084
  hint?: string | undefined;
7085
7085
  messages?: {
7086
7086
  text: string;
7087
- type: "error" | "success" | "info" | "warning";
7087
+ type: "success" | "error" | "info" | "warning";
7088
7088
  id?: number | undefined;
7089
7089
  }[] | undefined;
7090
7090
  required?: boolean | undefined;
@@ -7105,7 +7105,7 @@ declare function init(config: AuthHeroConfig): {
7105
7105
  hint?: string | undefined;
7106
7106
  messages?: {
7107
7107
  text: string;
7108
- type: "error" | "success" | "info" | "warning";
7108
+ type: "success" | "error" | "info" | "warning";
7109
7109
  id?: number | undefined;
7110
7110
  }[] | undefined;
7111
7111
  required?: boolean | undefined;
@@ -7126,7 +7126,7 @@ declare function init(config: AuthHeroConfig): {
7126
7126
  hint?: string | undefined;
7127
7127
  messages?: {
7128
7128
  text: string;
7129
- type: "error" | "success" | "info" | "warning";
7129
+ type: "success" | "error" | "info" | "warning";
7130
7130
  id?: number | undefined;
7131
7131
  }[] | undefined;
7132
7132
  required?: boolean | undefined;
@@ -7357,7 +7357,7 @@ declare function init(config: AuthHeroConfig): {
7357
7357
  hint?: string | undefined;
7358
7358
  messages?: {
7359
7359
  text: string;
7360
- type: "error" | "success" | "info" | "warning";
7360
+ type: "success" | "error" | "info" | "warning";
7361
7361
  id?: number | undefined;
7362
7362
  }[] | undefined;
7363
7363
  required?: boolean | undefined;
@@ -7375,7 +7375,7 @@ declare function init(config: AuthHeroConfig): {
7375
7375
  hint?: string | undefined;
7376
7376
  messages?: {
7377
7377
  text: string;
7378
- type: "error" | "success" | "info" | "warning";
7378
+ type: "success" | "error" | "info" | "warning";
7379
7379
  id?: number | undefined;
7380
7380
  }[] | undefined;
7381
7381
  required?: boolean | undefined;
@@ -7399,7 +7399,7 @@ declare function init(config: AuthHeroConfig): {
7399
7399
  hint?: string | undefined;
7400
7400
  messages?: {
7401
7401
  text: string;
7402
- type: "error" | "success" | "info" | "warning";
7402
+ type: "success" | "error" | "info" | "warning";
7403
7403
  id?: number | undefined;
7404
7404
  }[] | undefined;
7405
7405
  required?: boolean | undefined;
@@ -7423,7 +7423,7 @@ declare function init(config: AuthHeroConfig): {
7423
7423
  hint?: string | undefined;
7424
7424
  messages?: {
7425
7425
  text: string;
7426
- type: "error" | "success" | "info" | "warning";
7426
+ type: "success" | "error" | "info" | "warning";
7427
7427
  id?: number | undefined;
7428
7428
  }[] | undefined;
7429
7429
  required?: boolean | undefined;
@@ -7452,7 +7452,7 @@ declare function init(config: AuthHeroConfig): {
7452
7452
  hint?: string | undefined;
7453
7453
  messages?: {
7454
7454
  text: string;
7455
- type: "error" | "success" | "info" | "warning";
7455
+ type: "success" | "error" | "info" | "warning";
7456
7456
  id?: number | undefined;
7457
7457
  }[] | undefined;
7458
7458
  required?: boolean | undefined;
@@ -7467,7 +7467,7 @@ declare function init(config: AuthHeroConfig): {
7467
7467
  hint?: string | undefined;
7468
7468
  messages?: {
7469
7469
  text: string;
7470
- type: "error" | "success" | "info" | "warning";
7470
+ type: "success" | "error" | "info" | "warning";
7471
7471
  id?: number | undefined;
7472
7472
  }[] | undefined;
7473
7473
  required?: boolean | undefined;
@@ -7488,7 +7488,7 @@ declare function init(config: AuthHeroConfig): {
7488
7488
  hint?: string | undefined;
7489
7489
  messages?: {
7490
7490
  text: string;
7491
- type: "error" | "success" | "info" | "warning";
7491
+ type: "success" | "error" | "info" | "warning";
7492
7492
  id?: number | undefined;
7493
7493
  }[] | undefined;
7494
7494
  required?: boolean | undefined;
@@ -7513,7 +7513,7 @@ declare function init(config: AuthHeroConfig): {
7513
7513
  hint?: string | undefined;
7514
7514
  messages?: {
7515
7515
  text: string;
7516
- type: "error" | "success" | "info" | "warning";
7516
+ type: "success" | "error" | "info" | "warning";
7517
7517
  id?: number | undefined;
7518
7518
  }[] | undefined;
7519
7519
  required?: boolean | undefined;
@@ -7532,7 +7532,7 @@ declare function init(config: AuthHeroConfig): {
7532
7532
  hint?: string | undefined;
7533
7533
  messages?: {
7534
7534
  text: string;
7535
- type: "error" | "success" | "info" | "warning";
7535
+ type: "success" | "error" | "info" | "warning";
7536
7536
  id?: number | undefined;
7537
7537
  }[] | undefined;
7538
7538
  required?: boolean | undefined;
@@ -7552,7 +7552,7 @@ declare function init(config: AuthHeroConfig): {
7552
7552
  hint?: string | undefined;
7553
7553
  messages?: {
7554
7554
  text: string;
7555
- type: "error" | "success" | "info" | "warning";
7555
+ type: "success" | "error" | "info" | "warning";
7556
7556
  id?: number | undefined;
7557
7557
  }[] | undefined;
7558
7558
  required?: boolean | undefined;
@@ -7571,7 +7571,7 @@ declare function init(config: AuthHeroConfig): {
7571
7571
  hint?: string | undefined;
7572
7572
  messages?: {
7573
7573
  text: string;
7574
- type: "error" | "success" | "info" | "warning";
7574
+ type: "success" | "error" | "info" | "warning";
7575
7575
  id?: number | undefined;
7576
7576
  }[] | undefined;
7577
7577
  required?: boolean | undefined;
@@ -7593,7 +7593,7 @@ declare function init(config: AuthHeroConfig): {
7593
7593
  hint?: string | undefined;
7594
7594
  messages?: {
7595
7595
  text: string;
7596
- type: "error" | "success" | "info" | "warning";
7596
+ type: "success" | "error" | "info" | "warning";
7597
7597
  id?: number | undefined;
7598
7598
  }[] | undefined;
7599
7599
  required?: boolean | undefined;
@@ -7615,7 +7615,7 @@ declare function init(config: AuthHeroConfig): {
7615
7615
  hint?: string | undefined;
7616
7616
  messages?: {
7617
7617
  text: string;
7618
- type: "error" | "success" | "info" | "warning";
7618
+ type: "success" | "error" | "info" | "warning";
7619
7619
  id?: number | undefined;
7620
7620
  }[] | undefined;
7621
7621
  required?: boolean | undefined;
@@ -7634,7 +7634,7 @@ declare function init(config: AuthHeroConfig): {
7634
7634
  hint?: string | undefined;
7635
7635
  messages?: {
7636
7636
  text: string;
7637
- type: "error" | "success" | "info" | "warning";
7637
+ type: "success" | "error" | "info" | "warning";
7638
7638
  id?: number | undefined;
7639
7639
  }[] | undefined;
7640
7640
  required?: boolean | undefined;
@@ -7659,7 +7659,7 @@ declare function init(config: AuthHeroConfig): {
7659
7659
  hint?: string | undefined;
7660
7660
  messages?: {
7661
7661
  text: string;
7662
- type: "error" | "success" | "info" | "warning";
7662
+ type: "success" | "error" | "info" | "warning";
7663
7663
  id?: number | undefined;
7664
7664
  }[] | undefined;
7665
7665
  required?: boolean | undefined;
@@ -7680,7 +7680,7 @@ declare function init(config: AuthHeroConfig): {
7680
7680
  hint?: string | undefined;
7681
7681
  messages?: {
7682
7682
  text: string;
7683
- type: "error" | "success" | "info" | "warning";
7683
+ type: "success" | "error" | "info" | "warning";
7684
7684
  id?: number | undefined;
7685
7685
  }[] | undefined;
7686
7686
  required?: boolean | undefined;
@@ -7701,7 +7701,7 @@ declare function init(config: AuthHeroConfig): {
7701
7701
  hint?: string | undefined;
7702
7702
  messages?: {
7703
7703
  text: string;
7704
- type: "error" | "success" | "info" | "warning";
7704
+ type: "success" | "error" | "info" | "warning";
7705
7705
  id?: number | undefined;
7706
7706
  }[] | undefined;
7707
7707
  required?: boolean | undefined;
@@ -7934,7 +7934,7 @@ declare function init(config: AuthHeroConfig): {
7934
7934
  hint?: string | undefined;
7935
7935
  messages?: {
7936
7936
  text: string;
7937
- type: "error" | "success" | "info" | "warning";
7937
+ type: "success" | "error" | "info" | "warning";
7938
7938
  id?: number | undefined;
7939
7939
  }[] | undefined;
7940
7940
  required?: boolean | undefined;
@@ -7952,7 +7952,7 @@ declare function init(config: AuthHeroConfig): {
7952
7952
  hint?: string | undefined;
7953
7953
  messages?: {
7954
7954
  text: string;
7955
- type: "error" | "success" | "info" | "warning";
7955
+ type: "success" | "error" | "info" | "warning";
7956
7956
  id?: number | undefined;
7957
7957
  }[] | undefined;
7958
7958
  required?: boolean | undefined;
@@ -7976,7 +7976,7 @@ declare function init(config: AuthHeroConfig): {
7976
7976
  hint?: string | undefined;
7977
7977
  messages?: {
7978
7978
  text: string;
7979
- type: "error" | "success" | "info" | "warning";
7979
+ type: "success" | "error" | "info" | "warning";
7980
7980
  id?: number | undefined;
7981
7981
  }[] | undefined;
7982
7982
  required?: boolean | undefined;
@@ -8000,7 +8000,7 @@ declare function init(config: AuthHeroConfig): {
8000
8000
  hint?: string | undefined;
8001
8001
  messages?: {
8002
8002
  text: string;
8003
- type: "error" | "success" | "info" | "warning";
8003
+ type: "success" | "error" | "info" | "warning";
8004
8004
  id?: number | undefined;
8005
8005
  }[] | undefined;
8006
8006
  required?: boolean | undefined;
@@ -8025,7 +8025,7 @@ declare function init(config: AuthHeroConfig): {
8025
8025
  hint?: string | undefined;
8026
8026
  messages?: {
8027
8027
  text: string;
8028
- type: "error" | "success" | "info" | "warning";
8028
+ type: "success" | "error" | "info" | "warning";
8029
8029
  id?: number | undefined;
8030
8030
  }[] | undefined;
8031
8031
  required?: boolean | undefined;
@@ -8040,7 +8040,7 @@ declare function init(config: AuthHeroConfig): {
8040
8040
  hint?: string | undefined;
8041
8041
  messages?: {
8042
8042
  text: string;
8043
- type: "error" | "success" | "info" | "warning";
8043
+ type: "success" | "error" | "info" | "warning";
8044
8044
  id?: number | undefined;
8045
8045
  }[] | undefined;
8046
8046
  required?: boolean | undefined;
@@ -8061,7 +8061,7 @@ declare function init(config: AuthHeroConfig): {
8061
8061
  hint?: string | undefined;
8062
8062
  messages?: {
8063
8063
  text: string;
8064
- type: "error" | "success" | "info" | "warning";
8064
+ type: "success" | "error" | "info" | "warning";
8065
8065
  id?: number | undefined;
8066
8066
  }[] | undefined;
8067
8067
  required?: boolean | undefined;
@@ -8086,7 +8086,7 @@ declare function init(config: AuthHeroConfig): {
8086
8086
  hint?: string | undefined;
8087
8087
  messages?: {
8088
8088
  text: string;
8089
- type: "error" | "success" | "info" | "warning";
8089
+ type: "success" | "error" | "info" | "warning";
8090
8090
  id?: number | undefined;
8091
8091
  }[] | undefined;
8092
8092
  required?: boolean | undefined;
@@ -8105,7 +8105,7 @@ declare function init(config: AuthHeroConfig): {
8105
8105
  hint?: string | undefined;
8106
8106
  messages?: {
8107
8107
  text: string;
8108
- type: "error" | "success" | "info" | "warning";
8108
+ type: "success" | "error" | "info" | "warning";
8109
8109
  id?: number | undefined;
8110
8110
  }[] | undefined;
8111
8111
  required?: boolean | undefined;
@@ -8125,7 +8125,7 @@ declare function init(config: AuthHeroConfig): {
8125
8125
  hint?: string | undefined;
8126
8126
  messages?: {
8127
8127
  text: string;
8128
- type: "error" | "success" | "info" | "warning";
8128
+ type: "success" | "error" | "info" | "warning";
8129
8129
  id?: number | undefined;
8130
8130
  }[] | undefined;
8131
8131
  required?: boolean | undefined;
@@ -8144,7 +8144,7 @@ declare function init(config: AuthHeroConfig): {
8144
8144
  hint?: string | undefined;
8145
8145
  messages?: {
8146
8146
  text: string;
8147
- type: "error" | "success" | "info" | "warning";
8147
+ type: "success" | "error" | "info" | "warning";
8148
8148
  id?: number | undefined;
8149
8149
  }[] | undefined;
8150
8150
  required?: boolean | undefined;
@@ -8166,7 +8166,7 @@ declare function init(config: AuthHeroConfig): {
8166
8166
  hint?: string | undefined;
8167
8167
  messages?: {
8168
8168
  text: string;
8169
- type: "error" | "success" | "info" | "warning";
8169
+ type: "success" | "error" | "info" | "warning";
8170
8170
  id?: number | undefined;
8171
8171
  }[] | undefined;
8172
8172
  required?: boolean | undefined;
@@ -8188,7 +8188,7 @@ declare function init(config: AuthHeroConfig): {
8188
8188
  hint?: string | undefined;
8189
8189
  messages?: {
8190
8190
  text: string;
8191
- type: "error" | "success" | "info" | "warning";
8191
+ type: "success" | "error" | "info" | "warning";
8192
8192
  id?: number | undefined;
8193
8193
  }[] | undefined;
8194
8194
  required?: boolean | undefined;
@@ -8207,7 +8207,7 @@ declare function init(config: AuthHeroConfig): {
8207
8207
  hint?: string | undefined;
8208
8208
  messages?: {
8209
8209
  text: string;
8210
- type: "error" | "success" | "info" | "warning";
8210
+ type: "success" | "error" | "info" | "warning";
8211
8211
  id?: number | undefined;
8212
8212
  }[] | undefined;
8213
8213
  required?: boolean | undefined;
@@ -8232,7 +8232,7 @@ declare function init(config: AuthHeroConfig): {
8232
8232
  hint?: string | undefined;
8233
8233
  messages?: {
8234
8234
  text: string;
8235
- type: "error" | "success" | "info" | "warning";
8235
+ type: "success" | "error" | "info" | "warning";
8236
8236
  id?: number | undefined;
8237
8237
  }[] | undefined;
8238
8238
  required?: boolean | undefined;
@@ -8253,7 +8253,7 @@ declare function init(config: AuthHeroConfig): {
8253
8253
  hint?: string | undefined;
8254
8254
  messages?: {
8255
8255
  text: string;
8256
- type: "error" | "success" | "info" | "warning";
8256
+ type: "success" | "error" | "info" | "warning";
8257
8257
  id?: number | undefined;
8258
8258
  }[] | undefined;
8259
8259
  required?: boolean | undefined;
@@ -8274,7 +8274,7 @@ declare function init(config: AuthHeroConfig): {
8274
8274
  hint?: string | undefined;
8275
8275
  messages?: {
8276
8276
  text: string;
8277
- type: "error" | "success" | "info" | "warning";
8277
+ type: "success" | "error" | "info" | "warning";
8278
8278
  id?: number | undefined;
8279
8279
  }[] | undefined;
8280
8280
  required?: boolean | undefined;
@@ -8505,7 +8505,7 @@ declare function init(config: AuthHeroConfig): {
8505
8505
  hint?: string | undefined;
8506
8506
  messages?: {
8507
8507
  text: string;
8508
- type: "error" | "success" | "info" | "warning";
8508
+ type: "success" | "error" | "info" | "warning";
8509
8509
  id?: number | undefined;
8510
8510
  }[] | undefined;
8511
8511
  required?: boolean | undefined;
@@ -8523,7 +8523,7 @@ declare function init(config: AuthHeroConfig): {
8523
8523
  hint?: string | undefined;
8524
8524
  messages?: {
8525
8525
  text: string;
8526
- type: "error" | "success" | "info" | "warning";
8526
+ type: "success" | "error" | "info" | "warning";
8527
8527
  id?: number | undefined;
8528
8528
  }[] | undefined;
8529
8529
  required?: boolean | undefined;
@@ -8547,7 +8547,7 @@ declare function init(config: AuthHeroConfig): {
8547
8547
  hint?: string | undefined;
8548
8548
  messages?: {
8549
8549
  text: string;
8550
- type: "error" | "success" | "info" | "warning";
8550
+ type: "success" | "error" | "info" | "warning";
8551
8551
  id?: number | undefined;
8552
8552
  }[] | undefined;
8553
8553
  required?: boolean | undefined;
@@ -8571,7 +8571,7 @@ declare function init(config: AuthHeroConfig): {
8571
8571
  hint?: string | undefined;
8572
8572
  messages?: {
8573
8573
  text: string;
8574
- type: "error" | "success" | "info" | "warning";
8574
+ type: "success" | "error" | "info" | "warning";
8575
8575
  id?: number | undefined;
8576
8576
  }[] | undefined;
8577
8577
  required?: boolean | undefined;
@@ -8600,7 +8600,7 @@ declare function init(config: AuthHeroConfig): {
8600
8600
  hint?: string | undefined;
8601
8601
  messages?: {
8602
8602
  text: string;
8603
- type: "error" | "success" | "info" | "warning";
8603
+ type: "success" | "error" | "info" | "warning";
8604
8604
  id?: number | undefined;
8605
8605
  }[] | undefined;
8606
8606
  required?: boolean | undefined;
@@ -8615,7 +8615,7 @@ declare function init(config: AuthHeroConfig): {
8615
8615
  hint?: string | undefined;
8616
8616
  messages?: {
8617
8617
  text: string;
8618
- type: "error" | "success" | "info" | "warning";
8618
+ type: "success" | "error" | "info" | "warning";
8619
8619
  id?: number | undefined;
8620
8620
  }[] | undefined;
8621
8621
  required?: boolean | undefined;
@@ -8636,7 +8636,7 @@ declare function init(config: AuthHeroConfig): {
8636
8636
  hint?: string | undefined;
8637
8637
  messages?: {
8638
8638
  text: string;
8639
- type: "error" | "success" | "info" | "warning";
8639
+ type: "success" | "error" | "info" | "warning";
8640
8640
  id?: number | undefined;
8641
8641
  }[] | undefined;
8642
8642
  required?: boolean | undefined;
@@ -8661,7 +8661,7 @@ declare function init(config: AuthHeroConfig): {
8661
8661
  hint?: string | undefined;
8662
8662
  messages?: {
8663
8663
  text: string;
8664
- type: "error" | "success" | "info" | "warning";
8664
+ type: "success" | "error" | "info" | "warning";
8665
8665
  id?: number | undefined;
8666
8666
  }[] | undefined;
8667
8667
  required?: boolean | undefined;
@@ -8680,7 +8680,7 @@ declare function init(config: AuthHeroConfig): {
8680
8680
  hint?: string | undefined;
8681
8681
  messages?: {
8682
8682
  text: string;
8683
- type: "error" | "success" | "info" | "warning";
8683
+ type: "success" | "error" | "info" | "warning";
8684
8684
  id?: number | undefined;
8685
8685
  }[] | undefined;
8686
8686
  required?: boolean | undefined;
@@ -8700,7 +8700,7 @@ declare function init(config: AuthHeroConfig): {
8700
8700
  hint?: string | undefined;
8701
8701
  messages?: {
8702
8702
  text: string;
8703
- type: "error" | "success" | "info" | "warning";
8703
+ type: "success" | "error" | "info" | "warning";
8704
8704
  id?: number | undefined;
8705
8705
  }[] | undefined;
8706
8706
  required?: boolean | undefined;
@@ -8719,7 +8719,7 @@ declare function init(config: AuthHeroConfig): {
8719
8719
  hint?: string | undefined;
8720
8720
  messages?: {
8721
8721
  text: string;
8722
- type: "error" | "success" | "info" | "warning";
8722
+ type: "success" | "error" | "info" | "warning";
8723
8723
  id?: number | undefined;
8724
8724
  }[] | undefined;
8725
8725
  required?: boolean | undefined;
@@ -8741,7 +8741,7 @@ declare function init(config: AuthHeroConfig): {
8741
8741
  hint?: string | undefined;
8742
8742
  messages?: {
8743
8743
  text: string;
8744
- type: "error" | "success" | "info" | "warning";
8744
+ type: "success" | "error" | "info" | "warning";
8745
8745
  id?: number | undefined;
8746
8746
  }[] | undefined;
8747
8747
  required?: boolean | undefined;
@@ -8763,7 +8763,7 @@ declare function init(config: AuthHeroConfig): {
8763
8763
  hint?: string | undefined;
8764
8764
  messages?: {
8765
8765
  text: string;
8766
- type: "error" | "success" | "info" | "warning";
8766
+ type: "success" | "error" | "info" | "warning";
8767
8767
  id?: number | undefined;
8768
8768
  }[] | undefined;
8769
8769
  required?: boolean | undefined;
@@ -8782,7 +8782,7 @@ declare function init(config: AuthHeroConfig): {
8782
8782
  hint?: string | undefined;
8783
8783
  messages?: {
8784
8784
  text: string;
8785
- type: "error" | "success" | "info" | "warning";
8785
+ type: "success" | "error" | "info" | "warning";
8786
8786
  id?: number | undefined;
8787
8787
  }[] | undefined;
8788
8788
  required?: boolean | undefined;
@@ -8807,7 +8807,7 @@ declare function init(config: AuthHeroConfig): {
8807
8807
  hint?: string | undefined;
8808
8808
  messages?: {
8809
8809
  text: string;
8810
- type: "error" | "success" | "info" | "warning";
8810
+ type: "success" | "error" | "info" | "warning";
8811
8811
  id?: number | undefined;
8812
8812
  }[] | undefined;
8813
8813
  required?: boolean | undefined;
@@ -8828,7 +8828,7 @@ declare function init(config: AuthHeroConfig): {
8828
8828
  hint?: string | undefined;
8829
8829
  messages?: {
8830
8830
  text: string;
8831
- type: "error" | "success" | "info" | "warning";
8831
+ type: "success" | "error" | "info" | "warning";
8832
8832
  id?: number | undefined;
8833
8833
  }[] | undefined;
8834
8834
  required?: boolean | undefined;
@@ -8849,7 +8849,7 @@ declare function init(config: AuthHeroConfig): {
8849
8849
  hint?: string | undefined;
8850
8850
  messages?: {
8851
8851
  text: string;
8852
- type: "error" | "success" | "info" | "warning";
8852
+ type: "success" | "error" | "info" | "warning";
8853
8853
  id?: number | undefined;
8854
8854
  }[] | undefined;
8855
8855
  required?: boolean | undefined;
@@ -9079,7 +9079,7 @@ declare function init(config: AuthHeroConfig): {
9079
9079
  };
9080
9080
  };
9081
9081
  output: {
9082
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9082
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9083
9083
  language: string;
9084
9084
  }[];
9085
9085
  outputFormat: "json";
@@ -9117,7 +9117,7 @@ declare function init(config: AuthHeroConfig): {
9117
9117
  $get: {
9118
9118
  input: {
9119
9119
  param: {
9120
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9120
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9121
9121
  language: string;
9122
9122
  };
9123
9123
  } & {
@@ -9139,7 +9139,7 @@ declare function init(config: AuthHeroConfig): {
9139
9139
  $put: {
9140
9140
  input: {
9141
9141
  param: {
9142
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9142
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9143
9143
  language: string;
9144
9144
  };
9145
9145
  } & {
@@ -9163,7 +9163,7 @@ declare function init(config: AuthHeroConfig): {
9163
9163
  $delete: {
9164
9164
  input: {
9165
9165
  param: {
9166
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9166
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9167
9167
  language: string;
9168
9168
  };
9169
9169
  } & {
@@ -10025,7 +10025,7 @@ declare function init(config: AuthHeroConfig): {
10025
10025
  };
10026
10026
  } | {
10027
10027
  mode: "inline";
10028
- status: "error" | "success";
10028
+ status: "success" | "error";
10029
10029
  connection_id: string;
10030
10030
  connection_name: string;
10031
10031
  strategy: string;
@@ -10912,7 +10912,7 @@ declare function init(config: AuthHeroConfig): {
10912
10912
  created_at: string;
10913
10913
  updated_at: string;
10914
10914
  name: string;
10915
- provider: "auth0" | "cognito" | "okta" | "oidc";
10915
+ provider: "auth0" | "oidc" | "cognito" | "okta";
10916
10916
  connection: string;
10917
10917
  enabled: boolean;
10918
10918
  credentials: {
@@ -10944,7 +10944,7 @@ declare function init(config: AuthHeroConfig): {
10944
10944
  created_at: string;
10945
10945
  updated_at: string;
10946
10946
  name: string;
10947
- provider: "auth0" | "cognito" | "okta" | "oidc";
10947
+ provider: "auth0" | "oidc" | "cognito" | "okta";
10948
10948
  connection: string;
10949
10949
  enabled: boolean;
10950
10950
  credentials: {
@@ -10970,7 +10970,7 @@ declare function init(config: AuthHeroConfig): {
10970
10970
  } & {
10971
10971
  json: {
10972
10972
  name: string;
10973
- provider: "auth0" | "cognito" | "okta" | "oidc";
10973
+ provider: "auth0" | "oidc" | "cognito" | "okta";
10974
10974
  connection: string;
10975
10975
  credentials: {
10976
10976
  domain: string;
@@ -10987,7 +10987,7 @@ declare function init(config: AuthHeroConfig): {
10987
10987
  created_at: string;
10988
10988
  updated_at: string;
10989
10989
  name: string;
10990
- provider: "auth0" | "cognito" | "okta" | "oidc";
10990
+ provider: "auth0" | "oidc" | "cognito" | "okta";
10991
10991
  connection: string;
10992
10992
  enabled: boolean;
10993
10993
  credentials: {
@@ -11018,7 +11018,7 @@ declare function init(config: AuthHeroConfig): {
11018
11018
  json: {
11019
11019
  id?: string | undefined;
11020
11020
  name?: string | undefined;
11021
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11021
+ provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
11022
11022
  connection?: string | undefined;
11023
11023
  enabled?: boolean | undefined;
11024
11024
  credentials?: {
@@ -11034,7 +11034,7 @@ declare function init(config: AuthHeroConfig): {
11034
11034
  created_at: string;
11035
11035
  updated_at: string;
11036
11036
  name: string;
11037
- provider: "auth0" | "cognito" | "okta" | "oidc";
11037
+ provider: "auth0" | "oidc" | "cognito" | "okta";
11038
11038
  connection: string;
11039
11039
  enabled: boolean;
11040
11040
  credentials: {
@@ -11252,7 +11252,7 @@ declare function init(config: AuthHeroConfig): {
11252
11252
  };
11253
11253
  };
11254
11254
  output: {
11255
- type: "fn" | "i" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11255
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
11256
11256
  date: string;
11257
11257
  isMobile: boolean;
11258
11258
  log_id: string;
@@ -11291,7 +11291,7 @@ declare function init(config: AuthHeroConfig): {
11291
11291
  limit: number;
11292
11292
  length: number;
11293
11293
  logs: {
11294
- type: "fn" | "i" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11294
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
11295
11295
  date: string;
11296
11296
  isMobile: boolean;
11297
11297
  log_id: string;
@@ -11345,7 +11345,7 @@ declare function init(config: AuthHeroConfig): {
11345
11345
  };
11346
11346
  };
11347
11347
  output: {
11348
- type: "fn" | "i" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11348
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
11349
11349
  date: string;
11350
11350
  isMobile: boolean;
11351
11351
  log_id: string;
@@ -11659,7 +11659,7 @@ declare function init(config: AuthHeroConfig): {
11659
11659
  addons?: {
11660
11660
  [x: string]: any;
11661
11661
  } | undefined;
11662
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
11662
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11663
11663
  client_metadata?: {
11664
11664
  [x: string]: string;
11665
11665
  } | undefined;
@@ -11755,7 +11755,7 @@ declare function init(config: AuthHeroConfig): {
11755
11755
  addons?: {
11756
11756
  [x: string]: any;
11757
11757
  } | undefined;
11758
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
11758
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11759
11759
  client_metadata?: {
11760
11760
  [x: string]: string;
11761
11761
  } | undefined;
@@ -11866,7 +11866,7 @@ declare function init(config: AuthHeroConfig): {
11866
11866
  addons?: {
11867
11867
  [x: string]: any;
11868
11868
  } | undefined;
11869
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
11869
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11870
11870
  client_metadata?: {
11871
11871
  [x: string]: string;
11872
11872
  } | undefined;
@@ -11976,7 +11976,7 @@ declare function init(config: AuthHeroConfig): {
11976
11976
  custom_login_page_preview?: string | undefined;
11977
11977
  form_template?: string | undefined;
11978
11978
  addons?: Record<string, any> | undefined;
11979
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
11979
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
11980
11980
  client_metadata?: Record<string, string> | undefined;
11981
11981
  hide_sign_up_disabled_error?: boolean | undefined;
11982
11982
  mobile?: Record<string, any> | undefined;
@@ -12056,7 +12056,7 @@ declare function init(config: AuthHeroConfig): {
12056
12056
  addons?: {
12057
12057
  [x: string]: any;
12058
12058
  } | undefined;
12059
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12059
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12060
12060
  client_metadata?: {
12061
12061
  [x: string]: string;
12062
12062
  } | undefined;
@@ -12145,7 +12145,7 @@ declare function init(config: AuthHeroConfig): {
12145
12145
  custom_login_page_preview?: string | undefined;
12146
12146
  form_template?: string | undefined;
12147
12147
  addons?: Record<string, any> | undefined;
12148
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12148
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12149
12149
  client_metadata?: Record<string, string> | undefined;
12150
12150
  hide_sign_up_disabled_error?: boolean | undefined;
12151
12151
  mobile?: Record<string, any> | undefined;
@@ -12225,7 +12225,7 @@ declare function init(config: AuthHeroConfig): {
12225
12225
  addons?: {
12226
12226
  [x: string]: any;
12227
12227
  } | undefined;
12228
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12228
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12229
12229
  client_metadata?: {
12230
12230
  [x: string]: string;
12231
12231
  } | undefined;
@@ -13489,7 +13489,7 @@ declare function init(config: AuthHeroConfig): {
13489
13489
  };
13490
13490
  };
13491
13491
  output: {
13492
- type: "fn" | "i" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13492
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
13493
13493
  date: string;
13494
13494
  isMobile: boolean;
13495
13495
  log_id: string;
@@ -13528,7 +13528,7 @@ declare function init(config: AuthHeroConfig): {
13528
13528
  limit: number;
13529
13529
  length: number;
13530
13530
  logs: {
13531
- type: "fn" | "i" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
13531
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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" | "i" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
13532
13532
  date: string;
13533
13533
  isMobile: boolean;
13534
13534
  log_id: string;
@@ -13843,7 +13843,7 @@ declare function init(config: AuthHeroConfig): {
13843
13843
  };
13844
13844
  } & {
13845
13845
  json: {
13846
- 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";
13846
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13847
13847
  body: string;
13848
13848
  from: string;
13849
13849
  subject: string;
@@ -13864,7 +13864,7 @@ declare function init(config: AuthHeroConfig): {
13864
13864
  };
13865
13865
  } & {
13866
13866
  json: {
13867
- 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";
13867
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13868
13868
  body: string;
13869
13869
  from: string;
13870
13870
  subject: string;
@@ -13876,7 +13876,7 @@ declare function init(config: AuthHeroConfig): {
13876
13876
  };
13877
13877
  };
13878
13878
  output: {
13879
- 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";
13879
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13880
13880
  body: string;
13881
13881
  from: string;
13882
13882
  subject: string;
@@ -13895,7 +13895,7 @@ declare function init(config: AuthHeroConfig): {
13895
13895
  $get: {
13896
13896
  input: {
13897
13897
  param: {
13898
- 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";
13898
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13899
13899
  };
13900
13900
  } & {
13901
13901
  header: {
@@ -13908,7 +13908,7 @@ declare function init(config: AuthHeroConfig): {
13908
13908
  } | {
13909
13909
  input: {
13910
13910
  param: {
13911
- 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";
13911
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13912
13912
  };
13913
13913
  } & {
13914
13914
  header: {
@@ -13916,7 +13916,7 @@ declare function init(config: AuthHeroConfig): {
13916
13916
  };
13917
13917
  };
13918
13918
  output: {
13919
- 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";
13919
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13920
13920
  body: string;
13921
13921
  from: string;
13922
13922
  subject: string;
@@ -13935,7 +13935,7 @@ declare function init(config: AuthHeroConfig): {
13935
13935
  $put: {
13936
13936
  input: {
13937
13937
  param: {
13938
- 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";
13938
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13939
13939
  };
13940
13940
  } & {
13941
13941
  header: {
@@ -13943,7 +13943,7 @@ declare function init(config: AuthHeroConfig): {
13943
13943
  };
13944
13944
  } & {
13945
13945
  json: {
13946
- 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";
13946
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13947
13947
  body: string;
13948
13948
  from: string;
13949
13949
  subject: string;
@@ -13955,7 +13955,7 @@ declare function init(config: AuthHeroConfig): {
13955
13955
  };
13956
13956
  };
13957
13957
  output: {
13958
- 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";
13958
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13959
13959
  body: string;
13960
13960
  from: string;
13961
13961
  subject: string;
@@ -13974,7 +13974,7 @@ declare function init(config: AuthHeroConfig): {
13974
13974
  $patch: {
13975
13975
  input: {
13976
13976
  param: {
13977
- 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";
13977
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13978
13978
  };
13979
13979
  } & {
13980
13980
  header: {
@@ -13982,7 +13982,7 @@ declare function init(config: AuthHeroConfig): {
13982
13982
  };
13983
13983
  } & {
13984
13984
  json: {
13985
- 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;
13985
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
13986
13986
  body?: string | undefined;
13987
13987
  from?: string | undefined;
13988
13988
  subject?: string | undefined;
@@ -13999,7 +13999,7 @@ declare function init(config: AuthHeroConfig): {
13999
13999
  } | {
14000
14000
  input: {
14001
14001
  param: {
14002
- 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";
14002
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14003
14003
  };
14004
14004
  } & {
14005
14005
  header: {
@@ -14007,7 +14007,7 @@ declare function init(config: AuthHeroConfig): {
14007
14007
  };
14008
14008
  } & {
14009
14009
  json: {
14010
- 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;
14010
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
14011
14011
  body?: string | undefined;
14012
14012
  from?: string | undefined;
14013
14013
  subject?: string | undefined;
@@ -14019,7 +14019,7 @@ declare function init(config: AuthHeroConfig): {
14019
14019
  };
14020
14020
  };
14021
14021
  output: {
14022
- 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";
14022
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
14023
14023
  body: string;
14024
14024
  from: string;
14025
14025
  subject: string;
@@ -15158,7 +15158,7 @@ declare function init(config: AuthHeroConfig): {
15158
15158
  logs: {
15159
15159
  action_name: string;
15160
15160
  lines: {
15161
- level: "error" | "log" | "info" | "warn" | "debug";
15161
+ level: "log" | "error" | "info" | "warn" | "debug";
15162
15162
  message: string;
15163
15163
  }[];
15164
15164
  }[];
@@ -15825,7 +15825,7 @@ declare function init(config: AuthHeroConfig): {
15825
15825
  args: hono_utils_types.JSONValue[];
15826
15826
  }[];
15827
15827
  logs: {
15828
- level: "error" | "log" | "info" | "warn" | "debug";
15828
+ level: "log" | "error" | "info" | "warn" | "debug";
15829
15829
  message: string;
15830
15830
  }[];
15831
15831
  error?: string | undefined;
@@ -16123,7 +16123,7 @@ declare function init(config: AuthHeroConfig): {
16123
16123
  scope?: string | undefined;
16124
16124
  grant_types?: string[] | undefined;
16125
16125
  response_types?: string[] | undefined;
16126
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16126
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16127
16127
  jwks_uri?: string | undefined;
16128
16128
  jwks?: Record<string, unknown> | undefined;
16129
16129
  software_id?: string | undefined;
@@ -16212,7 +16212,7 @@ declare function init(config: AuthHeroConfig): {
16212
16212
  scope?: string | undefined;
16213
16213
  grant_types?: string[] | undefined;
16214
16214
  response_types?: string[] | undefined;
16215
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16215
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16216
16216
  jwks_uri?: string | undefined;
16217
16217
  jwks?: Record<string, unknown> | undefined;
16218
16218
  software_id?: string | undefined;
@@ -16558,19 +16558,19 @@ declare function init(config: AuthHeroConfig): {
16558
16558
  email: string;
16559
16559
  send: "code" | "link";
16560
16560
  authParams: {
16561
- state?: string | undefined;
16562
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16563
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16564
- scope?: string | undefined;
16565
16561
  username?: string | undefined;
16562
+ scope?: string | undefined;
16566
16563
  audience?: string | undefined;
16567
- prompt?: string | undefined;
16564
+ organization?: string | undefined;
16568
16565
  code_challenge?: string | undefined;
16569
16566
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16570
16567
  redirect_uri?: string | undefined;
16571
16568
  nonce?: string | undefined;
16569
+ state?: string | undefined;
16572
16570
  act_as?: string | undefined;
16573
- organization?: string | undefined;
16571
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16572
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16573
+ prompt?: string | undefined;
16574
16574
  ui_locales?: string | undefined;
16575
16575
  max_age?: number | undefined;
16576
16576
  acr_values?: string | undefined;
@@ -16594,19 +16594,19 @@ declare function init(config: AuthHeroConfig): {
16594
16594
  phone_number: string;
16595
16595
  send: "code" | "link";
16596
16596
  authParams: {
16597
- state?: string | undefined;
16598
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16599
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16600
- scope?: string | undefined;
16601
16597
  username?: string | undefined;
16598
+ scope?: string | undefined;
16602
16599
  audience?: string | undefined;
16603
- prompt?: string | undefined;
16600
+ organization?: string | undefined;
16604
16601
  code_challenge?: string | undefined;
16605
16602
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16606
16603
  redirect_uri?: string | undefined;
16607
16604
  nonce?: string | undefined;
16605
+ state?: string | undefined;
16608
16606
  act_as?: string | undefined;
16609
- organization?: string | undefined;
16607
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16608
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16609
+ prompt?: string | undefined;
16610
16610
  ui_locales?: string | undefined;
16611
16611
  max_age?: number | undefined;
16612
16612
  acr_values?: string | undefined;
@@ -16738,14 +16738,14 @@ declare function init(config: AuthHeroConfig): {
16738
16738
  input: {
16739
16739
  form: {
16740
16740
  token: string;
16741
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16741
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16742
16742
  client_id?: string | undefined;
16743
16743
  client_secret?: string | undefined;
16744
16744
  };
16745
16745
  } & {
16746
16746
  json: {
16747
16747
  token: string;
16748
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16748
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16749
16749
  client_id?: string | undefined;
16750
16750
  client_secret?: string | undefined;
16751
16751
  };
@@ -16757,14 +16757,14 @@ declare function init(config: AuthHeroConfig): {
16757
16757
  input: {
16758
16758
  form: {
16759
16759
  token: string;
16760
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16760
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16761
16761
  client_id?: string | undefined;
16762
16762
  client_secret?: string | undefined;
16763
16763
  };
16764
16764
  } & {
16765
16765
  json: {
16766
16766
  token: string;
16767
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16767
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16768
16768
  client_id?: string | undefined;
16769
16769
  client_secret?: string | undefined;
16770
16770
  };
@@ -16779,14 +16779,14 @@ declare function init(config: AuthHeroConfig): {
16779
16779
  input: {
16780
16780
  form: {
16781
16781
  token: string;
16782
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16782
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16783
16783
  client_id?: string | undefined;
16784
16784
  client_secret?: string | undefined;
16785
16785
  };
16786
16786
  } & {
16787
16787
  json: {
16788
16788
  token: string;
16789
- token_type_hint?: "access_token" | "refresh_token" | undefined;
16789
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
16790
16790
  client_id?: string | undefined;
16791
16791
  client_secret?: string | undefined;
16792
16792
  };
@@ -18403,7 +18403,7 @@ declare function init(config: AuthHeroConfig): {
18403
18403
  $get: {
18404
18404
  input: {
18405
18405
  param: {
18406
- screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18406
+ screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18407
18407
  };
18408
18408
  } & {
18409
18409
  query: {
@@ -18419,7 +18419,7 @@ declare function init(config: AuthHeroConfig): {
18419
18419
  } | {
18420
18420
  input: {
18421
18421
  param: {
18422
- screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18422
+ screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18423
18423
  };
18424
18424
  } & {
18425
18425
  query: {
@@ -18435,7 +18435,7 @@ declare function init(config: AuthHeroConfig): {
18435
18435
  } | {
18436
18436
  input: {
18437
18437
  param: {
18438
- screen: "signup" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18438
+ screen: "signup" | "account" | "login" | "reset-password" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18439
18439
  };
18440
18440
  } & {
18441
18441
  query: {
@@ -18455,7 +18455,7 @@ declare function init(config: AuthHeroConfig): {
18455
18455
  $post: {
18456
18456
  input: {
18457
18457
  param: {
18458
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18458
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18459
18459
  };
18460
18460
  } & {
18461
18461
  query: {
@@ -18473,7 +18473,7 @@ declare function init(config: AuthHeroConfig): {
18473
18473
  } | {
18474
18474
  input: {
18475
18475
  param: {
18476
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18476
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18477
18477
  };
18478
18478
  } & {
18479
18479
  query: {
@@ -18491,7 +18491,7 @@ declare function init(config: AuthHeroConfig): {
18491
18491
  } | {
18492
18492
  input: {
18493
18493
  param: {
18494
- screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18494
+ screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18495
18495
  };
18496
18496
  } & {
18497
18497
  query: {