authhero 5.17.1 → 5.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/p-35c8b265.entry.js +1 -0
  3. package/dist/authhero.cjs +118 -122
  4. package/dist/authhero.d.ts +221 -195
  5. package/dist/authhero.mjs +8767 -8675
  6. package/dist/stats.html +1 -1
  7. package/dist/tsconfig.types.tsbuildinfo +1 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +1 -1
  9. package/dist/types/emails/defaults/Layout.d.ts +3 -3
  10. package/dist/types/emails/defaults/PrimaryButton.d.ts +5 -2
  11. package/dist/types/index.d.ts +212 -195
  12. package/dist/types/middlewares/index.d.ts +3 -0
  13. package/dist/types/middlewares/prefer.d.ts +12 -0
  14. package/dist/types/routes/auth-api/index.d.ts +22 -22
  15. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  16. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  17. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  18. package/dist/types/routes/management-api/branding.d.ts +9 -9
  19. package/dist/types/routes/management-api/clients.d.ts +2 -2
  20. package/dist/types/routes/management-api/connections.d.ts +6 -6
  21. package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
  22. package/dist/types/routes/management-api/email-templates.d.ts +17 -0
  23. package/dist/types/routes/management-api/forms.d.ts +119 -119
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/index.d.ts +185 -168
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  28. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  29. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  30. package/dist/types/routes/management-api/themes.d.ts +6 -6
  31. package/dist/types/routes/management-api/users.d.ts +2 -2
  32. package/dist/types/routes/universal-login/common.d.ts +8 -8
  33. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  34. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  35. package/dist/types/routes/universal-login/index.d.ts +2 -2
  36. package/dist/types/routes/universal-login/u2-index.d.ts +3 -3
  37. package/dist/types/routes/universal-login/u2-routes.d.ts +3 -3
  38. package/dist/types/types/Variables.d.ts +2 -0
  39. package/package.json +2 -2
  40. package/dist/assets/u/widget/p-f0f9eca3.entry.js +0 -1
@@ -22,6 +22,14 @@ declare const auth0ClientSchema: z.ZodObject<{
22
22
  }, z.core.$strip>;
23
23
  type Auth0Client = z.infer<typeof auth0ClientSchema>;
24
24
 
25
+ declare const PREFER_TOKENS: readonly ["include-linked"];
26
+ type PreferToken = (typeof PREFER_TOKENS)[number];
27
+ interface PreferState {
28
+ has(token: PreferToken): boolean;
29
+ applied(token: PreferToken): void;
30
+ appliedTokens(): PreferToken[];
31
+ }
32
+
25
33
  type Variables = {
26
34
  tenant_id: string;
27
35
  ip: string;
@@ -47,6 +55,7 @@ type Variables = {
47
55
  auth0_client?: Auth0Client;
48
56
  useragent?: string;
49
57
  countryCode?: CountryCode;
58
+ prefer?: PreferState;
50
59
  outboxEventPromises?: Promise<string>[];
51
60
  backgroundPromises?: Promise<void>[];
52
61
  client_authenticated_via_assertion?: boolean;
@@ -2515,7 +2524,7 @@ declare function init(config: AuthHeroConfig): {
2515
2524
  };
2516
2525
  } & {
2517
2526
  json: {
2518
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2527
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
2519
2528
  phone_number?: string | undefined;
2520
2529
  totp_secret?: string | undefined;
2521
2530
  credential_id?: string | undefined;
@@ -2655,7 +2664,7 @@ declare function init(config: AuthHeroConfig): {
2655
2664
  };
2656
2665
  };
2657
2666
  output: {
2658
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2667
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2659
2668
  enabled: boolean;
2660
2669
  trial_expired?: boolean | undefined;
2661
2670
  }[];
@@ -2810,7 +2819,7 @@ declare function init(config: AuthHeroConfig): {
2810
2819
  $get: {
2811
2820
  input: {
2812
2821
  param: {
2813
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2822
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2814
2823
  };
2815
2824
  } & {
2816
2825
  header: {
@@ -2818,7 +2827,7 @@ declare function init(config: AuthHeroConfig): {
2818
2827
  };
2819
2828
  };
2820
2829
  output: {
2821
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2830
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2822
2831
  enabled: boolean;
2823
2832
  trial_expired?: boolean | undefined;
2824
2833
  };
@@ -2831,7 +2840,7 @@ declare function init(config: AuthHeroConfig): {
2831
2840
  $put: {
2832
2841
  input: {
2833
2842
  param: {
2834
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2843
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2835
2844
  };
2836
2845
  } & {
2837
2846
  header: {
@@ -2843,7 +2852,7 @@ declare function init(config: AuthHeroConfig): {
2843
2852
  };
2844
2853
  };
2845
2854
  output: {
2846
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2855
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2847
2856
  enabled: boolean;
2848
2857
  trial_expired?: boolean | undefined;
2849
2858
  };
@@ -3369,7 +3378,7 @@ declare function init(config: AuthHeroConfig): {
3369
3378
  };
3370
3379
  output: {};
3371
3380
  outputFormat: string;
3372
- status: 201;
3381
+ status: 204;
3373
3382
  };
3374
3383
  };
3375
3384
  } & {
@@ -3588,10 +3597,10 @@ declare function init(config: AuthHeroConfig): {
3588
3597
  invitee: {
3589
3598
  email?: string | undefined;
3590
3599
  };
3600
+ id?: string | undefined;
3591
3601
  app_metadata?: Record<string, any> | undefined;
3592
3602
  user_metadata?: Record<string, any> | undefined;
3593
3603
  connection_id?: string | undefined;
3594
- id?: string | undefined;
3595
3604
  roles?: string[] | undefined;
3596
3605
  ttl_sec?: number | undefined;
3597
3606
  send_invitation_email?: boolean | undefined;
@@ -3776,8 +3785,8 @@ declare function init(config: AuthHeroConfig): {
3776
3785
  };
3777
3786
  } & {
3778
3787
  json: {
3779
- show_as_button?: boolean | undefined;
3780
3788
  assign_membership_on_login?: boolean | undefined;
3789
+ show_as_button?: boolean | undefined;
3781
3790
  is_signup_enabled?: boolean | undefined;
3782
3791
  };
3783
3792
  };
@@ -5019,7 +5028,7 @@ declare function init(config: AuthHeroConfig): {
5019
5028
  hint?: string | undefined;
5020
5029
  messages?: {
5021
5030
  text: string;
5022
- type: "success" | "error" | "info" | "warning";
5031
+ type: "error" | "success" | "info" | "warning";
5023
5032
  id?: number | undefined;
5024
5033
  }[] | undefined;
5025
5034
  required?: boolean | undefined;
@@ -5037,7 +5046,7 @@ declare function init(config: AuthHeroConfig): {
5037
5046
  hint?: string | undefined;
5038
5047
  messages?: {
5039
5048
  text: string;
5040
- type: "success" | "error" | "info" | "warning";
5049
+ type: "error" | "success" | "info" | "warning";
5041
5050
  id?: number | undefined;
5042
5051
  }[] | undefined;
5043
5052
  required?: boolean | undefined;
@@ -5061,7 +5070,7 @@ declare function init(config: AuthHeroConfig): {
5061
5070
  hint?: string | undefined;
5062
5071
  messages?: {
5063
5072
  text: string;
5064
- type: "success" | "error" | "info" | "warning";
5073
+ type: "error" | "success" | "info" | "warning";
5065
5074
  id?: number | undefined;
5066
5075
  }[] | undefined;
5067
5076
  required?: boolean | undefined;
@@ -5085,7 +5094,7 @@ declare function init(config: AuthHeroConfig): {
5085
5094
  hint?: string | undefined;
5086
5095
  messages?: {
5087
5096
  text: string;
5088
- type: "success" | "error" | "info" | "warning";
5097
+ type: "error" | "success" | "info" | "warning";
5089
5098
  id?: number | undefined;
5090
5099
  }[] | undefined;
5091
5100
  required?: boolean | undefined;
@@ -5114,7 +5123,7 @@ declare function init(config: AuthHeroConfig): {
5114
5123
  hint?: string | undefined;
5115
5124
  messages?: {
5116
5125
  text: string;
5117
- type: "success" | "error" | "info" | "warning";
5126
+ type: "error" | "success" | "info" | "warning";
5118
5127
  id?: number | undefined;
5119
5128
  }[] | undefined;
5120
5129
  required?: boolean | undefined;
@@ -5129,7 +5138,7 @@ declare function init(config: AuthHeroConfig): {
5129
5138
  hint?: string | undefined;
5130
5139
  messages?: {
5131
5140
  text: string;
5132
- type: "success" | "error" | "info" | "warning";
5141
+ type: "error" | "success" | "info" | "warning";
5133
5142
  id?: number | undefined;
5134
5143
  }[] | undefined;
5135
5144
  required?: boolean | undefined;
@@ -5150,7 +5159,7 @@ declare function init(config: AuthHeroConfig): {
5150
5159
  hint?: string | undefined;
5151
5160
  messages?: {
5152
5161
  text: string;
5153
- type: "success" | "error" | "info" | "warning";
5162
+ type: "error" | "success" | "info" | "warning";
5154
5163
  id?: number | undefined;
5155
5164
  }[] | undefined;
5156
5165
  required?: boolean | undefined;
@@ -5175,7 +5184,7 @@ declare function init(config: AuthHeroConfig): {
5175
5184
  hint?: string | undefined;
5176
5185
  messages?: {
5177
5186
  text: string;
5178
- type: "success" | "error" | "info" | "warning";
5187
+ type: "error" | "success" | "info" | "warning";
5179
5188
  id?: number | undefined;
5180
5189
  }[] | undefined;
5181
5190
  required?: boolean | undefined;
@@ -5194,7 +5203,7 @@ declare function init(config: AuthHeroConfig): {
5194
5203
  hint?: string | undefined;
5195
5204
  messages?: {
5196
5205
  text: string;
5197
- type: "success" | "error" | "info" | "warning";
5206
+ type: "error" | "success" | "info" | "warning";
5198
5207
  id?: number | undefined;
5199
5208
  }[] | undefined;
5200
5209
  required?: boolean | undefined;
@@ -5214,7 +5223,7 @@ declare function init(config: AuthHeroConfig): {
5214
5223
  hint?: string | undefined;
5215
5224
  messages?: {
5216
5225
  text: string;
5217
- type: "success" | "error" | "info" | "warning";
5226
+ type: "error" | "success" | "info" | "warning";
5218
5227
  id?: number | undefined;
5219
5228
  }[] | undefined;
5220
5229
  required?: boolean | undefined;
@@ -5233,7 +5242,7 @@ declare function init(config: AuthHeroConfig): {
5233
5242
  hint?: string | undefined;
5234
5243
  messages?: {
5235
5244
  text: string;
5236
- type: "success" | "error" | "info" | "warning";
5245
+ type: "error" | "success" | "info" | "warning";
5237
5246
  id?: number | undefined;
5238
5247
  }[] | undefined;
5239
5248
  required?: boolean | undefined;
@@ -5255,7 +5264,7 @@ declare function init(config: AuthHeroConfig): {
5255
5264
  hint?: string | undefined;
5256
5265
  messages?: {
5257
5266
  text: string;
5258
- type: "success" | "error" | "info" | "warning";
5267
+ type: "error" | "success" | "info" | "warning";
5259
5268
  id?: number | undefined;
5260
5269
  }[] | undefined;
5261
5270
  required?: boolean | undefined;
@@ -5277,7 +5286,7 @@ declare function init(config: AuthHeroConfig): {
5277
5286
  hint?: string | undefined;
5278
5287
  messages?: {
5279
5288
  text: string;
5280
- type: "success" | "error" | "info" | "warning";
5289
+ type: "error" | "success" | "info" | "warning";
5281
5290
  id?: number | undefined;
5282
5291
  }[] | undefined;
5283
5292
  required?: boolean | undefined;
@@ -5296,7 +5305,7 @@ declare function init(config: AuthHeroConfig): {
5296
5305
  hint?: string | undefined;
5297
5306
  messages?: {
5298
5307
  text: string;
5299
- type: "success" | "error" | "info" | "warning";
5308
+ type: "error" | "success" | "info" | "warning";
5300
5309
  id?: number | undefined;
5301
5310
  }[] | undefined;
5302
5311
  required?: boolean | undefined;
@@ -5321,7 +5330,7 @@ declare function init(config: AuthHeroConfig): {
5321
5330
  hint?: string | undefined;
5322
5331
  messages?: {
5323
5332
  text: string;
5324
- type: "success" | "error" | "info" | "warning";
5333
+ type: "error" | "success" | "info" | "warning";
5325
5334
  id?: number | undefined;
5326
5335
  }[] | undefined;
5327
5336
  required?: boolean | undefined;
@@ -5342,7 +5351,7 @@ declare function init(config: AuthHeroConfig): {
5342
5351
  hint?: string | undefined;
5343
5352
  messages?: {
5344
5353
  text: string;
5345
- type: "success" | "error" | "info" | "warning";
5354
+ type: "error" | "success" | "info" | "warning";
5346
5355
  id?: number | undefined;
5347
5356
  }[] | undefined;
5348
5357
  required?: boolean | undefined;
@@ -5363,7 +5372,7 @@ declare function init(config: AuthHeroConfig): {
5363
5372
  hint?: string | undefined;
5364
5373
  messages?: {
5365
5374
  text: string;
5366
- type: "success" | "error" | "info" | "warning";
5375
+ type: "error" | "success" | "info" | "warning";
5367
5376
  id?: number | undefined;
5368
5377
  }[] | undefined;
5369
5378
  required?: boolean | undefined;
@@ -5596,7 +5605,7 @@ declare function init(config: AuthHeroConfig): {
5596
5605
  hint?: string | undefined;
5597
5606
  messages?: {
5598
5607
  text: string;
5599
- type: "success" | "error" | "info" | "warning";
5608
+ type: "error" | "success" | "info" | "warning";
5600
5609
  id?: number | undefined;
5601
5610
  }[] | undefined;
5602
5611
  required?: boolean | undefined;
@@ -5614,7 +5623,7 @@ declare function init(config: AuthHeroConfig): {
5614
5623
  hint?: string | undefined;
5615
5624
  messages?: {
5616
5625
  text: string;
5617
- type: "success" | "error" | "info" | "warning";
5626
+ type: "error" | "success" | "info" | "warning";
5618
5627
  id?: number | undefined;
5619
5628
  }[] | undefined;
5620
5629
  required?: boolean | undefined;
@@ -5638,7 +5647,7 @@ declare function init(config: AuthHeroConfig): {
5638
5647
  hint?: string | undefined;
5639
5648
  messages?: {
5640
5649
  text: string;
5641
- type: "success" | "error" | "info" | "warning";
5650
+ type: "error" | "success" | "info" | "warning";
5642
5651
  id?: number | undefined;
5643
5652
  }[] | undefined;
5644
5653
  required?: boolean | undefined;
@@ -5662,7 +5671,7 @@ declare function init(config: AuthHeroConfig): {
5662
5671
  hint?: string | undefined;
5663
5672
  messages?: {
5664
5673
  text: string;
5665
- type: "success" | "error" | "info" | "warning";
5674
+ type: "error" | "success" | "info" | "warning";
5666
5675
  id?: number | undefined;
5667
5676
  }[] | undefined;
5668
5677
  required?: boolean | undefined;
@@ -5691,7 +5700,7 @@ declare function init(config: AuthHeroConfig): {
5691
5700
  hint?: string | undefined;
5692
5701
  messages?: {
5693
5702
  text: string;
5694
- type: "success" | "error" | "info" | "warning";
5703
+ type: "error" | "success" | "info" | "warning";
5695
5704
  id?: number | undefined;
5696
5705
  }[] | undefined;
5697
5706
  required?: boolean | undefined;
@@ -5706,7 +5715,7 @@ declare function init(config: AuthHeroConfig): {
5706
5715
  hint?: string | undefined;
5707
5716
  messages?: {
5708
5717
  text: string;
5709
- type: "success" | "error" | "info" | "warning";
5718
+ type: "error" | "success" | "info" | "warning";
5710
5719
  id?: number | undefined;
5711
5720
  }[] | undefined;
5712
5721
  required?: boolean | undefined;
@@ -5727,7 +5736,7 @@ declare function init(config: AuthHeroConfig): {
5727
5736
  hint?: string | undefined;
5728
5737
  messages?: {
5729
5738
  text: string;
5730
- type: "success" | "error" | "info" | "warning";
5739
+ type: "error" | "success" | "info" | "warning";
5731
5740
  id?: number | undefined;
5732
5741
  }[] | undefined;
5733
5742
  required?: boolean | undefined;
@@ -5752,7 +5761,7 @@ declare function init(config: AuthHeroConfig): {
5752
5761
  hint?: string | undefined;
5753
5762
  messages?: {
5754
5763
  text: string;
5755
- type: "success" | "error" | "info" | "warning";
5764
+ type: "error" | "success" | "info" | "warning";
5756
5765
  id?: number | undefined;
5757
5766
  }[] | undefined;
5758
5767
  required?: boolean | undefined;
@@ -5771,7 +5780,7 @@ declare function init(config: AuthHeroConfig): {
5771
5780
  hint?: string | undefined;
5772
5781
  messages?: {
5773
5782
  text: string;
5774
- type: "success" | "error" | "info" | "warning";
5783
+ type: "error" | "success" | "info" | "warning";
5775
5784
  id?: number | undefined;
5776
5785
  }[] | undefined;
5777
5786
  required?: boolean | undefined;
@@ -5791,7 +5800,7 @@ declare function init(config: AuthHeroConfig): {
5791
5800
  hint?: string | undefined;
5792
5801
  messages?: {
5793
5802
  text: string;
5794
- type: "success" | "error" | "info" | "warning";
5803
+ type: "error" | "success" | "info" | "warning";
5795
5804
  id?: number | undefined;
5796
5805
  }[] | undefined;
5797
5806
  required?: boolean | undefined;
@@ -5810,7 +5819,7 @@ declare function init(config: AuthHeroConfig): {
5810
5819
  hint?: string | undefined;
5811
5820
  messages?: {
5812
5821
  text: string;
5813
- type: "success" | "error" | "info" | "warning";
5822
+ type: "error" | "success" | "info" | "warning";
5814
5823
  id?: number | undefined;
5815
5824
  }[] | undefined;
5816
5825
  required?: boolean | undefined;
@@ -5832,7 +5841,7 @@ declare function init(config: AuthHeroConfig): {
5832
5841
  hint?: string | undefined;
5833
5842
  messages?: {
5834
5843
  text: string;
5835
- type: "success" | "error" | "info" | "warning";
5844
+ type: "error" | "success" | "info" | "warning";
5836
5845
  id?: number | undefined;
5837
5846
  }[] | undefined;
5838
5847
  required?: boolean | undefined;
@@ -5854,7 +5863,7 @@ declare function init(config: AuthHeroConfig): {
5854
5863
  hint?: string | undefined;
5855
5864
  messages?: {
5856
5865
  text: string;
5857
- type: "success" | "error" | "info" | "warning";
5866
+ type: "error" | "success" | "info" | "warning";
5858
5867
  id?: number | undefined;
5859
5868
  }[] | undefined;
5860
5869
  required?: boolean | undefined;
@@ -5873,7 +5882,7 @@ declare function init(config: AuthHeroConfig): {
5873
5882
  hint?: string | undefined;
5874
5883
  messages?: {
5875
5884
  text: string;
5876
- type: "success" | "error" | "info" | "warning";
5885
+ type: "error" | "success" | "info" | "warning";
5877
5886
  id?: number | undefined;
5878
5887
  }[] | undefined;
5879
5888
  required?: boolean | undefined;
@@ -5898,7 +5907,7 @@ declare function init(config: AuthHeroConfig): {
5898
5907
  hint?: string | undefined;
5899
5908
  messages?: {
5900
5909
  text: string;
5901
- type: "success" | "error" | "info" | "warning";
5910
+ type: "error" | "success" | "info" | "warning";
5902
5911
  id?: number | undefined;
5903
5912
  }[] | undefined;
5904
5913
  required?: boolean | undefined;
@@ -5919,7 +5928,7 @@ declare function init(config: AuthHeroConfig): {
5919
5928
  hint?: string | undefined;
5920
5929
  messages?: {
5921
5930
  text: string;
5922
- type: "success" | "error" | "info" | "warning";
5931
+ type: "error" | "success" | "info" | "warning";
5923
5932
  id?: number | undefined;
5924
5933
  }[] | undefined;
5925
5934
  required?: boolean | undefined;
@@ -5940,7 +5949,7 @@ declare function init(config: AuthHeroConfig): {
5940
5949
  hint?: string | undefined;
5941
5950
  messages?: {
5942
5951
  text: string;
5943
- type: "success" | "error" | "info" | "warning";
5952
+ type: "error" | "success" | "info" | "warning";
5944
5953
  id?: number | undefined;
5945
5954
  }[] | undefined;
5946
5955
  required?: boolean | undefined;
@@ -6188,7 +6197,7 @@ declare function init(config: AuthHeroConfig): {
6188
6197
  hint?: string | undefined;
6189
6198
  messages?: {
6190
6199
  text: string;
6191
- type: "success" | "error" | "info" | "warning";
6200
+ type: "error" | "success" | "info" | "warning";
6192
6201
  id?: number | undefined;
6193
6202
  }[] | undefined;
6194
6203
  required?: boolean | undefined;
@@ -6206,7 +6215,7 @@ declare function init(config: AuthHeroConfig): {
6206
6215
  hint?: string | undefined;
6207
6216
  messages?: {
6208
6217
  text: string;
6209
- type: "success" | "error" | "info" | "warning";
6218
+ type: "error" | "success" | "info" | "warning";
6210
6219
  id?: number | undefined;
6211
6220
  }[] | undefined;
6212
6221
  required?: boolean | undefined;
@@ -6230,7 +6239,7 @@ declare function init(config: AuthHeroConfig): {
6230
6239
  hint?: string | undefined;
6231
6240
  messages?: {
6232
6241
  text: string;
6233
- type: "success" | "error" | "info" | "warning";
6242
+ type: "error" | "success" | "info" | "warning";
6234
6243
  id?: number | undefined;
6235
6244
  }[] | undefined;
6236
6245
  required?: boolean | undefined;
@@ -6254,7 +6263,7 @@ declare function init(config: AuthHeroConfig): {
6254
6263
  hint?: string | undefined;
6255
6264
  messages?: {
6256
6265
  text: string;
6257
- type: "success" | "error" | "info" | "warning";
6266
+ type: "error" | "success" | "info" | "warning";
6258
6267
  id?: number | undefined;
6259
6268
  }[] | undefined;
6260
6269
  required?: boolean | undefined;
@@ -6283,7 +6292,7 @@ declare function init(config: AuthHeroConfig): {
6283
6292
  hint?: string | undefined;
6284
6293
  messages?: {
6285
6294
  text: string;
6286
- type: "success" | "error" | "info" | "warning";
6295
+ type: "error" | "success" | "info" | "warning";
6287
6296
  id?: number | undefined;
6288
6297
  }[] | undefined;
6289
6298
  required?: boolean | undefined;
@@ -6298,7 +6307,7 @@ declare function init(config: AuthHeroConfig): {
6298
6307
  hint?: string | undefined;
6299
6308
  messages?: {
6300
6309
  text: string;
6301
- type: "success" | "error" | "info" | "warning";
6310
+ type: "error" | "success" | "info" | "warning";
6302
6311
  id?: number | undefined;
6303
6312
  }[] | undefined;
6304
6313
  required?: boolean | undefined;
@@ -6319,7 +6328,7 @@ declare function init(config: AuthHeroConfig): {
6319
6328
  hint?: string | undefined;
6320
6329
  messages?: {
6321
6330
  text: string;
6322
- type: "success" | "error" | "info" | "warning";
6331
+ type: "error" | "success" | "info" | "warning";
6323
6332
  id?: number | undefined;
6324
6333
  }[] | undefined;
6325
6334
  required?: boolean | undefined;
@@ -6344,7 +6353,7 @@ declare function init(config: AuthHeroConfig): {
6344
6353
  hint?: string | undefined;
6345
6354
  messages?: {
6346
6355
  text: string;
6347
- type: "success" | "error" | "info" | "warning";
6356
+ type: "error" | "success" | "info" | "warning";
6348
6357
  id?: number | undefined;
6349
6358
  }[] | undefined;
6350
6359
  required?: boolean | undefined;
@@ -6363,7 +6372,7 @@ declare function init(config: AuthHeroConfig): {
6363
6372
  hint?: string | undefined;
6364
6373
  messages?: {
6365
6374
  text: string;
6366
- type: "success" | "error" | "info" | "warning";
6375
+ type: "error" | "success" | "info" | "warning";
6367
6376
  id?: number | undefined;
6368
6377
  }[] | undefined;
6369
6378
  required?: boolean | undefined;
@@ -6383,7 +6392,7 @@ declare function init(config: AuthHeroConfig): {
6383
6392
  hint?: string | undefined;
6384
6393
  messages?: {
6385
6394
  text: string;
6386
- type: "success" | "error" | "info" | "warning";
6395
+ type: "error" | "success" | "info" | "warning";
6387
6396
  id?: number | undefined;
6388
6397
  }[] | undefined;
6389
6398
  required?: boolean | undefined;
@@ -6402,7 +6411,7 @@ declare function init(config: AuthHeroConfig): {
6402
6411
  hint?: string | undefined;
6403
6412
  messages?: {
6404
6413
  text: string;
6405
- type: "success" | "error" | "info" | "warning";
6414
+ type: "error" | "success" | "info" | "warning";
6406
6415
  id?: number | undefined;
6407
6416
  }[] | undefined;
6408
6417
  required?: boolean | undefined;
@@ -6424,7 +6433,7 @@ declare function init(config: AuthHeroConfig): {
6424
6433
  hint?: string | undefined;
6425
6434
  messages?: {
6426
6435
  text: string;
6427
- type: "success" | "error" | "info" | "warning";
6436
+ type: "error" | "success" | "info" | "warning";
6428
6437
  id?: number | undefined;
6429
6438
  }[] | undefined;
6430
6439
  required?: boolean | undefined;
@@ -6446,7 +6455,7 @@ declare function init(config: AuthHeroConfig): {
6446
6455
  hint?: string | undefined;
6447
6456
  messages?: {
6448
6457
  text: string;
6449
- type: "success" | "error" | "info" | "warning";
6458
+ type: "error" | "success" | "info" | "warning";
6450
6459
  id?: number | undefined;
6451
6460
  }[] | undefined;
6452
6461
  required?: boolean | undefined;
@@ -6465,7 +6474,7 @@ declare function init(config: AuthHeroConfig): {
6465
6474
  hint?: string | undefined;
6466
6475
  messages?: {
6467
6476
  text: string;
6468
- type: "success" | "error" | "info" | "warning";
6477
+ type: "error" | "success" | "info" | "warning";
6469
6478
  id?: number | undefined;
6470
6479
  }[] | undefined;
6471
6480
  required?: boolean | undefined;
@@ -6490,7 +6499,7 @@ declare function init(config: AuthHeroConfig): {
6490
6499
  hint?: string | undefined;
6491
6500
  messages?: {
6492
6501
  text: string;
6493
- type: "success" | "error" | "info" | "warning";
6502
+ type: "error" | "success" | "info" | "warning";
6494
6503
  id?: number | undefined;
6495
6504
  }[] | undefined;
6496
6505
  required?: boolean | undefined;
@@ -6511,7 +6520,7 @@ declare function init(config: AuthHeroConfig): {
6511
6520
  hint?: string | undefined;
6512
6521
  messages?: {
6513
6522
  text: string;
6514
- type: "success" | "error" | "info" | "warning";
6523
+ type: "error" | "success" | "info" | "warning";
6515
6524
  id?: number | undefined;
6516
6525
  }[] | undefined;
6517
6526
  required?: boolean | undefined;
@@ -6532,7 +6541,7 @@ declare function init(config: AuthHeroConfig): {
6532
6541
  hint?: string | undefined;
6533
6542
  messages?: {
6534
6543
  text: string;
6535
- type: "success" | "error" | "info" | "warning";
6544
+ type: "error" | "success" | "info" | "warning";
6536
6545
  id?: number | undefined;
6537
6546
  }[] | undefined;
6538
6547
  required?: boolean | undefined;
@@ -6786,7 +6795,7 @@ declare function init(config: AuthHeroConfig): {
6786
6795
  hint?: string | undefined;
6787
6796
  messages?: {
6788
6797
  text: string;
6789
- type: "success" | "error" | "info" | "warning";
6798
+ type: "error" | "success" | "info" | "warning";
6790
6799
  id?: number | undefined;
6791
6800
  }[] | undefined;
6792
6801
  required?: boolean | undefined;
@@ -6804,7 +6813,7 @@ declare function init(config: AuthHeroConfig): {
6804
6813
  hint?: string | undefined;
6805
6814
  messages?: {
6806
6815
  text: string;
6807
- type: "success" | "error" | "info" | "warning";
6816
+ type: "error" | "success" | "info" | "warning";
6808
6817
  id?: number | undefined;
6809
6818
  }[] | undefined;
6810
6819
  required?: boolean | undefined;
@@ -6828,7 +6837,7 @@ declare function init(config: AuthHeroConfig): {
6828
6837
  hint?: string | undefined;
6829
6838
  messages?: {
6830
6839
  text: string;
6831
- type: "success" | "error" | "info" | "warning";
6840
+ type: "error" | "success" | "info" | "warning";
6832
6841
  id?: number | undefined;
6833
6842
  }[] | undefined;
6834
6843
  required?: boolean | undefined;
@@ -6852,7 +6861,7 @@ declare function init(config: AuthHeroConfig): {
6852
6861
  hint?: string | undefined;
6853
6862
  messages?: {
6854
6863
  text: string;
6855
- type: "success" | "error" | "info" | "warning";
6864
+ type: "error" | "success" | "info" | "warning";
6856
6865
  id?: number | undefined;
6857
6866
  }[] | undefined;
6858
6867
  required?: boolean | undefined;
@@ -6877,7 +6886,7 @@ declare function init(config: AuthHeroConfig): {
6877
6886
  hint?: string | undefined;
6878
6887
  messages?: {
6879
6888
  text: string;
6880
- type: "success" | "error" | "info" | "warning";
6889
+ type: "error" | "success" | "info" | "warning";
6881
6890
  id?: number | undefined;
6882
6891
  }[] | undefined;
6883
6892
  required?: boolean | undefined;
@@ -6892,7 +6901,7 @@ declare function init(config: AuthHeroConfig): {
6892
6901
  hint?: string | undefined;
6893
6902
  messages?: {
6894
6903
  text: string;
6895
- type: "success" | "error" | "info" | "warning";
6904
+ type: "error" | "success" | "info" | "warning";
6896
6905
  id?: number | undefined;
6897
6906
  }[] | undefined;
6898
6907
  required?: boolean | undefined;
@@ -6913,7 +6922,7 @@ declare function init(config: AuthHeroConfig): {
6913
6922
  hint?: string | undefined;
6914
6923
  messages?: {
6915
6924
  text: string;
6916
- type: "success" | "error" | "info" | "warning";
6925
+ type: "error" | "success" | "info" | "warning";
6917
6926
  id?: number | undefined;
6918
6927
  }[] | undefined;
6919
6928
  required?: boolean | undefined;
@@ -6938,7 +6947,7 @@ declare function init(config: AuthHeroConfig): {
6938
6947
  hint?: string | undefined;
6939
6948
  messages?: {
6940
6949
  text: string;
6941
- type: "success" | "error" | "info" | "warning";
6950
+ type: "error" | "success" | "info" | "warning";
6942
6951
  id?: number | undefined;
6943
6952
  }[] | undefined;
6944
6953
  required?: boolean | undefined;
@@ -6957,7 +6966,7 @@ declare function init(config: AuthHeroConfig): {
6957
6966
  hint?: string | undefined;
6958
6967
  messages?: {
6959
6968
  text: string;
6960
- type: "success" | "error" | "info" | "warning";
6969
+ type: "error" | "success" | "info" | "warning";
6961
6970
  id?: number | undefined;
6962
6971
  }[] | undefined;
6963
6972
  required?: boolean | undefined;
@@ -6977,7 +6986,7 @@ declare function init(config: AuthHeroConfig): {
6977
6986
  hint?: string | undefined;
6978
6987
  messages?: {
6979
6988
  text: string;
6980
- type: "success" | "error" | "info" | "warning";
6989
+ type: "error" | "success" | "info" | "warning";
6981
6990
  id?: number | undefined;
6982
6991
  }[] | undefined;
6983
6992
  required?: boolean | undefined;
@@ -6996,7 +7005,7 @@ declare function init(config: AuthHeroConfig): {
6996
7005
  hint?: string | undefined;
6997
7006
  messages?: {
6998
7007
  text: string;
6999
- type: "success" | "error" | "info" | "warning";
7008
+ type: "error" | "success" | "info" | "warning";
7000
7009
  id?: number | undefined;
7001
7010
  }[] | undefined;
7002
7011
  required?: boolean | undefined;
@@ -7018,7 +7027,7 @@ declare function init(config: AuthHeroConfig): {
7018
7027
  hint?: string | undefined;
7019
7028
  messages?: {
7020
7029
  text: string;
7021
- type: "success" | "error" | "info" | "warning";
7030
+ type: "error" | "success" | "info" | "warning";
7022
7031
  id?: number | undefined;
7023
7032
  }[] | undefined;
7024
7033
  required?: boolean | undefined;
@@ -7040,7 +7049,7 @@ declare function init(config: AuthHeroConfig): {
7040
7049
  hint?: string | undefined;
7041
7050
  messages?: {
7042
7051
  text: string;
7043
- type: "success" | "error" | "info" | "warning";
7052
+ type: "error" | "success" | "info" | "warning";
7044
7053
  id?: number | undefined;
7045
7054
  }[] | undefined;
7046
7055
  required?: boolean | undefined;
@@ -7059,7 +7068,7 @@ declare function init(config: AuthHeroConfig): {
7059
7068
  hint?: string | undefined;
7060
7069
  messages?: {
7061
7070
  text: string;
7062
- type: "success" | "error" | "info" | "warning";
7071
+ type: "error" | "success" | "info" | "warning";
7063
7072
  id?: number | undefined;
7064
7073
  }[] | undefined;
7065
7074
  required?: boolean | undefined;
@@ -7084,7 +7093,7 @@ declare function init(config: AuthHeroConfig): {
7084
7093
  hint?: string | undefined;
7085
7094
  messages?: {
7086
7095
  text: string;
7087
- type: "success" | "error" | "info" | "warning";
7096
+ type: "error" | "success" | "info" | "warning";
7088
7097
  id?: number | undefined;
7089
7098
  }[] | undefined;
7090
7099
  required?: boolean | undefined;
@@ -7105,7 +7114,7 @@ declare function init(config: AuthHeroConfig): {
7105
7114
  hint?: string | undefined;
7106
7115
  messages?: {
7107
7116
  text: string;
7108
- type: "success" | "error" | "info" | "warning";
7117
+ type: "error" | "success" | "info" | "warning";
7109
7118
  id?: number | undefined;
7110
7119
  }[] | undefined;
7111
7120
  required?: boolean | undefined;
@@ -7126,7 +7135,7 @@ declare function init(config: AuthHeroConfig): {
7126
7135
  hint?: string | undefined;
7127
7136
  messages?: {
7128
7137
  text: string;
7129
- type: "success" | "error" | "info" | "warning";
7138
+ type: "error" | "success" | "info" | "warning";
7130
7139
  id?: number | undefined;
7131
7140
  }[] | undefined;
7132
7141
  required?: boolean | undefined;
@@ -7357,7 +7366,7 @@ declare function init(config: AuthHeroConfig): {
7357
7366
  hint?: string | undefined;
7358
7367
  messages?: {
7359
7368
  text: string;
7360
- type: "success" | "error" | "info" | "warning";
7369
+ type: "error" | "success" | "info" | "warning";
7361
7370
  id?: number | undefined;
7362
7371
  }[] | undefined;
7363
7372
  required?: boolean | undefined;
@@ -7375,7 +7384,7 @@ declare function init(config: AuthHeroConfig): {
7375
7384
  hint?: string | undefined;
7376
7385
  messages?: {
7377
7386
  text: string;
7378
- type: "success" | "error" | "info" | "warning";
7387
+ type: "error" | "success" | "info" | "warning";
7379
7388
  id?: number | undefined;
7380
7389
  }[] | undefined;
7381
7390
  required?: boolean | undefined;
@@ -7399,7 +7408,7 @@ declare function init(config: AuthHeroConfig): {
7399
7408
  hint?: string | undefined;
7400
7409
  messages?: {
7401
7410
  text: string;
7402
- type: "success" | "error" | "info" | "warning";
7411
+ type: "error" | "success" | "info" | "warning";
7403
7412
  id?: number | undefined;
7404
7413
  }[] | undefined;
7405
7414
  required?: boolean | undefined;
@@ -7423,7 +7432,7 @@ declare function init(config: AuthHeroConfig): {
7423
7432
  hint?: string | undefined;
7424
7433
  messages?: {
7425
7434
  text: string;
7426
- type: "success" | "error" | "info" | "warning";
7435
+ type: "error" | "success" | "info" | "warning";
7427
7436
  id?: number | undefined;
7428
7437
  }[] | undefined;
7429
7438
  required?: boolean | undefined;
@@ -7452,7 +7461,7 @@ declare function init(config: AuthHeroConfig): {
7452
7461
  hint?: string | undefined;
7453
7462
  messages?: {
7454
7463
  text: string;
7455
- type: "success" | "error" | "info" | "warning";
7464
+ type: "error" | "success" | "info" | "warning";
7456
7465
  id?: number | undefined;
7457
7466
  }[] | undefined;
7458
7467
  required?: boolean | undefined;
@@ -7467,7 +7476,7 @@ declare function init(config: AuthHeroConfig): {
7467
7476
  hint?: string | undefined;
7468
7477
  messages?: {
7469
7478
  text: string;
7470
- type: "success" | "error" | "info" | "warning";
7479
+ type: "error" | "success" | "info" | "warning";
7471
7480
  id?: number | undefined;
7472
7481
  }[] | undefined;
7473
7482
  required?: boolean | undefined;
@@ -7488,7 +7497,7 @@ declare function init(config: AuthHeroConfig): {
7488
7497
  hint?: string | undefined;
7489
7498
  messages?: {
7490
7499
  text: string;
7491
- type: "success" | "error" | "info" | "warning";
7500
+ type: "error" | "success" | "info" | "warning";
7492
7501
  id?: number | undefined;
7493
7502
  }[] | undefined;
7494
7503
  required?: boolean | undefined;
@@ -7513,7 +7522,7 @@ declare function init(config: AuthHeroConfig): {
7513
7522
  hint?: string | undefined;
7514
7523
  messages?: {
7515
7524
  text: string;
7516
- type: "success" | "error" | "info" | "warning";
7525
+ type: "error" | "success" | "info" | "warning";
7517
7526
  id?: number | undefined;
7518
7527
  }[] | undefined;
7519
7528
  required?: boolean | undefined;
@@ -7532,7 +7541,7 @@ declare function init(config: AuthHeroConfig): {
7532
7541
  hint?: string | undefined;
7533
7542
  messages?: {
7534
7543
  text: string;
7535
- type: "success" | "error" | "info" | "warning";
7544
+ type: "error" | "success" | "info" | "warning";
7536
7545
  id?: number | undefined;
7537
7546
  }[] | undefined;
7538
7547
  required?: boolean | undefined;
@@ -7552,7 +7561,7 @@ declare function init(config: AuthHeroConfig): {
7552
7561
  hint?: string | undefined;
7553
7562
  messages?: {
7554
7563
  text: string;
7555
- type: "success" | "error" | "info" | "warning";
7564
+ type: "error" | "success" | "info" | "warning";
7556
7565
  id?: number | undefined;
7557
7566
  }[] | undefined;
7558
7567
  required?: boolean | undefined;
@@ -7571,7 +7580,7 @@ declare function init(config: AuthHeroConfig): {
7571
7580
  hint?: string | undefined;
7572
7581
  messages?: {
7573
7582
  text: string;
7574
- type: "success" | "error" | "info" | "warning";
7583
+ type: "error" | "success" | "info" | "warning";
7575
7584
  id?: number | undefined;
7576
7585
  }[] | undefined;
7577
7586
  required?: boolean | undefined;
@@ -7593,7 +7602,7 @@ declare function init(config: AuthHeroConfig): {
7593
7602
  hint?: string | undefined;
7594
7603
  messages?: {
7595
7604
  text: string;
7596
- type: "success" | "error" | "info" | "warning";
7605
+ type: "error" | "success" | "info" | "warning";
7597
7606
  id?: number | undefined;
7598
7607
  }[] | undefined;
7599
7608
  required?: boolean | undefined;
@@ -7615,7 +7624,7 @@ declare function init(config: AuthHeroConfig): {
7615
7624
  hint?: string | undefined;
7616
7625
  messages?: {
7617
7626
  text: string;
7618
- type: "success" | "error" | "info" | "warning";
7627
+ type: "error" | "success" | "info" | "warning";
7619
7628
  id?: number | undefined;
7620
7629
  }[] | undefined;
7621
7630
  required?: boolean | undefined;
@@ -7634,7 +7643,7 @@ declare function init(config: AuthHeroConfig): {
7634
7643
  hint?: string | undefined;
7635
7644
  messages?: {
7636
7645
  text: string;
7637
- type: "success" | "error" | "info" | "warning";
7646
+ type: "error" | "success" | "info" | "warning";
7638
7647
  id?: number | undefined;
7639
7648
  }[] | undefined;
7640
7649
  required?: boolean | undefined;
@@ -7659,7 +7668,7 @@ declare function init(config: AuthHeroConfig): {
7659
7668
  hint?: string | undefined;
7660
7669
  messages?: {
7661
7670
  text: string;
7662
- type: "success" | "error" | "info" | "warning";
7671
+ type: "error" | "success" | "info" | "warning";
7663
7672
  id?: number | undefined;
7664
7673
  }[] | undefined;
7665
7674
  required?: boolean | undefined;
@@ -7680,7 +7689,7 @@ declare function init(config: AuthHeroConfig): {
7680
7689
  hint?: string | undefined;
7681
7690
  messages?: {
7682
7691
  text: string;
7683
- type: "success" | "error" | "info" | "warning";
7692
+ type: "error" | "success" | "info" | "warning";
7684
7693
  id?: number | undefined;
7685
7694
  }[] | undefined;
7686
7695
  required?: boolean | undefined;
@@ -7701,7 +7710,7 @@ declare function init(config: AuthHeroConfig): {
7701
7710
  hint?: string | undefined;
7702
7711
  messages?: {
7703
7712
  text: string;
7704
- type: "success" | "error" | "info" | "warning";
7713
+ type: "error" | "success" | "info" | "warning";
7705
7714
  id?: number | undefined;
7706
7715
  }[] | undefined;
7707
7716
  required?: boolean | undefined;
@@ -7934,7 +7943,7 @@ declare function init(config: AuthHeroConfig): {
7934
7943
  hint?: string | undefined;
7935
7944
  messages?: {
7936
7945
  text: string;
7937
- type: "success" | "error" | "info" | "warning";
7946
+ type: "error" | "success" | "info" | "warning";
7938
7947
  id?: number | undefined;
7939
7948
  }[] | undefined;
7940
7949
  required?: boolean | undefined;
@@ -7952,7 +7961,7 @@ declare function init(config: AuthHeroConfig): {
7952
7961
  hint?: string | undefined;
7953
7962
  messages?: {
7954
7963
  text: string;
7955
- type: "success" | "error" | "info" | "warning";
7964
+ type: "error" | "success" | "info" | "warning";
7956
7965
  id?: number | undefined;
7957
7966
  }[] | undefined;
7958
7967
  required?: boolean | undefined;
@@ -7976,7 +7985,7 @@ declare function init(config: AuthHeroConfig): {
7976
7985
  hint?: string | undefined;
7977
7986
  messages?: {
7978
7987
  text: string;
7979
- type: "success" | "error" | "info" | "warning";
7988
+ type: "error" | "success" | "info" | "warning";
7980
7989
  id?: number | undefined;
7981
7990
  }[] | undefined;
7982
7991
  required?: boolean | undefined;
@@ -8000,7 +8009,7 @@ declare function init(config: AuthHeroConfig): {
8000
8009
  hint?: string | undefined;
8001
8010
  messages?: {
8002
8011
  text: string;
8003
- type: "success" | "error" | "info" | "warning";
8012
+ type: "error" | "success" | "info" | "warning";
8004
8013
  id?: number | undefined;
8005
8014
  }[] | undefined;
8006
8015
  required?: boolean | undefined;
@@ -8025,7 +8034,7 @@ declare function init(config: AuthHeroConfig): {
8025
8034
  hint?: string | undefined;
8026
8035
  messages?: {
8027
8036
  text: string;
8028
- type: "success" | "error" | "info" | "warning";
8037
+ type: "error" | "success" | "info" | "warning";
8029
8038
  id?: number | undefined;
8030
8039
  }[] | undefined;
8031
8040
  required?: boolean | undefined;
@@ -8040,7 +8049,7 @@ declare function init(config: AuthHeroConfig): {
8040
8049
  hint?: string | undefined;
8041
8050
  messages?: {
8042
8051
  text: string;
8043
- type: "success" | "error" | "info" | "warning";
8052
+ type: "error" | "success" | "info" | "warning";
8044
8053
  id?: number | undefined;
8045
8054
  }[] | undefined;
8046
8055
  required?: boolean | undefined;
@@ -8061,7 +8070,7 @@ declare function init(config: AuthHeroConfig): {
8061
8070
  hint?: string | undefined;
8062
8071
  messages?: {
8063
8072
  text: string;
8064
- type: "success" | "error" | "info" | "warning";
8073
+ type: "error" | "success" | "info" | "warning";
8065
8074
  id?: number | undefined;
8066
8075
  }[] | undefined;
8067
8076
  required?: boolean | undefined;
@@ -8086,7 +8095,7 @@ declare function init(config: AuthHeroConfig): {
8086
8095
  hint?: string | undefined;
8087
8096
  messages?: {
8088
8097
  text: string;
8089
- type: "success" | "error" | "info" | "warning";
8098
+ type: "error" | "success" | "info" | "warning";
8090
8099
  id?: number | undefined;
8091
8100
  }[] | undefined;
8092
8101
  required?: boolean | undefined;
@@ -8105,7 +8114,7 @@ declare function init(config: AuthHeroConfig): {
8105
8114
  hint?: string | undefined;
8106
8115
  messages?: {
8107
8116
  text: string;
8108
- type: "success" | "error" | "info" | "warning";
8117
+ type: "error" | "success" | "info" | "warning";
8109
8118
  id?: number | undefined;
8110
8119
  }[] | undefined;
8111
8120
  required?: boolean | undefined;
@@ -8125,7 +8134,7 @@ declare function init(config: AuthHeroConfig): {
8125
8134
  hint?: string | undefined;
8126
8135
  messages?: {
8127
8136
  text: string;
8128
- type: "success" | "error" | "info" | "warning";
8137
+ type: "error" | "success" | "info" | "warning";
8129
8138
  id?: number | undefined;
8130
8139
  }[] | undefined;
8131
8140
  required?: boolean | undefined;
@@ -8144,7 +8153,7 @@ declare function init(config: AuthHeroConfig): {
8144
8153
  hint?: string | undefined;
8145
8154
  messages?: {
8146
8155
  text: string;
8147
- type: "success" | "error" | "info" | "warning";
8156
+ type: "error" | "success" | "info" | "warning";
8148
8157
  id?: number | undefined;
8149
8158
  }[] | undefined;
8150
8159
  required?: boolean | undefined;
@@ -8166,7 +8175,7 @@ declare function init(config: AuthHeroConfig): {
8166
8175
  hint?: string | undefined;
8167
8176
  messages?: {
8168
8177
  text: string;
8169
- type: "success" | "error" | "info" | "warning";
8178
+ type: "error" | "success" | "info" | "warning";
8170
8179
  id?: number | undefined;
8171
8180
  }[] | undefined;
8172
8181
  required?: boolean | undefined;
@@ -8188,7 +8197,7 @@ declare function init(config: AuthHeroConfig): {
8188
8197
  hint?: string | undefined;
8189
8198
  messages?: {
8190
8199
  text: string;
8191
- type: "success" | "error" | "info" | "warning";
8200
+ type: "error" | "success" | "info" | "warning";
8192
8201
  id?: number | undefined;
8193
8202
  }[] | undefined;
8194
8203
  required?: boolean | undefined;
@@ -8207,7 +8216,7 @@ declare function init(config: AuthHeroConfig): {
8207
8216
  hint?: string | undefined;
8208
8217
  messages?: {
8209
8218
  text: string;
8210
- type: "success" | "error" | "info" | "warning";
8219
+ type: "error" | "success" | "info" | "warning";
8211
8220
  id?: number | undefined;
8212
8221
  }[] | undefined;
8213
8222
  required?: boolean | undefined;
@@ -8232,7 +8241,7 @@ declare function init(config: AuthHeroConfig): {
8232
8241
  hint?: string | undefined;
8233
8242
  messages?: {
8234
8243
  text: string;
8235
- type: "success" | "error" | "info" | "warning";
8244
+ type: "error" | "success" | "info" | "warning";
8236
8245
  id?: number | undefined;
8237
8246
  }[] | undefined;
8238
8247
  required?: boolean | undefined;
@@ -8253,7 +8262,7 @@ declare function init(config: AuthHeroConfig): {
8253
8262
  hint?: string | undefined;
8254
8263
  messages?: {
8255
8264
  text: string;
8256
- type: "success" | "error" | "info" | "warning";
8265
+ type: "error" | "success" | "info" | "warning";
8257
8266
  id?: number | undefined;
8258
8267
  }[] | undefined;
8259
8268
  required?: boolean | undefined;
@@ -8274,7 +8283,7 @@ declare function init(config: AuthHeroConfig): {
8274
8283
  hint?: string | undefined;
8275
8284
  messages?: {
8276
8285
  text: string;
8277
- type: "success" | "error" | "info" | "warning";
8286
+ type: "error" | "success" | "info" | "warning";
8278
8287
  id?: number | undefined;
8279
8288
  }[] | undefined;
8280
8289
  required?: boolean | undefined;
@@ -8505,7 +8514,7 @@ declare function init(config: AuthHeroConfig): {
8505
8514
  hint?: string | undefined;
8506
8515
  messages?: {
8507
8516
  text: string;
8508
- type: "success" | "error" | "info" | "warning";
8517
+ type: "error" | "success" | "info" | "warning";
8509
8518
  id?: number | undefined;
8510
8519
  }[] | undefined;
8511
8520
  required?: boolean | undefined;
@@ -8523,7 +8532,7 @@ declare function init(config: AuthHeroConfig): {
8523
8532
  hint?: string | undefined;
8524
8533
  messages?: {
8525
8534
  text: string;
8526
- type: "success" | "error" | "info" | "warning";
8535
+ type: "error" | "success" | "info" | "warning";
8527
8536
  id?: number | undefined;
8528
8537
  }[] | undefined;
8529
8538
  required?: boolean | undefined;
@@ -8547,7 +8556,7 @@ declare function init(config: AuthHeroConfig): {
8547
8556
  hint?: string | undefined;
8548
8557
  messages?: {
8549
8558
  text: string;
8550
- type: "success" | "error" | "info" | "warning";
8559
+ type: "error" | "success" | "info" | "warning";
8551
8560
  id?: number | undefined;
8552
8561
  }[] | undefined;
8553
8562
  required?: boolean | undefined;
@@ -8571,7 +8580,7 @@ declare function init(config: AuthHeroConfig): {
8571
8580
  hint?: string | undefined;
8572
8581
  messages?: {
8573
8582
  text: string;
8574
- type: "success" | "error" | "info" | "warning";
8583
+ type: "error" | "success" | "info" | "warning";
8575
8584
  id?: number | undefined;
8576
8585
  }[] | undefined;
8577
8586
  required?: boolean | undefined;
@@ -8600,7 +8609,7 @@ declare function init(config: AuthHeroConfig): {
8600
8609
  hint?: string | undefined;
8601
8610
  messages?: {
8602
8611
  text: string;
8603
- type: "success" | "error" | "info" | "warning";
8612
+ type: "error" | "success" | "info" | "warning";
8604
8613
  id?: number | undefined;
8605
8614
  }[] | undefined;
8606
8615
  required?: boolean | undefined;
@@ -8615,7 +8624,7 @@ declare function init(config: AuthHeroConfig): {
8615
8624
  hint?: string | undefined;
8616
8625
  messages?: {
8617
8626
  text: string;
8618
- type: "success" | "error" | "info" | "warning";
8627
+ type: "error" | "success" | "info" | "warning";
8619
8628
  id?: number | undefined;
8620
8629
  }[] | undefined;
8621
8630
  required?: boolean | undefined;
@@ -8636,7 +8645,7 @@ declare function init(config: AuthHeroConfig): {
8636
8645
  hint?: string | undefined;
8637
8646
  messages?: {
8638
8647
  text: string;
8639
- type: "success" | "error" | "info" | "warning";
8648
+ type: "error" | "success" | "info" | "warning";
8640
8649
  id?: number | undefined;
8641
8650
  }[] | undefined;
8642
8651
  required?: boolean | undefined;
@@ -8661,7 +8670,7 @@ declare function init(config: AuthHeroConfig): {
8661
8670
  hint?: string | undefined;
8662
8671
  messages?: {
8663
8672
  text: string;
8664
- type: "success" | "error" | "info" | "warning";
8673
+ type: "error" | "success" | "info" | "warning";
8665
8674
  id?: number | undefined;
8666
8675
  }[] | undefined;
8667
8676
  required?: boolean | undefined;
@@ -8680,7 +8689,7 @@ declare function init(config: AuthHeroConfig): {
8680
8689
  hint?: string | undefined;
8681
8690
  messages?: {
8682
8691
  text: string;
8683
- type: "success" | "error" | "info" | "warning";
8692
+ type: "error" | "success" | "info" | "warning";
8684
8693
  id?: number | undefined;
8685
8694
  }[] | undefined;
8686
8695
  required?: boolean | undefined;
@@ -8700,7 +8709,7 @@ declare function init(config: AuthHeroConfig): {
8700
8709
  hint?: string | undefined;
8701
8710
  messages?: {
8702
8711
  text: string;
8703
- type: "success" | "error" | "info" | "warning";
8712
+ type: "error" | "success" | "info" | "warning";
8704
8713
  id?: number | undefined;
8705
8714
  }[] | undefined;
8706
8715
  required?: boolean | undefined;
@@ -8719,7 +8728,7 @@ declare function init(config: AuthHeroConfig): {
8719
8728
  hint?: string | undefined;
8720
8729
  messages?: {
8721
8730
  text: string;
8722
- type: "success" | "error" | "info" | "warning";
8731
+ type: "error" | "success" | "info" | "warning";
8723
8732
  id?: number | undefined;
8724
8733
  }[] | undefined;
8725
8734
  required?: boolean | undefined;
@@ -8741,7 +8750,7 @@ declare function init(config: AuthHeroConfig): {
8741
8750
  hint?: string | undefined;
8742
8751
  messages?: {
8743
8752
  text: string;
8744
- type: "success" | "error" | "info" | "warning";
8753
+ type: "error" | "success" | "info" | "warning";
8745
8754
  id?: number | undefined;
8746
8755
  }[] | undefined;
8747
8756
  required?: boolean | undefined;
@@ -8763,7 +8772,7 @@ declare function init(config: AuthHeroConfig): {
8763
8772
  hint?: string | undefined;
8764
8773
  messages?: {
8765
8774
  text: string;
8766
- type: "success" | "error" | "info" | "warning";
8775
+ type: "error" | "success" | "info" | "warning";
8767
8776
  id?: number | undefined;
8768
8777
  }[] | undefined;
8769
8778
  required?: boolean | undefined;
@@ -8782,7 +8791,7 @@ declare function init(config: AuthHeroConfig): {
8782
8791
  hint?: string | undefined;
8783
8792
  messages?: {
8784
8793
  text: string;
8785
- type: "success" | "error" | "info" | "warning";
8794
+ type: "error" | "success" | "info" | "warning";
8786
8795
  id?: number | undefined;
8787
8796
  }[] | undefined;
8788
8797
  required?: boolean | undefined;
@@ -8807,7 +8816,7 @@ declare function init(config: AuthHeroConfig): {
8807
8816
  hint?: string | undefined;
8808
8817
  messages?: {
8809
8818
  text: string;
8810
- type: "success" | "error" | "info" | "warning";
8819
+ type: "error" | "success" | "info" | "warning";
8811
8820
  id?: number | undefined;
8812
8821
  }[] | undefined;
8813
8822
  required?: boolean | undefined;
@@ -8828,7 +8837,7 @@ declare function init(config: AuthHeroConfig): {
8828
8837
  hint?: string | undefined;
8829
8838
  messages?: {
8830
8839
  text: string;
8831
- type: "success" | "error" | "info" | "warning";
8840
+ type: "error" | "success" | "info" | "warning";
8832
8841
  id?: number | undefined;
8833
8842
  }[] | undefined;
8834
8843
  required?: boolean | undefined;
@@ -8849,7 +8858,7 @@ declare function init(config: AuthHeroConfig): {
8849
8858
  hint?: string | undefined;
8850
8859
  messages?: {
8851
8860
  text: string;
8852
- type: "success" | "error" | "info" | "warning";
8861
+ type: "error" | "success" | "info" | "warning";
8853
8862
  id?: number | undefined;
8854
8863
  }[] | undefined;
8855
8864
  required?: boolean | undefined;
@@ -9079,7 +9088,7 @@ declare function init(config: AuthHeroConfig): {
9079
9088
  };
9080
9089
  };
9081
9090
  output: {
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";
9091
+ prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9083
9092
  language: string;
9084
9093
  }[];
9085
9094
  outputFormat: "json";
@@ -9117,7 +9126,7 @@ declare function init(config: AuthHeroConfig): {
9117
9126
  $get: {
9118
9127
  input: {
9119
9128
  param: {
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";
9129
+ prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9121
9130
  language: string;
9122
9131
  };
9123
9132
  } & {
@@ -9139,7 +9148,7 @@ declare function init(config: AuthHeroConfig): {
9139
9148
  $put: {
9140
9149
  input: {
9141
9150
  param: {
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";
9151
+ prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9143
9152
  language: string;
9144
9153
  };
9145
9154
  } & {
@@ -9163,7 +9172,7 @@ declare function init(config: AuthHeroConfig): {
9163
9172
  $delete: {
9164
9173
  input: {
9165
9174
  param: {
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";
9175
+ prompt: "common" | "status" | "organizations" | "signup" | "mfa" | "invitation" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9167
9176
  language: string;
9168
9177
  };
9169
9178
  } & {
@@ -9302,7 +9311,7 @@ declare function init(config: AuthHeroConfig): {
9302
9311
  } | undefined;
9303
9312
  } | undefined;
9304
9313
  passkey_options?: {
9305
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9314
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9306
9315
  local_enrollment_enabled?: boolean | undefined;
9307
9316
  progressive_enrollment_enabled?: boolean | undefined;
9308
9317
  } | undefined;
@@ -9436,7 +9445,7 @@ declare function init(config: AuthHeroConfig): {
9436
9445
  } | undefined;
9437
9446
  } | undefined;
9438
9447
  passkey_options?: {
9439
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9448
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9440
9449
  local_enrollment_enabled?: boolean | undefined;
9441
9450
  progressive_enrollment_enabled?: boolean | undefined;
9442
9451
  } | undefined;
@@ -9585,7 +9594,7 @@ declare function init(config: AuthHeroConfig): {
9585
9594
  } | undefined;
9586
9595
  } | undefined;
9587
9596
  passkey_options?: {
9588
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9597
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9589
9598
  local_enrollment_enabled?: boolean | undefined;
9590
9599
  progressive_enrollment_enabled?: boolean | undefined;
9591
9600
  } | undefined;
@@ -9764,7 +9773,7 @@ declare function init(config: AuthHeroConfig): {
9764
9773
  } | undefined;
9765
9774
  } | undefined;
9766
9775
  passkey_options?: {
9767
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9776
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9768
9777
  local_enrollment_enabled?: boolean | undefined;
9769
9778
  progressive_enrollment_enabled?: boolean | undefined;
9770
9779
  } | undefined;
@@ -9922,7 +9931,7 @@ declare function init(config: AuthHeroConfig): {
9922
9931
  } | undefined;
9923
9932
  } | undefined;
9924
9933
  passkey_options?: {
9925
- challenge_ui?: "both" | "autofill" | "button" | undefined;
9934
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
9926
9935
  local_enrollment_enabled?: boolean | undefined;
9927
9936
  progressive_enrollment_enabled?: boolean | undefined;
9928
9937
  } | undefined;
@@ -10025,7 +10034,7 @@ declare function init(config: AuthHeroConfig): {
10025
10034
  };
10026
10035
  } | {
10027
10036
  mode: "inline";
10028
- status: "success" | "error";
10037
+ status: "error" | "success";
10029
10038
  connection_id: string;
10030
10039
  connection_name: string;
10031
10040
  strategy: string;
@@ -10912,7 +10921,7 @@ declare function init(config: AuthHeroConfig): {
10912
10921
  created_at: string;
10913
10922
  updated_at: string;
10914
10923
  name: string;
10915
- provider: "auth0" | "oidc" | "cognito" | "okta";
10924
+ provider: "auth0" | "cognito" | "okta" | "oidc";
10916
10925
  connection: string;
10917
10926
  enabled: boolean;
10918
10927
  credentials: {
@@ -10944,7 +10953,7 @@ declare function init(config: AuthHeroConfig): {
10944
10953
  created_at: string;
10945
10954
  updated_at: string;
10946
10955
  name: string;
10947
- provider: "auth0" | "oidc" | "cognito" | "okta";
10956
+ provider: "auth0" | "cognito" | "okta" | "oidc";
10948
10957
  connection: string;
10949
10958
  enabled: boolean;
10950
10959
  credentials: {
@@ -10970,7 +10979,7 @@ declare function init(config: AuthHeroConfig): {
10970
10979
  } & {
10971
10980
  json: {
10972
10981
  name: string;
10973
- provider: "auth0" | "oidc" | "cognito" | "okta";
10982
+ provider: "auth0" | "cognito" | "okta" | "oidc";
10974
10983
  connection: string;
10975
10984
  credentials: {
10976
10985
  domain: string;
@@ -10987,7 +10996,7 @@ declare function init(config: AuthHeroConfig): {
10987
10996
  created_at: string;
10988
10997
  updated_at: string;
10989
10998
  name: string;
10990
- provider: "auth0" | "oidc" | "cognito" | "okta";
10999
+ provider: "auth0" | "cognito" | "okta" | "oidc";
10991
11000
  connection: string;
10992
11001
  enabled: boolean;
10993
11002
  credentials: {
@@ -11018,7 +11027,7 @@ declare function init(config: AuthHeroConfig): {
11018
11027
  json: {
11019
11028
  id?: string | undefined;
11020
11029
  name?: string | undefined;
11021
- provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
11030
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
11022
11031
  connection?: string | undefined;
11023
11032
  enabled?: boolean | undefined;
11024
11033
  credentials?: {
@@ -11034,7 +11043,7 @@ declare function init(config: AuthHeroConfig): {
11034
11043
  created_at: string;
11035
11044
  updated_at: string;
11036
11045
  name: string;
11037
- provider: "auth0" | "oidc" | "cognito" | "okta";
11046
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11038
11047
  connection: string;
11039
11048
  enabled: boolean;
11040
11049
  credentials: {
@@ -11252,7 +11261,7 @@ declare function init(config: AuthHeroConfig): {
11252
11261
  };
11253
11262
  };
11254
11263
  output: {
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";
11264
+ type: "i" | "fn" | "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";
11256
11265
  date: string;
11257
11266
  isMobile: boolean;
11258
11267
  log_id: string;
@@ -11291,7 +11300,7 @@ declare function init(config: AuthHeroConfig): {
11291
11300
  limit: number;
11292
11301
  length: number;
11293
11302
  logs: {
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";
11303
+ type: "i" | "fn" | "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";
11295
11304
  date: string;
11296
11305
  isMobile: boolean;
11297
11306
  log_id: string;
@@ -11345,7 +11354,7 @@ declare function init(config: AuthHeroConfig): {
11345
11354
  };
11346
11355
  };
11347
11356
  output: {
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";
11357
+ type: "i" | "fn" | "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";
11349
11358
  date: string;
11350
11359
  isMobile: boolean;
11351
11360
  log_id: string;
@@ -12394,7 +12403,7 @@ declare function init(config: AuthHeroConfig): {
12394
12403
  } | undefined;
12395
12404
  } | undefined;
12396
12405
  passkey_options?: {
12397
- challenge_ui?: "both" | "autofill" | "button" | undefined;
12406
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
12398
12407
  local_enrollment_enabled?: boolean | undefined;
12399
12408
  progressive_enrollment_enabled?: boolean | undefined;
12400
12409
  } | undefined;
@@ -12548,7 +12557,7 @@ declare function init(config: AuthHeroConfig): {
12548
12557
  } | undefined;
12549
12558
  } | undefined;
12550
12559
  passkey_options?: {
12551
- challenge_ui?: "both" | "autofill" | "button" | undefined;
12560
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
12552
12561
  local_enrollment_enabled?: boolean | undefined;
12553
12562
  progressive_enrollment_enabled?: boolean | undefined;
12554
12563
  } | undefined;
@@ -13489,7 +13498,7 @@ declare function init(config: AuthHeroConfig): {
13489
13498
  };
13490
13499
  };
13491
13500
  output: {
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";
13501
+ type: "i" | "fn" | "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";
13493
13502
  date: string;
13494
13503
  isMobile: boolean;
13495
13504
  log_id: string;
@@ -13528,7 +13537,7 @@ declare function init(config: AuthHeroConfig): {
13528
13537
  limit: number;
13529
13538
  length: number;
13530
13539
  logs: {
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";
13540
+ type: "i" | "fn" | "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";
13532
13541
  date: string;
13533
13542
  isMobile: boolean;
13534
13543
  log_id: string;
@@ -13890,6 +13899,23 @@ declare function init(config: AuthHeroConfig): {
13890
13899
  status: 201;
13891
13900
  };
13892
13901
  };
13902
+ } & {
13903
+ "/defaults": {
13904
+ $get: {
13905
+ input: {
13906
+ header: {
13907
+ "tenant-id"?: string | undefined;
13908
+ };
13909
+ };
13910
+ output: {
13911
+ name: "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
+ body: string;
13913
+ subject: string;
13914
+ }[];
13915
+ outputFormat: "json";
13916
+ status: 200;
13917
+ };
13918
+ };
13893
13919
  } & {
13894
13920
  "/:templateName": {
13895
13921
  $get: {
@@ -14296,7 +14322,7 @@ declare function init(config: AuthHeroConfig): {
14296
14322
  primary: boolean;
14297
14323
  status: "disabled" | "pending" | "pending_verification" | "ready";
14298
14324
  verification_method?: "txt" | undefined;
14299
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14325
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14300
14326
  domain_metadata?: {
14301
14327
  [x: string]: string;
14302
14328
  } | undefined;
@@ -14337,7 +14363,7 @@ declare function init(config: AuthHeroConfig): {
14337
14363
  primary: boolean;
14338
14364
  status: "disabled" | "pending" | "pending_verification" | "ready";
14339
14365
  verification_method?: "txt" | undefined;
14340
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14366
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14341
14367
  domain_metadata?: {
14342
14368
  [x: string]: string;
14343
14369
  } | undefined;
@@ -14392,7 +14418,7 @@ declare function init(config: AuthHeroConfig): {
14392
14418
  domain?: string | undefined;
14393
14419
  type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
14394
14420
  verification_method?: "txt" | undefined;
14395
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14421
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14396
14422
  domain_metadata?: Record<string, string> | undefined;
14397
14423
  custom_domain_id?: string | undefined;
14398
14424
  primary?: boolean | undefined;
@@ -14419,7 +14445,7 @@ declare function init(config: AuthHeroConfig): {
14419
14445
  primary: boolean;
14420
14446
  status: "disabled" | "pending" | "pending_verification" | "ready";
14421
14447
  verification_method?: "txt" | undefined;
14422
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14448
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14423
14449
  domain_metadata?: {
14424
14450
  [x: string]: string;
14425
14451
  } | undefined;
@@ -14455,7 +14481,7 @@ declare function init(config: AuthHeroConfig): {
14455
14481
  custom_domain_id?: string | undefined;
14456
14482
  verification_method?: "txt" | undefined;
14457
14483
  tls_policy?: "recommended" | undefined;
14458
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14484
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14459
14485
  domain_metadata?: Record<string, string> | undefined;
14460
14486
  };
14461
14487
  };
@@ -14466,7 +14492,7 @@ declare function init(config: AuthHeroConfig): {
14466
14492
  primary: boolean;
14467
14493
  status: "disabled" | "pending" | "pending_verification" | "ready";
14468
14494
  verification_method?: "txt" | undefined;
14469
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14495
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14470
14496
  domain_metadata?: {
14471
14497
  [x: string]: string;
14472
14498
  } | undefined;
@@ -14512,7 +14538,7 @@ declare function init(config: AuthHeroConfig): {
14512
14538
  primary: boolean;
14513
14539
  status: "disabled" | "pending" | "pending_verification" | "ready";
14514
14540
  verification_method?: "txt" | undefined;
14515
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14541
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14516
14542
  domain_metadata?: {
14517
14543
  [x: string]: string;
14518
14544
  } | undefined;
@@ -14553,7 +14579,7 @@ declare function init(config: AuthHeroConfig): {
14553
14579
  primary: boolean;
14554
14580
  status: "disabled" | "pending" | "pending_verification" | "ready";
14555
14581
  verification_method?: "txt" | undefined;
14556
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14582
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
14557
14583
  domain_metadata?: {
14558
14584
  [x: string]: string;
14559
14585
  } | undefined;
@@ -14599,7 +14625,7 @@ declare function init(config: AuthHeroConfig): {
14599
14625
  base_focus_color: string;
14600
14626
  base_hover_color: string;
14601
14627
  body_text: string;
14602
- captcha_widget_theme: "dark" | "light" | "auto";
14628
+ captcha_widget_theme: "auto" | "light" | "dark";
14603
14629
  error: string;
14604
14630
  header: string;
14605
14631
  icons: string;
@@ -14650,7 +14676,7 @@ declare function init(config: AuthHeroConfig): {
14650
14676
  background_color: string;
14651
14677
  background_image_url: string;
14652
14678
  page_layout: "center" | "left" | "right";
14653
- logo_placement?: "none" | "widget" | "chip" | undefined;
14679
+ logo_placement?: "widget" | "chip" | "none" | undefined;
14654
14680
  };
14655
14681
  widget: {
14656
14682
  header_text_alignment: "center" | "left" | "right";
@@ -14689,7 +14715,7 @@ declare function init(config: AuthHeroConfig): {
14689
14715
  base_focus_color: string;
14690
14716
  base_hover_color: string;
14691
14717
  body_text: string;
14692
- captcha_widget_theme: "dark" | "light" | "auto";
14718
+ captcha_widget_theme: "auto" | "light" | "dark";
14693
14719
  error: string;
14694
14720
  header: string;
14695
14721
  icons: string;
@@ -14740,7 +14766,7 @@ declare function init(config: AuthHeroConfig): {
14740
14766
  background_color: string;
14741
14767
  background_image_url: string;
14742
14768
  page_layout: "center" | "left" | "right";
14743
- logo_placement?: "none" | "widget" | "chip" | undefined;
14769
+ logo_placement?: "widget" | "chip" | "none" | undefined;
14744
14770
  };
14745
14771
  widget: {
14746
14772
  header_text_alignment: "center" | "left" | "right";
@@ -14768,7 +14794,7 @@ declare function init(config: AuthHeroConfig): {
14768
14794
  base_focus_color: string;
14769
14795
  base_hover_color: string;
14770
14796
  body_text: string;
14771
- captcha_widget_theme: "dark" | "light" | "auto";
14797
+ captcha_widget_theme: "auto" | "light" | "dark";
14772
14798
  error: string;
14773
14799
  header: string;
14774
14800
  icons: string;
@@ -14819,7 +14845,7 @@ declare function init(config: AuthHeroConfig): {
14819
14845
  background_color: string;
14820
14846
  background_image_url: string;
14821
14847
  page_layout: "center" | "left" | "right";
14822
- logo_placement?: "none" | "widget" | "chip" | undefined;
14848
+ logo_placement?: "widget" | "chip" | "none" | undefined;
14823
14849
  };
14824
14850
  widget: {
14825
14851
  header_text_alignment: "center" | "left" | "right";
@@ -14858,7 +14884,7 @@ declare function init(config: AuthHeroConfig): {
14858
14884
  font?: {
14859
14885
  url: string;
14860
14886
  } | undefined;
14861
- dark_mode?: "dark" | "light" | "auto" | undefined;
14887
+ dark_mode?: "auto" | "light" | "dark" | undefined;
14862
14888
  };
14863
14889
  outputFormat: "json";
14864
14890
  status: 200;
@@ -14888,7 +14914,7 @@ declare function init(config: AuthHeroConfig): {
14888
14914
  font?: {
14889
14915
  url: string;
14890
14916
  } | undefined;
14891
- dark_mode?: "dark" | "light" | "auto" | undefined;
14917
+ dark_mode?: "auto" | "light" | "dark" | undefined;
14892
14918
  };
14893
14919
  };
14894
14920
  output: {
@@ -14907,7 +14933,7 @@ declare function init(config: AuthHeroConfig): {
14907
14933
  font?: {
14908
14934
  url: string;
14909
14935
  } | undefined;
14910
- dark_mode?: "dark" | "light" | "auto" | undefined;
14936
+ dark_mode?: "auto" | "light" | "dark" | undefined;
14911
14937
  };
14912
14938
  outputFormat: "json";
14913
14939
  status: 200;
@@ -16559,18 +16585,18 @@ declare function init(config: AuthHeroConfig): {
16559
16585
  send: "code" | "link";
16560
16586
  authParams: {
16561
16587
  username?: string | undefined;
16562
- scope?: string | undefined;
16563
- audience?: string | undefined;
16564
- organization?: string | undefined;
16565
- code_challenge?: string | undefined;
16566
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16567
- redirect_uri?: string | undefined;
16568
- nonce?: string | undefined;
16569
16588
  state?: string | undefined;
16570
- act_as?: string | undefined;
16589
+ audience?: string | undefined;
16590
+ scope?: string | undefined;
16571
16591
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16572
16592
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16593
+ act_as?: string | undefined;
16594
+ redirect_uri?: string | undefined;
16595
+ organization?: string | undefined;
16596
+ nonce?: string | undefined;
16573
16597
  prompt?: string | undefined;
16598
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16599
+ code_challenge?: string | undefined;
16574
16600
  ui_locales?: string | undefined;
16575
16601
  max_age?: number | undefined;
16576
16602
  acr_values?: string | undefined;
@@ -16595,18 +16621,18 @@ declare function init(config: AuthHeroConfig): {
16595
16621
  send: "code" | "link";
16596
16622
  authParams: {
16597
16623
  username?: string | undefined;
16598
- scope?: string | undefined;
16599
- audience?: string | undefined;
16600
- organization?: string | undefined;
16601
- code_challenge?: string | undefined;
16602
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16603
- redirect_uri?: string | undefined;
16604
- nonce?: string | undefined;
16605
16624
  state?: string | undefined;
16606
- act_as?: string | undefined;
16625
+ audience?: string | undefined;
16626
+ scope?: string | undefined;
16607
16627
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16608
16628
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16629
+ act_as?: string | undefined;
16630
+ redirect_uri?: string | undefined;
16631
+ organization?: string | undefined;
16632
+ nonce?: string | undefined;
16609
16633
  prompt?: string | undefined;
16634
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16635
+ code_challenge?: string | undefined;
16610
16636
  ui_locales?: string | undefined;
16611
16637
  max_age?: number | undefined;
16612
16638
  acr_values?: string | undefined;
@@ -16738,14 +16764,14 @@ declare function init(config: AuthHeroConfig): {
16738
16764
  input: {
16739
16765
  form: {
16740
16766
  token: string;
16741
- token_type_hint?: "refresh_token" | "access_token" | undefined;
16767
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16742
16768
  client_id?: string | undefined;
16743
16769
  client_secret?: string | undefined;
16744
16770
  };
16745
16771
  } & {
16746
16772
  json: {
16747
16773
  token: string;
16748
- token_type_hint?: "refresh_token" | "access_token" | undefined;
16774
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16749
16775
  client_id?: string | undefined;
16750
16776
  client_secret?: string | undefined;
16751
16777
  };
@@ -16757,14 +16783,14 @@ declare function init(config: AuthHeroConfig): {
16757
16783
  input: {
16758
16784
  form: {
16759
16785
  token: string;
16760
- token_type_hint?: "refresh_token" | "access_token" | undefined;
16786
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16761
16787
  client_id?: string | undefined;
16762
16788
  client_secret?: string | undefined;
16763
16789
  };
16764
16790
  } & {
16765
16791
  json: {
16766
16792
  token: string;
16767
- token_type_hint?: "refresh_token" | "access_token" | undefined;
16793
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16768
16794
  client_id?: string | undefined;
16769
16795
  client_secret?: string | undefined;
16770
16796
  };
@@ -16779,14 +16805,14 @@ declare function init(config: AuthHeroConfig): {
16779
16805
  input: {
16780
16806
  form: {
16781
16807
  token: string;
16782
- token_type_hint?: "refresh_token" | "access_token" | undefined;
16808
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16783
16809
  client_id?: string | undefined;
16784
16810
  client_secret?: string | undefined;
16785
16811
  };
16786
16812
  } & {
16787
16813
  json: {
16788
16814
  token: string;
16789
- token_type_hint?: "refresh_token" | "access_token" | undefined;
16815
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
16790
16816
  client_id?: string | undefined;
16791
16817
  client_secret?: string | undefined;
16792
16818
  };
@@ -18024,7 +18050,7 @@ declare function init(config: AuthHeroConfig): {
18024
18050
  } & {
18025
18051
  form: {
18026
18052
  username: string;
18027
- login_selection?: "code" | "password" | undefined;
18053
+ login_selection?: "password" | "code" | undefined;
18028
18054
  };
18029
18055
  };
18030
18056
  output: {};
@@ -18038,7 +18064,7 @@ declare function init(config: AuthHeroConfig): {
18038
18064
  } & {
18039
18065
  form: {
18040
18066
  username: string;
18041
- login_selection?: "code" | "password" | undefined;
18067
+ login_selection?: "password" | "code" | undefined;
18042
18068
  };
18043
18069
  };
18044
18070
  output: {};
@@ -18403,7 +18429,7 @@ declare function init(config: AuthHeroConfig): {
18403
18429
  $get: {
18404
18430
  input: {
18405
18431
  param: {
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";
18432
+ screen: "signup" | "login" | "reset-password" | "account" | "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
18433
  };
18408
18434
  } & {
18409
18435
  query: {
@@ -18419,7 +18445,7 @@ declare function init(config: AuthHeroConfig): {
18419
18445
  } | {
18420
18446
  input: {
18421
18447
  param: {
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";
18448
+ screen: "signup" | "login" | "reset-password" | "account" | "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
18449
  };
18424
18450
  } & {
18425
18451
  query: {
@@ -18435,7 +18461,7 @@ declare function init(config: AuthHeroConfig): {
18435
18461
  } | {
18436
18462
  input: {
18437
18463
  param: {
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";
18464
+ screen: "signup" | "login" | "reset-password" | "account" | "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
18465
  };
18440
18466
  } & {
18441
18467
  query: {