authhero 8.25.0 → 8.25.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/assets/u/css/tailwind.css +1 -1
  2. package/dist/authhero.cjs +7 -7
  3. package/dist/authhero.css +1 -1
  4. package/dist/authhero.d.ts +218 -200
  5. package/dist/authhero.mjs +161 -125
  6. package/dist/tailwind.css +1 -1
  7. package/dist/tsconfig.types.tsbuildinfo +1 -1
  8. package/dist/types/components/AuthCard.d.ts +17 -0
  9. package/dist/types/components/PasswordField.d.ts +18 -0
  10. package/dist/types/components/auth-form-styles.d.ts +39 -0
  11. package/dist/types/components/auth-forms.render.test.d.ts +1 -0
  12. package/dist/types/components/ui/input.d.ts +1 -0
  13. package/dist/types/index.d.ts +197 -197
  14. package/dist/types/routes/auth-api/index.d.ts +27 -27
  15. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  16. package/dist/types/routes/auth-api/revoke.d.ts +2 -2
  17. package/dist/types/routes/auth-api/token.d.ts +12 -12
  18. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  19. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  20. package/dist/types/routes/management-api/branding.d.ts +1 -1
  21. package/dist/types/routes/management-api/connections.d.ts +1 -1
  22. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  23. package/dist/types/routes/management-api/forms.d.ts +126 -126
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/index.d.ts +165 -165
  26. package/dist/types/routes/management-api/logs.d.ts +4 -4
  27. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  28. package/dist/types/routes/management-api/organizations.d.ts +8 -8
  29. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  30. package/dist/types/routes/management-api/roles.d.ts +1 -1
  31. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  32. package/dist/types/routes/management-api/users.d.ts +2 -2
  33. package/dist/types/routes/proxy-control-plane/index.d.ts +7 -1
  34. package/dist/types/routes/proxy-control-plane/verify.d.ts +13 -1
  35. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  36. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  37. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  38. package/dist/types/styles/tailwind.d.ts +1 -1
  39. package/dist/types/types/AuthHeroConfig.d.ts +6 -1
  40. package/dist/types/utils/jwks.d.ts +2 -2
  41. package/package.json +3 -3
@@ -74,8 +74,8 @@ export declare function init(config: AuthHeroConfig): {
74
74
  $get: {
75
75
  input: {
76
76
  query: {
77
- include_password_hashes?: "false" | "true" | undefined;
78
- gzip?: "false" | "true" | undefined;
77
+ include_password_hashes?: "true" | "false" | undefined;
78
+ gzip?: "true" | "false" | undefined;
79
79
  };
80
80
  } & {
81
81
  header: {
@@ -88,8 +88,8 @@ export declare function init(config: AuthHeroConfig): {
88
88
  } | {
89
89
  input: {
90
90
  query: {
91
- include_password_hashes?: "false" | "true" | undefined;
92
- gzip?: "false" | "true" | undefined;
91
+ include_password_hashes?: "true" | "false" | undefined;
92
+ gzip?: "true" | "false" | undefined;
93
93
  };
94
94
  } & {
95
95
  header: {
@@ -108,7 +108,7 @@ export declare function init(config: AuthHeroConfig): {
108
108
  $post: {
109
109
  input: {
110
110
  query: {
111
- include_password_hashes?: "false" | "true" | undefined;
111
+ include_password_hashes?: "true" | "false" | undefined;
112
112
  };
113
113
  } & {
114
114
  header: {
@@ -162,7 +162,7 @@ export declare function init(config: AuthHeroConfig): {
162
162
  };
163
163
  } & {
164
164
  json: {
165
- type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
165
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
166
166
  phone_number?: string | undefined;
167
167
  totp_secret?: string | undefined;
168
168
  credential_id?: string | undefined;
@@ -302,7 +302,7 @@ export declare function init(config: AuthHeroConfig): {
302
302
  };
303
303
  };
304
304
  output: {
305
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
305
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
306
306
  enabled: boolean;
307
307
  trial_expired?: boolean | undefined;
308
308
  }[];
@@ -457,7 +457,7 @@ export declare function init(config: AuthHeroConfig): {
457
457
  $get: {
458
458
  input: {
459
459
  param: {
460
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
460
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
461
461
  };
462
462
  } & {
463
463
  header: {
@@ -465,7 +465,7 @@ export declare function init(config: AuthHeroConfig): {
465
465
  };
466
466
  };
467
467
  output: {
468
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
468
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
469
469
  enabled: boolean;
470
470
  trial_expired?: boolean | undefined;
471
471
  };
@@ -478,7 +478,7 @@ export declare function init(config: AuthHeroConfig): {
478
478
  $put: {
479
479
  input: {
480
480
  param: {
481
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
481
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
482
482
  };
483
483
  } & {
484
484
  header: {
@@ -490,7 +490,7 @@ export declare function init(config: AuthHeroConfig): {
490
490
  };
491
491
  };
492
492
  output: {
493
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
493
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
494
494
  enabled: boolean;
495
495
  trial_expired?: boolean | undefined;
496
496
  };
@@ -1261,20 +1261,20 @@ export declare function init(config: AuthHeroConfig): {
1261
1261
  };
1262
1262
  } & {
1263
1263
  json: {
1264
- invitee: {
1265
- email?: string | undefined;
1266
- };
1264
+ client_id: string;
1267
1265
  inviter: {
1268
1266
  name?: string | undefined;
1269
1267
  };
1270
- client_id: string;
1268
+ invitee: {
1269
+ email?: string | undefined;
1270
+ };
1271
1271
  id?: string | undefined;
1272
- roles?: string[] | undefined;
1273
- send_invitation_email?: boolean | undefined;
1274
- ttl_sec?: number | undefined;
1275
- connection_id?: string | undefined;
1276
1272
  app_metadata?: Record<string, any> | undefined;
1277
1273
  user_metadata?: Record<string, any> | undefined;
1274
+ connection_id?: string | undefined;
1275
+ roles?: string[] | undefined;
1276
+ ttl_sec?: number | undefined;
1277
+ send_invitation_email?: boolean | undefined;
1278
1278
  };
1279
1279
  };
1280
1280
  output: {
@@ -2029,8 +2029,8 @@ export declare function init(config: AuthHeroConfig): {
2029
2029
  };
2030
2030
  } & {
2031
2031
  query: {
2032
- page?: string | undefined;
2033
2032
  from?: string | undefined;
2033
+ page?: string | undefined;
2034
2034
  include_totals?: string | undefined;
2035
2035
  per_page?: string | undefined;
2036
2036
  take?: string | undefined;
@@ -2754,7 +2754,7 @@ export declare function init(config: AuthHeroConfig): {
2754
2754
  hint?: string | undefined;
2755
2755
  messages?: {
2756
2756
  text: string;
2757
- type: "success" | "error" | "info" | "warning";
2757
+ type: "error" | "success" | "info" | "warning";
2758
2758
  id?: number | undefined;
2759
2759
  }[] | undefined;
2760
2760
  required?: boolean | undefined;
@@ -2772,7 +2772,7 @@ export declare function init(config: AuthHeroConfig): {
2772
2772
  hint?: string | undefined;
2773
2773
  messages?: {
2774
2774
  text: string;
2775
- type: "success" | "error" | "info" | "warning";
2775
+ type: "error" | "success" | "info" | "warning";
2776
2776
  id?: number | undefined;
2777
2777
  }[] | undefined;
2778
2778
  required?: boolean | undefined;
@@ -2796,7 +2796,7 @@ export declare function init(config: AuthHeroConfig): {
2796
2796
  hint?: string | undefined;
2797
2797
  messages?: {
2798
2798
  text: string;
2799
- type: "success" | "error" | "info" | "warning";
2799
+ type: "error" | "success" | "info" | "warning";
2800
2800
  id?: number | undefined;
2801
2801
  }[] | undefined;
2802
2802
  required?: boolean | undefined;
@@ -2820,7 +2820,7 @@ export declare function init(config: AuthHeroConfig): {
2820
2820
  hint?: string | undefined;
2821
2821
  messages?: {
2822
2822
  text: string;
2823
- type: "success" | "error" | "info" | "warning";
2823
+ type: "error" | "success" | "info" | "warning";
2824
2824
  id?: number | undefined;
2825
2825
  }[] | undefined;
2826
2826
  required?: boolean | undefined;
@@ -2844,7 +2844,7 @@ export declare function init(config: AuthHeroConfig): {
2844
2844
  hint?: string | undefined;
2845
2845
  messages?: {
2846
2846
  text: string;
2847
- type: "success" | "error" | "info" | "warning";
2847
+ type: "error" | "success" | "info" | "warning";
2848
2848
  id?: number | undefined;
2849
2849
  }[] | undefined;
2850
2850
  required?: boolean | undefined;
@@ -2873,7 +2873,7 @@ export declare function init(config: AuthHeroConfig): {
2873
2873
  hint?: string | undefined;
2874
2874
  messages?: {
2875
2875
  text: string;
2876
- type: "success" | "error" | "info" | "warning";
2876
+ type: "error" | "success" | "info" | "warning";
2877
2877
  id?: number | undefined;
2878
2878
  }[] | undefined;
2879
2879
  required?: boolean | undefined;
@@ -2888,7 +2888,7 @@ export declare function init(config: AuthHeroConfig): {
2888
2888
  hint?: string | undefined;
2889
2889
  messages?: {
2890
2890
  text: string;
2891
- type: "success" | "error" | "info" | "warning";
2891
+ type: "error" | "success" | "info" | "warning";
2892
2892
  id?: number | undefined;
2893
2893
  }[] | undefined;
2894
2894
  required?: boolean | undefined;
@@ -2909,7 +2909,7 @@ export declare function init(config: AuthHeroConfig): {
2909
2909
  hint?: string | undefined;
2910
2910
  messages?: {
2911
2911
  text: string;
2912
- type: "success" | "error" | "info" | "warning";
2912
+ type: "error" | "success" | "info" | "warning";
2913
2913
  id?: number | undefined;
2914
2914
  }[] | undefined;
2915
2915
  required?: boolean | undefined;
@@ -2934,7 +2934,7 @@ export declare function init(config: AuthHeroConfig): {
2934
2934
  hint?: string | undefined;
2935
2935
  messages?: {
2936
2936
  text: string;
2937
- type: "success" | "error" | "info" | "warning";
2937
+ type: "error" | "success" | "info" | "warning";
2938
2938
  id?: number | undefined;
2939
2939
  }[] | undefined;
2940
2940
  required?: boolean | undefined;
@@ -2953,7 +2953,7 @@ export declare function init(config: AuthHeroConfig): {
2953
2953
  hint?: string | undefined;
2954
2954
  messages?: {
2955
2955
  text: string;
2956
- type: "success" | "error" | "info" | "warning";
2956
+ type: "error" | "success" | "info" | "warning";
2957
2957
  id?: number | undefined;
2958
2958
  }[] | undefined;
2959
2959
  required?: boolean | undefined;
@@ -2973,7 +2973,7 @@ export declare function init(config: AuthHeroConfig): {
2973
2973
  hint?: string | undefined;
2974
2974
  messages?: {
2975
2975
  text: string;
2976
- type: "success" | "error" | "info" | "warning";
2976
+ type: "error" | "success" | "info" | "warning";
2977
2977
  id?: number | undefined;
2978
2978
  }[] | undefined;
2979
2979
  required?: boolean | undefined;
@@ -2992,7 +2992,7 @@ export declare function init(config: AuthHeroConfig): {
2992
2992
  hint?: string | undefined;
2993
2993
  messages?: {
2994
2994
  text: string;
2995
- type: "success" | "error" | "info" | "warning";
2995
+ type: "error" | "success" | "info" | "warning";
2996
2996
  id?: number | undefined;
2997
2997
  }[] | undefined;
2998
2998
  required?: boolean | undefined;
@@ -3014,7 +3014,7 @@ export declare function init(config: AuthHeroConfig): {
3014
3014
  hint?: string | undefined;
3015
3015
  messages?: {
3016
3016
  text: string;
3017
- type: "success" | "error" | "info" | "warning";
3017
+ type: "error" | "success" | "info" | "warning";
3018
3018
  id?: number | undefined;
3019
3019
  }[] | undefined;
3020
3020
  required?: boolean | undefined;
@@ -3036,7 +3036,7 @@ export declare function init(config: AuthHeroConfig): {
3036
3036
  hint?: string | undefined;
3037
3037
  messages?: {
3038
3038
  text: string;
3039
- type: "success" | "error" | "info" | "warning";
3039
+ type: "error" | "success" | "info" | "warning";
3040
3040
  id?: number | undefined;
3041
3041
  }[] | undefined;
3042
3042
  required?: boolean | undefined;
@@ -3055,7 +3055,7 @@ export declare function init(config: AuthHeroConfig): {
3055
3055
  hint?: string | undefined;
3056
3056
  messages?: {
3057
3057
  text: string;
3058
- type: "success" | "error" | "info" | "warning";
3058
+ type: "error" | "success" | "info" | "warning";
3059
3059
  id?: number | undefined;
3060
3060
  }[] | undefined;
3061
3061
  required?: boolean | undefined;
@@ -3080,7 +3080,7 @@ export declare function init(config: AuthHeroConfig): {
3080
3080
  hint?: string | undefined;
3081
3081
  messages?: {
3082
3082
  text: string;
3083
- type: "success" | "error" | "info" | "warning";
3083
+ type: "error" | "success" | "info" | "warning";
3084
3084
  id?: number | undefined;
3085
3085
  }[] | undefined;
3086
3086
  required?: boolean | undefined;
@@ -3101,7 +3101,7 @@ export declare function init(config: AuthHeroConfig): {
3101
3101
  hint?: string | undefined;
3102
3102
  messages?: {
3103
3103
  text: string;
3104
- type: "success" | "error" | "info" | "warning";
3104
+ type: "error" | "success" | "info" | "warning";
3105
3105
  id?: number | undefined;
3106
3106
  }[] | undefined;
3107
3107
  required?: boolean | undefined;
@@ -3122,7 +3122,7 @@ export declare function init(config: AuthHeroConfig): {
3122
3122
  hint?: string | undefined;
3123
3123
  messages?: {
3124
3124
  text: string;
3125
- type: "success" | "error" | "info" | "warning";
3125
+ type: "error" | "success" | "info" | "warning";
3126
3126
  id?: number | undefined;
3127
3127
  }[] | undefined;
3128
3128
  required?: boolean | undefined;
@@ -3355,7 +3355,7 @@ export declare function init(config: AuthHeroConfig): {
3355
3355
  hint?: string | undefined;
3356
3356
  messages?: {
3357
3357
  text: string;
3358
- type: "success" | "error" | "info" | "warning";
3358
+ type: "error" | "success" | "info" | "warning";
3359
3359
  id?: number | undefined;
3360
3360
  }[] | undefined;
3361
3361
  required?: boolean | undefined;
@@ -3373,7 +3373,7 @@ export declare function init(config: AuthHeroConfig): {
3373
3373
  hint?: string | undefined;
3374
3374
  messages?: {
3375
3375
  text: string;
3376
- type: "success" | "error" | "info" | "warning";
3376
+ type: "error" | "success" | "info" | "warning";
3377
3377
  id?: number | undefined;
3378
3378
  }[] | undefined;
3379
3379
  required?: boolean | undefined;
@@ -3397,7 +3397,7 @@ export declare function init(config: AuthHeroConfig): {
3397
3397
  hint?: string | undefined;
3398
3398
  messages?: {
3399
3399
  text: string;
3400
- type: "success" | "error" | "info" | "warning";
3400
+ type: "error" | "success" | "info" | "warning";
3401
3401
  id?: number | undefined;
3402
3402
  }[] | undefined;
3403
3403
  required?: boolean | undefined;
@@ -3421,7 +3421,7 @@ export declare function init(config: AuthHeroConfig): {
3421
3421
  hint?: string | undefined;
3422
3422
  messages?: {
3423
3423
  text: string;
3424
- type: "success" | "error" | "info" | "warning";
3424
+ type: "error" | "success" | "info" | "warning";
3425
3425
  id?: number | undefined;
3426
3426
  }[] | undefined;
3427
3427
  required?: boolean | undefined;
@@ -3445,7 +3445,7 @@ export declare function init(config: AuthHeroConfig): {
3445
3445
  hint?: string | undefined;
3446
3446
  messages?: {
3447
3447
  text: string;
3448
- type: "success" | "error" | "info" | "warning";
3448
+ type: "error" | "success" | "info" | "warning";
3449
3449
  id?: number | undefined;
3450
3450
  }[] | undefined;
3451
3451
  required?: boolean | undefined;
@@ -3474,7 +3474,7 @@ export declare function init(config: AuthHeroConfig): {
3474
3474
  hint?: string | undefined;
3475
3475
  messages?: {
3476
3476
  text: string;
3477
- type: "success" | "error" | "info" | "warning";
3477
+ type: "error" | "success" | "info" | "warning";
3478
3478
  id?: number | undefined;
3479
3479
  }[] | undefined;
3480
3480
  required?: boolean | undefined;
@@ -3489,7 +3489,7 @@ export declare function init(config: AuthHeroConfig): {
3489
3489
  hint?: string | undefined;
3490
3490
  messages?: {
3491
3491
  text: string;
3492
- type: "success" | "error" | "info" | "warning";
3492
+ type: "error" | "success" | "info" | "warning";
3493
3493
  id?: number | undefined;
3494
3494
  }[] | undefined;
3495
3495
  required?: boolean | undefined;
@@ -3510,7 +3510,7 @@ export declare function init(config: AuthHeroConfig): {
3510
3510
  hint?: string | undefined;
3511
3511
  messages?: {
3512
3512
  text: string;
3513
- type: "success" | "error" | "info" | "warning";
3513
+ type: "error" | "success" | "info" | "warning";
3514
3514
  id?: number | undefined;
3515
3515
  }[] | undefined;
3516
3516
  required?: boolean | undefined;
@@ -3535,7 +3535,7 @@ export declare function init(config: AuthHeroConfig): {
3535
3535
  hint?: string | undefined;
3536
3536
  messages?: {
3537
3537
  text: string;
3538
- type: "success" | "error" | "info" | "warning";
3538
+ type: "error" | "success" | "info" | "warning";
3539
3539
  id?: number | undefined;
3540
3540
  }[] | undefined;
3541
3541
  required?: boolean | undefined;
@@ -3554,7 +3554,7 @@ export declare function init(config: AuthHeroConfig): {
3554
3554
  hint?: string | undefined;
3555
3555
  messages?: {
3556
3556
  text: string;
3557
- type: "success" | "error" | "info" | "warning";
3557
+ type: "error" | "success" | "info" | "warning";
3558
3558
  id?: number | undefined;
3559
3559
  }[] | undefined;
3560
3560
  required?: boolean | undefined;
@@ -3574,7 +3574,7 @@ export declare function init(config: AuthHeroConfig): {
3574
3574
  hint?: string | undefined;
3575
3575
  messages?: {
3576
3576
  text: string;
3577
- type: "success" | "error" | "info" | "warning";
3577
+ type: "error" | "success" | "info" | "warning";
3578
3578
  id?: number | undefined;
3579
3579
  }[] | undefined;
3580
3580
  required?: boolean | undefined;
@@ -3593,7 +3593,7 @@ export declare function init(config: AuthHeroConfig): {
3593
3593
  hint?: string | undefined;
3594
3594
  messages?: {
3595
3595
  text: string;
3596
- type: "success" | "error" | "info" | "warning";
3596
+ type: "error" | "success" | "info" | "warning";
3597
3597
  id?: number | undefined;
3598
3598
  }[] | undefined;
3599
3599
  required?: boolean | undefined;
@@ -3615,7 +3615,7 @@ export declare function init(config: AuthHeroConfig): {
3615
3615
  hint?: string | undefined;
3616
3616
  messages?: {
3617
3617
  text: string;
3618
- type: "success" | "error" | "info" | "warning";
3618
+ type: "error" | "success" | "info" | "warning";
3619
3619
  id?: number | undefined;
3620
3620
  }[] | undefined;
3621
3621
  required?: boolean | undefined;
@@ -3637,7 +3637,7 @@ export declare function init(config: AuthHeroConfig): {
3637
3637
  hint?: string | undefined;
3638
3638
  messages?: {
3639
3639
  text: string;
3640
- type: "success" | "error" | "info" | "warning";
3640
+ type: "error" | "success" | "info" | "warning";
3641
3641
  id?: number | undefined;
3642
3642
  }[] | undefined;
3643
3643
  required?: boolean | undefined;
@@ -3656,7 +3656,7 @@ export declare function init(config: AuthHeroConfig): {
3656
3656
  hint?: string | undefined;
3657
3657
  messages?: {
3658
3658
  text: string;
3659
- type: "success" | "error" | "info" | "warning";
3659
+ type: "error" | "success" | "info" | "warning";
3660
3660
  id?: number | undefined;
3661
3661
  }[] | undefined;
3662
3662
  required?: boolean | undefined;
@@ -3681,7 +3681,7 @@ export declare function init(config: AuthHeroConfig): {
3681
3681
  hint?: string | undefined;
3682
3682
  messages?: {
3683
3683
  text: string;
3684
- type: "success" | "error" | "info" | "warning";
3684
+ type: "error" | "success" | "info" | "warning";
3685
3685
  id?: number | undefined;
3686
3686
  }[] | undefined;
3687
3687
  required?: boolean | undefined;
@@ -3702,7 +3702,7 @@ export declare function init(config: AuthHeroConfig): {
3702
3702
  hint?: string | undefined;
3703
3703
  messages?: {
3704
3704
  text: string;
3705
- type: "success" | "error" | "info" | "warning";
3705
+ type: "error" | "success" | "info" | "warning";
3706
3706
  id?: number | undefined;
3707
3707
  }[] | undefined;
3708
3708
  required?: boolean | undefined;
@@ -3723,7 +3723,7 @@ export declare function init(config: AuthHeroConfig): {
3723
3723
  hint?: string | undefined;
3724
3724
  messages?: {
3725
3725
  text: string;
3726
- type: "success" | "error" | "info" | "warning";
3726
+ type: "error" | "success" | "info" | "warning";
3727
3727
  id?: number | undefined;
3728
3728
  }[] | undefined;
3729
3729
  required?: boolean | undefined;
@@ -3972,7 +3972,7 @@ export declare function init(config: AuthHeroConfig): {
3972
3972
  hint?: string | undefined;
3973
3973
  messages?: {
3974
3974
  text: string;
3975
- type: "success" | "error" | "info" | "warning";
3975
+ type: "error" | "success" | "info" | "warning";
3976
3976
  id?: number | undefined;
3977
3977
  }[] | undefined;
3978
3978
  required?: boolean | undefined;
@@ -3990,7 +3990,7 @@ export declare function init(config: AuthHeroConfig): {
3990
3990
  hint?: string | undefined;
3991
3991
  messages?: {
3992
3992
  text: string;
3993
- type: "success" | "error" | "info" | "warning";
3993
+ type: "error" | "success" | "info" | "warning";
3994
3994
  id?: number | undefined;
3995
3995
  }[] | undefined;
3996
3996
  required?: boolean | undefined;
@@ -4014,7 +4014,7 @@ export declare function init(config: AuthHeroConfig): {
4014
4014
  hint?: string | undefined;
4015
4015
  messages?: {
4016
4016
  text: string;
4017
- type: "success" | "error" | "info" | "warning";
4017
+ type: "error" | "success" | "info" | "warning";
4018
4018
  id?: number | undefined;
4019
4019
  }[] | undefined;
4020
4020
  required?: boolean | undefined;
@@ -4038,7 +4038,7 @@ export declare function init(config: AuthHeroConfig): {
4038
4038
  hint?: string | undefined;
4039
4039
  messages?: {
4040
4040
  text: string;
4041
- type: "success" | "error" | "info" | "warning";
4041
+ type: "error" | "success" | "info" | "warning";
4042
4042
  id?: number | undefined;
4043
4043
  }[] | undefined;
4044
4044
  required?: boolean | undefined;
@@ -4062,7 +4062,7 @@ export declare function init(config: AuthHeroConfig): {
4062
4062
  hint?: string | undefined;
4063
4063
  messages?: {
4064
4064
  text: string;
4065
- type: "success" | "error" | "info" | "warning";
4065
+ type: "error" | "success" | "info" | "warning";
4066
4066
  id?: number | undefined;
4067
4067
  }[] | undefined;
4068
4068
  required?: boolean | undefined;
@@ -4091,7 +4091,7 @@ export declare function init(config: AuthHeroConfig): {
4091
4091
  hint?: string | undefined;
4092
4092
  messages?: {
4093
4093
  text: string;
4094
- type: "success" | "error" | "info" | "warning";
4094
+ type: "error" | "success" | "info" | "warning";
4095
4095
  id?: number | undefined;
4096
4096
  }[] | undefined;
4097
4097
  required?: boolean | undefined;
@@ -4106,7 +4106,7 @@ export declare function init(config: AuthHeroConfig): {
4106
4106
  hint?: string | undefined;
4107
4107
  messages?: {
4108
4108
  text: string;
4109
- type: "success" | "error" | "info" | "warning";
4109
+ type: "error" | "success" | "info" | "warning";
4110
4110
  id?: number | undefined;
4111
4111
  }[] | undefined;
4112
4112
  required?: boolean | undefined;
@@ -4127,7 +4127,7 @@ export declare function init(config: AuthHeroConfig): {
4127
4127
  hint?: string | undefined;
4128
4128
  messages?: {
4129
4129
  text: string;
4130
- type: "success" | "error" | "info" | "warning";
4130
+ type: "error" | "success" | "info" | "warning";
4131
4131
  id?: number | undefined;
4132
4132
  }[] | undefined;
4133
4133
  required?: boolean | undefined;
@@ -4152,7 +4152,7 @@ export declare function init(config: AuthHeroConfig): {
4152
4152
  hint?: string | undefined;
4153
4153
  messages?: {
4154
4154
  text: string;
4155
- type: "success" | "error" | "info" | "warning";
4155
+ type: "error" | "success" | "info" | "warning";
4156
4156
  id?: number | undefined;
4157
4157
  }[] | undefined;
4158
4158
  required?: boolean | undefined;
@@ -4171,7 +4171,7 @@ export declare function init(config: AuthHeroConfig): {
4171
4171
  hint?: string | undefined;
4172
4172
  messages?: {
4173
4173
  text: string;
4174
- type: "success" | "error" | "info" | "warning";
4174
+ type: "error" | "success" | "info" | "warning";
4175
4175
  id?: number | undefined;
4176
4176
  }[] | undefined;
4177
4177
  required?: boolean | undefined;
@@ -4191,7 +4191,7 @@ export declare function init(config: AuthHeroConfig): {
4191
4191
  hint?: string | undefined;
4192
4192
  messages?: {
4193
4193
  text: string;
4194
- type: "success" | "error" | "info" | "warning";
4194
+ type: "error" | "success" | "info" | "warning";
4195
4195
  id?: number | undefined;
4196
4196
  }[] | undefined;
4197
4197
  required?: boolean | undefined;
@@ -4210,7 +4210,7 @@ export declare function init(config: AuthHeroConfig): {
4210
4210
  hint?: string | undefined;
4211
4211
  messages?: {
4212
4212
  text: string;
4213
- type: "success" | "error" | "info" | "warning";
4213
+ type: "error" | "success" | "info" | "warning";
4214
4214
  id?: number | undefined;
4215
4215
  }[] | undefined;
4216
4216
  required?: boolean | undefined;
@@ -4232,7 +4232,7 @@ export declare function init(config: AuthHeroConfig): {
4232
4232
  hint?: string | undefined;
4233
4233
  messages?: {
4234
4234
  text: string;
4235
- type: "success" | "error" | "info" | "warning";
4235
+ type: "error" | "success" | "info" | "warning";
4236
4236
  id?: number | undefined;
4237
4237
  }[] | undefined;
4238
4238
  required?: boolean | undefined;
@@ -4254,7 +4254,7 @@ export declare function init(config: AuthHeroConfig): {
4254
4254
  hint?: string | undefined;
4255
4255
  messages?: {
4256
4256
  text: string;
4257
- type: "success" | "error" | "info" | "warning";
4257
+ type: "error" | "success" | "info" | "warning";
4258
4258
  id?: number | undefined;
4259
4259
  }[] | undefined;
4260
4260
  required?: boolean | undefined;
@@ -4273,7 +4273,7 @@ export declare function init(config: AuthHeroConfig): {
4273
4273
  hint?: string | undefined;
4274
4274
  messages?: {
4275
4275
  text: string;
4276
- type: "success" | "error" | "info" | "warning";
4276
+ type: "error" | "success" | "info" | "warning";
4277
4277
  id?: number | undefined;
4278
4278
  }[] | undefined;
4279
4279
  required?: boolean | undefined;
@@ -4298,7 +4298,7 @@ export declare function init(config: AuthHeroConfig): {
4298
4298
  hint?: string | undefined;
4299
4299
  messages?: {
4300
4300
  text: string;
4301
- type: "success" | "error" | "info" | "warning";
4301
+ type: "error" | "success" | "info" | "warning";
4302
4302
  id?: number | undefined;
4303
4303
  }[] | undefined;
4304
4304
  required?: boolean | undefined;
@@ -4319,7 +4319,7 @@ export declare function init(config: AuthHeroConfig): {
4319
4319
  hint?: string | undefined;
4320
4320
  messages?: {
4321
4321
  text: string;
4322
- type: "success" | "error" | "info" | "warning";
4322
+ type: "error" | "success" | "info" | "warning";
4323
4323
  id?: number | undefined;
4324
4324
  }[] | undefined;
4325
4325
  required?: boolean | undefined;
@@ -4340,7 +4340,7 @@ export declare function init(config: AuthHeroConfig): {
4340
4340
  hint?: string | undefined;
4341
4341
  messages?: {
4342
4342
  text: string;
4343
- type: "success" | "error" | "info" | "warning";
4343
+ type: "error" | "success" | "info" | "warning";
4344
4344
  id?: number | undefined;
4345
4345
  }[] | undefined;
4346
4346
  required?: boolean | undefined;
@@ -4594,7 +4594,7 @@ export declare function init(config: AuthHeroConfig): {
4594
4594
  hint?: string | undefined;
4595
4595
  messages?: {
4596
4596
  text: string;
4597
- type: "success" | "error" | "info" | "warning";
4597
+ type: "error" | "success" | "info" | "warning";
4598
4598
  id?: number | undefined;
4599
4599
  }[] | undefined;
4600
4600
  required?: boolean | undefined;
@@ -4612,7 +4612,7 @@ export declare function init(config: AuthHeroConfig): {
4612
4612
  hint?: string | undefined;
4613
4613
  messages?: {
4614
4614
  text: string;
4615
- type: "success" | "error" | "info" | "warning";
4615
+ type: "error" | "success" | "info" | "warning";
4616
4616
  id?: number | undefined;
4617
4617
  }[] | undefined;
4618
4618
  required?: boolean | undefined;
@@ -4636,7 +4636,7 @@ export declare function init(config: AuthHeroConfig): {
4636
4636
  hint?: string | undefined;
4637
4637
  messages?: {
4638
4638
  text: string;
4639
- type: "success" | "error" | "info" | "warning";
4639
+ type: "error" | "success" | "info" | "warning";
4640
4640
  id?: number | undefined;
4641
4641
  }[] | undefined;
4642
4642
  required?: boolean | undefined;
@@ -4660,7 +4660,7 @@ export declare function init(config: AuthHeroConfig): {
4660
4660
  hint?: string | undefined;
4661
4661
  messages?: {
4662
4662
  text: string;
4663
- type: "success" | "error" | "info" | "warning";
4663
+ type: "error" | "success" | "info" | "warning";
4664
4664
  id?: number | undefined;
4665
4665
  }[] | undefined;
4666
4666
  required?: boolean | undefined;
@@ -4684,7 +4684,7 @@ export declare function init(config: AuthHeroConfig): {
4684
4684
  hint?: string | undefined;
4685
4685
  messages?: {
4686
4686
  text: string;
4687
- type: "success" | "error" | "info" | "warning";
4687
+ type: "error" | "success" | "info" | "warning";
4688
4688
  id?: number | undefined;
4689
4689
  }[] | undefined;
4690
4690
  required?: boolean | undefined;
@@ -4709,7 +4709,7 @@ export declare function init(config: AuthHeroConfig): {
4709
4709
  hint?: string | undefined;
4710
4710
  messages?: {
4711
4711
  text: string;
4712
- type: "success" | "error" | "info" | "warning";
4712
+ type: "error" | "success" | "info" | "warning";
4713
4713
  id?: number | undefined;
4714
4714
  }[] | undefined;
4715
4715
  required?: boolean | undefined;
@@ -4724,7 +4724,7 @@ export declare function init(config: AuthHeroConfig): {
4724
4724
  hint?: string | undefined;
4725
4725
  messages?: {
4726
4726
  text: string;
4727
- type: "success" | "error" | "info" | "warning";
4727
+ type: "error" | "success" | "info" | "warning";
4728
4728
  id?: number | undefined;
4729
4729
  }[] | undefined;
4730
4730
  required?: boolean | undefined;
@@ -4745,7 +4745,7 @@ export declare function init(config: AuthHeroConfig): {
4745
4745
  hint?: string | undefined;
4746
4746
  messages?: {
4747
4747
  text: string;
4748
- type: "success" | "error" | "info" | "warning";
4748
+ type: "error" | "success" | "info" | "warning";
4749
4749
  id?: number | undefined;
4750
4750
  }[] | undefined;
4751
4751
  required?: boolean | undefined;
@@ -4770,7 +4770,7 @@ export declare function init(config: AuthHeroConfig): {
4770
4770
  hint?: string | undefined;
4771
4771
  messages?: {
4772
4772
  text: string;
4773
- type: "success" | "error" | "info" | "warning";
4773
+ type: "error" | "success" | "info" | "warning";
4774
4774
  id?: number | undefined;
4775
4775
  }[] | undefined;
4776
4776
  required?: boolean | undefined;
@@ -4789,7 +4789,7 @@ export declare function init(config: AuthHeroConfig): {
4789
4789
  hint?: string | undefined;
4790
4790
  messages?: {
4791
4791
  text: string;
4792
- type: "success" | "error" | "info" | "warning";
4792
+ type: "error" | "success" | "info" | "warning";
4793
4793
  id?: number | undefined;
4794
4794
  }[] | undefined;
4795
4795
  required?: boolean | undefined;
@@ -4809,7 +4809,7 @@ export declare function init(config: AuthHeroConfig): {
4809
4809
  hint?: string | undefined;
4810
4810
  messages?: {
4811
4811
  text: string;
4812
- type: "success" | "error" | "info" | "warning";
4812
+ type: "error" | "success" | "info" | "warning";
4813
4813
  id?: number | undefined;
4814
4814
  }[] | undefined;
4815
4815
  required?: boolean | undefined;
@@ -4828,7 +4828,7 @@ export declare function init(config: AuthHeroConfig): {
4828
4828
  hint?: string | undefined;
4829
4829
  messages?: {
4830
4830
  text: string;
4831
- type: "success" | "error" | "info" | "warning";
4831
+ type: "error" | "success" | "info" | "warning";
4832
4832
  id?: number | undefined;
4833
4833
  }[] | undefined;
4834
4834
  required?: boolean | undefined;
@@ -4850,7 +4850,7 @@ export declare function init(config: AuthHeroConfig): {
4850
4850
  hint?: string | undefined;
4851
4851
  messages?: {
4852
4852
  text: string;
4853
- type: "success" | "error" | "info" | "warning";
4853
+ type: "error" | "success" | "info" | "warning";
4854
4854
  id?: number | undefined;
4855
4855
  }[] | undefined;
4856
4856
  required?: boolean | undefined;
@@ -4872,7 +4872,7 @@ export declare function init(config: AuthHeroConfig): {
4872
4872
  hint?: string | undefined;
4873
4873
  messages?: {
4874
4874
  text: string;
4875
- type: "success" | "error" | "info" | "warning";
4875
+ type: "error" | "success" | "info" | "warning";
4876
4876
  id?: number | undefined;
4877
4877
  }[] | undefined;
4878
4878
  required?: boolean | undefined;
@@ -4891,7 +4891,7 @@ export declare function init(config: AuthHeroConfig): {
4891
4891
  hint?: string | undefined;
4892
4892
  messages?: {
4893
4893
  text: string;
4894
- type: "success" | "error" | "info" | "warning";
4894
+ type: "error" | "success" | "info" | "warning";
4895
4895
  id?: number | undefined;
4896
4896
  }[] | undefined;
4897
4897
  required?: boolean | undefined;
@@ -4916,7 +4916,7 @@ export declare function init(config: AuthHeroConfig): {
4916
4916
  hint?: string | undefined;
4917
4917
  messages?: {
4918
4918
  text: string;
4919
- type: "success" | "error" | "info" | "warning";
4919
+ type: "error" | "success" | "info" | "warning";
4920
4920
  id?: number | undefined;
4921
4921
  }[] | undefined;
4922
4922
  required?: boolean | undefined;
@@ -4937,7 +4937,7 @@ export declare function init(config: AuthHeroConfig): {
4937
4937
  hint?: string | undefined;
4938
4938
  messages?: {
4939
4939
  text: string;
4940
- type: "success" | "error" | "info" | "warning";
4940
+ type: "error" | "success" | "info" | "warning";
4941
4941
  id?: number | undefined;
4942
4942
  }[] | undefined;
4943
4943
  required?: boolean | undefined;
@@ -4958,7 +4958,7 @@ export declare function init(config: AuthHeroConfig): {
4958
4958
  hint?: string | undefined;
4959
4959
  messages?: {
4960
4960
  text: string;
4961
- type: "success" | "error" | "info" | "warning";
4961
+ type: "error" | "success" | "info" | "warning";
4962
4962
  id?: number | undefined;
4963
4963
  }[] | undefined;
4964
4964
  required?: boolean | undefined;
@@ -5189,7 +5189,7 @@ export declare function init(config: AuthHeroConfig): {
5189
5189
  hint?: string | undefined;
5190
5190
  messages?: {
5191
5191
  text: string;
5192
- type: "success" | "error" | "info" | "warning";
5192
+ type: "error" | "success" | "info" | "warning";
5193
5193
  id?: number | undefined;
5194
5194
  }[] | undefined;
5195
5195
  required?: boolean | undefined;
@@ -5207,7 +5207,7 @@ export declare function init(config: AuthHeroConfig): {
5207
5207
  hint?: string | undefined;
5208
5208
  messages?: {
5209
5209
  text: string;
5210
- type: "success" | "error" | "info" | "warning";
5210
+ type: "error" | "success" | "info" | "warning";
5211
5211
  id?: number | undefined;
5212
5212
  }[] | undefined;
5213
5213
  required?: boolean | undefined;
@@ -5231,7 +5231,7 @@ export declare function init(config: AuthHeroConfig): {
5231
5231
  hint?: string | undefined;
5232
5232
  messages?: {
5233
5233
  text: string;
5234
- type: "success" | "error" | "info" | "warning";
5234
+ type: "error" | "success" | "info" | "warning";
5235
5235
  id?: number | undefined;
5236
5236
  }[] | undefined;
5237
5237
  required?: boolean | undefined;
@@ -5255,7 +5255,7 @@ export declare function init(config: AuthHeroConfig): {
5255
5255
  hint?: string | undefined;
5256
5256
  messages?: {
5257
5257
  text: string;
5258
- type: "success" | "error" | "info" | "warning";
5258
+ type: "error" | "success" | "info" | "warning";
5259
5259
  id?: number | undefined;
5260
5260
  }[] | undefined;
5261
5261
  required?: boolean | undefined;
@@ -5279,7 +5279,7 @@ export declare function init(config: AuthHeroConfig): {
5279
5279
  hint?: string | undefined;
5280
5280
  messages?: {
5281
5281
  text: string;
5282
- type: "success" | "error" | "info" | "warning";
5282
+ type: "error" | "success" | "info" | "warning";
5283
5283
  id?: number | undefined;
5284
5284
  }[] | undefined;
5285
5285
  required?: boolean | undefined;
@@ -5308,7 +5308,7 @@ export declare function init(config: AuthHeroConfig): {
5308
5308
  hint?: string | undefined;
5309
5309
  messages?: {
5310
5310
  text: string;
5311
- type: "success" | "error" | "info" | "warning";
5311
+ type: "error" | "success" | "info" | "warning";
5312
5312
  id?: number | undefined;
5313
5313
  }[] | undefined;
5314
5314
  required?: boolean | undefined;
@@ -5323,7 +5323,7 @@ export declare function init(config: AuthHeroConfig): {
5323
5323
  hint?: string | undefined;
5324
5324
  messages?: {
5325
5325
  text: string;
5326
- type: "success" | "error" | "info" | "warning";
5326
+ type: "error" | "success" | "info" | "warning";
5327
5327
  id?: number | undefined;
5328
5328
  }[] | undefined;
5329
5329
  required?: boolean | undefined;
@@ -5344,7 +5344,7 @@ export declare function init(config: AuthHeroConfig): {
5344
5344
  hint?: string | undefined;
5345
5345
  messages?: {
5346
5346
  text: string;
5347
- type: "success" | "error" | "info" | "warning";
5347
+ type: "error" | "success" | "info" | "warning";
5348
5348
  id?: number | undefined;
5349
5349
  }[] | undefined;
5350
5350
  required?: boolean | undefined;
@@ -5369,7 +5369,7 @@ export declare function init(config: AuthHeroConfig): {
5369
5369
  hint?: string | undefined;
5370
5370
  messages?: {
5371
5371
  text: string;
5372
- type: "success" | "error" | "info" | "warning";
5372
+ type: "error" | "success" | "info" | "warning";
5373
5373
  id?: number | undefined;
5374
5374
  }[] | undefined;
5375
5375
  required?: boolean | undefined;
@@ -5388,7 +5388,7 @@ export declare function init(config: AuthHeroConfig): {
5388
5388
  hint?: string | undefined;
5389
5389
  messages?: {
5390
5390
  text: string;
5391
- type: "success" | "error" | "info" | "warning";
5391
+ type: "error" | "success" | "info" | "warning";
5392
5392
  id?: number | undefined;
5393
5393
  }[] | undefined;
5394
5394
  required?: boolean | undefined;
@@ -5408,7 +5408,7 @@ export declare function init(config: AuthHeroConfig): {
5408
5408
  hint?: string | undefined;
5409
5409
  messages?: {
5410
5410
  text: string;
5411
- type: "success" | "error" | "info" | "warning";
5411
+ type: "error" | "success" | "info" | "warning";
5412
5412
  id?: number | undefined;
5413
5413
  }[] | undefined;
5414
5414
  required?: boolean | undefined;
@@ -5427,7 +5427,7 @@ export declare function init(config: AuthHeroConfig): {
5427
5427
  hint?: string | undefined;
5428
5428
  messages?: {
5429
5429
  text: string;
5430
- type: "success" | "error" | "info" | "warning";
5430
+ type: "error" | "success" | "info" | "warning";
5431
5431
  id?: number | undefined;
5432
5432
  }[] | undefined;
5433
5433
  required?: boolean | undefined;
@@ -5449,7 +5449,7 @@ export declare function init(config: AuthHeroConfig): {
5449
5449
  hint?: string | undefined;
5450
5450
  messages?: {
5451
5451
  text: string;
5452
- type: "success" | "error" | "info" | "warning";
5452
+ type: "error" | "success" | "info" | "warning";
5453
5453
  id?: number | undefined;
5454
5454
  }[] | undefined;
5455
5455
  required?: boolean | undefined;
@@ -5471,7 +5471,7 @@ export declare function init(config: AuthHeroConfig): {
5471
5471
  hint?: string | undefined;
5472
5472
  messages?: {
5473
5473
  text: string;
5474
- type: "success" | "error" | "info" | "warning";
5474
+ type: "error" | "success" | "info" | "warning";
5475
5475
  id?: number | undefined;
5476
5476
  }[] | undefined;
5477
5477
  required?: boolean | undefined;
@@ -5490,7 +5490,7 @@ export declare function init(config: AuthHeroConfig): {
5490
5490
  hint?: string | undefined;
5491
5491
  messages?: {
5492
5492
  text: string;
5493
- type: "success" | "error" | "info" | "warning";
5493
+ type: "error" | "success" | "info" | "warning";
5494
5494
  id?: number | undefined;
5495
5495
  }[] | undefined;
5496
5496
  required?: boolean | undefined;
@@ -5515,7 +5515,7 @@ export declare function init(config: AuthHeroConfig): {
5515
5515
  hint?: string | undefined;
5516
5516
  messages?: {
5517
5517
  text: string;
5518
- type: "success" | "error" | "info" | "warning";
5518
+ type: "error" | "success" | "info" | "warning";
5519
5519
  id?: number | undefined;
5520
5520
  }[] | undefined;
5521
5521
  required?: boolean | undefined;
@@ -5536,7 +5536,7 @@ export declare function init(config: AuthHeroConfig): {
5536
5536
  hint?: string | undefined;
5537
5537
  messages?: {
5538
5538
  text: string;
5539
- type: "success" | "error" | "info" | "warning";
5539
+ type: "error" | "success" | "info" | "warning";
5540
5540
  id?: number | undefined;
5541
5541
  }[] | undefined;
5542
5542
  required?: boolean | undefined;
@@ -5557,7 +5557,7 @@ export declare function init(config: AuthHeroConfig): {
5557
5557
  hint?: string | undefined;
5558
5558
  messages?: {
5559
5559
  text: string;
5560
- type: "success" | "error" | "info" | "warning";
5560
+ type: "error" | "success" | "info" | "warning";
5561
5561
  id?: number | undefined;
5562
5562
  }[] | undefined;
5563
5563
  required?: boolean | undefined;
@@ -5790,7 +5790,7 @@ export declare function init(config: AuthHeroConfig): {
5790
5790
  hint?: string | undefined;
5791
5791
  messages?: {
5792
5792
  text: string;
5793
- type: "success" | "error" | "info" | "warning";
5793
+ type: "error" | "success" | "info" | "warning";
5794
5794
  id?: number | undefined;
5795
5795
  }[] | undefined;
5796
5796
  required?: boolean | undefined;
@@ -5808,7 +5808,7 @@ export declare function init(config: AuthHeroConfig): {
5808
5808
  hint?: string | undefined;
5809
5809
  messages?: {
5810
5810
  text: string;
5811
- type: "success" | "error" | "info" | "warning";
5811
+ type: "error" | "success" | "info" | "warning";
5812
5812
  id?: number | undefined;
5813
5813
  }[] | undefined;
5814
5814
  required?: boolean | undefined;
@@ -5832,7 +5832,7 @@ export declare function init(config: AuthHeroConfig): {
5832
5832
  hint?: string | undefined;
5833
5833
  messages?: {
5834
5834
  text: string;
5835
- type: "success" | "error" | "info" | "warning";
5835
+ type: "error" | "success" | "info" | "warning";
5836
5836
  id?: number | undefined;
5837
5837
  }[] | undefined;
5838
5838
  required?: boolean | undefined;
@@ -5856,7 +5856,7 @@ export declare function init(config: AuthHeroConfig): {
5856
5856
  hint?: string | undefined;
5857
5857
  messages?: {
5858
5858
  text: string;
5859
- type: "success" | "error" | "info" | "warning";
5859
+ type: "error" | "success" | "info" | "warning";
5860
5860
  id?: number | undefined;
5861
5861
  }[] | undefined;
5862
5862
  required?: boolean | undefined;
@@ -5880,7 +5880,7 @@ export declare function init(config: AuthHeroConfig): {
5880
5880
  hint?: string | undefined;
5881
5881
  messages?: {
5882
5882
  text: string;
5883
- type: "success" | "error" | "info" | "warning";
5883
+ type: "error" | "success" | "info" | "warning";
5884
5884
  id?: number | undefined;
5885
5885
  }[] | undefined;
5886
5886
  required?: boolean | undefined;
@@ -5905,7 +5905,7 @@ export declare function init(config: AuthHeroConfig): {
5905
5905
  hint?: string | undefined;
5906
5906
  messages?: {
5907
5907
  text: string;
5908
- type: "success" | "error" | "info" | "warning";
5908
+ type: "error" | "success" | "info" | "warning";
5909
5909
  id?: number | undefined;
5910
5910
  }[] | undefined;
5911
5911
  required?: boolean | undefined;
@@ -5920,7 +5920,7 @@ export declare function init(config: AuthHeroConfig): {
5920
5920
  hint?: string | undefined;
5921
5921
  messages?: {
5922
5922
  text: string;
5923
- type: "success" | "error" | "info" | "warning";
5923
+ type: "error" | "success" | "info" | "warning";
5924
5924
  id?: number | undefined;
5925
5925
  }[] | undefined;
5926
5926
  required?: boolean | undefined;
@@ -5941,7 +5941,7 @@ export declare function init(config: AuthHeroConfig): {
5941
5941
  hint?: string | undefined;
5942
5942
  messages?: {
5943
5943
  text: string;
5944
- type: "success" | "error" | "info" | "warning";
5944
+ type: "error" | "success" | "info" | "warning";
5945
5945
  id?: number | undefined;
5946
5946
  }[] | undefined;
5947
5947
  required?: boolean | undefined;
@@ -5966,7 +5966,7 @@ export declare function init(config: AuthHeroConfig): {
5966
5966
  hint?: string | undefined;
5967
5967
  messages?: {
5968
5968
  text: string;
5969
- type: "success" | "error" | "info" | "warning";
5969
+ type: "error" | "success" | "info" | "warning";
5970
5970
  id?: number | undefined;
5971
5971
  }[] | undefined;
5972
5972
  required?: boolean | undefined;
@@ -5985,7 +5985,7 @@ export declare function init(config: AuthHeroConfig): {
5985
5985
  hint?: string | undefined;
5986
5986
  messages?: {
5987
5987
  text: string;
5988
- type: "success" | "error" | "info" | "warning";
5988
+ type: "error" | "success" | "info" | "warning";
5989
5989
  id?: number | undefined;
5990
5990
  }[] | undefined;
5991
5991
  required?: boolean | undefined;
@@ -6005,7 +6005,7 @@ export declare function init(config: AuthHeroConfig): {
6005
6005
  hint?: string | undefined;
6006
6006
  messages?: {
6007
6007
  text: string;
6008
- type: "success" | "error" | "info" | "warning";
6008
+ type: "error" | "success" | "info" | "warning";
6009
6009
  id?: number | undefined;
6010
6010
  }[] | undefined;
6011
6011
  required?: boolean | undefined;
@@ -6024,7 +6024,7 @@ export declare function init(config: AuthHeroConfig): {
6024
6024
  hint?: string | undefined;
6025
6025
  messages?: {
6026
6026
  text: string;
6027
- type: "success" | "error" | "info" | "warning";
6027
+ type: "error" | "success" | "info" | "warning";
6028
6028
  id?: number | undefined;
6029
6029
  }[] | undefined;
6030
6030
  required?: boolean | undefined;
@@ -6046,7 +6046,7 @@ export declare function init(config: AuthHeroConfig): {
6046
6046
  hint?: string | undefined;
6047
6047
  messages?: {
6048
6048
  text: string;
6049
- type: "success" | "error" | "info" | "warning";
6049
+ type: "error" | "success" | "info" | "warning";
6050
6050
  id?: number | undefined;
6051
6051
  }[] | undefined;
6052
6052
  required?: boolean | undefined;
@@ -6068,7 +6068,7 @@ export declare function init(config: AuthHeroConfig): {
6068
6068
  hint?: string | undefined;
6069
6069
  messages?: {
6070
6070
  text: string;
6071
- type: "success" | "error" | "info" | "warning";
6071
+ type: "error" | "success" | "info" | "warning";
6072
6072
  id?: number | undefined;
6073
6073
  }[] | undefined;
6074
6074
  required?: boolean | undefined;
@@ -6087,7 +6087,7 @@ export declare function init(config: AuthHeroConfig): {
6087
6087
  hint?: string | undefined;
6088
6088
  messages?: {
6089
6089
  text: string;
6090
- type: "success" | "error" | "info" | "warning";
6090
+ type: "error" | "success" | "info" | "warning";
6091
6091
  id?: number | undefined;
6092
6092
  }[] | undefined;
6093
6093
  required?: boolean | undefined;
@@ -6112,7 +6112,7 @@ export declare function init(config: AuthHeroConfig): {
6112
6112
  hint?: string | undefined;
6113
6113
  messages?: {
6114
6114
  text: string;
6115
- type: "success" | "error" | "info" | "warning";
6115
+ type: "error" | "success" | "info" | "warning";
6116
6116
  id?: number | undefined;
6117
6117
  }[] | undefined;
6118
6118
  required?: boolean | undefined;
@@ -6133,7 +6133,7 @@ export declare function init(config: AuthHeroConfig): {
6133
6133
  hint?: string | undefined;
6134
6134
  messages?: {
6135
6135
  text: string;
6136
- type: "success" | "error" | "info" | "warning";
6136
+ type: "error" | "success" | "info" | "warning";
6137
6137
  id?: number | undefined;
6138
6138
  }[] | undefined;
6139
6139
  required?: boolean | undefined;
@@ -6154,7 +6154,7 @@ export declare function init(config: AuthHeroConfig): {
6154
6154
  hint?: string | undefined;
6155
6155
  messages?: {
6156
6156
  text: string;
6157
- type: "success" | "error" | "info" | "warning";
6157
+ type: "error" | "success" | "info" | "warning";
6158
6158
  id?: number | undefined;
6159
6159
  }[] | undefined;
6160
6160
  required?: boolean | undefined;
@@ -6385,7 +6385,7 @@ export declare function init(config: AuthHeroConfig): {
6385
6385
  hint?: string | undefined;
6386
6386
  messages?: {
6387
6387
  text: string;
6388
- type: "success" | "error" | "info" | "warning";
6388
+ type: "error" | "success" | "info" | "warning";
6389
6389
  id?: number | undefined;
6390
6390
  }[] | undefined;
6391
6391
  required?: boolean | undefined;
@@ -6403,7 +6403,7 @@ export declare function init(config: AuthHeroConfig): {
6403
6403
  hint?: string | undefined;
6404
6404
  messages?: {
6405
6405
  text: string;
6406
- type: "success" | "error" | "info" | "warning";
6406
+ type: "error" | "success" | "info" | "warning";
6407
6407
  id?: number | undefined;
6408
6408
  }[] | undefined;
6409
6409
  required?: boolean | undefined;
@@ -6427,7 +6427,7 @@ export declare function init(config: AuthHeroConfig): {
6427
6427
  hint?: string | undefined;
6428
6428
  messages?: {
6429
6429
  text: string;
6430
- type: "success" | "error" | "info" | "warning";
6430
+ type: "error" | "success" | "info" | "warning";
6431
6431
  id?: number | undefined;
6432
6432
  }[] | undefined;
6433
6433
  required?: boolean | undefined;
@@ -6451,7 +6451,7 @@ export declare function init(config: AuthHeroConfig): {
6451
6451
  hint?: string | undefined;
6452
6452
  messages?: {
6453
6453
  text: string;
6454
- type: "success" | "error" | "info" | "warning";
6454
+ type: "error" | "success" | "info" | "warning";
6455
6455
  id?: number | undefined;
6456
6456
  }[] | undefined;
6457
6457
  required?: boolean | undefined;
@@ -6475,7 +6475,7 @@ export declare function init(config: AuthHeroConfig): {
6475
6475
  hint?: string | undefined;
6476
6476
  messages?: {
6477
6477
  text: string;
6478
- type: "success" | "error" | "info" | "warning";
6478
+ type: "error" | "success" | "info" | "warning";
6479
6479
  id?: number | undefined;
6480
6480
  }[] | undefined;
6481
6481
  required?: boolean | undefined;
@@ -6504,7 +6504,7 @@ export declare function init(config: AuthHeroConfig): {
6504
6504
  hint?: string | undefined;
6505
6505
  messages?: {
6506
6506
  text: string;
6507
- type: "success" | "error" | "info" | "warning";
6507
+ type: "error" | "success" | "info" | "warning";
6508
6508
  id?: number | undefined;
6509
6509
  }[] | undefined;
6510
6510
  required?: boolean | undefined;
@@ -6519,7 +6519,7 @@ export declare function init(config: AuthHeroConfig): {
6519
6519
  hint?: string | undefined;
6520
6520
  messages?: {
6521
6521
  text: string;
6522
- type: "success" | "error" | "info" | "warning";
6522
+ type: "error" | "success" | "info" | "warning";
6523
6523
  id?: number | undefined;
6524
6524
  }[] | undefined;
6525
6525
  required?: boolean | undefined;
@@ -6540,7 +6540,7 @@ export declare function init(config: AuthHeroConfig): {
6540
6540
  hint?: string | undefined;
6541
6541
  messages?: {
6542
6542
  text: string;
6543
- type: "success" | "error" | "info" | "warning";
6543
+ type: "error" | "success" | "info" | "warning";
6544
6544
  id?: number | undefined;
6545
6545
  }[] | undefined;
6546
6546
  required?: boolean | undefined;
@@ -6565,7 +6565,7 @@ export declare function init(config: AuthHeroConfig): {
6565
6565
  hint?: string | undefined;
6566
6566
  messages?: {
6567
6567
  text: string;
6568
- type: "success" | "error" | "info" | "warning";
6568
+ type: "error" | "success" | "info" | "warning";
6569
6569
  id?: number | undefined;
6570
6570
  }[] | undefined;
6571
6571
  required?: boolean | undefined;
@@ -6584,7 +6584,7 @@ export declare function init(config: AuthHeroConfig): {
6584
6584
  hint?: string | undefined;
6585
6585
  messages?: {
6586
6586
  text: string;
6587
- type: "success" | "error" | "info" | "warning";
6587
+ type: "error" | "success" | "info" | "warning";
6588
6588
  id?: number | undefined;
6589
6589
  }[] | undefined;
6590
6590
  required?: boolean | undefined;
@@ -6604,7 +6604,7 @@ export declare function init(config: AuthHeroConfig): {
6604
6604
  hint?: string | undefined;
6605
6605
  messages?: {
6606
6606
  text: string;
6607
- type: "success" | "error" | "info" | "warning";
6607
+ type: "error" | "success" | "info" | "warning";
6608
6608
  id?: number | undefined;
6609
6609
  }[] | undefined;
6610
6610
  required?: boolean | undefined;
@@ -6623,7 +6623,7 @@ export declare function init(config: AuthHeroConfig): {
6623
6623
  hint?: string | undefined;
6624
6624
  messages?: {
6625
6625
  text: string;
6626
- type: "success" | "error" | "info" | "warning";
6626
+ type: "error" | "success" | "info" | "warning";
6627
6627
  id?: number | undefined;
6628
6628
  }[] | undefined;
6629
6629
  required?: boolean | undefined;
@@ -6645,7 +6645,7 @@ export declare function init(config: AuthHeroConfig): {
6645
6645
  hint?: string | undefined;
6646
6646
  messages?: {
6647
6647
  text: string;
6648
- type: "success" | "error" | "info" | "warning";
6648
+ type: "error" | "success" | "info" | "warning";
6649
6649
  id?: number | undefined;
6650
6650
  }[] | undefined;
6651
6651
  required?: boolean | undefined;
@@ -6667,7 +6667,7 @@ export declare function init(config: AuthHeroConfig): {
6667
6667
  hint?: string | undefined;
6668
6668
  messages?: {
6669
6669
  text: string;
6670
- type: "success" | "error" | "info" | "warning";
6670
+ type: "error" | "success" | "info" | "warning";
6671
6671
  id?: number | undefined;
6672
6672
  }[] | undefined;
6673
6673
  required?: boolean | undefined;
@@ -6686,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
6686
6686
  hint?: string | undefined;
6687
6687
  messages?: {
6688
6688
  text: string;
6689
- type: "success" | "error" | "info" | "warning";
6689
+ type: "error" | "success" | "info" | "warning";
6690
6690
  id?: number | undefined;
6691
6691
  }[] | undefined;
6692
6692
  required?: boolean | undefined;
@@ -6711,7 +6711,7 @@ export declare function init(config: AuthHeroConfig): {
6711
6711
  hint?: string | undefined;
6712
6712
  messages?: {
6713
6713
  text: string;
6714
- type: "success" | "error" | "info" | "warning";
6714
+ type: "error" | "success" | "info" | "warning";
6715
6715
  id?: number | undefined;
6716
6716
  }[] | undefined;
6717
6717
  required?: boolean | undefined;
@@ -6732,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
6732
6732
  hint?: string | undefined;
6733
6733
  messages?: {
6734
6734
  text: string;
6735
- type: "success" | "error" | "info" | "warning";
6735
+ type: "error" | "success" | "info" | "warning";
6736
6736
  id?: number | undefined;
6737
6737
  }[] | undefined;
6738
6738
  required?: boolean | undefined;
@@ -6753,7 +6753,7 @@ export declare function init(config: AuthHeroConfig): {
6753
6753
  hint?: string | undefined;
6754
6754
  messages?: {
6755
6755
  text: string;
6756
- type: "success" | "error" | "info" | "warning";
6756
+ type: "error" | "success" | "info" | "warning";
6757
6757
  id?: number | undefined;
6758
6758
  }[] | undefined;
6759
6759
  required?: boolean | undefined;
@@ -6983,7 +6983,7 @@ export declare function init(config: AuthHeroConfig): {
6983
6983
  };
6984
6984
  };
6985
6985
  output: {
6986
- prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6986
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6987
6987
  language: string;
6988
6988
  }[];
6989
6989
  outputFormat: "json";
@@ -7021,7 +7021,7 @@ export declare function init(config: AuthHeroConfig): {
7021
7021
  $get: {
7022
7022
  input: {
7023
7023
  param: {
7024
- prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7024
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7025
7025
  language: string;
7026
7026
  };
7027
7027
  } & {
@@ -7043,7 +7043,7 @@ export declare function init(config: AuthHeroConfig): {
7043
7043
  $put: {
7044
7044
  input: {
7045
7045
  param: {
7046
- prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7046
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7047
7047
  language: string;
7048
7048
  };
7049
7049
  } & {
@@ -7067,7 +7067,7 @@ export declare function init(config: AuthHeroConfig): {
7067
7067
  $delete: {
7068
7068
  input: {
7069
7069
  param: {
7070
- prompt: "status" | "signup" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7070
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7071
7071
  language: string;
7072
7072
  };
7073
7073
  } & {
@@ -7930,7 +7930,7 @@ export declare function init(config: AuthHeroConfig): {
7930
7930
  };
7931
7931
  } | {
7932
7932
  mode: "inline";
7933
- status: "success" | "error";
7933
+ status: "error" | "success";
7934
7934
  connection_id: string;
7935
7935
  connection_name: string;
7936
7936
  strategy: string;
@@ -8570,7 +8570,7 @@ export declare function init(config: AuthHeroConfig): {
8570
8570
  log_type: string;
8571
8571
  category: "user_action" | "admin_action" | "system" | "api";
8572
8572
  actor: {
8573
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8573
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8574
8574
  id?: string | undefined;
8575
8575
  email?: string | undefined;
8576
8576
  org_id?: string | undefined;
@@ -8880,7 +8880,7 @@ export declare function init(config: AuthHeroConfig): {
8880
8880
  created_at: string;
8881
8881
  updated_at: string;
8882
8882
  name: string;
8883
- provider: "auth0" | "cognito" | "okta" | "oidc";
8883
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8884
8884
  connection: string;
8885
8885
  enabled: boolean;
8886
8886
  credentials: {
@@ -8912,7 +8912,7 @@ export declare function init(config: AuthHeroConfig): {
8912
8912
  created_at: string;
8913
8913
  updated_at: string;
8914
8914
  name: string;
8915
- provider: "auth0" | "cognito" | "okta" | "oidc";
8915
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8916
8916
  connection: string;
8917
8917
  enabled: boolean;
8918
8918
  credentials: {
@@ -8938,7 +8938,7 @@ export declare function init(config: AuthHeroConfig): {
8938
8938
  } & {
8939
8939
  json: {
8940
8940
  name: string;
8941
- provider: "auth0" | "cognito" | "okta" | "oidc";
8941
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8942
8942
  connection: string;
8943
8943
  credentials: {
8944
8944
  domain: string;
@@ -8955,7 +8955,7 @@ export declare function init(config: AuthHeroConfig): {
8955
8955
  created_at: string;
8956
8956
  updated_at: string;
8957
8957
  name: string;
8958
- provider: "auth0" | "cognito" | "okta" | "oidc";
8958
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8959
8959
  connection: string;
8960
8960
  enabled: boolean;
8961
8961
  credentials: {
@@ -8986,7 +8986,7 @@ export declare function init(config: AuthHeroConfig): {
8986
8986
  json: {
8987
8987
  id?: string | undefined;
8988
8988
  name?: string | undefined;
8989
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8989
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8990
8990
  connection?: string | undefined;
8991
8991
  enabled?: boolean | undefined;
8992
8992
  credentials?: {
@@ -9002,7 +9002,7 @@ export declare function init(config: AuthHeroConfig): {
9002
9002
  created_at: string;
9003
9003
  updated_at: string;
9004
9004
  name: string;
9005
- provider: "auth0" | "cognito" | "okta" | "oidc";
9005
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9006
9006
  connection: string;
9007
9007
  enabled: boolean;
9008
9008
  credentials: {
@@ -9220,7 +9220,7 @@ export declare function init(config: AuthHeroConfig): {
9220
9220
  };
9221
9221
  };
9222
9222
  output: {
9223
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9223
+ type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9224
9224
  date: string;
9225
9225
  isMobile: boolean;
9226
9226
  log_id: string;
@@ -9259,7 +9259,7 @@ export declare function init(config: AuthHeroConfig): {
9259
9259
  limit: number;
9260
9260
  length: number;
9261
9261
  logs: {
9262
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9262
+ type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9263
9263
  date: string;
9264
9264
  isMobile: boolean;
9265
9265
  log_id: string;
@@ -9298,7 +9298,7 @@ export declare function init(config: AuthHeroConfig): {
9298
9298
  next?: string | undefined;
9299
9299
  } | {
9300
9300
  logs: {
9301
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9301
+ type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9302
9302
  date: string;
9303
9303
  isMobile: boolean;
9304
9304
  log_id: string;
@@ -9352,7 +9352,7 @@ export declare function init(config: AuthHeroConfig): {
9352
9352
  };
9353
9353
  };
9354
9354
  output: {
9355
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9355
+ type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9356
9356
  date: string;
9357
9357
  isMobile: boolean;
9358
9358
  log_id: string;
@@ -11807,7 +11807,7 @@ export declare function init(config: AuthHeroConfig): {
11807
11807
  };
11808
11808
  };
11809
11809
  output: {
11810
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11810
+ type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11811
11811
  date: string;
11812
11812
  isMobile: boolean;
11813
11813
  log_id: string;
@@ -11846,7 +11846,7 @@ export declare function init(config: AuthHeroConfig): {
11846
11846
  limit: number;
11847
11847
  length: number;
11848
11848
  logs: {
11849
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "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" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11849
+ type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11850
11850
  date: string;
11851
11851
  isMobile: boolean;
11852
11852
  log_id: string;
@@ -13359,7 +13359,7 @@ export declare function init(config: AuthHeroConfig): {
13359
13359
  } & {
13360
13360
  json: {
13361
13361
  body?: string | undefined;
13362
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
13362
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
13363
13363
  branding?: {
13364
13364
  colors?: {
13365
13365
  primary: string;
@@ -15065,20 +15065,20 @@ export declare function init(config: AuthHeroConfig): {
15065
15065
  email: string;
15066
15066
  send: "code" | "link";
15067
15067
  authParams: {
15068
- username?: string | undefined;
15069
15068
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15070
15069
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15071
15070
  scope?: string | undefined;
15071
+ username?: string | undefined;
15072
15072
  audience?: string | undefined;
15073
- state?: string | undefined;
15074
- prompt?: string | undefined;
15075
15073
  organization?: string | undefined;
15076
- ui_locales?: string | undefined;
15077
- redirect_uri?: string | undefined;
15078
- act_as?: string | undefined;
15074
+ state?: string | undefined;
15079
15075
  nonce?: string | undefined;
15076
+ act_as?: string | undefined;
15077
+ redirect_uri?: string | undefined;
15078
+ prompt?: string | undefined;
15080
15079
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15081
15080
  code_challenge?: string | undefined;
15081
+ ui_locales?: string | undefined;
15082
15082
  max_age?: number | undefined;
15083
15083
  acr_values?: string | undefined;
15084
15084
  claims?: {
@@ -15101,20 +15101,20 @@ export declare function init(config: AuthHeroConfig): {
15101
15101
  phone_number: string;
15102
15102
  send: "code" | "link";
15103
15103
  authParams: {
15104
- username?: string | undefined;
15105
15104
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15106
15105
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15107
15106
  scope?: string | undefined;
15107
+ username?: string | undefined;
15108
15108
  audience?: string | undefined;
15109
- state?: string | undefined;
15110
- prompt?: string | undefined;
15111
15109
  organization?: string | undefined;
15112
- ui_locales?: string | undefined;
15113
- redirect_uri?: string | undefined;
15114
- act_as?: string | undefined;
15110
+ state?: string | undefined;
15115
15111
  nonce?: string | undefined;
15112
+ act_as?: string | undefined;
15113
+ redirect_uri?: string | undefined;
15114
+ prompt?: string | undefined;
15116
15115
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15117
15116
  code_challenge?: string | undefined;
15117
+ ui_locales?: string | undefined;
15118
15118
  max_age?: number | undefined;
15119
15119
  acr_values?: string | undefined;
15120
15120
  claims?: {
@@ -15281,7 +15281,7 @@ export declare function init(config: AuthHeroConfig): {
15281
15281
  error_description?: string | undefined;
15282
15282
  };
15283
15283
  outputFormat: "json";
15284
- status: 401;
15284
+ status: 400;
15285
15285
  } | {
15286
15286
  input: {
15287
15287
  form: {
@@ -15303,7 +15303,7 @@ export declare function init(config: AuthHeroConfig): {
15303
15303
  error_description?: string | undefined;
15304
15304
  };
15305
15305
  outputFormat: "json";
15306
- status: 400;
15306
+ status: 401;
15307
15307
  };
15308
15308
  };
15309
15309
  }, "/oauth/revoke"> & import("hono/types").MergeSchemaPath<{
@@ -15504,11 +15504,16 @@ export declare function init(config: AuthHeroConfig): {
15504
15504
  };
15505
15505
  };
15506
15506
  output: {
15507
- error: string;
15508
- error_description?: string | undefined;
15507
+ access_token: string;
15508
+ token_type: string;
15509
+ expires_in: number;
15510
+ id_token?: string | undefined;
15511
+ scope?: string | undefined;
15512
+ state?: string | undefined;
15513
+ refresh_token?: string | undefined;
15509
15514
  };
15510
15515
  outputFormat: "json";
15511
- status: 401;
15516
+ status: 200;
15512
15517
  } | {
15513
15518
  input: {
15514
15519
  form: {
@@ -15606,16 +15611,11 @@ export declare function init(config: AuthHeroConfig): {
15606
15611
  };
15607
15612
  };
15608
15613
  output: {
15609
- access_token: string;
15610
- token_type: string;
15611
- expires_in: number;
15612
- id_token?: string | undefined;
15613
- scope?: string | undefined;
15614
- state?: string | undefined;
15615
- refresh_token?: string | undefined;
15614
+ error: string;
15615
+ error_description?: string | undefined;
15616
15616
  };
15617
15617
  outputFormat: "json";
15618
- status: 200;
15618
+ status: 400;
15619
15619
  } | {
15620
15620
  input: {
15621
15621
  form: {
@@ -15717,7 +15717,7 @@ export declare function init(config: AuthHeroConfig): {
15717
15717
  error_description?: string | undefined;
15718
15718
  };
15719
15719
  outputFormat: "json";
15720
- status: 400;
15720
+ status: 401;
15721
15721
  } | {
15722
15722
  input: {
15723
15723
  form: {
@@ -15829,7 +15829,7 @@ export declare function init(config: AuthHeroConfig): {
15829
15829
  output: {
15830
15830
  keys: {
15831
15831
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
15832
- kty: "EC" | "RSA" | "oct";
15832
+ kty: "RSA" | "EC" | "oct";
15833
15833
  kid?: string | undefined;
15834
15834
  use?: "sig" | "enc" | undefined;
15835
15835
  n?: string | undefined;
@@ -17024,7 +17024,7 @@ export declare function init(config: AuthHeroConfig): {
17024
17024
  $get: {
17025
17025
  input: {
17026
17026
  param: {
17027
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17027
+ screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
17028
17028
  };
17029
17029
  } & {
17030
17030
  query: {
@@ -17040,7 +17040,7 @@ export declare function init(config: AuthHeroConfig): {
17040
17040
  } | {
17041
17041
  input: {
17042
17042
  param: {
17043
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17043
+ screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
17044
17044
  };
17045
17045
  } & {
17046
17046
  query: {
@@ -17056,7 +17056,7 @@ export declare function init(config: AuthHeroConfig): {
17056
17056
  } | {
17057
17057
  input: {
17058
17058
  param: {
17059
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17059
+ screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
17060
17060
  };
17061
17061
  } & {
17062
17062
  query: {
@@ -17076,7 +17076,7 @@ export declare function init(config: AuthHeroConfig): {
17076
17076
  $post: {
17077
17077
  input: {
17078
17078
  param: {
17079
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17079
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17080
17080
  };
17081
17081
  } & {
17082
17082
  query: {
@@ -17094,7 +17094,7 @@ export declare function init(config: AuthHeroConfig): {
17094
17094
  } | {
17095
17095
  input: {
17096
17096
  param: {
17097
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17097
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17098
17098
  };
17099
17099
  } & {
17100
17100
  query: {