authhero 8.22.0 → 8.22.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +142 -142
  3. package/dist/authhero.d.ts +285 -285
  4. package/dist/authhero.mjs +25982 -21381
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +7 -7
  7. package/dist/types/index.d.ts +285 -285
  8. package/dist/types/routes/auth-api/account.d.ts +2 -2
  9. package/dist/types/routes/auth-api/authorize.d.ts +14 -14
  10. package/dist/types/routes/auth-api/index.d.ts +58 -58
  11. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  12. package/dist/types/routes/auth-api/passwordless.d.ts +20 -20
  13. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  14. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  15. package/dist/types/routes/auth-api/token.d.ts +10 -10
  16. package/dist/types/routes/auth-api/well-known.d.ts +2 -2
  17. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  18. package/dist/types/routes/management-api/actions.d.ts +1 -1
  19. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  20. package/dist/types/routes/management-api/branding.d.ts +9 -9
  21. package/dist/types/routes/management-api/clients.d.ts +16 -16
  22. package/dist/types/routes/management-api/connections.d.ts +21 -21
  23. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  24. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  25. package/dist/types/routes/management-api/flows.d.ts +7 -7
  26. package/dist/types/routes/management-api/forms.d.ts +126 -126
  27. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  28. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  29. package/dist/types/routes/management-api/index.d.ts +242 -242
  30. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  31. package/dist/types/routes/management-api/logs.d.ts +4 -4
  32. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  33. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  34. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  35. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  36. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  37. package/dist/types/routes/management-api/themes.d.ts +6 -6
  38. package/dist/types/routes/management-api/users.d.ts +2 -2
  39. package/dist/types/routes/universal-login/common.d.ts +14 -14
  40. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  41. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  42. package/dist/types/routes/universal-login/index.d.ts +2 -2
  43. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  44. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  45. package/dist/types/utils/crypto.d.ts +3 -0
  46. package/dist/types/utils/jwks.d.ts +4 -4
  47. package/dist/types/utils/jwt.d.ts +29 -0
  48. package/dist/types/utils/request-origin.d.ts +6 -0
  49. package/dist/types/utils/totp.d.ts +10 -0
  50. package/package.json +6 -7
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8
8
  $get: {
9
9
  input: {
10
10
  query: {
11
- include_password_hashes?: "false" | "true" | undefined;
12
- gzip?: "false" | "true" | undefined;
11
+ include_password_hashes?: "true" | "false" | undefined;
12
+ gzip?: "true" | "false" | undefined;
13
13
  };
14
14
  } & {
15
15
  header: {
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
22
22
  } | {
23
23
  input: {
24
24
  query: {
25
- include_password_hashes?: "false" | "true" | undefined;
26
- gzip?: "false" | "true" | undefined;
25
+ include_password_hashes?: "true" | "false" | undefined;
26
+ gzip?: "true" | "false" | undefined;
27
27
  };
28
28
  } & {
29
29
  header: {
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
42
42
  $post: {
43
43
  input: {
44
44
  query: {
45
- include_password_hashes?: "false" | "true" | undefined;
45
+ include_password_hashes?: "true" | "false" | undefined;
46
46
  };
47
47
  } & {
48
48
  header: {
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
96
96
  };
97
97
  } & {
98
98
  json: {
99
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
99
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
100
100
  phone_number?: string | undefined;
101
101
  totp_secret?: string | undefined;
102
102
  credential_id?: string | undefined;
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
236
236
  };
237
237
  };
238
238
  output: {
239
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
239
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
240
240
  enabled: boolean;
241
241
  trial_expired?: boolean | undefined;
242
242
  }[];
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
391
391
  $get: {
392
392
  input: {
393
393
  param: {
394
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
394
+ factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
395
395
  };
396
396
  } & {
397
397
  header: {
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
399
399
  };
400
400
  };
401
401
  output: {
402
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
402
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
403
403
  enabled: boolean;
404
404
  trial_expired?: boolean | undefined;
405
405
  };
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
412
412
  $put: {
413
413
  input: {
414
414
  param: {
415
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
415
+ factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
416
416
  };
417
417
  } & {
418
418
  header: {
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
424
424
  };
425
425
  };
426
426
  output: {
427
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
427
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
428
428
  enabled: boolean;
429
429
  trial_expired?: boolean | undefined;
430
430
  };
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1391
1391
  };
1392
1392
  } & {
1393
1393
  json: {
1394
- assign_membership_on_login?: boolean | undefined;
1395
1394
  show_as_button?: boolean | undefined;
1395
+ assign_membership_on_login?: boolean | undefined;
1396
1396
  is_signup_enabled?: boolean | undefined;
1397
1397
  };
1398
1398
  };
@@ -2061,7 +2061,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2061
2061
  type: "REDIRECT";
2062
2062
  action: "REDIRECT_USER";
2063
2063
  params: {
2064
- target: "custom" | "change-email" | "account";
2064
+ target: "custom" | "account" | "change-email";
2065
2065
  custom_url?: string | undefined;
2066
2066
  };
2067
2067
  alias?: string | undefined;
@@ -2114,7 +2114,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2114
2114
  type: "REDIRECT";
2115
2115
  action: "REDIRECT_USER";
2116
2116
  params: {
2117
- target: "custom" | "change-email" | "account";
2117
+ target: "custom" | "account" | "change-email";
2118
2118
  custom_url?: string | undefined;
2119
2119
  };
2120
2120
  alias?: string | undefined;
@@ -2183,7 +2183,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2183
2183
  type: "REDIRECT";
2184
2184
  action: "REDIRECT_USER";
2185
2185
  params: {
2186
- target: "custom" | "change-email" | "account";
2186
+ target: "custom" | "account" | "change-email";
2187
2187
  custom_url?: string | undefined;
2188
2188
  };
2189
2189
  alias?: string | undefined;
@@ -2264,7 +2264,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2264
2264
  type: "REDIRECT";
2265
2265
  action: "REDIRECT_USER";
2266
2266
  params: {
2267
- target: "custom" | "change-email" | "account";
2267
+ target: "custom" | "account" | "change-email";
2268
2268
  custom_url?: string | undefined;
2269
2269
  };
2270
2270
  alias?: string | undefined;
@@ -2312,7 +2312,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2312
2312
  type: "REDIRECT";
2313
2313
  action: "REDIRECT_USER";
2314
2314
  params: {
2315
- target: "custom" | "change-email" | "account";
2315
+ target: "custom" | "account" | "change-email";
2316
2316
  custom_url?: string | undefined;
2317
2317
  };
2318
2318
  alias?: string | undefined;
@@ -2372,7 +2372,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2372
2372
  type: "REDIRECT";
2373
2373
  action: "REDIRECT_USER";
2374
2374
  params: {
2375
- target: "custom" | "change-email" | "account";
2375
+ target: "custom" | "account" | "change-email";
2376
2376
  custom_url?: string | undefined;
2377
2377
  };
2378
2378
  alias?: string | undefined;
@@ -2420,7 +2420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2420
2420
  type: "REDIRECT";
2421
2421
  action: "REDIRECT_USER";
2422
2422
  params: {
2423
- target: "custom" | "change-email" | "account";
2423
+ target: "custom" | "account" | "change-email";
2424
2424
  custom_url?: string | undefined;
2425
2425
  };
2426
2426
  alias?: string | undefined;
@@ -2638,7 +2638,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2638
2638
  hint?: string | undefined;
2639
2639
  messages?: {
2640
2640
  text: string;
2641
- type: "error" | "success" | "info" | "warning";
2641
+ type: "success" | "error" | "info" | "warning";
2642
2642
  id?: number | undefined;
2643
2643
  }[] | undefined;
2644
2644
  required?: boolean | undefined;
@@ -2656,7 +2656,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2656
2656
  hint?: string | undefined;
2657
2657
  messages?: {
2658
2658
  text: string;
2659
- type: "error" | "success" | "info" | "warning";
2659
+ type: "success" | "error" | "info" | "warning";
2660
2660
  id?: number | undefined;
2661
2661
  }[] | undefined;
2662
2662
  required?: boolean | undefined;
@@ -2680,7 +2680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2680
2680
  hint?: string | undefined;
2681
2681
  messages?: {
2682
2682
  text: string;
2683
- type: "error" | "success" | "info" | "warning";
2683
+ type: "success" | "error" | "info" | "warning";
2684
2684
  id?: number | undefined;
2685
2685
  }[] | undefined;
2686
2686
  required?: boolean | undefined;
@@ -2704,7 +2704,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2704
2704
  hint?: string | undefined;
2705
2705
  messages?: {
2706
2706
  text: string;
2707
- type: "error" | "success" | "info" | "warning";
2707
+ type: "success" | "error" | "info" | "warning";
2708
2708
  id?: number | undefined;
2709
2709
  }[] | undefined;
2710
2710
  required?: boolean | undefined;
@@ -2728,7 +2728,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2728
2728
  hint?: string | undefined;
2729
2729
  messages?: {
2730
2730
  text: string;
2731
- type: "error" | "success" | "info" | "warning";
2731
+ type: "success" | "error" | "info" | "warning";
2732
2732
  id?: number | undefined;
2733
2733
  }[] | undefined;
2734
2734
  required?: boolean | undefined;
@@ -2757,7 +2757,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2757
2757
  hint?: string | undefined;
2758
2758
  messages?: {
2759
2759
  text: string;
2760
- type: "error" | "success" | "info" | "warning";
2760
+ type: "success" | "error" | "info" | "warning";
2761
2761
  id?: number | undefined;
2762
2762
  }[] | undefined;
2763
2763
  required?: boolean | undefined;
@@ -2772,7 +2772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2772
2772
  hint?: string | undefined;
2773
2773
  messages?: {
2774
2774
  text: string;
2775
- type: "error" | "success" | "info" | "warning";
2775
+ type: "success" | "error" | "info" | "warning";
2776
2776
  id?: number | undefined;
2777
2777
  }[] | undefined;
2778
2778
  required?: boolean | undefined;
@@ -2793,7 +2793,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2793
2793
  hint?: string | undefined;
2794
2794
  messages?: {
2795
2795
  text: string;
2796
- type: "error" | "success" | "info" | "warning";
2796
+ type: "success" | "error" | "info" | "warning";
2797
2797
  id?: number | undefined;
2798
2798
  }[] | undefined;
2799
2799
  required?: boolean | undefined;
@@ -2818,7 +2818,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2818
2818
  hint?: string | undefined;
2819
2819
  messages?: {
2820
2820
  text: string;
2821
- type: "error" | "success" | "info" | "warning";
2821
+ type: "success" | "error" | "info" | "warning";
2822
2822
  id?: number | undefined;
2823
2823
  }[] | undefined;
2824
2824
  required?: boolean | undefined;
@@ -2837,7 +2837,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2837
2837
  hint?: string | undefined;
2838
2838
  messages?: {
2839
2839
  text: string;
2840
- type: "error" | "success" | "info" | "warning";
2840
+ type: "success" | "error" | "info" | "warning";
2841
2841
  id?: number | undefined;
2842
2842
  }[] | undefined;
2843
2843
  required?: boolean | undefined;
@@ -2857,7 +2857,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2857
2857
  hint?: string | undefined;
2858
2858
  messages?: {
2859
2859
  text: string;
2860
- type: "error" | "success" | "info" | "warning";
2860
+ type: "success" | "error" | "info" | "warning";
2861
2861
  id?: number | undefined;
2862
2862
  }[] | undefined;
2863
2863
  required?: boolean | undefined;
@@ -2876,7 +2876,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2876
2876
  hint?: string | undefined;
2877
2877
  messages?: {
2878
2878
  text: string;
2879
- type: "error" | "success" | "info" | "warning";
2879
+ type: "success" | "error" | "info" | "warning";
2880
2880
  id?: number | undefined;
2881
2881
  }[] | undefined;
2882
2882
  required?: boolean | undefined;
@@ -2898,7 +2898,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2898
2898
  hint?: string | undefined;
2899
2899
  messages?: {
2900
2900
  text: string;
2901
- type: "error" | "success" | "info" | "warning";
2901
+ type: "success" | "error" | "info" | "warning";
2902
2902
  id?: number | undefined;
2903
2903
  }[] | undefined;
2904
2904
  required?: boolean | undefined;
@@ -2920,7 +2920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2920
2920
  hint?: string | undefined;
2921
2921
  messages?: {
2922
2922
  text: string;
2923
- type: "error" | "success" | "info" | "warning";
2923
+ type: "success" | "error" | "info" | "warning";
2924
2924
  id?: number | undefined;
2925
2925
  }[] | undefined;
2926
2926
  required?: boolean | undefined;
@@ -2939,7 +2939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2939
2939
  hint?: string | undefined;
2940
2940
  messages?: {
2941
2941
  text: string;
2942
- type: "error" | "success" | "info" | "warning";
2942
+ type: "success" | "error" | "info" | "warning";
2943
2943
  id?: number | undefined;
2944
2944
  }[] | undefined;
2945
2945
  required?: boolean | undefined;
@@ -2964,7 +2964,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2964
2964
  hint?: string | undefined;
2965
2965
  messages?: {
2966
2966
  text: string;
2967
- type: "error" | "success" | "info" | "warning";
2967
+ type: "success" | "error" | "info" | "warning";
2968
2968
  id?: number | undefined;
2969
2969
  }[] | undefined;
2970
2970
  required?: boolean | undefined;
@@ -2985,7 +2985,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2985
2985
  hint?: string | undefined;
2986
2986
  messages?: {
2987
2987
  text: string;
2988
- type: "error" | "success" | "info" | "warning";
2988
+ type: "success" | "error" | "info" | "warning";
2989
2989
  id?: number | undefined;
2990
2990
  }[] | undefined;
2991
2991
  required?: boolean | undefined;
@@ -3006,7 +3006,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3006
3006
  hint?: string | undefined;
3007
3007
  messages?: {
3008
3008
  text: string;
3009
- type: "error" | "success" | "info" | "warning";
3009
+ type: "success" | "error" | "info" | "warning";
3010
3010
  id?: number | undefined;
3011
3011
  }[] | undefined;
3012
3012
  required?: boolean | undefined;
@@ -3239,7 +3239,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3239
3239
  hint?: string | undefined;
3240
3240
  messages?: {
3241
3241
  text: string;
3242
- type: "error" | "success" | "info" | "warning";
3242
+ type: "success" | "error" | "info" | "warning";
3243
3243
  id?: number | undefined;
3244
3244
  }[] | undefined;
3245
3245
  required?: boolean | undefined;
@@ -3257,7 +3257,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3257
3257
  hint?: string | undefined;
3258
3258
  messages?: {
3259
3259
  text: string;
3260
- type: "error" | "success" | "info" | "warning";
3260
+ type: "success" | "error" | "info" | "warning";
3261
3261
  id?: number | undefined;
3262
3262
  }[] | undefined;
3263
3263
  required?: boolean | undefined;
@@ -3281,7 +3281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3281
3281
  hint?: string | undefined;
3282
3282
  messages?: {
3283
3283
  text: string;
3284
- type: "error" | "success" | "info" | "warning";
3284
+ type: "success" | "error" | "info" | "warning";
3285
3285
  id?: number | undefined;
3286
3286
  }[] | undefined;
3287
3287
  required?: boolean | undefined;
@@ -3305,7 +3305,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3305
3305
  hint?: string | undefined;
3306
3306
  messages?: {
3307
3307
  text: string;
3308
- type: "error" | "success" | "info" | "warning";
3308
+ type: "success" | "error" | "info" | "warning";
3309
3309
  id?: number | undefined;
3310
3310
  }[] | undefined;
3311
3311
  required?: boolean | undefined;
@@ -3329,7 +3329,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3329
3329
  hint?: string | undefined;
3330
3330
  messages?: {
3331
3331
  text: string;
3332
- type: "error" | "success" | "info" | "warning";
3332
+ type: "success" | "error" | "info" | "warning";
3333
3333
  id?: number | undefined;
3334
3334
  }[] | undefined;
3335
3335
  required?: boolean | undefined;
@@ -3358,7 +3358,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3358
3358
  hint?: string | undefined;
3359
3359
  messages?: {
3360
3360
  text: string;
3361
- type: "error" | "success" | "info" | "warning";
3361
+ type: "success" | "error" | "info" | "warning";
3362
3362
  id?: number | undefined;
3363
3363
  }[] | undefined;
3364
3364
  required?: boolean | undefined;
@@ -3373,7 +3373,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3373
3373
  hint?: string | undefined;
3374
3374
  messages?: {
3375
3375
  text: string;
3376
- type: "error" | "success" | "info" | "warning";
3376
+ type: "success" | "error" | "info" | "warning";
3377
3377
  id?: number | undefined;
3378
3378
  }[] | undefined;
3379
3379
  required?: boolean | undefined;
@@ -3394,7 +3394,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3394
3394
  hint?: string | undefined;
3395
3395
  messages?: {
3396
3396
  text: string;
3397
- type: "error" | "success" | "info" | "warning";
3397
+ type: "success" | "error" | "info" | "warning";
3398
3398
  id?: number | undefined;
3399
3399
  }[] | undefined;
3400
3400
  required?: boolean | undefined;
@@ -3419,7 +3419,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3419
3419
  hint?: string | undefined;
3420
3420
  messages?: {
3421
3421
  text: string;
3422
- type: "error" | "success" | "info" | "warning";
3422
+ type: "success" | "error" | "info" | "warning";
3423
3423
  id?: number | undefined;
3424
3424
  }[] | undefined;
3425
3425
  required?: boolean | undefined;
@@ -3438,7 +3438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3438
3438
  hint?: string | undefined;
3439
3439
  messages?: {
3440
3440
  text: string;
3441
- type: "error" | "success" | "info" | "warning";
3441
+ type: "success" | "error" | "info" | "warning";
3442
3442
  id?: number | undefined;
3443
3443
  }[] | undefined;
3444
3444
  required?: boolean | undefined;
@@ -3458,7 +3458,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3458
3458
  hint?: string | undefined;
3459
3459
  messages?: {
3460
3460
  text: string;
3461
- type: "error" | "success" | "info" | "warning";
3461
+ type: "success" | "error" | "info" | "warning";
3462
3462
  id?: number | undefined;
3463
3463
  }[] | undefined;
3464
3464
  required?: boolean | undefined;
@@ -3477,7 +3477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3477
3477
  hint?: string | undefined;
3478
3478
  messages?: {
3479
3479
  text: string;
3480
- type: "error" | "success" | "info" | "warning";
3480
+ type: "success" | "error" | "info" | "warning";
3481
3481
  id?: number | undefined;
3482
3482
  }[] | undefined;
3483
3483
  required?: boolean | undefined;
@@ -3499,7 +3499,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3499
3499
  hint?: string | undefined;
3500
3500
  messages?: {
3501
3501
  text: string;
3502
- type: "error" | "success" | "info" | "warning";
3502
+ type: "success" | "error" | "info" | "warning";
3503
3503
  id?: number | undefined;
3504
3504
  }[] | undefined;
3505
3505
  required?: boolean | undefined;
@@ -3521,7 +3521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3521
3521
  hint?: string | undefined;
3522
3522
  messages?: {
3523
3523
  text: string;
3524
- type: "error" | "success" | "info" | "warning";
3524
+ type: "success" | "error" | "info" | "warning";
3525
3525
  id?: number | undefined;
3526
3526
  }[] | undefined;
3527
3527
  required?: boolean | undefined;
@@ -3540,7 +3540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3540
3540
  hint?: string | undefined;
3541
3541
  messages?: {
3542
3542
  text: string;
3543
- type: "error" | "success" | "info" | "warning";
3543
+ type: "success" | "error" | "info" | "warning";
3544
3544
  id?: number | undefined;
3545
3545
  }[] | undefined;
3546
3546
  required?: boolean | undefined;
@@ -3565,7 +3565,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3565
3565
  hint?: string | undefined;
3566
3566
  messages?: {
3567
3567
  text: string;
3568
- type: "error" | "success" | "info" | "warning";
3568
+ type: "success" | "error" | "info" | "warning";
3569
3569
  id?: number | undefined;
3570
3570
  }[] | undefined;
3571
3571
  required?: boolean | undefined;
@@ -3586,7 +3586,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3586
3586
  hint?: string | undefined;
3587
3587
  messages?: {
3588
3588
  text: string;
3589
- type: "error" | "success" | "info" | "warning";
3589
+ type: "success" | "error" | "info" | "warning";
3590
3590
  id?: number | undefined;
3591
3591
  }[] | undefined;
3592
3592
  required?: boolean | undefined;
@@ -3607,7 +3607,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3607
3607
  hint?: string | undefined;
3608
3608
  messages?: {
3609
3609
  text: string;
3610
- type: "error" | "success" | "info" | "warning";
3610
+ type: "success" | "error" | "info" | "warning";
3611
3611
  id?: number | undefined;
3612
3612
  }[] | undefined;
3613
3613
  required?: boolean | undefined;
@@ -3856,7 +3856,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3856
3856
  hint?: string | undefined;
3857
3857
  messages?: {
3858
3858
  text: string;
3859
- type: "error" | "success" | "info" | "warning";
3859
+ type: "success" | "error" | "info" | "warning";
3860
3860
  id?: number | undefined;
3861
3861
  }[] | undefined;
3862
3862
  required?: boolean | undefined;
@@ -3874,7 +3874,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3874
3874
  hint?: string | undefined;
3875
3875
  messages?: {
3876
3876
  text: string;
3877
- type: "error" | "success" | "info" | "warning";
3877
+ type: "success" | "error" | "info" | "warning";
3878
3878
  id?: number | undefined;
3879
3879
  }[] | undefined;
3880
3880
  required?: boolean | undefined;
@@ -3898,7 +3898,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3898
3898
  hint?: string | undefined;
3899
3899
  messages?: {
3900
3900
  text: string;
3901
- type: "error" | "success" | "info" | "warning";
3901
+ type: "success" | "error" | "info" | "warning";
3902
3902
  id?: number | undefined;
3903
3903
  }[] | undefined;
3904
3904
  required?: boolean | undefined;
@@ -3922,7 +3922,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3922
3922
  hint?: string | undefined;
3923
3923
  messages?: {
3924
3924
  text: string;
3925
- type: "error" | "success" | "info" | "warning";
3925
+ type: "success" | "error" | "info" | "warning";
3926
3926
  id?: number | undefined;
3927
3927
  }[] | undefined;
3928
3928
  required?: boolean | undefined;
@@ -3946,7 +3946,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3946
3946
  hint?: string | undefined;
3947
3947
  messages?: {
3948
3948
  text: string;
3949
- type: "error" | "success" | "info" | "warning";
3949
+ type: "success" | "error" | "info" | "warning";
3950
3950
  id?: number | undefined;
3951
3951
  }[] | undefined;
3952
3952
  required?: boolean | undefined;
@@ -3975,7 +3975,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3975
3975
  hint?: string | undefined;
3976
3976
  messages?: {
3977
3977
  text: string;
3978
- type: "error" | "success" | "info" | "warning";
3978
+ type: "success" | "error" | "info" | "warning";
3979
3979
  id?: number | undefined;
3980
3980
  }[] | undefined;
3981
3981
  required?: boolean | undefined;
@@ -3990,7 +3990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3990
3990
  hint?: string | undefined;
3991
3991
  messages?: {
3992
3992
  text: string;
3993
- type: "error" | "success" | "info" | "warning";
3993
+ type: "success" | "error" | "info" | "warning";
3994
3994
  id?: number | undefined;
3995
3995
  }[] | undefined;
3996
3996
  required?: boolean | undefined;
@@ -4011,7 +4011,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4011
4011
  hint?: string | undefined;
4012
4012
  messages?: {
4013
4013
  text: string;
4014
- type: "error" | "success" | "info" | "warning";
4014
+ type: "success" | "error" | "info" | "warning";
4015
4015
  id?: number | undefined;
4016
4016
  }[] | undefined;
4017
4017
  required?: boolean | undefined;
@@ -4036,7 +4036,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4036
4036
  hint?: string | undefined;
4037
4037
  messages?: {
4038
4038
  text: string;
4039
- type: "error" | "success" | "info" | "warning";
4039
+ type: "success" | "error" | "info" | "warning";
4040
4040
  id?: number | undefined;
4041
4041
  }[] | undefined;
4042
4042
  required?: boolean | undefined;
@@ -4055,7 +4055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4055
4055
  hint?: string | undefined;
4056
4056
  messages?: {
4057
4057
  text: string;
4058
- type: "error" | "success" | "info" | "warning";
4058
+ type: "success" | "error" | "info" | "warning";
4059
4059
  id?: number | undefined;
4060
4060
  }[] | undefined;
4061
4061
  required?: boolean | undefined;
@@ -4075,7 +4075,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4075
4075
  hint?: string | undefined;
4076
4076
  messages?: {
4077
4077
  text: string;
4078
- type: "error" | "success" | "info" | "warning";
4078
+ type: "success" | "error" | "info" | "warning";
4079
4079
  id?: number | undefined;
4080
4080
  }[] | undefined;
4081
4081
  required?: boolean | undefined;
@@ -4094,7 +4094,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4094
4094
  hint?: string | undefined;
4095
4095
  messages?: {
4096
4096
  text: string;
4097
- type: "error" | "success" | "info" | "warning";
4097
+ type: "success" | "error" | "info" | "warning";
4098
4098
  id?: number | undefined;
4099
4099
  }[] | undefined;
4100
4100
  required?: boolean | undefined;
@@ -4116,7 +4116,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4116
4116
  hint?: string | undefined;
4117
4117
  messages?: {
4118
4118
  text: string;
4119
- type: "error" | "success" | "info" | "warning";
4119
+ type: "success" | "error" | "info" | "warning";
4120
4120
  id?: number | undefined;
4121
4121
  }[] | undefined;
4122
4122
  required?: boolean | undefined;
@@ -4138,7 +4138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4138
4138
  hint?: string | undefined;
4139
4139
  messages?: {
4140
4140
  text: string;
4141
- type: "error" | "success" | "info" | "warning";
4141
+ type: "success" | "error" | "info" | "warning";
4142
4142
  id?: number | undefined;
4143
4143
  }[] | undefined;
4144
4144
  required?: boolean | undefined;
@@ -4157,7 +4157,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4157
4157
  hint?: string | undefined;
4158
4158
  messages?: {
4159
4159
  text: string;
4160
- type: "error" | "success" | "info" | "warning";
4160
+ type: "success" | "error" | "info" | "warning";
4161
4161
  id?: number | undefined;
4162
4162
  }[] | undefined;
4163
4163
  required?: boolean | undefined;
@@ -4182,7 +4182,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4182
4182
  hint?: string | undefined;
4183
4183
  messages?: {
4184
4184
  text: string;
4185
- type: "error" | "success" | "info" | "warning";
4185
+ type: "success" | "error" | "info" | "warning";
4186
4186
  id?: number | undefined;
4187
4187
  }[] | undefined;
4188
4188
  required?: boolean | undefined;
@@ -4203,7 +4203,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4203
4203
  hint?: string | undefined;
4204
4204
  messages?: {
4205
4205
  text: string;
4206
- type: "error" | "success" | "info" | "warning";
4206
+ type: "success" | "error" | "info" | "warning";
4207
4207
  id?: number | undefined;
4208
4208
  }[] | undefined;
4209
4209
  required?: boolean | undefined;
@@ -4224,7 +4224,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4224
4224
  hint?: string | undefined;
4225
4225
  messages?: {
4226
4226
  text: string;
4227
- type: "error" | "success" | "info" | "warning";
4227
+ type: "success" | "error" | "info" | "warning";
4228
4228
  id?: number | undefined;
4229
4229
  }[] | undefined;
4230
4230
  required?: boolean | undefined;
@@ -4478,7 +4478,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4478
4478
  hint?: string | undefined;
4479
4479
  messages?: {
4480
4480
  text: string;
4481
- type: "error" | "success" | "info" | "warning";
4481
+ type: "success" | "error" | "info" | "warning";
4482
4482
  id?: number | undefined;
4483
4483
  }[] | undefined;
4484
4484
  required?: boolean | undefined;
@@ -4496,7 +4496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4496
4496
  hint?: string | undefined;
4497
4497
  messages?: {
4498
4498
  text: string;
4499
- type: "error" | "success" | "info" | "warning";
4499
+ type: "success" | "error" | "info" | "warning";
4500
4500
  id?: number | undefined;
4501
4501
  }[] | undefined;
4502
4502
  required?: boolean | undefined;
@@ -4520,7 +4520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4520
4520
  hint?: string | undefined;
4521
4521
  messages?: {
4522
4522
  text: string;
4523
- type: "error" | "success" | "info" | "warning";
4523
+ type: "success" | "error" | "info" | "warning";
4524
4524
  id?: number | undefined;
4525
4525
  }[] | undefined;
4526
4526
  required?: boolean | undefined;
@@ -4544,7 +4544,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4544
4544
  hint?: string | undefined;
4545
4545
  messages?: {
4546
4546
  text: string;
4547
- type: "error" | "success" | "info" | "warning";
4547
+ type: "success" | "error" | "info" | "warning";
4548
4548
  id?: number | undefined;
4549
4549
  }[] | undefined;
4550
4550
  required?: boolean | undefined;
@@ -4568,7 +4568,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4568
4568
  hint?: string | undefined;
4569
4569
  messages?: {
4570
4570
  text: string;
4571
- type: "error" | "success" | "info" | "warning";
4571
+ type: "success" | "error" | "info" | "warning";
4572
4572
  id?: number | undefined;
4573
4573
  }[] | undefined;
4574
4574
  required?: boolean | undefined;
@@ -4593,7 +4593,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4593
4593
  hint?: string | undefined;
4594
4594
  messages?: {
4595
4595
  text: string;
4596
- type: "error" | "success" | "info" | "warning";
4596
+ type: "success" | "error" | "info" | "warning";
4597
4597
  id?: number | undefined;
4598
4598
  }[] | undefined;
4599
4599
  required?: boolean | undefined;
@@ -4608,7 +4608,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4608
4608
  hint?: string | undefined;
4609
4609
  messages?: {
4610
4610
  text: string;
4611
- type: "error" | "success" | "info" | "warning";
4611
+ type: "success" | "error" | "info" | "warning";
4612
4612
  id?: number | undefined;
4613
4613
  }[] | undefined;
4614
4614
  required?: boolean | undefined;
@@ -4629,7 +4629,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4629
4629
  hint?: string | undefined;
4630
4630
  messages?: {
4631
4631
  text: string;
4632
- type: "error" | "success" | "info" | "warning";
4632
+ type: "success" | "error" | "info" | "warning";
4633
4633
  id?: number | undefined;
4634
4634
  }[] | undefined;
4635
4635
  required?: boolean | undefined;
@@ -4654,7 +4654,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4654
4654
  hint?: string | undefined;
4655
4655
  messages?: {
4656
4656
  text: string;
4657
- type: "error" | "success" | "info" | "warning";
4657
+ type: "success" | "error" | "info" | "warning";
4658
4658
  id?: number | undefined;
4659
4659
  }[] | undefined;
4660
4660
  required?: boolean | undefined;
@@ -4673,7 +4673,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4673
4673
  hint?: string | undefined;
4674
4674
  messages?: {
4675
4675
  text: string;
4676
- type: "error" | "success" | "info" | "warning";
4676
+ type: "success" | "error" | "info" | "warning";
4677
4677
  id?: number | undefined;
4678
4678
  }[] | undefined;
4679
4679
  required?: boolean | undefined;
@@ -4693,7 +4693,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4693
4693
  hint?: string | undefined;
4694
4694
  messages?: {
4695
4695
  text: string;
4696
- type: "error" | "success" | "info" | "warning";
4696
+ type: "success" | "error" | "info" | "warning";
4697
4697
  id?: number | undefined;
4698
4698
  }[] | undefined;
4699
4699
  required?: boolean | undefined;
@@ -4712,7 +4712,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4712
4712
  hint?: string | undefined;
4713
4713
  messages?: {
4714
4714
  text: string;
4715
- type: "error" | "success" | "info" | "warning";
4715
+ type: "success" | "error" | "info" | "warning";
4716
4716
  id?: number | undefined;
4717
4717
  }[] | undefined;
4718
4718
  required?: boolean | undefined;
@@ -4734,7 +4734,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4734
4734
  hint?: string | undefined;
4735
4735
  messages?: {
4736
4736
  text: string;
4737
- type: "error" | "success" | "info" | "warning";
4737
+ type: "success" | "error" | "info" | "warning";
4738
4738
  id?: number | undefined;
4739
4739
  }[] | undefined;
4740
4740
  required?: boolean | undefined;
@@ -4756,7 +4756,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4756
4756
  hint?: string | undefined;
4757
4757
  messages?: {
4758
4758
  text: string;
4759
- type: "error" | "success" | "info" | "warning";
4759
+ type: "success" | "error" | "info" | "warning";
4760
4760
  id?: number | undefined;
4761
4761
  }[] | undefined;
4762
4762
  required?: boolean | undefined;
@@ -4775,7 +4775,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4775
4775
  hint?: string | undefined;
4776
4776
  messages?: {
4777
4777
  text: string;
4778
- type: "error" | "success" | "info" | "warning";
4778
+ type: "success" | "error" | "info" | "warning";
4779
4779
  id?: number | undefined;
4780
4780
  }[] | undefined;
4781
4781
  required?: boolean | undefined;
@@ -4800,7 +4800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4800
4800
  hint?: string | undefined;
4801
4801
  messages?: {
4802
4802
  text: string;
4803
- type: "error" | "success" | "info" | "warning";
4803
+ type: "success" | "error" | "info" | "warning";
4804
4804
  id?: number | undefined;
4805
4805
  }[] | undefined;
4806
4806
  required?: boolean | undefined;
@@ -4821,7 +4821,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4821
4821
  hint?: string | undefined;
4822
4822
  messages?: {
4823
4823
  text: string;
4824
- type: "error" | "success" | "info" | "warning";
4824
+ type: "success" | "error" | "info" | "warning";
4825
4825
  id?: number | undefined;
4826
4826
  }[] | undefined;
4827
4827
  required?: boolean | undefined;
@@ -4842,7 +4842,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4842
4842
  hint?: string | undefined;
4843
4843
  messages?: {
4844
4844
  text: string;
4845
- type: "error" | "success" | "info" | "warning";
4845
+ type: "success" | "error" | "info" | "warning";
4846
4846
  id?: number | undefined;
4847
4847
  }[] | undefined;
4848
4848
  required?: boolean | undefined;
@@ -5073,7 +5073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5073
5073
  hint?: string | undefined;
5074
5074
  messages?: {
5075
5075
  text: string;
5076
- type: "error" | "success" | "info" | "warning";
5076
+ type: "success" | "error" | "info" | "warning";
5077
5077
  id?: number | undefined;
5078
5078
  }[] | undefined;
5079
5079
  required?: boolean | undefined;
@@ -5091,7 +5091,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5091
5091
  hint?: string | undefined;
5092
5092
  messages?: {
5093
5093
  text: string;
5094
- type: "error" | "success" | "info" | "warning";
5094
+ type: "success" | "error" | "info" | "warning";
5095
5095
  id?: number | undefined;
5096
5096
  }[] | undefined;
5097
5097
  required?: boolean | undefined;
@@ -5115,7 +5115,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5115
5115
  hint?: string | undefined;
5116
5116
  messages?: {
5117
5117
  text: string;
5118
- type: "error" | "success" | "info" | "warning";
5118
+ type: "success" | "error" | "info" | "warning";
5119
5119
  id?: number | undefined;
5120
5120
  }[] | undefined;
5121
5121
  required?: boolean | undefined;
@@ -5139,7 +5139,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5139
5139
  hint?: string | undefined;
5140
5140
  messages?: {
5141
5141
  text: string;
5142
- type: "error" | "success" | "info" | "warning";
5142
+ type: "success" | "error" | "info" | "warning";
5143
5143
  id?: number | undefined;
5144
5144
  }[] | undefined;
5145
5145
  required?: boolean | undefined;
@@ -5163,7 +5163,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5163
5163
  hint?: string | undefined;
5164
5164
  messages?: {
5165
5165
  text: string;
5166
- type: "error" | "success" | "info" | "warning";
5166
+ type: "success" | "error" | "info" | "warning";
5167
5167
  id?: number | undefined;
5168
5168
  }[] | undefined;
5169
5169
  required?: boolean | undefined;
@@ -5192,7 +5192,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5192
5192
  hint?: string | undefined;
5193
5193
  messages?: {
5194
5194
  text: string;
5195
- type: "error" | "success" | "info" | "warning";
5195
+ type: "success" | "error" | "info" | "warning";
5196
5196
  id?: number | undefined;
5197
5197
  }[] | undefined;
5198
5198
  required?: boolean | undefined;
@@ -5207,7 +5207,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5207
5207
  hint?: string | undefined;
5208
5208
  messages?: {
5209
5209
  text: string;
5210
- type: "error" | "success" | "info" | "warning";
5210
+ type: "success" | "error" | "info" | "warning";
5211
5211
  id?: number | undefined;
5212
5212
  }[] | undefined;
5213
5213
  required?: boolean | undefined;
@@ -5228,7 +5228,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5228
5228
  hint?: string | undefined;
5229
5229
  messages?: {
5230
5230
  text: string;
5231
- type: "error" | "success" | "info" | "warning";
5231
+ type: "success" | "error" | "info" | "warning";
5232
5232
  id?: number | undefined;
5233
5233
  }[] | undefined;
5234
5234
  required?: boolean | undefined;
@@ -5253,7 +5253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5253
5253
  hint?: string | undefined;
5254
5254
  messages?: {
5255
5255
  text: string;
5256
- type: "error" | "success" | "info" | "warning";
5256
+ type: "success" | "error" | "info" | "warning";
5257
5257
  id?: number | undefined;
5258
5258
  }[] | undefined;
5259
5259
  required?: boolean | undefined;
@@ -5272,7 +5272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5272
5272
  hint?: string | undefined;
5273
5273
  messages?: {
5274
5274
  text: string;
5275
- type: "error" | "success" | "info" | "warning";
5275
+ type: "success" | "error" | "info" | "warning";
5276
5276
  id?: number | undefined;
5277
5277
  }[] | undefined;
5278
5278
  required?: boolean | undefined;
@@ -5292,7 +5292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5292
5292
  hint?: string | undefined;
5293
5293
  messages?: {
5294
5294
  text: string;
5295
- type: "error" | "success" | "info" | "warning";
5295
+ type: "success" | "error" | "info" | "warning";
5296
5296
  id?: number | undefined;
5297
5297
  }[] | undefined;
5298
5298
  required?: boolean | undefined;
@@ -5311,7 +5311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5311
5311
  hint?: string | undefined;
5312
5312
  messages?: {
5313
5313
  text: string;
5314
- type: "error" | "success" | "info" | "warning";
5314
+ type: "success" | "error" | "info" | "warning";
5315
5315
  id?: number | undefined;
5316
5316
  }[] | undefined;
5317
5317
  required?: boolean | undefined;
@@ -5333,7 +5333,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5333
5333
  hint?: string | undefined;
5334
5334
  messages?: {
5335
5335
  text: string;
5336
- type: "error" | "success" | "info" | "warning";
5336
+ type: "success" | "error" | "info" | "warning";
5337
5337
  id?: number | undefined;
5338
5338
  }[] | undefined;
5339
5339
  required?: boolean | undefined;
@@ -5355,7 +5355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5355
5355
  hint?: string | undefined;
5356
5356
  messages?: {
5357
5357
  text: string;
5358
- type: "error" | "success" | "info" | "warning";
5358
+ type: "success" | "error" | "info" | "warning";
5359
5359
  id?: number | undefined;
5360
5360
  }[] | undefined;
5361
5361
  required?: boolean | undefined;
@@ -5374,7 +5374,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5374
5374
  hint?: string | undefined;
5375
5375
  messages?: {
5376
5376
  text: string;
5377
- type: "error" | "success" | "info" | "warning";
5377
+ type: "success" | "error" | "info" | "warning";
5378
5378
  id?: number | undefined;
5379
5379
  }[] | undefined;
5380
5380
  required?: boolean | undefined;
@@ -5399,7 +5399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5399
5399
  hint?: string | undefined;
5400
5400
  messages?: {
5401
5401
  text: string;
5402
- type: "error" | "success" | "info" | "warning";
5402
+ type: "success" | "error" | "info" | "warning";
5403
5403
  id?: number | undefined;
5404
5404
  }[] | undefined;
5405
5405
  required?: boolean | undefined;
@@ -5420,7 +5420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5420
5420
  hint?: string | undefined;
5421
5421
  messages?: {
5422
5422
  text: string;
5423
- type: "error" | "success" | "info" | "warning";
5423
+ type: "success" | "error" | "info" | "warning";
5424
5424
  id?: number | undefined;
5425
5425
  }[] | undefined;
5426
5426
  required?: boolean | undefined;
@@ -5441,7 +5441,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5441
5441
  hint?: string | undefined;
5442
5442
  messages?: {
5443
5443
  text: string;
5444
- type: "error" | "success" | "info" | "warning";
5444
+ type: "success" | "error" | "info" | "warning";
5445
5445
  id?: number | undefined;
5446
5446
  }[] | undefined;
5447
5447
  required?: boolean | undefined;
@@ -5674,7 +5674,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5674
5674
  hint?: string | undefined;
5675
5675
  messages?: {
5676
5676
  text: string;
5677
- type: "error" | "success" | "info" | "warning";
5677
+ type: "success" | "error" | "info" | "warning";
5678
5678
  id?: number | undefined;
5679
5679
  }[] | undefined;
5680
5680
  required?: boolean | undefined;
@@ -5692,7 +5692,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5692
5692
  hint?: string | undefined;
5693
5693
  messages?: {
5694
5694
  text: string;
5695
- type: "error" | "success" | "info" | "warning";
5695
+ type: "success" | "error" | "info" | "warning";
5696
5696
  id?: number | undefined;
5697
5697
  }[] | undefined;
5698
5698
  required?: boolean | undefined;
@@ -5716,7 +5716,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5716
5716
  hint?: string | undefined;
5717
5717
  messages?: {
5718
5718
  text: string;
5719
- type: "error" | "success" | "info" | "warning";
5719
+ type: "success" | "error" | "info" | "warning";
5720
5720
  id?: number | undefined;
5721
5721
  }[] | undefined;
5722
5722
  required?: boolean | undefined;
@@ -5740,7 +5740,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5740
5740
  hint?: string | undefined;
5741
5741
  messages?: {
5742
5742
  text: string;
5743
- type: "error" | "success" | "info" | "warning";
5743
+ type: "success" | "error" | "info" | "warning";
5744
5744
  id?: number | undefined;
5745
5745
  }[] | undefined;
5746
5746
  required?: boolean | undefined;
@@ -5764,7 +5764,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5764
5764
  hint?: string | undefined;
5765
5765
  messages?: {
5766
5766
  text: string;
5767
- type: "error" | "success" | "info" | "warning";
5767
+ type: "success" | "error" | "info" | "warning";
5768
5768
  id?: number | undefined;
5769
5769
  }[] | undefined;
5770
5770
  required?: boolean | undefined;
@@ -5789,7 +5789,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5789
5789
  hint?: string | undefined;
5790
5790
  messages?: {
5791
5791
  text: string;
5792
- type: "error" | "success" | "info" | "warning";
5792
+ type: "success" | "error" | "info" | "warning";
5793
5793
  id?: number | undefined;
5794
5794
  }[] | undefined;
5795
5795
  required?: boolean | undefined;
@@ -5804,7 +5804,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5804
5804
  hint?: string | undefined;
5805
5805
  messages?: {
5806
5806
  text: string;
5807
- type: "error" | "success" | "info" | "warning";
5807
+ type: "success" | "error" | "info" | "warning";
5808
5808
  id?: number | undefined;
5809
5809
  }[] | undefined;
5810
5810
  required?: boolean | undefined;
@@ -5825,7 +5825,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5825
5825
  hint?: string | undefined;
5826
5826
  messages?: {
5827
5827
  text: string;
5828
- type: "error" | "success" | "info" | "warning";
5828
+ type: "success" | "error" | "info" | "warning";
5829
5829
  id?: number | undefined;
5830
5830
  }[] | undefined;
5831
5831
  required?: boolean | undefined;
@@ -5850,7 +5850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5850
5850
  hint?: string | undefined;
5851
5851
  messages?: {
5852
5852
  text: string;
5853
- type: "error" | "success" | "info" | "warning";
5853
+ type: "success" | "error" | "info" | "warning";
5854
5854
  id?: number | undefined;
5855
5855
  }[] | undefined;
5856
5856
  required?: boolean | undefined;
@@ -5869,7 +5869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5869
5869
  hint?: string | undefined;
5870
5870
  messages?: {
5871
5871
  text: string;
5872
- type: "error" | "success" | "info" | "warning";
5872
+ type: "success" | "error" | "info" | "warning";
5873
5873
  id?: number | undefined;
5874
5874
  }[] | undefined;
5875
5875
  required?: boolean | undefined;
@@ -5889,7 +5889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5889
5889
  hint?: string | undefined;
5890
5890
  messages?: {
5891
5891
  text: string;
5892
- type: "error" | "success" | "info" | "warning";
5892
+ type: "success" | "error" | "info" | "warning";
5893
5893
  id?: number | undefined;
5894
5894
  }[] | undefined;
5895
5895
  required?: boolean | undefined;
@@ -5908,7 +5908,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5908
5908
  hint?: string | undefined;
5909
5909
  messages?: {
5910
5910
  text: string;
5911
- type: "error" | "success" | "info" | "warning";
5911
+ type: "success" | "error" | "info" | "warning";
5912
5912
  id?: number | undefined;
5913
5913
  }[] | undefined;
5914
5914
  required?: boolean | undefined;
@@ -5930,7 +5930,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5930
5930
  hint?: string | undefined;
5931
5931
  messages?: {
5932
5932
  text: string;
5933
- type: "error" | "success" | "info" | "warning";
5933
+ type: "success" | "error" | "info" | "warning";
5934
5934
  id?: number | undefined;
5935
5935
  }[] | undefined;
5936
5936
  required?: boolean | undefined;
@@ -5952,7 +5952,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5952
5952
  hint?: string | undefined;
5953
5953
  messages?: {
5954
5954
  text: string;
5955
- type: "error" | "success" | "info" | "warning";
5955
+ type: "success" | "error" | "info" | "warning";
5956
5956
  id?: number | undefined;
5957
5957
  }[] | undefined;
5958
5958
  required?: boolean | undefined;
@@ -5971,7 +5971,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5971
5971
  hint?: string | undefined;
5972
5972
  messages?: {
5973
5973
  text: string;
5974
- type: "error" | "success" | "info" | "warning";
5974
+ type: "success" | "error" | "info" | "warning";
5975
5975
  id?: number | undefined;
5976
5976
  }[] | undefined;
5977
5977
  required?: boolean | undefined;
@@ -5996,7 +5996,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5996
5996
  hint?: string | undefined;
5997
5997
  messages?: {
5998
5998
  text: string;
5999
- type: "error" | "success" | "info" | "warning";
5999
+ type: "success" | "error" | "info" | "warning";
6000
6000
  id?: number | undefined;
6001
6001
  }[] | undefined;
6002
6002
  required?: boolean | undefined;
@@ -6017,7 +6017,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6017
6017
  hint?: string | undefined;
6018
6018
  messages?: {
6019
6019
  text: string;
6020
- type: "error" | "success" | "info" | "warning";
6020
+ type: "success" | "error" | "info" | "warning";
6021
6021
  id?: number | undefined;
6022
6022
  }[] | undefined;
6023
6023
  required?: boolean | undefined;
@@ -6038,7 +6038,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6038
6038
  hint?: string | undefined;
6039
6039
  messages?: {
6040
6040
  text: string;
6041
- type: "error" | "success" | "info" | "warning";
6041
+ type: "success" | "error" | "info" | "warning";
6042
6042
  id?: number | undefined;
6043
6043
  }[] | undefined;
6044
6044
  required?: boolean | undefined;
@@ -6269,7 +6269,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6269
6269
  hint?: string | undefined;
6270
6270
  messages?: {
6271
6271
  text: string;
6272
- type: "error" | "success" | "info" | "warning";
6272
+ type: "success" | "error" | "info" | "warning";
6273
6273
  id?: number | undefined;
6274
6274
  }[] | undefined;
6275
6275
  required?: boolean | undefined;
@@ -6287,7 +6287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6287
6287
  hint?: string | undefined;
6288
6288
  messages?: {
6289
6289
  text: string;
6290
- type: "error" | "success" | "info" | "warning";
6290
+ type: "success" | "error" | "info" | "warning";
6291
6291
  id?: number | undefined;
6292
6292
  }[] | undefined;
6293
6293
  required?: boolean | undefined;
@@ -6311,7 +6311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6311
6311
  hint?: string | undefined;
6312
6312
  messages?: {
6313
6313
  text: string;
6314
- type: "error" | "success" | "info" | "warning";
6314
+ type: "success" | "error" | "info" | "warning";
6315
6315
  id?: number | undefined;
6316
6316
  }[] | undefined;
6317
6317
  required?: boolean | undefined;
@@ -6335,7 +6335,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6335
6335
  hint?: string | undefined;
6336
6336
  messages?: {
6337
6337
  text: string;
6338
- type: "error" | "success" | "info" | "warning";
6338
+ type: "success" | "error" | "info" | "warning";
6339
6339
  id?: number | undefined;
6340
6340
  }[] | undefined;
6341
6341
  required?: boolean | undefined;
@@ -6359,7 +6359,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6359
6359
  hint?: string | undefined;
6360
6360
  messages?: {
6361
6361
  text: string;
6362
- type: "error" | "success" | "info" | "warning";
6362
+ type: "success" | "error" | "info" | "warning";
6363
6363
  id?: number | undefined;
6364
6364
  }[] | undefined;
6365
6365
  required?: boolean | undefined;
@@ -6388,7 +6388,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6388
6388
  hint?: string | undefined;
6389
6389
  messages?: {
6390
6390
  text: string;
6391
- type: "error" | "success" | "info" | "warning";
6391
+ type: "success" | "error" | "info" | "warning";
6392
6392
  id?: number | undefined;
6393
6393
  }[] | undefined;
6394
6394
  required?: boolean | undefined;
@@ -6403,7 +6403,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6403
6403
  hint?: string | undefined;
6404
6404
  messages?: {
6405
6405
  text: string;
6406
- type: "error" | "success" | "info" | "warning";
6406
+ type: "success" | "error" | "info" | "warning";
6407
6407
  id?: number | undefined;
6408
6408
  }[] | undefined;
6409
6409
  required?: boolean | undefined;
@@ -6424,7 +6424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6424
6424
  hint?: string | undefined;
6425
6425
  messages?: {
6426
6426
  text: string;
6427
- type: "error" | "success" | "info" | "warning";
6427
+ type: "success" | "error" | "info" | "warning";
6428
6428
  id?: number | undefined;
6429
6429
  }[] | undefined;
6430
6430
  required?: boolean | undefined;
@@ -6449,7 +6449,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6449
6449
  hint?: string | undefined;
6450
6450
  messages?: {
6451
6451
  text: string;
6452
- type: "error" | "success" | "info" | "warning";
6452
+ type: "success" | "error" | "info" | "warning";
6453
6453
  id?: number | undefined;
6454
6454
  }[] | undefined;
6455
6455
  required?: boolean | undefined;
@@ -6468,7 +6468,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6468
6468
  hint?: string | undefined;
6469
6469
  messages?: {
6470
6470
  text: string;
6471
- type: "error" | "success" | "info" | "warning";
6471
+ type: "success" | "error" | "info" | "warning";
6472
6472
  id?: number | undefined;
6473
6473
  }[] | undefined;
6474
6474
  required?: boolean | undefined;
@@ -6488,7 +6488,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6488
6488
  hint?: string | undefined;
6489
6489
  messages?: {
6490
6490
  text: string;
6491
- type: "error" | "success" | "info" | "warning";
6491
+ type: "success" | "error" | "info" | "warning";
6492
6492
  id?: number | undefined;
6493
6493
  }[] | undefined;
6494
6494
  required?: boolean | undefined;
@@ -6507,7 +6507,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6507
6507
  hint?: string | undefined;
6508
6508
  messages?: {
6509
6509
  text: string;
6510
- type: "error" | "success" | "info" | "warning";
6510
+ type: "success" | "error" | "info" | "warning";
6511
6511
  id?: number | undefined;
6512
6512
  }[] | undefined;
6513
6513
  required?: boolean | undefined;
@@ -6529,7 +6529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6529
6529
  hint?: string | undefined;
6530
6530
  messages?: {
6531
6531
  text: string;
6532
- type: "error" | "success" | "info" | "warning";
6532
+ type: "success" | "error" | "info" | "warning";
6533
6533
  id?: number | undefined;
6534
6534
  }[] | undefined;
6535
6535
  required?: boolean | undefined;
@@ -6551,7 +6551,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6551
6551
  hint?: string | undefined;
6552
6552
  messages?: {
6553
6553
  text: string;
6554
- type: "error" | "success" | "info" | "warning";
6554
+ type: "success" | "error" | "info" | "warning";
6555
6555
  id?: number | undefined;
6556
6556
  }[] | undefined;
6557
6557
  required?: boolean | undefined;
@@ -6570,7 +6570,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6570
6570
  hint?: string | undefined;
6571
6571
  messages?: {
6572
6572
  text: string;
6573
- type: "error" | "success" | "info" | "warning";
6573
+ type: "success" | "error" | "info" | "warning";
6574
6574
  id?: number | undefined;
6575
6575
  }[] | undefined;
6576
6576
  required?: boolean | undefined;
@@ -6595,7 +6595,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6595
6595
  hint?: string | undefined;
6596
6596
  messages?: {
6597
6597
  text: string;
6598
- type: "error" | "success" | "info" | "warning";
6598
+ type: "success" | "error" | "info" | "warning";
6599
6599
  id?: number | undefined;
6600
6600
  }[] | undefined;
6601
6601
  required?: boolean | undefined;
@@ -6616,7 +6616,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6616
6616
  hint?: string | undefined;
6617
6617
  messages?: {
6618
6618
  text: string;
6619
- type: "error" | "success" | "info" | "warning";
6619
+ type: "success" | "error" | "info" | "warning";
6620
6620
  id?: number | undefined;
6621
6621
  }[] | undefined;
6622
6622
  required?: boolean | undefined;
@@ -6637,7 +6637,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6637
6637
  hint?: string | undefined;
6638
6638
  messages?: {
6639
6639
  text: string;
6640
- type: "error" | "success" | "info" | "warning";
6640
+ type: "success" | "error" | "info" | "warning";
6641
6641
  id?: number | undefined;
6642
6642
  }[] | undefined;
6643
6643
  required?: boolean | undefined;
@@ -6867,7 +6867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6867
6867
  };
6868
6868
  };
6869
6869
  output: {
6870
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6870
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6871
6871
  language: string;
6872
6872
  }[];
6873
6873
  outputFormat: "json";
@@ -6905,7 +6905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6905
6905
  $get: {
6906
6906
  input: {
6907
6907
  param: {
6908
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6908
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6909
6909
  language: string;
6910
6910
  };
6911
6911
  } & {
@@ -6927,7 +6927,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6927
6927
  $put: {
6928
6928
  input: {
6929
6929
  param: {
6930
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6930
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6931
6931
  language: string;
6932
6932
  };
6933
6933
  } & {
@@ -6951,7 +6951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6951
6951
  $delete: {
6952
6952
  input: {
6953
6953
  param: {
6954
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6954
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6955
6955
  language: string;
6956
6956
  };
6957
6957
  } & {
@@ -7043,7 +7043,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7043
7043
  active?: boolean | undefined;
7044
7044
  } | undefined;
7045
7045
  signup?: {
7046
- status?: "required" | "optional" | "disabled" | undefined;
7046
+ status?: "optional" | "required" | "disabled" | undefined;
7047
7047
  verification?: {
7048
7048
  active?: boolean | undefined;
7049
7049
  } | undefined;
@@ -7053,14 +7053,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7053
7053
  } | undefined;
7054
7054
  unique?: boolean | undefined;
7055
7055
  profile_required?: boolean | undefined;
7056
- verification_method?: "code" | "link" | undefined;
7056
+ verification_method?: "link" | "code" | undefined;
7057
7057
  } | undefined;
7058
7058
  username?: {
7059
7059
  identifier?: {
7060
7060
  active?: boolean | undefined;
7061
7061
  } | undefined;
7062
7062
  signup?: {
7063
- status?: "required" | "optional" | "disabled" | undefined;
7063
+ status?: "optional" | "required" | "disabled" | undefined;
7064
7064
  } | undefined;
7065
7065
  validation?: {
7066
7066
  max_length?: number | undefined;
@@ -7077,7 +7077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7077
7077
  active?: boolean | undefined;
7078
7078
  } | undefined;
7079
7079
  signup?: {
7080
- status?: "required" | "optional" | "disabled" | undefined;
7080
+ status?: "optional" | "required" | "disabled" | undefined;
7081
7081
  } | undefined;
7082
7082
  } | undefined;
7083
7083
  } | undefined;
@@ -7177,7 +7177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7177
7177
  active?: boolean | undefined;
7178
7178
  } | undefined;
7179
7179
  signup?: {
7180
- status?: "required" | "optional" | "disabled" | undefined;
7180
+ status?: "optional" | "required" | "disabled" | undefined;
7181
7181
  verification?: {
7182
7182
  active?: boolean | undefined;
7183
7183
  } | undefined;
@@ -7187,14 +7187,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7187
7187
  } | undefined;
7188
7188
  unique?: boolean | undefined;
7189
7189
  profile_required?: boolean | undefined;
7190
- verification_method?: "code" | "link" | undefined;
7190
+ verification_method?: "link" | "code" | undefined;
7191
7191
  } | undefined;
7192
7192
  username?: {
7193
7193
  identifier?: {
7194
7194
  active?: boolean | undefined;
7195
7195
  } | undefined;
7196
7196
  signup?: {
7197
- status?: "required" | "optional" | "disabled" | undefined;
7197
+ status?: "optional" | "required" | "disabled" | undefined;
7198
7198
  } | undefined;
7199
7199
  validation?: {
7200
7200
  max_length?: number | undefined;
@@ -7211,7 +7211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7211
7211
  active?: boolean | undefined;
7212
7212
  } | undefined;
7213
7213
  signup?: {
7214
- status?: "required" | "optional" | "disabled" | undefined;
7214
+ status?: "optional" | "required" | "disabled" | undefined;
7215
7215
  } | undefined;
7216
7216
  } | undefined;
7217
7217
  } | undefined;
@@ -7327,7 +7327,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7327
7327
  active?: boolean | undefined;
7328
7328
  } | undefined;
7329
7329
  signup?: {
7330
- status?: "required" | "optional" | "disabled" | undefined;
7330
+ status?: "optional" | "required" | "disabled" | undefined;
7331
7331
  verification?: {
7332
7332
  active?: boolean | undefined;
7333
7333
  } | undefined;
@@ -7337,14 +7337,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7337
7337
  } | undefined;
7338
7338
  unique?: boolean | undefined;
7339
7339
  profile_required?: boolean | undefined;
7340
- verification_method?: "code" | "link" | undefined;
7340
+ verification_method?: "link" | "code" | undefined;
7341
7341
  } | undefined;
7342
7342
  username?: {
7343
7343
  identifier?: {
7344
7344
  active?: boolean | undefined;
7345
7345
  } | undefined;
7346
7346
  signup?: {
7347
- status?: "required" | "optional" | "disabled" | undefined;
7347
+ status?: "optional" | "required" | "disabled" | undefined;
7348
7348
  } | undefined;
7349
7349
  validation?: {
7350
7350
  max_length?: number | undefined;
@@ -7361,7 +7361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7361
7361
  active?: boolean | undefined;
7362
7362
  } | undefined;
7363
7363
  signup?: {
7364
- status?: "required" | "optional" | "disabled" | undefined;
7364
+ status?: "optional" | "required" | "disabled" | undefined;
7365
7365
  } | undefined;
7366
7366
  } | undefined;
7367
7367
  } | undefined;
@@ -7506,7 +7506,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7506
7506
  active?: boolean | undefined;
7507
7507
  } | undefined;
7508
7508
  signup?: {
7509
- status?: "required" | "optional" | "disabled" | undefined;
7509
+ status?: "optional" | "required" | "disabled" | undefined;
7510
7510
  verification?: {
7511
7511
  active?: boolean | undefined;
7512
7512
  } | undefined;
@@ -7516,14 +7516,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7516
7516
  } | undefined;
7517
7517
  unique?: boolean | undefined;
7518
7518
  profile_required?: boolean | undefined;
7519
- verification_method?: "code" | "link" | undefined;
7519
+ verification_method?: "link" | "code" | undefined;
7520
7520
  } | undefined;
7521
7521
  username?: {
7522
7522
  identifier?: {
7523
7523
  active?: boolean | undefined;
7524
7524
  } | undefined;
7525
7525
  signup?: {
7526
- status?: "required" | "optional" | "disabled" | undefined;
7526
+ status?: "optional" | "required" | "disabled" | undefined;
7527
7527
  } | undefined;
7528
7528
  validation?: {
7529
7529
  max_length?: number | undefined;
@@ -7540,7 +7540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7540
7540
  active?: boolean | undefined;
7541
7541
  } | undefined;
7542
7542
  signup?: {
7543
- status?: "required" | "optional" | "disabled" | undefined;
7543
+ status?: "optional" | "required" | "disabled" | undefined;
7544
7544
  } | undefined;
7545
7545
  } | undefined;
7546
7546
  } | undefined;
@@ -7664,7 +7664,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7664
7664
  active?: boolean | undefined;
7665
7665
  } | undefined;
7666
7666
  signup?: {
7667
- status?: "required" | "optional" | "disabled" | undefined;
7667
+ status?: "optional" | "required" | "disabled" | undefined;
7668
7668
  verification?: {
7669
7669
  active?: boolean | undefined;
7670
7670
  } | undefined;
@@ -7674,14 +7674,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7674
7674
  } | undefined;
7675
7675
  unique?: boolean | undefined;
7676
7676
  profile_required?: boolean | undefined;
7677
- verification_method?: "code" | "link" | undefined;
7677
+ verification_method?: "link" | "code" | undefined;
7678
7678
  } | undefined;
7679
7679
  username?: {
7680
7680
  identifier?: {
7681
7681
  active?: boolean | undefined;
7682
7682
  } | undefined;
7683
7683
  signup?: {
7684
- status?: "required" | "optional" | "disabled" | undefined;
7684
+ status?: "optional" | "required" | "disabled" | undefined;
7685
7685
  } | undefined;
7686
7686
  validation?: {
7687
7687
  max_length?: number | undefined;
@@ -7698,7 +7698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7698
7698
  active?: boolean | undefined;
7699
7699
  } | undefined;
7700
7700
  signup?: {
7701
- status?: "required" | "optional" | "disabled" | undefined;
7701
+ status?: "optional" | "required" | "disabled" | undefined;
7702
7702
  } | undefined;
7703
7703
  } | undefined;
7704
7704
  } | undefined;
@@ -7814,7 +7814,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7814
7814
  };
7815
7815
  } | {
7816
7816
  mode: "inline";
7817
- status: "error" | "success";
7817
+ status: "success" | "error";
7818
7818
  connection_id: string;
7819
7819
  connection_name: string;
7820
7820
  strategy: string;
@@ -7850,7 +7850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7850
7850
  tenant_id: string;
7851
7851
  created_at: string;
7852
7852
  updated_at: string;
7853
- deploymentStatus: "deployed" | "failed" | "not_required";
7853
+ deploymentStatus: "failed" | "deployed" | "not_required";
7854
7854
  secrets?: {
7855
7855
  [x: string]: string;
7856
7856
  } | undefined;
@@ -7940,7 +7940,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7940
7940
  tenant_id: string;
7941
7941
  created_at: string;
7942
7942
  updated_at: string;
7943
- deploymentStatus: "deployed" | "failed" | "not_required";
7943
+ deploymentStatus: "failed" | "deployed" | "not_required";
7944
7944
  secrets?: {
7945
7945
  [x: string]: string;
7946
7946
  } | undefined;
@@ -8764,7 +8764,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8764
8764
  created_at: string;
8765
8765
  updated_at: string;
8766
8766
  name: string;
8767
- provider: "auth0" | "cognito" | "okta" | "oidc";
8767
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8768
8768
  connection: string;
8769
8769
  enabled: boolean;
8770
8770
  credentials: {
@@ -8796,7 +8796,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8796
8796
  created_at: string;
8797
8797
  updated_at: string;
8798
8798
  name: string;
8799
- provider: "auth0" | "cognito" | "okta" | "oidc";
8799
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8800
8800
  connection: string;
8801
8801
  enabled: boolean;
8802
8802
  credentials: {
@@ -8822,7 +8822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8822
8822
  } & {
8823
8823
  json: {
8824
8824
  name: string;
8825
- provider: "auth0" | "cognito" | "okta" | "oidc";
8825
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8826
8826
  connection: string;
8827
8827
  credentials: {
8828
8828
  domain: string;
@@ -8839,7 +8839,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8839
8839
  created_at: string;
8840
8840
  updated_at: string;
8841
8841
  name: string;
8842
- provider: "auth0" | "cognito" | "okta" | "oidc";
8842
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8843
8843
  connection: string;
8844
8844
  enabled: boolean;
8845
8845
  credentials: {
@@ -8870,7 +8870,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8870
8870
  json: {
8871
8871
  id?: string | undefined;
8872
8872
  name?: string | undefined;
8873
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8873
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8874
8874
  connection?: string | undefined;
8875
8875
  enabled?: boolean | undefined;
8876
8876
  credentials?: {
@@ -8886,7 +8886,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8886
8886
  created_at: string;
8887
8887
  updated_at: string;
8888
8888
  name: string;
8889
- provider: "auth0" | "cognito" | "okta" | "oidc";
8889
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8890
8890
  connection: string;
8891
8891
  enabled: boolean;
8892
8892
  credentials: {
@@ -8934,7 +8934,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8934
8934
  [x: string]: import("hono/utils/types").JSONValue;
8935
8935
  };
8936
8936
  id: string;
8937
- status: "suspended" | "active" | "paused";
8937
+ status: "active" | "suspended" | "paused";
8938
8938
  filters?: {
8939
8939
  type: string;
8940
8940
  name: string;
@@ -8966,7 +8966,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8966
8966
  [x: string]: import("hono/utils/types").JSONValue;
8967
8967
  };
8968
8968
  id: string;
8969
- status: "suspended" | "active" | "paused";
8969
+ status: "active" | "suspended" | "paused";
8970
8970
  filters?: {
8971
8971
  type: string;
8972
8972
  name: string;
@@ -8991,7 +8991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8991
8991
  name: string;
8992
8992
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8993
8993
  sink: Record<string, unknown>;
8994
- status?: "suspended" | "active" | "paused" | undefined;
8994
+ status?: "active" | "suspended" | "paused" | undefined;
8995
8995
  filters?: {
8996
8996
  type: string;
8997
8997
  name: string;
@@ -9006,7 +9006,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9006
9006
  [x: string]: import("hono/utils/types").JSONValue;
9007
9007
  };
9008
9008
  id: string;
9009
- status: "suspended" | "active" | "paused";
9009
+ status: "active" | "suspended" | "paused";
9010
9010
  filters?: {
9011
9011
  type: string;
9012
9012
  name: string;
@@ -9041,7 +9041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9041
9041
  }[] | undefined;
9042
9042
  isPriority?: boolean | undefined;
9043
9043
  id?: string | undefined;
9044
- status?: "suspended" | "active" | "paused" | undefined;
9044
+ status?: "active" | "suspended" | "paused" | undefined;
9045
9045
  created_at?: string | undefined;
9046
9046
  updated_at?: string | undefined;
9047
9047
  };
@@ -9053,7 +9053,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9053
9053
  [x: string]: import("hono/utils/types").JSONValue;
9054
9054
  };
9055
9055
  id: string;
9056
- status: "suspended" | "active" | "paused";
9056
+ status: "active" | "suspended" | "paused";
9057
9057
  filters?: {
9058
9058
  type: string;
9059
9059
  name: string;
@@ -9104,7 +9104,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9104
9104
  };
9105
9105
  };
9106
9106
  output: {
9107
- type: "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9107
+ type: "gd_send_sms" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9108
9108
  date: string;
9109
9109
  isMobile: boolean;
9110
9110
  log_id: string;
@@ -9143,7 +9143,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9143
9143
  limit: number;
9144
9144
  length: number;
9145
9145
  logs: {
9146
- type: "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9146
+ type: "gd_send_sms" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9147
9147
  date: string;
9148
9148
  isMobile: boolean;
9149
9149
  log_id: string;
@@ -9182,7 +9182,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9182
9182
  next?: string | undefined;
9183
9183
  } | {
9184
9184
  logs: {
9185
- type: "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9185
+ type: "gd_send_sms" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9186
9186
  date: string;
9187
9187
  isMobile: boolean;
9188
9188
  log_id: string;
@@ -9236,7 +9236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9236
9236
  };
9237
9237
  };
9238
9238
  output: {
9239
- type: "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9239
+ type: "gd_send_sms" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9240
9240
  date: string;
9241
9241
  isMobile: boolean;
9242
9242
  log_id: string;
@@ -9641,7 +9641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9641
9641
  addons?: {
9642
9642
  [x: string]: any;
9643
9643
  } | undefined;
9644
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9644
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9645
9645
  client_metadata?: {
9646
9646
  [x: string]: string;
9647
9647
  } | undefined;
@@ -9737,7 +9737,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9737
9737
  addons?: {
9738
9738
  [x: string]: any;
9739
9739
  } | undefined;
9740
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9740
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9741
9741
  client_metadata?: {
9742
9742
  [x: string]: string;
9743
9743
  } | undefined;
@@ -9833,7 +9833,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9833
9833
  addons?: {
9834
9834
  [x: string]: any;
9835
9835
  } | undefined;
9836
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9836
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9837
9837
  client_metadata?: {
9838
9838
  [x: string]: string;
9839
9839
  } | undefined;
@@ -9944,7 +9944,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9944
9944
  addons?: {
9945
9945
  [x: string]: any;
9946
9946
  } | undefined;
9947
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9947
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9948
9948
  client_metadata?: {
9949
9949
  [x: string]: string;
9950
9950
  } | undefined;
@@ -10054,7 +10054,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10054
10054
  custom_login_page_preview?: string | undefined;
10055
10055
  form_template?: string | undefined;
10056
10056
  addons?: Record<string, any> | undefined;
10057
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10057
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10058
10058
  client_metadata?: Record<string, string> | undefined;
10059
10059
  hide_sign_up_disabled_error?: boolean | undefined;
10060
10060
  mobile?: Record<string, any> | undefined;
@@ -10134,7 +10134,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10134
10134
  addons?: {
10135
10135
  [x: string]: any;
10136
10136
  } | undefined;
10137
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10137
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10138
10138
  client_metadata?: {
10139
10139
  [x: string]: string;
10140
10140
  } | undefined;
@@ -10223,7 +10223,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10223
10223
  custom_login_page_preview?: string | undefined;
10224
10224
  form_template?: string | undefined;
10225
10225
  addons?: Record<string, any> | undefined;
10226
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10226
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10227
10227
  client_metadata?: Record<string, string> | undefined;
10228
10228
  hide_sign_up_disabled_error?: boolean | undefined;
10229
10229
  mobile?: Record<string, any> | undefined;
@@ -10303,7 +10303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10303
10303
  addons?: {
10304
10304
  [x: string]: any;
10305
10305
  } | undefined;
10306
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10306
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10307
10307
  client_metadata?: {
10308
10308
  [x: string]: string;
10309
10309
  } | undefined;
@@ -10425,7 +10425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10425
10425
  active?: boolean | undefined;
10426
10426
  } | undefined;
10427
10427
  signup?: {
10428
- status?: "required" | "optional" | "disabled" | undefined;
10428
+ status?: "optional" | "required" | "disabled" | undefined;
10429
10429
  verification?: {
10430
10430
  active?: boolean | undefined;
10431
10431
  } | undefined;
@@ -10435,14 +10435,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10435
10435
  } | undefined;
10436
10436
  unique?: boolean | undefined;
10437
10437
  profile_required?: boolean | undefined;
10438
- verification_method?: "code" | "link" | undefined;
10438
+ verification_method?: "link" | "code" | undefined;
10439
10439
  } | undefined;
10440
10440
  username?: {
10441
10441
  identifier?: {
10442
10442
  active?: boolean | undefined;
10443
10443
  } | undefined;
10444
10444
  signup?: {
10445
- status?: "required" | "optional" | "disabled" | undefined;
10445
+ status?: "optional" | "required" | "disabled" | undefined;
10446
10446
  } | undefined;
10447
10447
  validation?: {
10448
10448
  max_length?: number | undefined;
@@ -10459,7 +10459,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10459
10459
  active?: boolean | undefined;
10460
10460
  } | undefined;
10461
10461
  signup?: {
10462
- status?: "required" | "optional" | "disabled" | undefined;
10462
+ status?: "optional" | "required" | "disabled" | undefined;
10463
10463
  } | undefined;
10464
10464
  } | undefined;
10465
10465
  } | undefined;
@@ -10579,7 +10579,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10579
10579
  active?: boolean | undefined;
10580
10580
  } | undefined;
10581
10581
  signup?: {
10582
- status?: "required" | "optional" | "disabled" | undefined;
10582
+ status?: "optional" | "required" | "disabled" | undefined;
10583
10583
  verification?: {
10584
10584
  active?: boolean | undefined;
10585
10585
  } | undefined;
@@ -10589,14 +10589,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10589
10589
  } | undefined;
10590
10590
  unique?: boolean | undefined;
10591
10591
  profile_required?: boolean | undefined;
10592
- verification_method?: "code" | "link" | undefined;
10592
+ verification_method?: "link" | "code" | undefined;
10593
10593
  } | undefined;
10594
10594
  username?: {
10595
10595
  identifier?: {
10596
10596
  active?: boolean | undefined;
10597
10597
  } | undefined;
10598
10598
  signup?: {
10599
- status?: "required" | "optional" | "disabled" | undefined;
10599
+ status?: "optional" | "required" | "disabled" | undefined;
10600
10600
  } | undefined;
10601
10601
  validation?: {
10602
10602
  max_length?: number | undefined;
@@ -10613,7 +10613,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10613
10613
  active?: boolean | undefined;
10614
10614
  } | undefined;
10615
10615
  signup?: {
10616
- status?: "required" | "optional" | "disabled" | undefined;
10616
+ status?: "optional" | "required" | "disabled" | undefined;
10617
10617
  } | undefined;
10618
10618
  } | undefined;
10619
10619
  } | undefined;
@@ -11570,7 +11570,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11570
11570
  };
11571
11571
  };
11572
11572
  output: {
11573
- type: "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
11573
+ type: "gd_send_sms" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
11574
11574
  date: string;
11575
11575
  isMobile: boolean;
11576
11576
  log_id: string;
@@ -11609,7 +11609,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11609
11609
  limit: number;
11610
11610
  length: number;
11611
11611
  logs: {
11612
- type: "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
11612
+ type: "gd_send_sms" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
11613
11613
  date: string;
11614
11614
  isMobile: boolean;
11615
11615
  log_id: string;
@@ -11928,7 +11928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11928
11928
  };
11929
11929
  } & {
11930
11930
  json: {
11931
- 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";
11931
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11932
11932
  body: string;
11933
11933
  from: string;
11934
11934
  subject: string;
@@ -11949,7 +11949,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11949
11949
  };
11950
11950
  } & {
11951
11951
  json: {
11952
- 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";
11952
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11953
11953
  body: string;
11954
11954
  from: string;
11955
11955
  subject: string;
@@ -11961,7 +11961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11961
11961
  };
11962
11962
  };
11963
11963
  output: {
11964
- 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";
11964
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11965
11965
  body: string;
11966
11966
  from: string;
11967
11967
  subject: string;
@@ -11984,7 +11984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11984
11984
  };
11985
11985
  };
11986
11986
  output: {
11987
- 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";
11987
+ name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11988
11988
  body: string;
11989
11989
  subject: string;
11990
11990
  }[];
@@ -11997,7 +11997,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11997
11997
  $get: {
11998
11998
  input: {
11999
11999
  param: {
12000
- 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";
12000
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12001
12001
  };
12002
12002
  } & {
12003
12003
  header: {
@@ -12010,7 +12010,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12010
12010
  } | {
12011
12011
  input: {
12012
12012
  param: {
12013
- 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";
12013
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12014
12014
  };
12015
12015
  } & {
12016
12016
  header: {
@@ -12018,7 +12018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12018
12018
  };
12019
12019
  };
12020
12020
  output: {
12021
- 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";
12021
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12022
12022
  body: string;
12023
12023
  from: string;
12024
12024
  subject: string;
@@ -12037,7 +12037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12037
12037
  $put: {
12038
12038
  input: {
12039
12039
  param: {
12040
- 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";
12040
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12041
12041
  };
12042
12042
  } & {
12043
12043
  header: {
@@ -12045,7 +12045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12045
12045
  };
12046
12046
  } & {
12047
12047
  json: {
12048
- 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";
12048
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12049
12049
  body: string;
12050
12050
  subject: string;
12051
12051
  syntax?: "liquid" | undefined;
@@ -12057,7 +12057,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12057
12057
  };
12058
12058
  };
12059
12059
  output: {
12060
- 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";
12060
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12061
12061
  body: string;
12062
12062
  from: string;
12063
12063
  subject: string;
@@ -12076,7 +12076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12076
12076
  $patch: {
12077
12077
  input: {
12078
12078
  param: {
12079
- 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";
12079
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12080
12080
  };
12081
12081
  } & {
12082
12082
  header: {
@@ -12084,7 +12084,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12084
12084
  };
12085
12085
  } & {
12086
12086
  json: {
12087
- 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;
12087
+ template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12088
12088
  body?: string | undefined;
12089
12089
  from?: string | undefined;
12090
12090
  subject?: string | undefined;
@@ -12101,7 +12101,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12101
12101
  } | {
12102
12102
  input: {
12103
12103
  param: {
12104
- 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";
12104
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12105
12105
  };
12106
12106
  } & {
12107
12107
  header: {
@@ -12109,7 +12109,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12109
12109
  };
12110
12110
  } & {
12111
12111
  json: {
12112
- 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;
12112
+ template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12113
12113
  body?: string | undefined;
12114
12114
  from?: string | undefined;
12115
12115
  subject?: string | undefined;
@@ -12121,7 +12121,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12121
12121
  };
12122
12122
  };
12123
12123
  output: {
12124
- 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";
12124
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12125
12125
  body: string;
12126
12126
  from: string;
12127
12127
  subject: string;
@@ -12140,7 +12140,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12140
12140
  $delete: {
12141
12141
  input: {
12142
12142
  param: {
12143
- 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";
12143
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12144
12144
  };
12145
12145
  } & {
12146
12146
  header: {
@@ -12153,7 +12153,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12153
12153
  } | {
12154
12154
  input: {
12155
12155
  param: {
12156
- 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";
12156
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12157
12157
  };
12158
12158
  } & {
12159
12159
  header: {
@@ -12170,7 +12170,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12170
12170
  $post: {
12171
12171
  input: {
12172
12172
  param: {
12173
- 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";
12173
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12174
12174
  };
12175
12175
  } & {
12176
12176
  header: {
@@ -12453,7 +12453,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12453
12453
  type: "auth0_managed_certs" | "self_managed_certs";
12454
12454
  custom_domain_id: string;
12455
12455
  primary: boolean;
12456
- status: "pending" | "ready" | "disabled" | "pending_verification";
12456
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12457
12457
  verification_method?: "txt" | undefined;
12458
12458
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12459
12459
  domain_metadata?: {
@@ -12494,7 +12494,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12494
12494
  type: "auth0_managed_certs" | "self_managed_certs";
12495
12495
  custom_domain_id: string;
12496
12496
  primary: boolean;
12497
- status: "pending" | "ready" | "disabled" | "pending_verification";
12497
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12498
12498
  verification_method?: "txt" | undefined;
12499
12499
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12500
12500
  domain_metadata?: {
@@ -12558,7 +12558,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12558
12558
  type: "auth0_managed_certs" | "self_managed_certs";
12559
12559
  custom_domain_id: string;
12560
12560
  primary: boolean;
12561
- status: "pending" | "ready" | "disabled" | "pending_verification";
12561
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12562
12562
  verification_method?: "txt" | undefined;
12563
12563
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12564
12564
  domain_metadata?: {
@@ -12605,7 +12605,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12605
12605
  type: "auth0_managed_certs" | "self_managed_certs";
12606
12606
  custom_domain_id: string;
12607
12607
  primary: boolean;
12608
- status: "pending" | "ready" | "disabled" | "pending_verification";
12608
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12609
12609
  verification_method?: "txt" | undefined;
12610
12610
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12611
12611
  domain_metadata?: {
@@ -12651,7 +12651,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12651
12651
  type: "auth0_managed_certs" | "self_managed_certs";
12652
12652
  custom_domain_id: string;
12653
12653
  primary: boolean;
12654
- status: "pending" | "ready" | "disabled" | "pending_verification";
12654
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12655
12655
  verification_method?: "txt" | undefined;
12656
12656
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12657
12657
  domain_metadata?: {
@@ -12692,7 +12692,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12692
12692
  type: "auth0_managed_certs" | "self_managed_certs";
12693
12693
  custom_domain_id: string;
12694
12694
  primary: boolean;
12695
- status: "pending" | "ready" | "disabled" | "pending_verification";
12695
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12696
12696
  verification_method?: "txt" | undefined;
12697
12697
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12698
12698
  domain_metadata?: {
@@ -12791,12 +12791,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12791
12791
  background_color: string;
12792
12792
  background_image_url: string;
12793
12793
  page_layout: "center" | "left" | "right";
12794
- logo_placement?: "widget" | "none" | "chip" | undefined;
12794
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12795
12795
  };
12796
12796
  widget: {
12797
12797
  header_text_alignment: "center" | "left" | "right";
12798
12798
  logo_height: number;
12799
- logo_position: "center" | "left" | "right" | "none";
12799
+ logo_position: "none" | "center" | "left" | "right";
12800
12800
  logo_url: string;
12801
12801
  social_buttons_layout: "bottom" | "top";
12802
12802
  };
@@ -12881,12 +12881,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12881
12881
  background_color: string;
12882
12882
  background_image_url: string;
12883
12883
  page_layout: "center" | "left" | "right";
12884
- logo_placement?: "widget" | "none" | "chip" | undefined;
12884
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12885
12885
  };
12886
12886
  widget: {
12887
12887
  header_text_alignment: "center" | "left" | "right";
12888
12888
  logo_height: number;
12889
- logo_position: "center" | "left" | "right" | "none";
12889
+ logo_position: "none" | "center" | "left" | "right";
12890
12890
  logo_url: string;
12891
12891
  social_buttons_layout: "bottom" | "top";
12892
12892
  };
@@ -12960,12 +12960,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12960
12960
  background_color: string;
12961
12961
  background_image_url: string;
12962
12962
  page_layout: "center" | "left" | "right";
12963
- logo_placement?: "widget" | "none" | "chip" | undefined;
12963
+ logo_placement?: "none" | "widget" | "chip" | undefined;
12964
12964
  };
12965
12965
  widget: {
12966
12966
  header_text_alignment: "center" | "left" | "right";
12967
12967
  logo_height: number;
12968
- logo_position: "center" | "left" | "right" | "none";
12968
+ logo_position: "none" | "center" | "left" | "right";
12969
12969
  logo_url: string;
12970
12970
  social_buttons_layout: "bottom" | "top";
12971
12971
  };
@@ -13122,7 +13122,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13122
13122
  } & {
13123
13123
  json: {
13124
13124
  body?: string | undefined;
13125
- screen?: "password" | "login" | "identifier" | "signup" | undefined;
13125
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
13126
13126
  branding?: {
13127
13127
  colors?: {
13128
13128
  primary: string;
@@ -13208,12 +13208,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13208
13208
  background_color: string;
13209
13209
  background_image_url: string;
13210
13210
  page_layout: "center" | "left" | "right";
13211
- logo_placement?: "widget" | "none" | "chip" | undefined;
13211
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13212
13212
  } | undefined;
13213
13213
  widget?: {
13214
13214
  header_text_alignment: "center" | "left" | "right";
13215
13215
  logo_height: number;
13216
- logo_position: "center" | "left" | "right" | "none";
13216
+ logo_position: "none" | "center" | "left" | "right";
13217
13217
  logo_url: string;
13218
13218
  social_buttons_layout: "bottom" | "top";
13219
13219
  } | undefined;
@@ -13366,7 +13366,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13366
13366
  output: {
13367
13367
  id: string;
13368
13368
  trigger_id: string;
13369
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
13369
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13370
13370
  results: {
13371
13371
  action_name: string;
13372
13372
  error: {
@@ -13413,7 +13413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13413
13413
  logs: {
13414
13414
  action_name: string;
13415
13415
  lines: {
13416
- level: "error" | "log" | "info" | "warn" | "debug";
13416
+ level: "log" | "error" | "info" | "warn" | "debug";
13417
13417
  message: string;
13418
13418
  }[];
13419
13419
  }[];
@@ -14082,7 +14082,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
14082
14082
  args: import("hono/utils/types").JSONValue[];
14083
14083
  }[];
14084
14084
  logs: {
14085
- level: "error" | "log" | "info" | "warn" | "debug";
14085
+ level: "log" | "error" | "info" | "warn" | "debug";
14086
14086
  message: string;
14087
14087
  }[];
14088
14088
  error?: string | undefined;