authhero 8.4.0 → 8.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/{p-aa120307.entry.js → p-1fc7fcdb.entry.js} +1 -1
  3. package/dist/assets/u/widget/p-5f7b7943.entry.js +1 -0
  4. package/dist/authhero.cjs +105 -105
  5. package/dist/authhero.d.ts +240 -224
  6. package/dist/authhero.mjs +1509 -1472
  7. package/dist/stats.html +1 -1
  8. package/dist/tsconfig.types.tsbuildinfo +1 -1
  9. package/dist/types/authentication-flows/passwordless.d.ts +1 -1
  10. package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -1
  11. package/dist/types/emails/defaults/ChangePassword.d.ts +1 -1
  12. package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -1
  13. package/dist/types/emails/defaults/Layout.d.ts +1 -1
  14. package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -1
  15. package/dist/types/emails/defaults/PasswordReset.d.ts +1 -1
  16. package/dist/types/emails/defaults/PrimaryButton.d.ts +1 -1
  17. package/dist/types/emails/defaults/ResetEmail.d.ts +1 -1
  18. package/dist/types/emails/defaults/ResetEmailByCode.d.ts +1 -1
  19. package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -1
  20. package/dist/types/emails/defaults/UserInvitation.d.ts +1 -1
  21. package/dist/types/emails/defaults/VerifyEmail.d.ts +1 -1
  22. package/dist/types/emails/defaults/VerifyEmailByCode.d.ts +1 -1
  23. package/dist/types/emails/defaults/WelcomeEmail.d.ts +1 -1
  24. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  25. package/dist/types/hooks/post-user-login.d.ts +2 -0
  26. package/dist/types/index.d.ts +223 -221
  27. package/dist/types/routes/auth-api/account.d.ts +2 -2
  28. package/dist/types/routes/auth-api/index.d.ts +23 -23
  29. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  30. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  31. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  32. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  33. package/dist/types/routes/management-api/actions.d.ts +1 -1
  34. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  35. package/dist/types/routes/management-api/branding.d.ts +6 -6
  36. package/dist/types/routes/management-api/clients.d.ts +7 -7
  37. package/dist/types/routes/management-api/connections.d.ts +1 -1
  38. package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
  39. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  40. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  41. package/dist/types/routes/management-api/flows.d.ts +7 -7
  42. package/dist/types/routes/management-api/forms.d.ts +119 -119
  43. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  44. package/dist/types/routes/management-api/index.d.ts +192 -192
  45. package/dist/types/routes/management-api/logs.d.ts +3 -3
  46. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  47. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  48. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  49. package/dist/types/routes/management-api/themes.d.ts +3 -3
  50. package/dist/types/routes/management-api/users.d.ts +2 -2
  51. package/dist/types/routes/universal-login/common.d.ts +6 -6
  52. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  53. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  54. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  55. package/dist/types/types/IdToken.d.ts +1 -1
  56. package/dist/types/utils/jwks.d.ts +2 -2
  57. package/package.json +3 -3
  58. package/dist/assets/u/widget/p-35c8b265.entry.js +0 -1
@@ -38,6 +38,8 @@ export { HttpSamlSigner } from "@authhero/saml/core";
38
38
  export { fetchAll } from "./utils/fetchAll";
39
39
  export type { FetchAllOptions } from "./utils/fetchAll";
40
40
  export { deepMergePatch } from "./utils/deep-merge";
41
+ export { listControlPlaneKeys, resolveSigningKeys, resolveSigningKeyMode, } from "./helpers/signing-keys";
42
+ export type { ResolveSigningKeysOptions } from "./helpers/signing-keys";
41
43
  export { USERNAME_PASSWORD_PROVIDER } from "./constants";
42
44
  export * as preDefinedHooks from "./hooks/pre-defined";
43
45
  export type { EnsureUsernameOptions } from "./hooks/pre-defined";
@@ -84,7 +86,7 @@ export declare function init(config: AuthHeroConfig): {
84
86
  };
85
87
  } & {
86
88
  json: {
87
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
89
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
88
90
  phone_number?: string | undefined;
89
91
  totp_secret?: string | undefined;
90
92
  credential_id?: string | undefined;
@@ -224,7 +226,7 @@ export declare function init(config: AuthHeroConfig): {
224
226
  };
225
227
  };
226
228
  output: {
227
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
229
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
228
230
  enabled: boolean;
229
231
  trial_expired?: boolean | undefined;
230
232
  }[];
@@ -379,7 +381,7 @@ export declare function init(config: AuthHeroConfig): {
379
381
  $get: {
380
382
  input: {
381
383
  param: {
382
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
384
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
383
385
  };
384
386
  } & {
385
387
  header: {
@@ -387,7 +389,7 @@ export declare function init(config: AuthHeroConfig): {
387
389
  };
388
390
  };
389
391
  output: {
390
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
392
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
391
393
  enabled: boolean;
392
394
  trial_expired?: boolean | undefined;
393
395
  };
@@ -400,7 +402,7 @@ export declare function init(config: AuthHeroConfig): {
400
402
  $put: {
401
403
  input: {
402
404
  param: {
403
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
405
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
404
406
  };
405
407
  } & {
406
408
  header: {
@@ -412,7 +414,7 @@ export declare function init(config: AuthHeroConfig): {
412
414
  };
413
415
  };
414
416
  output: {
415
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
417
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
416
418
  enabled: boolean;
417
419
  trial_expired?: boolean | undefined;
418
420
  };
@@ -1158,11 +1160,11 @@ export declare function init(config: AuthHeroConfig): {
1158
1160
  email?: string | undefined;
1159
1161
  };
1160
1162
  id?: string | undefined;
1163
+ connection_id?: string | undefined;
1161
1164
  app_metadata?: Record<string, any> | undefined;
1162
1165
  user_metadata?: Record<string, any> | undefined;
1163
- connection_id?: string | undefined;
1164
- roles?: string[] | undefined;
1165
1166
  ttl_sec?: number | undefined;
1167
+ roles?: string[] | undefined;
1166
1168
  send_invitation_email?: boolean | undefined;
1167
1169
  };
1168
1170
  };
@@ -2012,7 +2014,7 @@ export declare function init(config: AuthHeroConfig): {
2012
2014
  type: "REDIRECT";
2013
2015
  action: "REDIRECT_USER";
2014
2016
  params: {
2015
- target: "custom" | "change-email" | "account";
2017
+ target: "custom" | "account" | "change-email";
2016
2018
  custom_url?: string | undefined;
2017
2019
  };
2018
2020
  alias?: string | undefined;
@@ -2065,7 +2067,7 @@ export declare function init(config: AuthHeroConfig): {
2065
2067
  type: "REDIRECT";
2066
2068
  action: "REDIRECT_USER";
2067
2069
  params: {
2068
- target: "custom" | "change-email" | "account";
2070
+ target: "custom" | "account" | "change-email";
2069
2071
  custom_url?: string | undefined;
2070
2072
  };
2071
2073
  alias?: string | undefined;
@@ -2133,7 +2135,7 @@ export declare function init(config: AuthHeroConfig): {
2133
2135
  type: "REDIRECT";
2134
2136
  action: "REDIRECT_USER";
2135
2137
  params: {
2136
- target: "custom" | "change-email" | "account";
2138
+ target: "custom" | "account" | "change-email";
2137
2139
  custom_url?: string | undefined;
2138
2140
  };
2139
2141
  alias?: string | undefined;
@@ -2214,7 +2216,7 @@ export declare function init(config: AuthHeroConfig): {
2214
2216
  type: "REDIRECT";
2215
2217
  action: "REDIRECT_USER";
2216
2218
  params: {
2217
- target: "custom" | "change-email" | "account";
2219
+ target: "custom" | "account" | "change-email";
2218
2220
  custom_url?: string | undefined;
2219
2221
  };
2220
2222
  alias?: string | undefined;
@@ -2262,7 +2264,7 @@ export declare function init(config: AuthHeroConfig): {
2262
2264
  type: "REDIRECT";
2263
2265
  action: "REDIRECT_USER";
2264
2266
  params: {
2265
- target: "custom" | "change-email" | "account";
2267
+ target: "custom" | "account" | "change-email";
2266
2268
  custom_url?: string | undefined;
2267
2269
  };
2268
2270
  alias?: string | undefined;
@@ -2322,7 +2324,7 @@ export declare function init(config: AuthHeroConfig): {
2322
2324
  type: "REDIRECT";
2323
2325
  action: "REDIRECT_USER";
2324
2326
  params: {
2325
- target: "custom" | "change-email" | "account";
2327
+ target: "custom" | "account" | "change-email";
2326
2328
  custom_url?: string | undefined;
2327
2329
  };
2328
2330
  alias?: string | undefined;
@@ -2370,7 +2372,7 @@ export declare function init(config: AuthHeroConfig): {
2370
2372
  type: "REDIRECT";
2371
2373
  action: "REDIRECT_USER";
2372
2374
  params: {
2373
- target: "custom" | "change-email" | "account";
2375
+ target: "custom" | "account" | "change-email";
2374
2376
  custom_url?: string | undefined;
2375
2377
  };
2376
2378
  alias?: string | undefined;
@@ -2588,7 +2590,7 @@ export declare function init(config: AuthHeroConfig): {
2588
2590
  hint?: string | undefined;
2589
2591
  messages?: {
2590
2592
  text: string;
2591
- type: "error" | "success" | "info" | "warning";
2593
+ type: "success" | "error" | "info" | "warning";
2592
2594
  id?: number | undefined;
2593
2595
  }[] | undefined;
2594
2596
  required?: boolean | undefined;
@@ -2606,7 +2608,7 @@ export declare function init(config: AuthHeroConfig): {
2606
2608
  hint?: string | undefined;
2607
2609
  messages?: {
2608
2610
  text: string;
2609
- type: "error" | "success" | "info" | "warning";
2611
+ type: "success" | "error" | "info" | "warning";
2610
2612
  id?: number | undefined;
2611
2613
  }[] | undefined;
2612
2614
  required?: boolean | undefined;
@@ -2630,7 +2632,7 @@ export declare function init(config: AuthHeroConfig): {
2630
2632
  hint?: string | undefined;
2631
2633
  messages?: {
2632
2634
  text: string;
2633
- type: "error" | "success" | "info" | "warning";
2635
+ type: "success" | "error" | "info" | "warning";
2634
2636
  id?: number | undefined;
2635
2637
  }[] | undefined;
2636
2638
  required?: boolean | undefined;
@@ -2654,7 +2656,7 @@ export declare function init(config: AuthHeroConfig): {
2654
2656
  hint?: string | undefined;
2655
2657
  messages?: {
2656
2658
  text: string;
2657
- type: "error" | "success" | "info" | "warning";
2659
+ type: "success" | "error" | "info" | "warning";
2658
2660
  id?: number | undefined;
2659
2661
  }[] | undefined;
2660
2662
  required?: boolean | undefined;
@@ -2683,7 +2685,7 @@ export declare function init(config: AuthHeroConfig): {
2683
2685
  hint?: string | undefined;
2684
2686
  messages?: {
2685
2687
  text: string;
2686
- type: "error" | "success" | "info" | "warning";
2688
+ type: "success" | "error" | "info" | "warning";
2687
2689
  id?: number | undefined;
2688
2690
  }[] | undefined;
2689
2691
  required?: boolean | undefined;
@@ -2698,7 +2700,7 @@ export declare function init(config: AuthHeroConfig): {
2698
2700
  hint?: string | undefined;
2699
2701
  messages?: {
2700
2702
  text: string;
2701
- type: "error" | "success" | "info" | "warning";
2703
+ type: "success" | "error" | "info" | "warning";
2702
2704
  id?: number | undefined;
2703
2705
  }[] | undefined;
2704
2706
  required?: boolean | undefined;
@@ -2719,7 +2721,7 @@ export declare function init(config: AuthHeroConfig): {
2719
2721
  hint?: string | undefined;
2720
2722
  messages?: {
2721
2723
  text: string;
2722
- type: "error" | "success" | "info" | "warning";
2724
+ type: "success" | "error" | "info" | "warning";
2723
2725
  id?: number | undefined;
2724
2726
  }[] | undefined;
2725
2727
  required?: boolean | undefined;
@@ -2744,7 +2746,7 @@ export declare function init(config: AuthHeroConfig): {
2744
2746
  hint?: string | undefined;
2745
2747
  messages?: {
2746
2748
  text: string;
2747
- type: "error" | "success" | "info" | "warning";
2749
+ type: "success" | "error" | "info" | "warning";
2748
2750
  id?: number | undefined;
2749
2751
  }[] | undefined;
2750
2752
  required?: boolean | undefined;
@@ -2763,7 +2765,7 @@ export declare function init(config: AuthHeroConfig): {
2763
2765
  hint?: string | undefined;
2764
2766
  messages?: {
2765
2767
  text: string;
2766
- type: "error" | "success" | "info" | "warning";
2768
+ type: "success" | "error" | "info" | "warning";
2767
2769
  id?: number | undefined;
2768
2770
  }[] | undefined;
2769
2771
  required?: boolean | undefined;
@@ -2783,7 +2785,7 @@ export declare function init(config: AuthHeroConfig): {
2783
2785
  hint?: string | undefined;
2784
2786
  messages?: {
2785
2787
  text: string;
2786
- type: "error" | "success" | "info" | "warning";
2788
+ type: "success" | "error" | "info" | "warning";
2787
2789
  id?: number | undefined;
2788
2790
  }[] | undefined;
2789
2791
  required?: boolean | undefined;
@@ -2802,7 +2804,7 @@ export declare function init(config: AuthHeroConfig): {
2802
2804
  hint?: string | undefined;
2803
2805
  messages?: {
2804
2806
  text: string;
2805
- type: "error" | "success" | "info" | "warning";
2807
+ type: "success" | "error" | "info" | "warning";
2806
2808
  id?: number | undefined;
2807
2809
  }[] | undefined;
2808
2810
  required?: boolean | undefined;
@@ -2824,7 +2826,7 @@ export declare function init(config: AuthHeroConfig): {
2824
2826
  hint?: string | undefined;
2825
2827
  messages?: {
2826
2828
  text: string;
2827
- type: "error" | "success" | "info" | "warning";
2829
+ type: "success" | "error" | "info" | "warning";
2828
2830
  id?: number | undefined;
2829
2831
  }[] | undefined;
2830
2832
  required?: boolean | undefined;
@@ -2846,7 +2848,7 @@ export declare function init(config: AuthHeroConfig): {
2846
2848
  hint?: string | undefined;
2847
2849
  messages?: {
2848
2850
  text: string;
2849
- type: "error" | "success" | "info" | "warning";
2851
+ type: "success" | "error" | "info" | "warning";
2850
2852
  id?: number | undefined;
2851
2853
  }[] | undefined;
2852
2854
  required?: boolean | undefined;
@@ -2865,7 +2867,7 @@ export declare function init(config: AuthHeroConfig): {
2865
2867
  hint?: string | undefined;
2866
2868
  messages?: {
2867
2869
  text: string;
2868
- type: "error" | "success" | "info" | "warning";
2870
+ type: "success" | "error" | "info" | "warning";
2869
2871
  id?: number | undefined;
2870
2872
  }[] | undefined;
2871
2873
  required?: boolean | undefined;
@@ -2890,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
2890
2892
  hint?: string | undefined;
2891
2893
  messages?: {
2892
2894
  text: string;
2893
- type: "error" | "success" | "info" | "warning";
2895
+ type: "success" | "error" | "info" | "warning";
2894
2896
  id?: number | undefined;
2895
2897
  }[] | undefined;
2896
2898
  required?: boolean | undefined;
@@ -2911,7 +2913,7 @@ export declare function init(config: AuthHeroConfig): {
2911
2913
  hint?: string | undefined;
2912
2914
  messages?: {
2913
2915
  text: string;
2914
- type: "error" | "success" | "info" | "warning";
2916
+ type: "success" | "error" | "info" | "warning";
2915
2917
  id?: number | undefined;
2916
2918
  }[] | undefined;
2917
2919
  required?: boolean | undefined;
@@ -2932,7 +2934,7 @@ export declare function init(config: AuthHeroConfig): {
2932
2934
  hint?: string | undefined;
2933
2935
  messages?: {
2934
2936
  text: string;
2935
- type: "error" | "success" | "info" | "warning";
2937
+ type: "success" | "error" | "info" | "warning";
2936
2938
  id?: number | undefined;
2937
2939
  }[] | undefined;
2938
2940
  required?: boolean | undefined;
@@ -3165,7 +3167,7 @@ export declare function init(config: AuthHeroConfig): {
3165
3167
  hint?: string | undefined;
3166
3168
  messages?: {
3167
3169
  text: string;
3168
- type: "error" | "success" | "info" | "warning";
3170
+ type: "success" | "error" | "info" | "warning";
3169
3171
  id?: number | undefined;
3170
3172
  }[] | undefined;
3171
3173
  required?: boolean | undefined;
@@ -3183,7 +3185,7 @@ export declare function init(config: AuthHeroConfig): {
3183
3185
  hint?: string | undefined;
3184
3186
  messages?: {
3185
3187
  text: string;
3186
- type: "error" | "success" | "info" | "warning";
3188
+ type: "success" | "error" | "info" | "warning";
3187
3189
  id?: number | undefined;
3188
3190
  }[] | undefined;
3189
3191
  required?: boolean | undefined;
@@ -3207,7 +3209,7 @@ export declare function init(config: AuthHeroConfig): {
3207
3209
  hint?: string | undefined;
3208
3210
  messages?: {
3209
3211
  text: string;
3210
- type: "error" | "success" | "info" | "warning";
3212
+ type: "success" | "error" | "info" | "warning";
3211
3213
  id?: number | undefined;
3212
3214
  }[] | undefined;
3213
3215
  required?: boolean | undefined;
@@ -3231,7 +3233,7 @@ export declare function init(config: AuthHeroConfig): {
3231
3233
  hint?: string | undefined;
3232
3234
  messages?: {
3233
3235
  text: string;
3234
- type: "error" | "success" | "info" | "warning";
3236
+ type: "success" | "error" | "info" | "warning";
3235
3237
  id?: number | undefined;
3236
3238
  }[] | undefined;
3237
3239
  required?: boolean | undefined;
@@ -3260,7 +3262,7 @@ export declare function init(config: AuthHeroConfig): {
3260
3262
  hint?: string | undefined;
3261
3263
  messages?: {
3262
3264
  text: string;
3263
- type: "error" | "success" | "info" | "warning";
3265
+ type: "success" | "error" | "info" | "warning";
3264
3266
  id?: number | undefined;
3265
3267
  }[] | undefined;
3266
3268
  required?: boolean | undefined;
@@ -3275,7 +3277,7 @@ export declare function init(config: AuthHeroConfig): {
3275
3277
  hint?: string | undefined;
3276
3278
  messages?: {
3277
3279
  text: string;
3278
- type: "error" | "success" | "info" | "warning";
3280
+ type: "success" | "error" | "info" | "warning";
3279
3281
  id?: number | undefined;
3280
3282
  }[] | undefined;
3281
3283
  required?: boolean | undefined;
@@ -3296,7 +3298,7 @@ export declare function init(config: AuthHeroConfig): {
3296
3298
  hint?: string | undefined;
3297
3299
  messages?: {
3298
3300
  text: string;
3299
- type: "error" | "success" | "info" | "warning";
3301
+ type: "success" | "error" | "info" | "warning";
3300
3302
  id?: number | undefined;
3301
3303
  }[] | undefined;
3302
3304
  required?: boolean | undefined;
@@ -3321,7 +3323,7 @@ export declare function init(config: AuthHeroConfig): {
3321
3323
  hint?: string | undefined;
3322
3324
  messages?: {
3323
3325
  text: string;
3324
- type: "error" | "success" | "info" | "warning";
3326
+ type: "success" | "error" | "info" | "warning";
3325
3327
  id?: number | undefined;
3326
3328
  }[] | undefined;
3327
3329
  required?: boolean | undefined;
@@ -3340,7 +3342,7 @@ export declare function init(config: AuthHeroConfig): {
3340
3342
  hint?: string | undefined;
3341
3343
  messages?: {
3342
3344
  text: string;
3343
- type: "error" | "success" | "info" | "warning";
3345
+ type: "success" | "error" | "info" | "warning";
3344
3346
  id?: number | undefined;
3345
3347
  }[] | undefined;
3346
3348
  required?: boolean | undefined;
@@ -3360,7 +3362,7 @@ export declare function init(config: AuthHeroConfig): {
3360
3362
  hint?: string | undefined;
3361
3363
  messages?: {
3362
3364
  text: string;
3363
- type: "error" | "success" | "info" | "warning";
3365
+ type: "success" | "error" | "info" | "warning";
3364
3366
  id?: number | undefined;
3365
3367
  }[] | undefined;
3366
3368
  required?: boolean | undefined;
@@ -3379,7 +3381,7 @@ export declare function init(config: AuthHeroConfig): {
3379
3381
  hint?: string | undefined;
3380
3382
  messages?: {
3381
3383
  text: string;
3382
- type: "error" | "success" | "info" | "warning";
3384
+ type: "success" | "error" | "info" | "warning";
3383
3385
  id?: number | undefined;
3384
3386
  }[] | undefined;
3385
3387
  required?: boolean | undefined;
@@ -3401,7 +3403,7 @@ export declare function init(config: AuthHeroConfig): {
3401
3403
  hint?: string | undefined;
3402
3404
  messages?: {
3403
3405
  text: string;
3404
- type: "error" | "success" | "info" | "warning";
3406
+ type: "success" | "error" | "info" | "warning";
3405
3407
  id?: number | undefined;
3406
3408
  }[] | undefined;
3407
3409
  required?: boolean | undefined;
@@ -3423,7 +3425,7 @@ export declare function init(config: AuthHeroConfig): {
3423
3425
  hint?: string | undefined;
3424
3426
  messages?: {
3425
3427
  text: string;
3426
- type: "error" | "success" | "info" | "warning";
3428
+ type: "success" | "error" | "info" | "warning";
3427
3429
  id?: number | undefined;
3428
3430
  }[] | undefined;
3429
3431
  required?: boolean | undefined;
@@ -3442,7 +3444,7 @@ export declare function init(config: AuthHeroConfig): {
3442
3444
  hint?: string | undefined;
3443
3445
  messages?: {
3444
3446
  text: string;
3445
- type: "error" | "success" | "info" | "warning";
3447
+ type: "success" | "error" | "info" | "warning";
3446
3448
  id?: number | undefined;
3447
3449
  }[] | undefined;
3448
3450
  required?: boolean | undefined;
@@ -3467,7 +3469,7 @@ export declare function init(config: AuthHeroConfig): {
3467
3469
  hint?: string | undefined;
3468
3470
  messages?: {
3469
3471
  text: string;
3470
- type: "error" | "success" | "info" | "warning";
3472
+ type: "success" | "error" | "info" | "warning";
3471
3473
  id?: number | undefined;
3472
3474
  }[] | undefined;
3473
3475
  required?: boolean | undefined;
@@ -3488,7 +3490,7 @@ export declare function init(config: AuthHeroConfig): {
3488
3490
  hint?: string | undefined;
3489
3491
  messages?: {
3490
3492
  text: string;
3491
- type: "error" | "success" | "info" | "warning";
3493
+ type: "success" | "error" | "info" | "warning";
3492
3494
  id?: number | undefined;
3493
3495
  }[] | undefined;
3494
3496
  required?: boolean | undefined;
@@ -3509,7 +3511,7 @@ export declare function init(config: AuthHeroConfig): {
3509
3511
  hint?: string | undefined;
3510
3512
  messages?: {
3511
3513
  text: string;
3512
- type: "error" | "success" | "info" | "warning";
3514
+ type: "success" | "error" | "info" | "warning";
3513
3515
  id?: number | undefined;
3514
3516
  }[] | undefined;
3515
3517
  required?: boolean | undefined;
@@ -3757,7 +3759,7 @@ export declare function init(config: AuthHeroConfig): {
3757
3759
  hint?: string | undefined;
3758
3760
  messages?: {
3759
3761
  text: string;
3760
- type: "error" | "success" | "info" | "warning";
3762
+ type: "success" | "error" | "info" | "warning";
3761
3763
  id?: number | undefined;
3762
3764
  }[] | undefined;
3763
3765
  required?: boolean | undefined;
@@ -3775,7 +3777,7 @@ export declare function init(config: AuthHeroConfig): {
3775
3777
  hint?: string | undefined;
3776
3778
  messages?: {
3777
3779
  text: string;
3778
- type: "error" | "success" | "info" | "warning";
3780
+ type: "success" | "error" | "info" | "warning";
3779
3781
  id?: number | undefined;
3780
3782
  }[] | undefined;
3781
3783
  required?: boolean | undefined;
@@ -3799,7 +3801,7 @@ export declare function init(config: AuthHeroConfig): {
3799
3801
  hint?: string | undefined;
3800
3802
  messages?: {
3801
3803
  text: string;
3802
- type: "error" | "success" | "info" | "warning";
3804
+ type: "success" | "error" | "info" | "warning";
3803
3805
  id?: number | undefined;
3804
3806
  }[] | undefined;
3805
3807
  required?: boolean | undefined;
@@ -3823,7 +3825,7 @@ export declare function init(config: AuthHeroConfig): {
3823
3825
  hint?: string | undefined;
3824
3826
  messages?: {
3825
3827
  text: string;
3826
- type: "error" | "success" | "info" | "warning";
3828
+ type: "success" | "error" | "info" | "warning";
3827
3829
  id?: number | undefined;
3828
3830
  }[] | undefined;
3829
3831
  required?: boolean | undefined;
@@ -3852,7 +3854,7 @@ export declare function init(config: AuthHeroConfig): {
3852
3854
  hint?: string | undefined;
3853
3855
  messages?: {
3854
3856
  text: string;
3855
- type: "error" | "success" | "info" | "warning";
3857
+ type: "success" | "error" | "info" | "warning";
3856
3858
  id?: number | undefined;
3857
3859
  }[] | undefined;
3858
3860
  required?: boolean | undefined;
@@ -3867,7 +3869,7 @@ export declare function init(config: AuthHeroConfig): {
3867
3869
  hint?: string | undefined;
3868
3870
  messages?: {
3869
3871
  text: string;
3870
- type: "error" | "success" | "info" | "warning";
3872
+ type: "success" | "error" | "info" | "warning";
3871
3873
  id?: number | undefined;
3872
3874
  }[] | undefined;
3873
3875
  required?: boolean | undefined;
@@ -3888,7 +3890,7 @@ export declare function init(config: AuthHeroConfig): {
3888
3890
  hint?: string | undefined;
3889
3891
  messages?: {
3890
3892
  text: string;
3891
- type: "error" | "success" | "info" | "warning";
3893
+ type: "success" | "error" | "info" | "warning";
3892
3894
  id?: number | undefined;
3893
3895
  }[] | undefined;
3894
3896
  required?: boolean | undefined;
@@ -3913,7 +3915,7 @@ export declare function init(config: AuthHeroConfig): {
3913
3915
  hint?: string | undefined;
3914
3916
  messages?: {
3915
3917
  text: string;
3916
- type: "error" | "success" | "info" | "warning";
3918
+ type: "success" | "error" | "info" | "warning";
3917
3919
  id?: number | undefined;
3918
3920
  }[] | undefined;
3919
3921
  required?: boolean | undefined;
@@ -3932,7 +3934,7 @@ export declare function init(config: AuthHeroConfig): {
3932
3934
  hint?: string | undefined;
3933
3935
  messages?: {
3934
3936
  text: string;
3935
- type: "error" | "success" | "info" | "warning";
3937
+ type: "success" | "error" | "info" | "warning";
3936
3938
  id?: number | undefined;
3937
3939
  }[] | undefined;
3938
3940
  required?: boolean | undefined;
@@ -3952,7 +3954,7 @@ export declare function init(config: AuthHeroConfig): {
3952
3954
  hint?: string | undefined;
3953
3955
  messages?: {
3954
3956
  text: string;
3955
- type: "error" | "success" | "info" | "warning";
3957
+ type: "success" | "error" | "info" | "warning";
3956
3958
  id?: number | undefined;
3957
3959
  }[] | undefined;
3958
3960
  required?: boolean | undefined;
@@ -3971,7 +3973,7 @@ export declare function init(config: AuthHeroConfig): {
3971
3973
  hint?: string | undefined;
3972
3974
  messages?: {
3973
3975
  text: string;
3974
- type: "error" | "success" | "info" | "warning";
3976
+ type: "success" | "error" | "info" | "warning";
3975
3977
  id?: number | undefined;
3976
3978
  }[] | undefined;
3977
3979
  required?: boolean | undefined;
@@ -3993,7 +3995,7 @@ export declare function init(config: AuthHeroConfig): {
3993
3995
  hint?: string | undefined;
3994
3996
  messages?: {
3995
3997
  text: string;
3996
- type: "error" | "success" | "info" | "warning";
3998
+ type: "success" | "error" | "info" | "warning";
3997
3999
  id?: number | undefined;
3998
4000
  }[] | undefined;
3999
4001
  required?: boolean | undefined;
@@ -4015,7 +4017,7 @@ export declare function init(config: AuthHeroConfig): {
4015
4017
  hint?: string | undefined;
4016
4018
  messages?: {
4017
4019
  text: string;
4018
- type: "error" | "success" | "info" | "warning";
4020
+ type: "success" | "error" | "info" | "warning";
4019
4021
  id?: number | undefined;
4020
4022
  }[] | undefined;
4021
4023
  required?: boolean | undefined;
@@ -4034,7 +4036,7 @@ export declare function init(config: AuthHeroConfig): {
4034
4036
  hint?: string | undefined;
4035
4037
  messages?: {
4036
4038
  text: string;
4037
- type: "error" | "success" | "info" | "warning";
4039
+ type: "success" | "error" | "info" | "warning";
4038
4040
  id?: number | undefined;
4039
4041
  }[] | undefined;
4040
4042
  required?: boolean | undefined;
@@ -4059,7 +4061,7 @@ export declare function init(config: AuthHeroConfig): {
4059
4061
  hint?: string | undefined;
4060
4062
  messages?: {
4061
4063
  text: string;
4062
- type: "error" | "success" | "info" | "warning";
4064
+ type: "success" | "error" | "info" | "warning";
4063
4065
  id?: number | undefined;
4064
4066
  }[] | undefined;
4065
4067
  required?: boolean | undefined;
@@ -4080,7 +4082,7 @@ export declare function init(config: AuthHeroConfig): {
4080
4082
  hint?: string | undefined;
4081
4083
  messages?: {
4082
4084
  text: string;
4083
- type: "error" | "success" | "info" | "warning";
4085
+ type: "success" | "error" | "info" | "warning";
4084
4086
  id?: number | undefined;
4085
4087
  }[] | undefined;
4086
4088
  required?: boolean | undefined;
@@ -4101,7 +4103,7 @@ export declare function init(config: AuthHeroConfig): {
4101
4103
  hint?: string | undefined;
4102
4104
  messages?: {
4103
4105
  text: string;
4104
- type: "error" | "success" | "info" | "warning";
4106
+ type: "success" | "error" | "info" | "warning";
4105
4107
  id?: number | undefined;
4106
4108
  }[] | undefined;
4107
4109
  required?: boolean | undefined;
@@ -4355,7 +4357,7 @@ export declare function init(config: AuthHeroConfig): {
4355
4357
  hint?: string | undefined;
4356
4358
  messages?: {
4357
4359
  text: string;
4358
- type: "error" | "success" | "info" | "warning";
4360
+ type: "success" | "error" | "info" | "warning";
4359
4361
  id?: number | undefined;
4360
4362
  }[] | undefined;
4361
4363
  required?: boolean | undefined;
@@ -4373,7 +4375,7 @@ export declare function init(config: AuthHeroConfig): {
4373
4375
  hint?: string | undefined;
4374
4376
  messages?: {
4375
4377
  text: string;
4376
- type: "error" | "success" | "info" | "warning";
4378
+ type: "success" | "error" | "info" | "warning";
4377
4379
  id?: number | undefined;
4378
4380
  }[] | undefined;
4379
4381
  required?: boolean | undefined;
@@ -4397,7 +4399,7 @@ export declare function init(config: AuthHeroConfig): {
4397
4399
  hint?: string | undefined;
4398
4400
  messages?: {
4399
4401
  text: string;
4400
- type: "error" | "success" | "info" | "warning";
4402
+ type: "success" | "error" | "info" | "warning";
4401
4403
  id?: number | undefined;
4402
4404
  }[] | undefined;
4403
4405
  required?: boolean | undefined;
@@ -4421,7 +4423,7 @@ export declare function init(config: AuthHeroConfig): {
4421
4423
  hint?: string | undefined;
4422
4424
  messages?: {
4423
4425
  text: string;
4424
- type: "error" | "success" | "info" | "warning";
4426
+ type: "success" | "error" | "info" | "warning";
4425
4427
  id?: number | undefined;
4426
4428
  }[] | undefined;
4427
4429
  required?: boolean | undefined;
@@ -4446,7 +4448,7 @@ export declare function init(config: AuthHeroConfig): {
4446
4448
  hint?: string | undefined;
4447
4449
  messages?: {
4448
4450
  text: string;
4449
- type: "error" | "success" | "info" | "warning";
4451
+ type: "success" | "error" | "info" | "warning";
4450
4452
  id?: number | undefined;
4451
4453
  }[] | undefined;
4452
4454
  required?: boolean | undefined;
@@ -4461,7 +4463,7 @@ export declare function init(config: AuthHeroConfig): {
4461
4463
  hint?: string | undefined;
4462
4464
  messages?: {
4463
4465
  text: string;
4464
- type: "error" | "success" | "info" | "warning";
4466
+ type: "success" | "error" | "info" | "warning";
4465
4467
  id?: number | undefined;
4466
4468
  }[] | undefined;
4467
4469
  required?: boolean | undefined;
@@ -4482,7 +4484,7 @@ export declare function init(config: AuthHeroConfig): {
4482
4484
  hint?: string | undefined;
4483
4485
  messages?: {
4484
4486
  text: string;
4485
- type: "error" | "success" | "info" | "warning";
4487
+ type: "success" | "error" | "info" | "warning";
4486
4488
  id?: number | undefined;
4487
4489
  }[] | undefined;
4488
4490
  required?: boolean | undefined;
@@ -4507,7 +4509,7 @@ export declare function init(config: AuthHeroConfig): {
4507
4509
  hint?: string | undefined;
4508
4510
  messages?: {
4509
4511
  text: string;
4510
- type: "error" | "success" | "info" | "warning";
4512
+ type: "success" | "error" | "info" | "warning";
4511
4513
  id?: number | undefined;
4512
4514
  }[] | undefined;
4513
4515
  required?: boolean | undefined;
@@ -4526,7 +4528,7 @@ export declare function init(config: AuthHeroConfig): {
4526
4528
  hint?: string | undefined;
4527
4529
  messages?: {
4528
4530
  text: string;
4529
- type: "error" | "success" | "info" | "warning";
4531
+ type: "success" | "error" | "info" | "warning";
4530
4532
  id?: number | undefined;
4531
4533
  }[] | undefined;
4532
4534
  required?: boolean | undefined;
@@ -4546,7 +4548,7 @@ export declare function init(config: AuthHeroConfig): {
4546
4548
  hint?: string | undefined;
4547
4549
  messages?: {
4548
4550
  text: string;
4549
- type: "error" | "success" | "info" | "warning";
4551
+ type: "success" | "error" | "info" | "warning";
4550
4552
  id?: number | undefined;
4551
4553
  }[] | undefined;
4552
4554
  required?: boolean | undefined;
@@ -4565,7 +4567,7 @@ export declare function init(config: AuthHeroConfig): {
4565
4567
  hint?: string | undefined;
4566
4568
  messages?: {
4567
4569
  text: string;
4568
- type: "error" | "success" | "info" | "warning";
4570
+ type: "success" | "error" | "info" | "warning";
4569
4571
  id?: number | undefined;
4570
4572
  }[] | undefined;
4571
4573
  required?: boolean | undefined;
@@ -4587,7 +4589,7 @@ export declare function init(config: AuthHeroConfig): {
4587
4589
  hint?: string | undefined;
4588
4590
  messages?: {
4589
4591
  text: string;
4590
- type: "error" | "success" | "info" | "warning";
4592
+ type: "success" | "error" | "info" | "warning";
4591
4593
  id?: number | undefined;
4592
4594
  }[] | undefined;
4593
4595
  required?: boolean | undefined;
@@ -4609,7 +4611,7 @@ export declare function init(config: AuthHeroConfig): {
4609
4611
  hint?: string | undefined;
4610
4612
  messages?: {
4611
4613
  text: string;
4612
- type: "error" | "success" | "info" | "warning";
4614
+ type: "success" | "error" | "info" | "warning";
4613
4615
  id?: number | undefined;
4614
4616
  }[] | undefined;
4615
4617
  required?: boolean | undefined;
@@ -4628,7 +4630,7 @@ export declare function init(config: AuthHeroConfig): {
4628
4630
  hint?: string | undefined;
4629
4631
  messages?: {
4630
4632
  text: string;
4631
- type: "error" | "success" | "info" | "warning";
4633
+ type: "success" | "error" | "info" | "warning";
4632
4634
  id?: number | undefined;
4633
4635
  }[] | undefined;
4634
4636
  required?: boolean | undefined;
@@ -4653,7 +4655,7 @@ export declare function init(config: AuthHeroConfig): {
4653
4655
  hint?: string | undefined;
4654
4656
  messages?: {
4655
4657
  text: string;
4656
- type: "error" | "success" | "info" | "warning";
4658
+ type: "success" | "error" | "info" | "warning";
4657
4659
  id?: number | undefined;
4658
4660
  }[] | undefined;
4659
4661
  required?: boolean | undefined;
@@ -4674,7 +4676,7 @@ export declare function init(config: AuthHeroConfig): {
4674
4676
  hint?: string | undefined;
4675
4677
  messages?: {
4676
4678
  text: string;
4677
- type: "error" | "success" | "info" | "warning";
4679
+ type: "success" | "error" | "info" | "warning";
4678
4680
  id?: number | undefined;
4679
4681
  }[] | undefined;
4680
4682
  required?: boolean | undefined;
@@ -4695,7 +4697,7 @@ export declare function init(config: AuthHeroConfig): {
4695
4697
  hint?: string | undefined;
4696
4698
  messages?: {
4697
4699
  text: string;
4698
- type: "error" | "success" | "info" | "warning";
4700
+ type: "success" | "error" | "info" | "warning";
4699
4701
  id?: number | undefined;
4700
4702
  }[] | undefined;
4701
4703
  required?: boolean | undefined;
@@ -4926,7 +4928,7 @@ export declare function init(config: AuthHeroConfig): {
4926
4928
  hint?: string | undefined;
4927
4929
  messages?: {
4928
4930
  text: string;
4929
- type: "error" | "success" | "info" | "warning";
4931
+ type: "success" | "error" | "info" | "warning";
4930
4932
  id?: number | undefined;
4931
4933
  }[] | undefined;
4932
4934
  required?: boolean | undefined;
@@ -4944,7 +4946,7 @@ export declare function init(config: AuthHeroConfig): {
4944
4946
  hint?: string | undefined;
4945
4947
  messages?: {
4946
4948
  text: string;
4947
- type: "error" | "success" | "info" | "warning";
4949
+ type: "success" | "error" | "info" | "warning";
4948
4950
  id?: number | undefined;
4949
4951
  }[] | undefined;
4950
4952
  required?: boolean | undefined;
@@ -4968,7 +4970,7 @@ export declare function init(config: AuthHeroConfig): {
4968
4970
  hint?: string | undefined;
4969
4971
  messages?: {
4970
4972
  text: string;
4971
- type: "error" | "success" | "info" | "warning";
4973
+ type: "success" | "error" | "info" | "warning";
4972
4974
  id?: number | undefined;
4973
4975
  }[] | undefined;
4974
4976
  required?: boolean | undefined;
@@ -4992,7 +4994,7 @@ export declare function init(config: AuthHeroConfig): {
4992
4994
  hint?: string | undefined;
4993
4995
  messages?: {
4994
4996
  text: string;
4995
- type: "error" | "success" | "info" | "warning";
4997
+ type: "success" | "error" | "info" | "warning";
4996
4998
  id?: number | undefined;
4997
4999
  }[] | undefined;
4998
5000
  required?: boolean | undefined;
@@ -5021,7 +5023,7 @@ export declare function init(config: AuthHeroConfig): {
5021
5023
  hint?: string | undefined;
5022
5024
  messages?: {
5023
5025
  text: string;
5024
- type: "error" | "success" | "info" | "warning";
5026
+ type: "success" | "error" | "info" | "warning";
5025
5027
  id?: number | undefined;
5026
5028
  }[] | undefined;
5027
5029
  required?: boolean | undefined;
@@ -5036,7 +5038,7 @@ export declare function init(config: AuthHeroConfig): {
5036
5038
  hint?: string | undefined;
5037
5039
  messages?: {
5038
5040
  text: string;
5039
- type: "error" | "success" | "info" | "warning";
5041
+ type: "success" | "error" | "info" | "warning";
5040
5042
  id?: number | undefined;
5041
5043
  }[] | undefined;
5042
5044
  required?: boolean | undefined;
@@ -5057,7 +5059,7 @@ export declare function init(config: AuthHeroConfig): {
5057
5059
  hint?: string | undefined;
5058
5060
  messages?: {
5059
5061
  text: string;
5060
- type: "error" | "success" | "info" | "warning";
5062
+ type: "success" | "error" | "info" | "warning";
5061
5063
  id?: number | undefined;
5062
5064
  }[] | undefined;
5063
5065
  required?: boolean | undefined;
@@ -5082,7 +5084,7 @@ export declare function init(config: AuthHeroConfig): {
5082
5084
  hint?: string | undefined;
5083
5085
  messages?: {
5084
5086
  text: string;
5085
- type: "error" | "success" | "info" | "warning";
5087
+ type: "success" | "error" | "info" | "warning";
5086
5088
  id?: number | undefined;
5087
5089
  }[] | undefined;
5088
5090
  required?: boolean | undefined;
@@ -5101,7 +5103,7 @@ export declare function init(config: AuthHeroConfig): {
5101
5103
  hint?: string | undefined;
5102
5104
  messages?: {
5103
5105
  text: string;
5104
- type: "error" | "success" | "info" | "warning";
5106
+ type: "success" | "error" | "info" | "warning";
5105
5107
  id?: number | undefined;
5106
5108
  }[] | undefined;
5107
5109
  required?: boolean | undefined;
@@ -5121,7 +5123,7 @@ export declare function init(config: AuthHeroConfig): {
5121
5123
  hint?: string | undefined;
5122
5124
  messages?: {
5123
5125
  text: string;
5124
- type: "error" | "success" | "info" | "warning";
5126
+ type: "success" | "error" | "info" | "warning";
5125
5127
  id?: number | undefined;
5126
5128
  }[] | undefined;
5127
5129
  required?: boolean | undefined;
@@ -5140,7 +5142,7 @@ export declare function init(config: AuthHeroConfig): {
5140
5142
  hint?: string | undefined;
5141
5143
  messages?: {
5142
5144
  text: string;
5143
- type: "error" | "success" | "info" | "warning";
5145
+ type: "success" | "error" | "info" | "warning";
5144
5146
  id?: number | undefined;
5145
5147
  }[] | undefined;
5146
5148
  required?: boolean | undefined;
@@ -5162,7 +5164,7 @@ export declare function init(config: AuthHeroConfig): {
5162
5164
  hint?: string | undefined;
5163
5165
  messages?: {
5164
5166
  text: string;
5165
- type: "error" | "success" | "info" | "warning";
5167
+ type: "success" | "error" | "info" | "warning";
5166
5168
  id?: number | undefined;
5167
5169
  }[] | undefined;
5168
5170
  required?: boolean | undefined;
@@ -5184,7 +5186,7 @@ export declare function init(config: AuthHeroConfig): {
5184
5186
  hint?: string | undefined;
5185
5187
  messages?: {
5186
5188
  text: string;
5187
- type: "error" | "success" | "info" | "warning";
5189
+ type: "success" | "error" | "info" | "warning";
5188
5190
  id?: number | undefined;
5189
5191
  }[] | undefined;
5190
5192
  required?: boolean | undefined;
@@ -5203,7 +5205,7 @@ export declare function init(config: AuthHeroConfig): {
5203
5205
  hint?: string | undefined;
5204
5206
  messages?: {
5205
5207
  text: string;
5206
- type: "error" | "success" | "info" | "warning";
5208
+ type: "success" | "error" | "info" | "warning";
5207
5209
  id?: number | undefined;
5208
5210
  }[] | undefined;
5209
5211
  required?: boolean | undefined;
@@ -5228,7 +5230,7 @@ export declare function init(config: AuthHeroConfig): {
5228
5230
  hint?: string | undefined;
5229
5231
  messages?: {
5230
5232
  text: string;
5231
- type: "error" | "success" | "info" | "warning";
5233
+ type: "success" | "error" | "info" | "warning";
5232
5234
  id?: number | undefined;
5233
5235
  }[] | undefined;
5234
5236
  required?: boolean | undefined;
@@ -5249,7 +5251,7 @@ export declare function init(config: AuthHeroConfig): {
5249
5251
  hint?: string | undefined;
5250
5252
  messages?: {
5251
5253
  text: string;
5252
- type: "error" | "success" | "info" | "warning";
5254
+ type: "success" | "error" | "info" | "warning";
5253
5255
  id?: number | undefined;
5254
5256
  }[] | undefined;
5255
5257
  required?: boolean | undefined;
@@ -5270,7 +5272,7 @@ export declare function init(config: AuthHeroConfig): {
5270
5272
  hint?: string | undefined;
5271
5273
  messages?: {
5272
5274
  text: string;
5273
- type: "error" | "success" | "info" | "warning";
5275
+ type: "success" | "error" | "info" | "warning";
5274
5276
  id?: number | undefined;
5275
5277
  }[] | undefined;
5276
5278
  required?: boolean | undefined;
@@ -5503,7 +5505,7 @@ export declare function init(config: AuthHeroConfig): {
5503
5505
  hint?: string | undefined;
5504
5506
  messages?: {
5505
5507
  text: string;
5506
- type: "error" | "success" | "info" | "warning";
5508
+ type: "success" | "error" | "info" | "warning";
5507
5509
  id?: number | undefined;
5508
5510
  }[] | undefined;
5509
5511
  required?: boolean | undefined;
@@ -5521,7 +5523,7 @@ export declare function init(config: AuthHeroConfig): {
5521
5523
  hint?: string | undefined;
5522
5524
  messages?: {
5523
5525
  text: string;
5524
- type: "error" | "success" | "info" | "warning";
5526
+ type: "success" | "error" | "info" | "warning";
5525
5527
  id?: number | undefined;
5526
5528
  }[] | undefined;
5527
5529
  required?: boolean | undefined;
@@ -5545,7 +5547,7 @@ export declare function init(config: AuthHeroConfig): {
5545
5547
  hint?: string | undefined;
5546
5548
  messages?: {
5547
5549
  text: string;
5548
- type: "error" | "success" | "info" | "warning";
5550
+ type: "success" | "error" | "info" | "warning";
5549
5551
  id?: number | undefined;
5550
5552
  }[] | undefined;
5551
5553
  required?: boolean | undefined;
@@ -5569,7 +5571,7 @@ export declare function init(config: AuthHeroConfig): {
5569
5571
  hint?: string | undefined;
5570
5572
  messages?: {
5571
5573
  text: string;
5572
- type: "error" | "success" | "info" | "warning";
5574
+ type: "success" | "error" | "info" | "warning";
5573
5575
  id?: number | undefined;
5574
5576
  }[] | undefined;
5575
5577
  required?: boolean | undefined;
@@ -5594,7 +5596,7 @@ export declare function init(config: AuthHeroConfig): {
5594
5596
  hint?: string | undefined;
5595
5597
  messages?: {
5596
5598
  text: string;
5597
- type: "error" | "success" | "info" | "warning";
5599
+ type: "success" | "error" | "info" | "warning";
5598
5600
  id?: number | undefined;
5599
5601
  }[] | undefined;
5600
5602
  required?: boolean | undefined;
@@ -5609,7 +5611,7 @@ export declare function init(config: AuthHeroConfig): {
5609
5611
  hint?: string | undefined;
5610
5612
  messages?: {
5611
5613
  text: string;
5612
- type: "error" | "success" | "info" | "warning";
5614
+ type: "success" | "error" | "info" | "warning";
5613
5615
  id?: number | undefined;
5614
5616
  }[] | undefined;
5615
5617
  required?: boolean | undefined;
@@ -5630,7 +5632,7 @@ export declare function init(config: AuthHeroConfig): {
5630
5632
  hint?: string | undefined;
5631
5633
  messages?: {
5632
5634
  text: string;
5633
- type: "error" | "success" | "info" | "warning";
5635
+ type: "success" | "error" | "info" | "warning";
5634
5636
  id?: number | undefined;
5635
5637
  }[] | undefined;
5636
5638
  required?: boolean | undefined;
@@ -5655,7 +5657,7 @@ export declare function init(config: AuthHeroConfig): {
5655
5657
  hint?: string | undefined;
5656
5658
  messages?: {
5657
5659
  text: string;
5658
- type: "error" | "success" | "info" | "warning";
5660
+ type: "success" | "error" | "info" | "warning";
5659
5661
  id?: number | undefined;
5660
5662
  }[] | undefined;
5661
5663
  required?: boolean | undefined;
@@ -5674,7 +5676,7 @@ export declare function init(config: AuthHeroConfig): {
5674
5676
  hint?: string | undefined;
5675
5677
  messages?: {
5676
5678
  text: string;
5677
- type: "error" | "success" | "info" | "warning";
5679
+ type: "success" | "error" | "info" | "warning";
5678
5680
  id?: number | undefined;
5679
5681
  }[] | undefined;
5680
5682
  required?: boolean | undefined;
@@ -5694,7 +5696,7 @@ export declare function init(config: AuthHeroConfig): {
5694
5696
  hint?: string | undefined;
5695
5697
  messages?: {
5696
5698
  text: string;
5697
- type: "error" | "success" | "info" | "warning";
5699
+ type: "success" | "error" | "info" | "warning";
5698
5700
  id?: number | undefined;
5699
5701
  }[] | undefined;
5700
5702
  required?: boolean | undefined;
@@ -5713,7 +5715,7 @@ export declare function init(config: AuthHeroConfig): {
5713
5715
  hint?: string | undefined;
5714
5716
  messages?: {
5715
5717
  text: string;
5716
- type: "error" | "success" | "info" | "warning";
5718
+ type: "success" | "error" | "info" | "warning";
5717
5719
  id?: number | undefined;
5718
5720
  }[] | undefined;
5719
5721
  required?: boolean | undefined;
@@ -5735,7 +5737,7 @@ export declare function init(config: AuthHeroConfig): {
5735
5737
  hint?: string | undefined;
5736
5738
  messages?: {
5737
5739
  text: string;
5738
- type: "error" | "success" | "info" | "warning";
5740
+ type: "success" | "error" | "info" | "warning";
5739
5741
  id?: number | undefined;
5740
5742
  }[] | undefined;
5741
5743
  required?: boolean | undefined;
@@ -5757,7 +5759,7 @@ export declare function init(config: AuthHeroConfig): {
5757
5759
  hint?: string | undefined;
5758
5760
  messages?: {
5759
5761
  text: string;
5760
- type: "error" | "success" | "info" | "warning";
5762
+ type: "success" | "error" | "info" | "warning";
5761
5763
  id?: number | undefined;
5762
5764
  }[] | undefined;
5763
5765
  required?: boolean | undefined;
@@ -5776,7 +5778,7 @@ export declare function init(config: AuthHeroConfig): {
5776
5778
  hint?: string | undefined;
5777
5779
  messages?: {
5778
5780
  text: string;
5779
- type: "error" | "success" | "info" | "warning";
5781
+ type: "success" | "error" | "info" | "warning";
5780
5782
  id?: number | undefined;
5781
5783
  }[] | undefined;
5782
5784
  required?: boolean | undefined;
@@ -5801,7 +5803,7 @@ export declare function init(config: AuthHeroConfig): {
5801
5803
  hint?: string | undefined;
5802
5804
  messages?: {
5803
5805
  text: string;
5804
- type: "error" | "success" | "info" | "warning";
5806
+ type: "success" | "error" | "info" | "warning";
5805
5807
  id?: number | undefined;
5806
5808
  }[] | undefined;
5807
5809
  required?: boolean | undefined;
@@ -5822,7 +5824,7 @@ export declare function init(config: AuthHeroConfig): {
5822
5824
  hint?: string | undefined;
5823
5825
  messages?: {
5824
5826
  text: string;
5825
- type: "error" | "success" | "info" | "warning";
5827
+ type: "success" | "error" | "info" | "warning";
5826
5828
  id?: number | undefined;
5827
5829
  }[] | undefined;
5828
5830
  required?: boolean | undefined;
@@ -5843,7 +5845,7 @@ export declare function init(config: AuthHeroConfig): {
5843
5845
  hint?: string | undefined;
5844
5846
  messages?: {
5845
5847
  text: string;
5846
- type: "error" | "success" | "info" | "warning";
5848
+ type: "success" | "error" | "info" | "warning";
5847
5849
  id?: number | undefined;
5848
5850
  }[] | undefined;
5849
5851
  required?: boolean | undefined;
@@ -6074,7 +6076,7 @@ export declare function init(config: AuthHeroConfig): {
6074
6076
  hint?: string | undefined;
6075
6077
  messages?: {
6076
6078
  text: string;
6077
- type: "error" | "success" | "info" | "warning";
6079
+ type: "success" | "error" | "info" | "warning";
6078
6080
  id?: number | undefined;
6079
6081
  }[] | undefined;
6080
6082
  required?: boolean | undefined;
@@ -6092,7 +6094,7 @@ export declare function init(config: AuthHeroConfig): {
6092
6094
  hint?: string | undefined;
6093
6095
  messages?: {
6094
6096
  text: string;
6095
- type: "error" | "success" | "info" | "warning";
6097
+ type: "success" | "error" | "info" | "warning";
6096
6098
  id?: number | undefined;
6097
6099
  }[] | undefined;
6098
6100
  required?: boolean | undefined;
@@ -6116,7 +6118,7 @@ export declare function init(config: AuthHeroConfig): {
6116
6118
  hint?: string | undefined;
6117
6119
  messages?: {
6118
6120
  text: string;
6119
- type: "error" | "success" | "info" | "warning";
6121
+ type: "success" | "error" | "info" | "warning";
6120
6122
  id?: number | undefined;
6121
6123
  }[] | undefined;
6122
6124
  required?: boolean | undefined;
@@ -6140,7 +6142,7 @@ export declare function init(config: AuthHeroConfig): {
6140
6142
  hint?: string | undefined;
6141
6143
  messages?: {
6142
6144
  text: string;
6143
- type: "error" | "success" | "info" | "warning";
6145
+ type: "success" | "error" | "info" | "warning";
6144
6146
  id?: number | undefined;
6145
6147
  }[] | undefined;
6146
6148
  required?: boolean | undefined;
@@ -6169,7 +6171,7 @@ export declare function init(config: AuthHeroConfig): {
6169
6171
  hint?: string | undefined;
6170
6172
  messages?: {
6171
6173
  text: string;
6172
- type: "error" | "success" | "info" | "warning";
6174
+ type: "success" | "error" | "info" | "warning";
6173
6175
  id?: number | undefined;
6174
6176
  }[] | undefined;
6175
6177
  required?: boolean | undefined;
@@ -6184,7 +6186,7 @@ export declare function init(config: AuthHeroConfig): {
6184
6186
  hint?: string | undefined;
6185
6187
  messages?: {
6186
6188
  text: string;
6187
- type: "error" | "success" | "info" | "warning";
6189
+ type: "success" | "error" | "info" | "warning";
6188
6190
  id?: number | undefined;
6189
6191
  }[] | undefined;
6190
6192
  required?: boolean | undefined;
@@ -6205,7 +6207,7 @@ export declare function init(config: AuthHeroConfig): {
6205
6207
  hint?: string | undefined;
6206
6208
  messages?: {
6207
6209
  text: string;
6208
- type: "error" | "success" | "info" | "warning";
6210
+ type: "success" | "error" | "info" | "warning";
6209
6211
  id?: number | undefined;
6210
6212
  }[] | undefined;
6211
6213
  required?: boolean | undefined;
@@ -6230,7 +6232,7 @@ export declare function init(config: AuthHeroConfig): {
6230
6232
  hint?: string | undefined;
6231
6233
  messages?: {
6232
6234
  text: string;
6233
- type: "error" | "success" | "info" | "warning";
6235
+ type: "success" | "error" | "info" | "warning";
6234
6236
  id?: number | undefined;
6235
6237
  }[] | undefined;
6236
6238
  required?: boolean | undefined;
@@ -6249,7 +6251,7 @@ export declare function init(config: AuthHeroConfig): {
6249
6251
  hint?: string | undefined;
6250
6252
  messages?: {
6251
6253
  text: string;
6252
- type: "error" | "success" | "info" | "warning";
6254
+ type: "success" | "error" | "info" | "warning";
6253
6255
  id?: number | undefined;
6254
6256
  }[] | undefined;
6255
6257
  required?: boolean | undefined;
@@ -6269,7 +6271,7 @@ export declare function init(config: AuthHeroConfig): {
6269
6271
  hint?: string | undefined;
6270
6272
  messages?: {
6271
6273
  text: string;
6272
- type: "error" | "success" | "info" | "warning";
6274
+ type: "success" | "error" | "info" | "warning";
6273
6275
  id?: number | undefined;
6274
6276
  }[] | undefined;
6275
6277
  required?: boolean | undefined;
@@ -6288,7 +6290,7 @@ export declare function init(config: AuthHeroConfig): {
6288
6290
  hint?: string | undefined;
6289
6291
  messages?: {
6290
6292
  text: string;
6291
- type: "error" | "success" | "info" | "warning";
6293
+ type: "success" | "error" | "info" | "warning";
6292
6294
  id?: number | undefined;
6293
6295
  }[] | undefined;
6294
6296
  required?: boolean | undefined;
@@ -6310,7 +6312,7 @@ export declare function init(config: AuthHeroConfig): {
6310
6312
  hint?: string | undefined;
6311
6313
  messages?: {
6312
6314
  text: string;
6313
- type: "error" | "success" | "info" | "warning";
6315
+ type: "success" | "error" | "info" | "warning";
6314
6316
  id?: number | undefined;
6315
6317
  }[] | undefined;
6316
6318
  required?: boolean | undefined;
@@ -6332,7 +6334,7 @@ export declare function init(config: AuthHeroConfig): {
6332
6334
  hint?: string | undefined;
6333
6335
  messages?: {
6334
6336
  text: string;
6335
- type: "error" | "success" | "info" | "warning";
6337
+ type: "success" | "error" | "info" | "warning";
6336
6338
  id?: number | undefined;
6337
6339
  }[] | undefined;
6338
6340
  required?: boolean | undefined;
@@ -6351,7 +6353,7 @@ export declare function init(config: AuthHeroConfig): {
6351
6353
  hint?: string | undefined;
6352
6354
  messages?: {
6353
6355
  text: string;
6354
- type: "error" | "success" | "info" | "warning";
6356
+ type: "success" | "error" | "info" | "warning";
6355
6357
  id?: number | undefined;
6356
6358
  }[] | undefined;
6357
6359
  required?: boolean | undefined;
@@ -6376,7 +6378,7 @@ export declare function init(config: AuthHeroConfig): {
6376
6378
  hint?: string | undefined;
6377
6379
  messages?: {
6378
6380
  text: string;
6379
- type: "error" | "success" | "info" | "warning";
6381
+ type: "success" | "error" | "info" | "warning";
6380
6382
  id?: number | undefined;
6381
6383
  }[] | undefined;
6382
6384
  required?: boolean | undefined;
@@ -6397,7 +6399,7 @@ export declare function init(config: AuthHeroConfig): {
6397
6399
  hint?: string | undefined;
6398
6400
  messages?: {
6399
6401
  text: string;
6400
- type: "error" | "success" | "info" | "warning";
6402
+ type: "success" | "error" | "info" | "warning";
6401
6403
  id?: number | undefined;
6402
6404
  }[] | undefined;
6403
6405
  required?: boolean | undefined;
@@ -6418,7 +6420,7 @@ export declare function init(config: AuthHeroConfig): {
6418
6420
  hint?: string | undefined;
6419
6421
  messages?: {
6420
6422
  text: string;
6421
- type: "error" | "success" | "info" | "warning";
6423
+ type: "success" | "error" | "info" | "warning";
6422
6424
  id?: number | undefined;
6423
6425
  }[] | undefined;
6424
6426
  required?: boolean | undefined;
@@ -6648,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
6648
6650
  };
6649
6651
  };
6650
6652
  output: {
6651
- prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6653
+ prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6652
6654
  language: string;
6653
6655
  }[];
6654
6656
  outputFormat: "json";
@@ -6686,7 +6688,7 @@ export declare function init(config: AuthHeroConfig): {
6686
6688
  $get: {
6687
6689
  input: {
6688
6690
  param: {
6689
- prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6691
+ prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6690
6692
  language: string;
6691
6693
  };
6692
6694
  } & {
@@ -6708,7 +6710,7 @@ export declare function init(config: AuthHeroConfig): {
6708
6710
  $put: {
6709
6711
  input: {
6710
6712
  param: {
6711
- prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6713
+ prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6712
6714
  language: string;
6713
6715
  };
6714
6716
  } & {
@@ -6732,7 +6734,7 @@ export declare function init(config: AuthHeroConfig): {
6732
6734
  $delete: {
6733
6735
  input: {
6734
6736
  param: {
6735
- prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6737
+ prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6736
6738
  language: string;
6737
6739
  };
6738
6740
  } & {
@@ -7594,7 +7596,7 @@ export declare function init(config: AuthHeroConfig): {
7594
7596
  };
7595
7597
  } | {
7596
7598
  mode: "inline";
7597
- status: "error" | "success";
7599
+ status: "success" | "error";
7598
7600
  connection_id: string;
7599
7601
  connection_name: string;
7600
7602
  strategy: string;
@@ -8233,7 +8235,7 @@ export declare function init(config: AuthHeroConfig): {
8233
8235
  log_type: string;
8234
8236
  category: "user_action" | "admin_action" | "system" | "api";
8235
8237
  actor: {
8236
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8238
+ type: "user" | "client_credentials" | "api_key" | "system" | "admin";
8237
8239
  id?: string | undefined;
8238
8240
  email?: string | undefined;
8239
8241
  org_id?: string | undefined;
@@ -8541,7 +8543,7 @@ export declare function init(config: AuthHeroConfig): {
8541
8543
  created_at: string;
8542
8544
  updated_at: string;
8543
8545
  name: string;
8544
- provider: "auth0" | "cognito" | "okta" | "oidc";
8546
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8545
8547
  connection: string;
8546
8548
  enabled: boolean;
8547
8549
  credentials: {
@@ -8573,7 +8575,7 @@ export declare function init(config: AuthHeroConfig): {
8573
8575
  created_at: string;
8574
8576
  updated_at: string;
8575
8577
  name: string;
8576
- provider: "auth0" | "cognito" | "okta" | "oidc";
8578
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8577
8579
  connection: string;
8578
8580
  enabled: boolean;
8579
8581
  credentials: {
@@ -8599,7 +8601,7 @@ export declare function init(config: AuthHeroConfig): {
8599
8601
  } & {
8600
8602
  json: {
8601
8603
  name: string;
8602
- provider: "auth0" | "cognito" | "okta" | "oidc";
8604
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8603
8605
  connection: string;
8604
8606
  credentials: {
8605
8607
  domain: string;
@@ -8616,7 +8618,7 @@ export declare function init(config: AuthHeroConfig): {
8616
8618
  created_at: string;
8617
8619
  updated_at: string;
8618
8620
  name: string;
8619
- provider: "auth0" | "cognito" | "okta" | "oidc";
8621
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8620
8622
  connection: string;
8621
8623
  enabled: boolean;
8622
8624
  credentials: {
@@ -8647,7 +8649,7 @@ export declare function init(config: AuthHeroConfig): {
8647
8649
  json: {
8648
8650
  id?: string | undefined;
8649
8651
  name?: string | undefined;
8650
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8652
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8651
8653
  connection?: string | undefined;
8652
8654
  enabled?: boolean | undefined;
8653
8655
  credentials?: {
@@ -8663,7 +8665,7 @@ export declare function init(config: AuthHeroConfig): {
8663
8665
  created_at: string;
8664
8666
  updated_at: string;
8665
8667
  name: string;
8666
- provider: "auth0" | "cognito" | "okta" | "oidc";
8668
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8667
8669
  connection: string;
8668
8670
  enabled: boolean;
8669
8671
  credentials: {
@@ -8881,7 +8883,7 @@ export declare function init(config: AuthHeroConfig): {
8881
8883
  };
8882
8884
  };
8883
8885
  output: {
8884
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8886
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8885
8887
  date: string;
8886
8888
  isMobile: boolean;
8887
8889
  log_id: string;
@@ -8920,7 +8922,7 @@ export declare function init(config: AuthHeroConfig): {
8920
8922
  limit: number;
8921
8923
  length: number;
8922
8924
  logs: {
8923
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8925
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8924
8926
  date: string;
8925
8927
  isMobile: boolean;
8926
8928
  log_id: string;
@@ -8974,7 +8976,7 @@ export declare function init(config: AuthHeroConfig): {
8974
8976
  };
8975
8977
  };
8976
8978
  output: {
8977
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8979
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8978
8980
  date: string;
8979
8981
  isMobile: boolean;
8980
8982
  log_id: string;
@@ -9330,7 +9332,7 @@ export declare function init(config: AuthHeroConfig): {
9330
9332
  client_id: string;
9331
9333
  description?: string | undefined;
9332
9334
  client_secret?: string | undefined;
9333
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9335
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9334
9336
  logo_uri?: string | undefined;
9335
9337
  callbacks?: string[] | undefined;
9336
9338
  allowed_origins?: string[] | undefined;
@@ -9426,7 +9428,7 @@ export declare function init(config: AuthHeroConfig): {
9426
9428
  client_id: string;
9427
9429
  description?: string | undefined;
9428
9430
  client_secret?: string | undefined;
9429
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9431
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9430
9432
  logo_uri?: string | undefined;
9431
9433
  callbacks?: string[] | undefined;
9432
9434
  allowed_origins?: string[] | undefined;
@@ -9537,7 +9539,7 @@ export declare function init(config: AuthHeroConfig): {
9537
9539
  client_id: string;
9538
9540
  description?: string | undefined;
9539
9541
  client_secret?: string | undefined;
9540
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9542
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9541
9543
  logo_uri?: string | undefined;
9542
9544
  callbacks?: string[] | undefined;
9543
9545
  allowed_origins?: string[] | undefined;
@@ -9652,7 +9654,7 @@ export declare function init(config: AuthHeroConfig): {
9652
9654
  description?: string | undefined;
9653
9655
  global?: boolean | undefined;
9654
9656
  client_secret?: string | undefined;
9655
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9657
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9656
9658
  logo_uri?: string | undefined;
9657
9659
  is_first_party?: boolean | undefined;
9658
9660
  oidc_conformant?: boolean | undefined;
@@ -9727,7 +9729,7 @@ export declare function init(config: AuthHeroConfig): {
9727
9729
  client_id: string;
9728
9730
  description?: string | undefined;
9729
9731
  client_secret?: string | undefined;
9730
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9732
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9731
9733
  logo_uri?: string | undefined;
9732
9734
  callbacks?: string[] | undefined;
9733
9735
  allowed_origins?: string[] | undefined;
@@ -9821,7 +9823,7 @@ export declare function init(config: AuthHeroConfig): {
9821
9823
  description?: string | undefined;
9822
9824
  global?: boolean | undefined;
9823
9825
  client_secret?: string | undefined;
9824
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9826
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9825
9827
  logo_uri?: string | undefined;
9826
9828
  is_first_party?: boolean | undefined;
9827
9829
  oidc_conformant?: boolean | undefined;
@@ -9896,7 +9898,7 @@ export declare function init(config: AuthHeroConfig): {
9896
9898
  client_id: string;
9897
9899
  description?: string | undefined;
9898
9900
  client_secret?: string | undefined;
9899
- app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9901
+ app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9900
9902
  logo_uri?: string | undefined;
9901
9903
  callbacks?: string[] | undefined;
9902
9904
  allowed_origins?: string[] | undefined;
@@ -11192,7 +11194,7 @@ export declare function init(config: AuthHeroConfig): {
11192
11194
  };
11193
11195
  };
11194
11196
  output: {
11195
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11197
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11196
11198
  date: string;
11197
11199
  isMobile: boolean;
11198
11200
  log_id: string;
@@ -11231,7 +11233,7 @@ export declare function init(config: AuthHeroConfig): {
11231
11233
  limit: number;
11232
11234
  length: number;
11233
11235
  logs: {
11234
- type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11236
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11235
11237
  date: string;
11236
11238
  isMobile: boolean;
11237
11239
  log_id: string;
@@ -11546,7 +11548,7 @@ export declare function init(config: AuthHeroConfig): {
11546
11548
  };
11547
11549
  } & {
11548
11550
  json: {
11549
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11551
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11550
11552
  body: string;
11551
11553
  from: string;
11552
11554
  subject: string;
@@ -11567,7 +11569,7 @@ export declare function init(config: AuthHeroConfig): {
11567
11569
  };
11568
11570
  } & {
11569
11571
  json: {
11570
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11572
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11571
11573
  body: string;
11572
11574
  from: string;
11573
11575
  subject: string;
@@ -11579,7 +11581,7 @@ export declare function init(config: AuthHeroConfig): {
11579
11581
  };
11580
11582
  };
11581
11583
  output: {
11582
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11584
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11583
11585
  body: string;
11584
11586
  from: string;
11585
11587
  subject: string;
@@ -11602,7 +11604,7 @@ export declare function init(config: AuthHeroConfig): {
11602
11604
  };
11603
11605
  };
11604
11606
  output: {
11605
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11607
+ name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11606
11608
  body: string;
11607
11609
  subject: string;
11608
11610
  }[];
@@ -11615,7 +11617,7 @@ export declare function init(config: AuthHeroConfig): {
11615
11617
  $get: {
11616
11618
  input: {
11617
11619
  param: {
11618
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11620
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11619
11621
  };
11620
11622
  } & {
11621
11623
  header: {
@@ -11628,7 +11630,7 @@ export declare function init(config: AuthHeroConfig): {
11628
11630
  } | {
11629
11631
  input: {
11630
11632
  param: {
11631
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11633
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11632
11634
  };
11633
11635
  } & {
11634
11636
  header: {
@@ -11636,7 +11638,7 @@ export declare function init(config: AuthHeroConfig): {
11636
11638
  };
11637
11639
  };
11638
11640
  output: {
11639
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11641
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11640
11642
  body: string;
11641
11643
  from: string;
11642
11644
  subject: string;
@@ -11655,7 +11657,7 @@ export declare function init(config: AuthHeroConfig): {
11655
11657
  $put: {
11656
11658
  input: {
11657
11659
  param: {
11658
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11660
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11659
11661
  };
11660
11662
  } & {
11661
11663
  header: {
@@ -11663,7 +11665,7 @@ export declare function init(config: AuthHeroConfig): {
11663
11665
  };
11664
11666
  } & {
11665
11667
  json: {
11666
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11668
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11667
11669
  body: string;
11668
11670
  subject: string;
11669
11671
  syntax?: "liquid" | undefined;
@@ -11675,7 +11677,7 @@ export declare function init(config: AuthHeroConfig): {
11675
11677
  };
11676
11678
  };
11677
11679
  output: {
11678
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11680
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11679
11681
  body: string;
11680
11682
  from: string;
11681
11683
  subject: string;
@@ -11694,7 +11696,7 @@ export declare function init(config: AuthHeroConfig): {
11694
11696
  $patch: {
11695
11697
  input: {
11696
11698
  param: {
11697
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11699
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11698
11700
  };
11699
11701
  } & {
11700
11702
  header: {
@@ -11702,7 +11704,7 @@ export declare function init(config: AuthHeroConfig): {
11702
11704
  };
11703
11705
  } & {
11704
11706
  json: {
11705
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11707
+ template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11706
11708
  body?: string | undefined;
11707
11709
  from?: string | undefined;
11708
11710
  subject?: string | undefined;
@@ -11719,7 +11721,7 @@ export declare function init(config: AuthHeroConfig): {
11719
11721
  } | {
11720
11722
  input: {
11721
11723
  param: {
11722
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11724
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11723
11725
  };
11724
11726
  } & {
11725
11727
  header: {
@@ -11727,7 +11729,7 @@ export declare function init(config: AuthHeroConfig): {
11727
11729
  };
11728
11730
  } & {
11729
11731
  json: {
11730
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11732
+ template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11731
11733
  body?: string | undefined;
11732
11734
  from?: string | undefined;
11733
11735
  subject?: string | undefined;
@@ -11739,7 +11741,7 @@ export declare function init(config: AuthHeroConfig): {
11739
11741
  };
11740
11742
  };
11741
11743
  output: {
11742
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11744
+ template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11743
11745
  body: string;
11744
11746
  from: string;
11745
11747
  subject: string;
@@ -11758,7 +11760,7 @@ export declare function init(config: AuthHeroConfig): {
11758
11760
  $delete: {
11759
11761
  input: {
11760
11762
  param: {
11761
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11763
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11762
11764
  };
11763
11765
  } & {
11764
11766
  header: {
@@ -11771,7 +11773,7 @@ export declare function init(config: AuthHeroConfig): {
11771
11773
  } | {
11772
11774
  input: {
11773
11775
  param: {
11774
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11776
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11775
11777
  };
11776
11778
  } & {
11777
11779
  header: {
@@ -11788,7 +11790,7 @@ export declare function init(config: AuthHeroConfig): {
11788
11790
  $post: {
11789
11791
  input: {
11790
11792
  param: {
11791
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11793
+ templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11792
11794
  };
11793
11795
  } & {
11794
11796
  header: {
@@ -12073,7 +12075,7 @@ export declare function init(config: AuthHeroConfig): {
12073
12075
  primary: boolean;
12074
12076
  status: "disabled" | "pending" | "ready" | "pending_verification";
12075
12077
  verification_method?: "txt" | undefined;
12076
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12078
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12077
12079
  domain_metadata?: {
12078
12080
  [x: string]: string;
12079
12081
  } | undefined;
@@ -12114,7 +12116,7 @@ export declare function init(config: AuthHeroConfig): {
12114
12116
  primary: boolean;
12115
12117
  status: "disabled" | "pending" | "ready" | "pending_verification";
12116
12118
  verification_method?: "txt" | undefined;
12117
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12119
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12118
12120
  domain_metadata?: {
12119
12121
  [x: string]: string;
12120
12122
  } | undefined;
@@ -12167,7 +12169,7 @@ export declare function init(config: AuthHeroConfig): {
12167
12169
  } & {
12168
12170
  json: {
12169
12171
  tls_policy?: "recommended" | undefined;
12170
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12172
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12171
12173
  domain_metadata?: Record<string, string> | undefined;
12172
12174
  };
12173
12175
  };
@@ -12178,7 +12180,7 @@ export declare function init(config: AuthHeroConfig): {
12178
12180
  primary: boolean;
12179
12181
  status: "disabled" | "pending" | "ready" | "pending_verification";
12180
12182
  verification_method?: "txt" | undefined;
12181
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12183
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12182
12184
  domain_metadata?: {
12183
12185
  [x: string]: string;
12184
12186
  } | undefined;
@@ -12214,7 +12216,7 @@ export declare function init(config: AuthHeroConfig): {
12214
12216
  custom_domain_id?: string | undefined;
12215
12217
  verification_method?: "txt" | undefined;
12216
12218
  tls_policy?: "recommended" | undefined;
12217
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12219
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12218
12220
  domain_metadata?: Record<string, string> | undefined;
12219
12221
  };
12220
12222
  };
@@ -12225,7 +12227,7 @@ export declare function init(config: AuthHeroConfig): {
12225
12227
  primary: boolean;
12226
12228
  status: "disabled" | "pending" | "ready" | "pending_verification";
12227
12229
  verification_method?: "txt" | undefined;
12228
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12230
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12229
12231
  domain_metadata?: {
12230
12232
  [x: string]: string;
12231
12233
  } | undefined;
@@ -12271,7 +12273,7 @@ export declare function init(config: AuthHeroConfig): {
12271
12273
  primary: boolean;
12272
12274
  status: "disabled" | "pending" | "ready" | "pending_verification";
12273
12275
  verification_method?: "txt" | undefined;
12274
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12276
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12275
12277
  domain_metadata?: {
12276
12278
  [x: string]: string;
12277
12279
  } | undefined;
@@ -12312,7 +12314,7 @@ export declare function init(config: AuthHeroConfig): {
12312
12314
  primary: boolean;
12313
12315
  status: "disabled" | "pending" | "ready" | "pending_verification";
12314
12316
  verification_method?: "txt" | undefined;
12315
- custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12317
+ custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12316
12318
  domain_metadata?: {
12317
12319
  [x: string]: string;
12318
12320
  } | undefined;
@@ -12358,7 +12360,7 @@ export declare function init(config: AuthHeroConfig): {
12358
12360
  base_focus_color: string;
12359
12361
  base_hover_color: string;
12360
12362
  body_text: string;
12361
- captcha_widget_theme: "auto" | "light" | "dark";
12363
+ captcha_widget_theme: "dark" | "light" | "auto";
12362
12364
  error: string;
12363
12365
  header: string;
12364
12366
  icons: string;
@@ -12448,7 +12450,7 @@ export declare function init(config: AuthHeroConfig): {
12448
12450
  base_focus_color: string;
12449
12451
  base_hover_color: string;
12450
12452
  body_text: string;
12451
- captcha_widget_theme: "auto" | "light" | "dark";
12453
+ captcha_widget_theme: "dark" | "light" | "auto";
12452
12454
  error: string;
12453
12455
  header: string;
12454
12456
  icons: string;
@@ -12527,7 +12529,7 @@ export declare function init(config: AuthHeroConfig): {
12527
12529
  base_focus_color: string;
12528
12530
  base_hover_color: string;
12529
12531
  body_text: string;
12530
- captcha_widget_theme: "auto" | "light" | "dark";
12532
+ captcha_widget_theme: "dark" | "light" | "auto";
12531
12533
  error: string;
12532
12534
  header: string;
12533
12535
  icons: string;
@@ -12617,7 +12619,7 @@ export declare function init(config: AuthHeroConfig): {
12617
12619
  font?: {
12618
12620
  url: string;
12619
12621
  } | undefined;
12620
- dark_mode?: "auto" | "light" | "dark" | undefined;
12622
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12621
12623
  };
12622
12624
  outputFormat: "json";
12623
12625
  status: 200;
@@ -12647,7 +12649,7 @@ export declare function init(config: AuthHeroConfig): {
12647
12649
  font?: {
12648
12650
  url: string;
12649
12651
  } | undefined;
12650
- dark_mode?: "auto" | "light" | "dark" | undefined;
12652
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12651
12653
  };
12652
12654
  };
12653
12655
  output: {
@@ -12666,7 +12668,7 @@ export declare function init(config: AuthHeroConfig): {
12666
12668
  font?: {
12667
12669
  url: string;
12668
12670
  } | undefined;
12669
- dark_mode?: "auto" | "light" | "dark" | undefined;
12671
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12670
12672
  };
12671
12673
  outputFormat: "json";
12672
12674
  status: 200;
@@ -12917,7 +12919,7 @@ export declare function init(config: AuthHeroConfig): {
12917
12919
  logs: {
12918
12920
  action_name: string;
12919
12921
  lines: {
12920
- level: "error" | "log" | "info" | "warn" | "debug";
12922
+ level: "log" | "error" | "info" | "debug" | "warn";
12921
12923
  message: string;
12922
12924
  }[];
12923
12925
  }[];
@@ -13584,7 +13586,7 @@ export declare function init(config: AuthHeroConfig): {
13584
13586
  args: import("hono/utils/types").JSONValue[];
13585
13587
  }[];
13586
13588
  logs: {
13587
- level: "error" | "log" | "info" | "warn" | "debug";
13589
+ level: "log" | "error" | "info" | "debug" | "warn";
13588
13590
  message: string;
13589
13591
  }[];
13590
13592
  error?: string | undefined;
@@ -14028,7 +14030,7 @@ export declare function init(config: AuthHeroConfig): {
14028
14030
  client_id: string;
14029
14031
  redirect_url?: string | undefined;
14030
14032
  login_hint?: string | undefined;
14031
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14033
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14032
14034
  };
14033
14035
  };
14034
14036
  output: {};
@@ -14040,7 +14042,7 @@ export declare function init(config: AuthHeroConfig): {
14040
14042
  client_id: string;
14041
14043
  redirect_url?: string | undefined;
14042
14044
  login_hint?: string | undefined;
14043
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14045
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14044
14046
  };
14045
14047
  };
14046
14048
  output: {
@@ -14317,19 +14319,19 @@ export declare function init(config: AuthHeroConfig): {
14317
14319
  email: string;
14318
14320
  send: "code" | "link";
14319
14321
  authParams: {
14322
+ state?: string | undefined;
14320
14323
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14321
14324
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14322
14325
  scope?: string | undefined;
14323
14326
  username?: string | undefined;
14324
- audience?: string | undefined;
14325
- state?: string | undefined;
14326
- prompt?: string | undefined;
14327
- act_as?: string | undefined;
14328
- redirect_uri?: string | undefined;
14329
- organization?: string | undefined;
14330
14327
  nonce?: string | undefined;
14331
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14328
+ organization?: string | undefined;
14332
14329
  code_challenge?: string | undefined;
14330
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14331
+ redirect_uri?: string | undefined;
14332
+ act_as?: string | undefined;
14333
+ audience?: string | undefined;
14334
+ prompt?: string | undefined;
14333
14335
  ui_locales?: string | undefined;
14334
14336
  max_age?: number | undefined;
14335
14337
  acr_values?: string | undefined;
@@ -14353,19 +14355,19 @@ export declare function init(config: AuthHeroConfig): {
14353
14355
  phone_number: string;
14354
14356
  send: "code" | "link";
14355
14357
  authParams: {
14358
+ state?: string | undefined;
14356
14359
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14357
14360
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14358
14361
  scope?: string | undefined;
14359
14362
  username?: string | undefined;
14360
- audience?: string | undefined;
14361
- state?: string | undefined;
14362
- prompt?: string | undefined;
14363
- act_as?: string | undefined;
14364
- redirect_uri?: string | undefined;
14365
- organization?: string | undefined;
14366
14363
  nonce?: string | undefined;
14367
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14364
+ organization?: string | undefined;
14368
14365
  code_challenge?: string | undefined;
14366
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14367
+ redirect_uri?: string | undefined;
14368
+ act_as?: string | undefined;
14369
+ audience?: string | undefined;
14370
+ prompt?: string | undefined;
14369
14371
  ui_locales?: string | undefined;
14370
14372
  max_age?: number | undefined;
14371
14373
  acr_values?: string | undefined;
@@ -14497,14 +14499,14 @@ export declare function init(config: AuthHeroConfig): {
14497
14499
  input: {
14498
14500
  form: {
14499
14501
  token: string;
14500
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14502
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14501
14503
  client_id?: string | undefined;
14502
14504
  client_secret?: string | undefined;
14503
14505
  };
14504
14506
  } & {
14505
14507
  json: {
14506
14508
  token: string;
14507
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14509
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14508
14510
  client_id?: string | undefined;
14509
14511
  client_secret?: string | undefined;
14510
14512
  };
@@ -14516,14 +14518,14 @@ export declare function init(config: AuthHeroConfig): {
14516
14518
  input: {
14517
14519
  form: {
14518
14520
  token: string;
14519
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14521
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14520
14522
  client_id?: string | undefined;
14521
14523
  client_secret?: string | undefined;
14522
14524
  };
14523
14525
  } & {
14524
14526
  json: {
14525
14527
  token: string;
14526
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14528
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14527
14529
  client_id?: string | undefined;
14528
14530
  client_secret?: string | undefined;
14529
14531
  };
@@ -14538,14 +14540,14 @@ export declare function init(config: AuthHeroConfig): {
14538
14540
  input: {
14539
14541
  form: {
14540
14542
  token: string;
14541
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14543
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14542
14544
  client_id?: string | undefined;
14543
14545
  client_secret?: string | undefined;
14544
14546
  };
14545
14547
  } & {
14546
14548
  json: {
14547
14549
  token: string;
14548
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14550
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14549
14551
  client_id?: string | undefined;
14550
14552
  client_secret?: string | undefined;
14551
14553
  };
@@ -15081,7 +15083,7 @@ export declare function init(config: AuthHeroConfig): {
15081
15083
  output: {
15082
15084
  keys: {
15083
15085
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
15084
- kty: "RSA" | "EC" | "oct";
15086
+ kty: "EC" | "RSA" | "oct";
15085
15087
  kid?: string | undefined;
15086
15088
  use?: "sig" | "enc" | undefined;
15087
15089
  n?: string | undefined;
@@ -16272,7 +16274,7 @@ export declare function init(config: AuthHeroConfig): {
16272
16274
  $get: {
16273
16275
  input: {
16274
16276
  param: {
16275
- 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";
16277
+ screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
16276
16278
  };
16277
16279
  } & {
16278
16280
  query: {
@@ -16288,7 +16290,7 @@ export declare function init(config: AuthHeroConfig): {
16288
16290
  } | {
16289
16291
  input: {
16290
16292
  param: {
16291
- 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";
16293
+ screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
16292
16294
  };
16293
16295
  } & {
16294
16296
  query: {
@@ -16304,7 +16306,7 @@ export declare function init(config: AuthHeroConfig): {
16304
16306
  } | {
16305
16307
  input: {
16306
16308
  param: {
16307
- 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";
16309
+ screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
16308
16310
  };
16309
16311
  } & {
16310
16312
  query: {
@@ -16324,7 +16326,7 @@ export declare function init(config: AuthHeroConfig): {
16324
16326
  $post: {
16325
16327
  input: {
16326
16328
  param: {
16327
- 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";
16329
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
16328
16330
  };
16329
16331
  } & {
16330
16332
  query: {
@@ -16342,7 +16344,7 @@ export declare function init(config: AuthHeroConfig): {
16342
16344
  } | {
16343
16345
  input: {
16344
16346
  param: {
16345
- 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";
16347
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
16346
16348
  };
16347
16349
  } & {
16348
16350
  query: {
@@ -16360,7 +16362,7 @@ export declare function init(config: AuthHeroConfig): {
16360
16362
  } | {
16361
16363
  input: {
16362
16364
  param: {
16363
- 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";
16365
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
16364
16366
  };
16365
16367
  } & {
16366
16368
  query: {