authhero 8.9.2 → 8.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +97 -97
  3. package/dist/authhero.d.ts +299 -209
  4. package/dist/authhero.mjs +8850 -8686
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  9. package/dist/types/index.d.ts +224 -207
  10. package/dist/types/routes/auth-api/index.d.ts +18 -18
  11. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  14. package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +12 -12
  17. package/dist/types/routes/management-api/clients.d.ts +9 -9
  18. package/dist/types/routes/management-api/connections.d.ts +1 -1
  19. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  20. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  21. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  22. package/dist/types/routes/management-api/index.d.ts +198 -182
  23. package/dist/types/routes/management-api/logs.d.ts +3 -3
  24. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  25. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  26. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  27. package/dist/types/routes/management-api/tenant-export-import.d.ts +16 -0
  28. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  29. package/dist/types/routes/management-api/themes.d.ts +6 -6
  30. package/dist/types/routes/management-api/users.d.ts +2 -2
  31. package/dist/types/routes/proxy-control-plane/kv-publish.d.ts +75 -0
  32. package/dist/types/routes/proxy-control-plane/kv-publish.test.d.ts +1 -0
  33. package/dist/types/routes/universal-login/common.d.ts +2 -2
  34. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  35. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  36. package/dist/types/routes/universal-login/index.d.ts +2 -2
  37. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  39. package/dist/types/strategies/microsoft-entra.d.ts +14 -0
  40. package/dist/types/strategies/waad.d.ts +14 -0
  41. package/dist/types/types/IdToken.d.ts +4 -4
  42. package/package.json +5 -5
@@ -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: {
@@ -19,6 +19,22 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
19
19
  output: Response;
20
20
  outputFormat: "json";
21
21
  status: import("hono/utils/http-status").StatusCode;
22
+ } | {
23
+ input: {
24
+ query: {
25
+ include_password_hashes?: "true" | "false" | undefined;
26
+ gzip?: "true" | "false" | undefined;
27
+ };
28
+ } & {
29
+ header: {
30
+ "tenant-id"?: string | undefined;
31
+ };
32
+ };
33
+ output: {
34
+ message: string;
35
+ };
36
+ outputFormat: "json";
37
+ status: 500;
22
38
  };
23
39
  };
24
40
  } & {
@@ -26,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
26
42
  $post: {
27
43
  input: {
28
44
  query: {
29
- include_password_hashes?: "false" | "true" | undefined;
45
+ include_password_hashes?: "true" | "false" | undefined;
30
46
  };
31
47
  } & {
32
48
  header: {
@@ -80,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
80
96
  };
81
97
  } & {
82
98
  json: {
83
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
99
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
84
100
  phone_number?: string | undefined;
85
101
  totp_secret?: string | undefined;
86
102
  credential_id?: string | undefined;
@@ -220,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
220
236
  };
221
237
  };
222
238
  output: {
223
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
239
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
224
240
  enabled: boolean;
225
241
  trial_expired?: boolean | undefined;
226
242
  }[];
@@ -375,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
375
391
  $get: {
376
392
  input: {
377
393
  param: {
378
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
394
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
379
395
  };
380
396
  } & {
381
397
  header: {
@@ -383,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
383
399
  };
384
400
  };
385
401
  output: {
386
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
402
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
387
403
  enabled: boolean;
388
404
  trial_expired?: boolean | undefined;
389
405
  };
@@ -396,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
396
412
  $put: {
397
413
  input: {
398
414
  param: {
399
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
415
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
400
416
  };
401
417
  } & {
402
418
  header: {
@@ -408,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
408
424
  };
409
425
  };
410
426
  output: {
411
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
427
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
412
428
  enabled: boolean;
413
429
  trial_expired?: boolean | undefined;
414
430
  };
@@ -1153,9 +1169,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1153
1169
  invitee: {
1154
1170
  email?: string | undefined;
1155
1171
  };
1172
+ id?: string | undefined;
1156
1173
  app_metadata?: Record<string, any> | undefined;
1157
1174
  user_metadata?: Record<string, any> | undefined;
1158
- id?: string | undefined;
1159
1175
  connection_id?: string | undefined;
1160
1176
  roles?: string[] | undefined;
1161
1177
  ttl_sec?: number | undefined;
@@ -1341,8 +1357,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1341
1357
  };
1342
1358
  } & {
1343
1359
  json: {
1344
- assign_membership_on_login?: boolean | undefined;
1345
1360
  show_as_button?: boolean | undefined;
1361
+ assign_membership_on_login?: boolean | undefined;
1346
1362
  is_signup_enabled?: boolean | undefined;
1347
1363
  };
1348
1364
  };
@@ -2008,7 +2024,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2008
2024
  type: "REDIRECT";
2009
2025
  action: "REDIRECT_USER";
2010
2026
  params: {
2011
- target: "custom" | "account" | "change-email";
2027
+ target: "custom" | "change-email" | "account";
2012
2028
  custom_url?: string | undefined;
2013
2029
  };
2014
2030
  alias?: string | undefined;
@@ -2061,7 +2077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2061
2077
  type: "REDIRECT";
2062
2078
  action: "REDIRECT_USER";
2063
2079
  params: {
2064
- target: "custom" | "account" | "change-email";
2080
+ target: "custom" | "change-email" | "account";
2065
2081
  custom_url?: string | undefined;
2066
2082
  };
2067
2083
  alias?: string | undefined;
@@ -2129,7 +2145,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2129
2145
  type: "REDIRECT";
2130
2146
  action: "REDIRECT_USER";
2131
2147
  params: {
2132
- target: "custom" | "account" | "change-email";
2148
+ target: "custom" | "change-email" | "account";
2133
2149
  custom_url?: string | undefined;
2134
2150
  };
2135
2151
  alias?: string | undefined;
@@ -2210,7 +2226,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2210
2226
  type: "REDIRECT";
2211
2227
  action: "REDIRECT_USER";
2212
2228
  params: {
2213
- target: "custom" | "account" | "change-email";
2229
+ target: "custom" | "change-email" | "account";
2214
2230
  custom_url?: string | undefined;
2215
2231
  };
2216
2232
  alias?: string | undefined;
@@ -2258,7 +2274,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2258
2274
  type: "REDIRECT";
2259
2275
  action: "REDIRECT_USER";
2260
2276
  params: {
2261
- target: "custom" | "account" | "change-email";
2277
+ target: "custom" | "change-email" | "account";
2262
2278
  custom_url?: string | undefined;
2263
2279
  };
2264
2280
  alias?: string | undefined;
@@ -2318,7 +2334,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2318
2334
  type: "REDIRECT";
2319
2335
  action: "REDIRECT_USER";
2320
2336
  params: {
2321
- target: "custom" | "account" | "change-email";
2337
+ target: "custom" | "change-email" | "account";
2322
2338
  custom_url?: string | undefined;
2323
2339
  };
2324
2340
  alias?: string | undefined;
@@ -2366,7 +2382,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2366
2382
  type: "REDIRECT";
2367
2383
  action: "REDIRECT_USER";
2368
2384
  params: {
2369
- target: "custom" | "account" | "change-email";
2385
+ target: "custom" | "change-email" | "account";
2370
2386
  custom_url?: string | undefined;
2371
2387
  };
2372
2388
  alias?: string | undefined;
@@ -2584,7 +2600,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2584
2600
  hint?: string | undefined;
2585
2601
  messages?: {
2586
2602
  text: string;
2587
- type: "error" | "success" | "info" | "warning";
2603
+ type: "success" | "error" | "info" | "warning";
2588
2604
  id?: number | undefined;
2589
2605
  }[] | undefined;
2590
2606
  required?: boolean | undefined;
@@ -2602,7 +2618,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2602
2618
  hint?: string | undefined;
2603
2619
  messages?: {
2604
2620
  text: string;
2605
- type: "error" | "success" | "info" | "warning";
2621
+ type: "success" | "error" | "info" | "warning";
2606
2622
  id?: number | undefined;
2607
2623
  }[] | undefined;
2608
2624
  required?: boolean | undefined;
@@ -2626,7 +2642,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2626
2642
  hint?: string | undefined;
2627
2643
  messages?: {
2628
2644
  text: string;
2629
- type: "error" | "success" | "info" | "warning";
2645
+ type: "success" | "error" | "info" | "warning";
2630
2646
  id?: number | undefined;
2631
2647
  }[] | undefined;
2632
2648
  required?: boolean | undefined;
@@ -2650,7 +2666,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2650
2666
  hint?: string | undefined;
2651
2667
  messages?: {
2652
2668
  text: string;
2653
- type: "error" | "success" | "info" | "warning";
2669
+ type: "success" | "error" | "info" | "warning";
2654
2670
  id?: number | undefined;
2655
2671
  }[] | undefined;
2656
2672
  required?: boolean | undefined;
@@ -2674,7 +2690,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2674
2690
  hint?: string | undefined;
2675
2691
  messages?: {
2676
2692
  text: string;
2677
- type: "error" | "success" | "info" | "warning";
2693
+ type: "success" | "error" | "info" | "warning";
2678
2694
  id?: number | undefined;
2679
2695
  }[] | undefined;
2680
2696
  required?: boolean | undefined;
@@ -2703,7 +2719,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2703
2719
  hint?: string | undefined;
2704
2720
  messages?: {
2705
2721
  text: string;
2706
- type: "error" | "success" | "info" | "warning";
2722
+ type: "success" | "error" | "info" | "warning";
2707
2723
  id?: number | undefined;
2708
2724
  }[] | undefined;
2709
2725
  required?: boolean | undefined;
@@ -2718,7 +2734,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2718
2734
  hint?: string | undefined;
2719
2735
  messages?: {
2720
2736
  text: string;
2721
- type: "error" | "success" | "info" | "warning";
2737
+ type: "success" | "error" | "info" | "warning";
2722
2738
  id?: number | undefined;
2723
2739
  }[] | undefined;
2724
2740
  required?: boolean | undefined;
@@ -2739,7 +2755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2739
2755
  hint?: string | undefined;
2740
2756
  messages?: {
2741
2757
  text: string;
2742
- type: "error" | "success" | "info" | "warning";
2758
+ type: "success" | "error" | "info" | "warning";
2743
2759
  id?: number | undefined;
2744
2760
  }[] | undefined;
2745
2761
  required?: boolean | undefined;
@@ -2764,7 +2780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2764
2780
  hint?: string | undefined;
2765
2781
  messages?: {
2766
2782
  text: string;
2767
- type: "error" | "success" | "info" | "warning";
2783
+ type: "success" | "error" | "info" | "warning";
2768
2784
  id?: number | undefined;
2769
2785
  }[] | undefined;
2770
2786
  required?: boolean | undefined;
@@ -2783,7 +2799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2783
2799
  hint?: string | undefined;
2784
2800
  messages?: {
2785
2801
  text: string;
2786
- type: "error" | "success" | "info" | "warning";
2802
+ type: "success" | "error" | "info" | "warning";
2787
2803
  id?: number | undefined;
2788
2804
  }[] | undefined;
2789
2805
  required?: boolean | undefined;
@@ -2803,7 +2819,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2803
2819
  hint?: string | undefined;
2804
2820
  messages?: {
2805
2821
  text: string;
2806
- type: "error" | "success" | "info" | "warning";
2822
+ type: "success" | "error" | "info" | "warning";
2807
2823
  id?: number | undefined;
2808
2824
  }[] | undefined;
2809
2825
  required?: boolean | undefined;
@@ -2822,7 +2838,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2822
2838
  hint?: string | undefined;
2823
2839
  messages?: {
2824
2840
  text: string;
2825
- type: "error" | "success" | "info" | "warning";
2841
+ type: "success" | "error" | "info" | "warning";
2826
2842
  id?: number | undefined;
2827
2843
  }[] | undefined;
2828
2844
  required?: boolean | undefined;
@@ -2844,7 +2860,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2844
2860
  hint?: string | undefined;
2845
2861
  messages?: {
2846
2862
  text: string;
2847
- type: "error" | "success" | "info" | "warning";
2863
+ type: "success" | "error" | "info" | "warning";
2848
2864
  id?: number | undefined;
2849
2865
  }[] | undefined;
2850
2866
  required?: boolean | undefined;
@@ -2866,7 +2882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2866
2882
  hint?: string | undefined;
2867
2883
  messages?: {
2868
2884
  text: string;
2869
- type: "error" | "success" | "info" | "warning";
2885
+ type: "success" | "error" | "info" | "warning";
2870
2886
  id?: number | undefined;
2871
2887
  }[] | undefined;
2872
2888
  required?: boolean | undefined;
@@ -2885,7 +2901,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2885
2901
  hint?: string | undefined;
2886
2902
  messages?: {
2887
2903
  text: string;
2888
- type: "error" | "success" | "info" | "warning";
2904
+ type: "success" | "error" | "info" | "warning";
2889
2905
  id?: number | undefined;
2890
2906
  }[] | undefined;
2891
2907
  required?: boolean | undefined;
@@ -2910,7 +2926,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2910
2926
  hint?: string | undefined;
2911
2927
  messages?: {
2912
2928
  text: string;
2913
- type: "error" | "success" | "info" | "warning";
2929
+ type: "success" | "error" | "info" | "warning";
2914
2930
  id?: number | undefined;
2915
2931
  }[] | undefined;
2916
2932
  required?: boolean | undefined;
@@ -2931,7 +2947,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2931
2947
  hint?: string | undefined;
2932
2948
  messages?: {
2933
2949
  text: string;
2934
- type: "error" | "success" | "info" | "warning";
2950
+ type: "success" | "error" | "info" | "warning";
2935
2951
  id?: number | undefined;
2936
2952
  }[] | undefined;
2937
2953
  required?: boolean | undefined;
@@ -2952,7 +2968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2952
2968
  hint?: string | undefined;
2953
2969
  messages?: {
2954
2970
  text: string;
2955
- type: "error" | "success" | "info" | "warning";
2971
+ type: "success" | "error" | "info" | "warning";
2956
2972
  id?: number | undefined;
2957
2973
  }[] | undefined;
2958
2974
  required?: boolean | undefined;
@@ -3185,7 +3201,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3185
3201
  hint?: string | undefined;
3186
3202
  messages?: {
3187
3203
  text: string;
3188
- type: "error" | "success" | "info" | "warning";
3204
+ type: "success" | "error" | "info" | "warning";
3189
3205
  id?: number | undefined;
3190
3206
  }[] | undefined;
3191
3207
  required?: boolean | undefined;
@@ -3203,7 +3219,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3203
3219
  hint?: string | undefined;
3204
3220
  messages?: {
3205
3221
  text: string;
3206
- type: "error" | "success" | "info" | "warning";
3222
+ type: "success" | "error" | "info" | "warning";
3207
3223
  id?: number | undefined;
3208
3224
  }[] | undefined;
3209
3225
  required?: boolean | undefined;
@@ -3227,7 +3243,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3227
3243
  hint?: string | undefined;
3228
3244
  messages?: {
3229
3245
  text: string;
3230
- type: "error" | "success" | "info" | "warning";
3246
+ type: "success" | "error" | "info" | "warning";
3231
3247
  id?: number | undefined;
3232
3248
  }[] | undefined;
3233
3249
  required?: boolean | undefined;
@@ -3251,7 +3267,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3251
3267
  hint?: string | undefined;
3252
3268
  messages?: {
3253
3269
  text: string;
3254
- type: "error" | "success" | "info" | "warning";
3270
+ type: "success" | "error" | "info" | "warning";
3255
3271
  id?: number | undefined;
3256
3272
  }[] | undefined;
3257
3273
  required?: boolean | undefined;
@@ -3275,7 +3291,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3275
3291
  hint?: string | undefined;
3276
3292
  messages?: {
3277
3293
  text: string;
3278
- type: "error" | "success" | "info" | "warning";
3294
+ type: "success" | "error" | "info" | "warning";
3279
3295
  id?: number | undefined;
3280
3296
  }[] | undefined;
3281
3297
  required?: boolean | undefined;
@@ -3304,7 +3320,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3304
3320
  hint?: string | undefined;
3305
3321
  messages?: {
3306
3322
  text: string;
3307
- type: "error" | "success" | "info" | "warning";
3323
+ type: "success" | "error" | "info" | "warning";
3308
3324
  id?: number | undefined;
3309
3325
  }[] | undefined;
3310
3326
  required?: boolean | undefined;
@@ -3319,7 +3335,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3319
3335
  hint?: string | undefined;
3320
3336
  messages?: {
3321
3337
  text: string;
3322
- type: "error" | "success" | "info" | "warning";
3338
+ type: "success" | "error" | "info" | "warning";
3323
3339
  id?: number | undefined;
3324
3340
  }[] | undefined;
3325
3341
  required?: boolean | undefined;
@@ -3340,7 +3356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3340
3356
  hint?: string | undefined;
3341
3357
  messages?: {
3342
3358
  text: string;
3343
- type: "error" | "success" | "info" | "warning";
3359
+ type: "success" | "error" | "info" | "warning";
3344
3360
  id?: number | undefined;
3345
3361
  }[] | undefined;
3346
3362
  required?: boolean | undefined;
@@ -3365,7 +3381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3365
3381
  hint?: string | undefined;
3366
3382
  messages?: {
3367
3383
  text: string;
3368
- type: "error" | "success" | "info" | "warning";
3384
+ type: "success" | "error" | "info" | "warning";
3369
3385
  id?: number | undefined;
3370
3386
  }[] | undefined;
3371
3387
  required?: boolean | undefined;
@@ -3384,7 +3400,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3384
3400
  hint?: string | undefined;
3385
3401
  messages?: {
3386
3402
  text: string;
3387
- type: "error" | "success" | "info" | "warning";
3403
+ type: "success" | "error" | "info" | "warning";
3388
3404
  id?: number | undefined;
3389
3405
  }[] | undefined;
3390
3406
  required?: boolean | undefined;
@@ -3404,7 +3420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3404
3420
  hint?: string | undefined;
3405
3421
  messages?: {
3406
3422
  text: string;
3407
- type: "error" | "success" | "info" | "warning";
3423
+ type: "success" | "error" | "info" | "warning";
3408
3424
  id?: number | undefined;
3409
3425
  }[] | undefined;
3410
3426
  required?: boolean | undefined;
@@ -3423,7 +3439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3423
3439
  hint?: string | undefined;
3424
3440
  messages?: {
3425
3441
  text: string;
3426
- type: "error" | "success" | "info" | "warning";
3442
+ type: "success" | "error" | "info" | "warning";
3427
3443
  id?: number | undefined;
3428
3444
  }[] | undefined;
3429
3445
  required?: boolean | undefined;
@@ -3445,7 +3461,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3445
3461
  hint?: string | undefined;
3446
3462
  messages?: {
3447
3463
  text: string;
3448
- type: "error" | "success" | "info" | "warning";
3464
+ type: "success" | "error" | "info" | "warning";
3449
3465
  id?: number | undefined;
3450
3466
  }[] | undefined;
3451
3467
  required?: boolean | undefined;
@@ -3467,7 +3483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3467
3483
  hint?: string | undefined;
3468
3484
  messages?: {
3469
3485
  text: string;
3470
- type: "error" | "success" | "info" | "warning";
3486
+ type: "success" | "error" | "info" | "warning";
3471
3487
  id?: number | undefined;
3472
3488
  }[] | undefined;
3473
3489
  required?: boolean | undefined;
@@ -3486,7 +3502,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3486
3502
  hint?: string | undefined;
3487
3503
  messages?: {
3488
3504
  text: string;
3489
- type: "error" | "success" | "info" | "warning";
3505
+ type: "success" | "error" | "info" | "warning";
3490
3506
  id?: number | undefined;
3491
3507
  }[] | undefined;
3492
3508
  required?: boolean | undefined;
@@ -3511,7 +3527,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3511
3527
  hint?: string | undefined;
3512
3528
  messages?: {
3513
3529
  text: string;
3514
- type: "error" | "success" | "info" | "warning";
3530
+ type: "success" | "error" | "info" | "warning";
3515
3531
  id?: number | undefined;
3516
3532
  }[] | undefined;
3517
3533
  required?: boolean | undefined;
@@ -3532,7 +3548,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3532
3548
  hint?: string | undefined;
3533
3549
  messages?: {
3534
3550
  text: string;
3535
- type: "error" | "success" | "info" | "warning";
3551
+ type: "success" | "error" | "info" | "warning";
3536
3552
  id?: number | undefined;
3537
3553
  }[] | undefined;
3538
3554
  required?: boolean | undefined;
@@ -3553,7 +3569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3553
3569
  hint?: string | undefined;
3554
3570
  messages?: {
3555
3571
  text: string;
3556
- type: "error" | "success" | "info" | "warning";
3572
+ type: "success" | "error" | "info" | "warning";
3557
3573
  id?: number | undefined;
3558
3574
  }[] | undefined;
3559
3575
  required?: boolean | undefined;
@@ -3801,7 +3817,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3801
3817
  hint?: string | undefined;
3802
3818
  messages?: {
3803
3819
  text: string;
3804
- type: "error" | "success" | "info" | "warning";
3820
+ type: "success" | "error" | "info" | "warning";
3805
3821
  id?: number | undefined;
3806
3822
  }[] | undefined;
3807
3823
  required?: boolean | undefined;
@@ -3819,7 +3835,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3819
3835
  hint?: string | undefined;
3820
3836
  messages?: {
3821
3837
  text: string;
3822
- type: "error" | "success" | "info" | "warning";
3838
+ type: "success" | "error" | "info" | "warning";
3823
3839
  id?: number | undefined;
3824
3840
  }[] | undefined;
3825
3841
  required?: boolean | undefined;
@@ -3843,7 +3859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3843
3859
  hint?: string | undefined;
3844
3860
  messages?: {
3845
3861
  text: string;
3846
- type: "error" | "success" | "info" | "warning";
3862
+ type: "success" | "error" | "info" | "warning";
3847
3863
  id?: number | undefined;
3848
3864
  }[] | undefined;
3849
3865
  required?: boolean | undefined;
@@ -3867,7 +3883,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3867
3883
  hint?: string | undefined;
3868
3884
  messages?: {
3869
3885
  text: string;
3870
- type: "error" | "success" | "info" | "warning";
3886
+ type: "success" | "error" | "info" | "warning";
3871
3887
  id?: number | undefined;
3872
3888
  }[] | undefined;
3873
3889
  required?: boolean | undefined;
@@ -3891,7 +3907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3891
3907
  hint?: string | undefined;
3892
3908
  messages?: {
3893
3909
  text: string;
3894
- type: "error" | "success" | "info" | "warning";
3910
+ type: "success" | "error" | "info" | "warning";
3895
3911
  id?: number | undefined;
3896
3912
  }[] | undefined;
3897
3913
  required?: boolean | undefined;
@@ -3920,7 +3936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3920
3936
  hint?: string | undefined;
3921
3937
  messages?: {
3922
3938
  text: string;
3923
- type: "error" | "success" | "info" | "warning";
3939
+ type: "success" | "error" | "info" | "warning";
3924
3940
  id?: number | undefined;
3925
3941
  }[] | undefined;
3926
3942
  required?: boolean | undefined;
@@ -3935,7 +3951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3935
3951
  hint?: string | undefined;
3936
3952
  messages?: {
3937
3953
  text: string;
3938
- type: "error" | "success" | "info" | "warning";
3954
+ type: "success" | "error" | "info" | "warning";
3939
3955
  id?: number | undefined;
3940
3956
  }[] | undefined;
3941
3957
  required?: boolean | undefined;
@@ -3956,7 +3972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3956
3972
  hint?: string | undefined;
3957
3973
  messages?: {
3958
3974
  text: string;
3959
- type: "error" | "success" | "info" | "warning";
3975
+ type: "success" | "error" | "info" | "warning";
3960
3976
  id?: number | undefined;
3961
3977
  }[] | undefined;
3962
3978
  required?: boolean | undefined;
@@ -3981,7 +3997,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3981
3997
  hint?: string | undefined;
3982
3998
  messages?: {
3983
3999
  text: string;
3984
- type: "error" | "success" | "info" | "warning";
4000
+ type: "success" | "error" | "info" | "warning";
3985
4001
  id?: number | undefined;
3986
4002
  }[] | undefined;
3987
4003
  required?: boolean | undefined;
@@ -4000,7 +4016,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4000
4016
  hint?: string | undefined;
4001
4017
  messages?: {
4002
4018
  text: string;
4003
- type: "error" | "success" | "info" | "warning";
4019
+ type: "success" | "error" | "info" | "warning";
4004
4020
  id?: number | undefined;
4005
4021
  }[] | undefined;
4006
4022
  required?: boolean | undefined;
@@ -4020,7 +4036,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4020
4036
  hint?: string | undefined;
4021
4037
  messages?: {
4022
4038
  text: string;
4023
- type: "error" | "success" | "info" | "warning";
4039
+ type: "success" | "error" | "info" | "warning";
4024
4040
  id?: number | undefined;
4025
4041
  }[] | undefined;
4026
4042
  required?: boolean | undefined;
@@ -4039,7 +4055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4039
4055
  hint?: string | undefined;
4040
4056
  messages?: {
4041
4057
  text: string;
4042
- type: "error" | "success" | "info" | "warning";
4058
+ type: "success" | "error" | "info" | "warning";
4043
4059
  id?: number | undefined;
4044
4060
  }[] | undefined;
4045
4061
  required?: boolean | undefined;
@@ -4061,7 +4077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4061
4077
  hint?: string | undefined;
4062
4078
  messages?: {
4063
4079
  text: string;
4064
- type: "error" | "success" | "info" | "warning";
4080
+ type: "success" | "error" | "info" | "warning";
4065
4081
  id?: number | undefined;
4066
4082
  }[] | undefined;
4067
4083
  required?: boolean | undefined;
@@ -4083,7 +4099,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4083
4099
  hint?: string | undefined;
4084
4100
  messages?: {
4085
4101
  text: string;
4086
- type: "error" | "success" | "info" | "warning";
4102
+ type: "success" | "error" | "info" | "warning";
4087
4103
  id?: number | undefined;
4088
4104
  }[] | undefined;
4089
4105
  required?: boolean | undefined;
@@ -4102,7 +4118,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4102
4118
  hint?: string | undefined;
4103
4119
  messages?: {
4104
4120
  text: string;
4105
- type: "error" | "success" | "info" | "warning";
4121
+ type: "success" | "error" | "info" | "warning";
4106
4122
  id?: number | undefined;
4107
4123
  }[] | undefined;
4108
4124
  required?: boolean | undefined;
@@ -4127,7 +4143,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4127
4143
  hint?: string | undefined;
4128
4144
  messages?: {
4129
4145
  text: string;
4130
- type: "error" | "success" | "info" | "warning";
4146
+ type: "success" | "error" | "info" | "warning";
4131
4147
  id?: number | undefined;
4132
4148
  }[] | undefined;
4133
4149
  required?: boolean | undefined;
@@ -4148,7 +4164,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4148
4164
  hint?: string | undefined;
4149
4165
  messages?: {
4150
4166
  text: string;
4151
- type: "error" | "success" | "info" | "warning";
4167
+ type: "success" | "error" | "info" | "warning";
4152
4168
  id?: number | undefined;
4153
4169
  }[] | undefined;
4154
4170
  required?: boolean | undefined;
@@ -4169,7 +4185,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4169
4185
  hint?: string | undefined;
4170
4186
  messages?: {
4171
4187
  text: string;
4172
- type: "error" | "success" | "info" | "warning";
4188
+ type: "success" | "error" | "info" | "warning";
4173
4189
  id?: number | undefined;
4174
4190
  }[] | undefined;
4175
4191
  required?: boolean | undefined;
@@ -4423,7 +4439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4423
4439
  hint?: string | undefined;
4424
4440
  messages?: {
4425
4441
  text: string;
4426
- type: "error" | "success" | "info" | "warning";
4442
+ type: "success" | "error" | "info" | "warning";
4427
4443
  id?: number | undefined;
4428
4444
  }[] | undefined;
4429
4445
  required?: boolean | undefined;
@@ -4441,7 +4457,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4441
4457
  hint?: string | undefined;
4442
4458
  messages?: {
4443
4459
  text: string;
4444
- type: "error" | "success" | "info" | "warning";
4460
+ type: "success" | "error" | "info" | "warning";
4445
4461
  id?: number | undefined;
4446
4462
  }[] | undefined;
4447
4463
  required?: boolean | undefined;
@@ -4465,7 +4481,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4465
4481
  hint?: string | undefined;
4466
4482
  messages?: {
4467
4483
  text: string;
4468
- type: "error" | "success" | "info" | "warning";
4484
+ type: "success" | "error" | "info" | "warning";
4469
4485
  id?: number | undefined;
4470
4486
  }[] | undefined;
4471
4487
  required?: boolean | undefined;
@@ -4489,7 +4505,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4489
4505
  hint?: string | undefined;
4490
4506
  messages?: {
4491
4507
  text: string;
4492
- type: "error" | "success" | "info" | "warning";
4508
+ type: "success" | "error" | "info" | "warning";
4493
4509
  id?: number | undefined;
4494
4510
  }[] | undefined;
4495
4511
  required?: boolean | undefined;
@@ -4513,7 +4529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4513
4529
  hint?: string | undefined;
4514
4530
  messages?: {
4515
4531
  text: string;
4516
- type: "error" | "success" | "info" | "warning";
4532
+ type: "success" | "error" | "info" | "warning";
4517
4533
  id?: number | undefined;
4518
4534
  }[] | undefined;
4519
4535
  required?: boolean | undefined;
@@ -4538,7 +4554,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4538
4554
  hint?: string | undefined;
4539
4555
  messages?: {
4540
4556
  text: string;
4541
- type: "error" | "success" | "info" | "warning";
4557
+ type: "success" | "error" | "info" | "warning";
4542
4558
  id?: number | undefined;
4543
4559
  }[] | undefined;
4544
4560
  required?: boolean | undefined;
@@ -4553,7 +4569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4553
4569
  hint?: string | undefined;
4554
4570
  messages?: {
4555
4571
  text: string;
4556
- type: "error" | "success" | "info" | "warning";
4572
+ type: "success" | "error" | "info" | "warning";
4557
4573
  id?: number | undefined;
4558
4574
  }[] | undefined;
4559
4575
  required?: boolean | undefined;
@@ -4574,7 +4590,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4574
4590
  hint?: string | undefined;
4575
4591
  messages?: {
4576
4592
  text: string;
4577
- type: "error" | "success" | "info" | "warning";
4593
+ type: "success" | "error" | "info" | "warning";
4578
4594
  id?: number | undefined;
4579
4595
  }[] | undefined;
4580
4596
  required?: boolean | undefined;
@@ -4599,7 +4615,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4599
4615
  hint?: string | undefined;
4600
4616
  messages?: {
4601
4617
  text: string;
4602
- type: "error" | "success" | "info" | "warning";
4618
+ type: "success" | "error" | "info" | "warning";
4603
4619
  id?: number | undefined;
4604
4620
  }[] | undefined;
4605
4621
  required?: boolean | undefined;
@@ -4618,7 +4634,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4618
4634
  hint?: string | undefined;
4619
4635
  messages?: {
4620
4636
  text: string;
4621
- type: "error" | "success" | "info" | "warning";
4637
+ type: "success" | "error" | "info" | "warning";
4622
4638
  id?: number | undefined;
4623
4639
  }[] | undefined;
4624
4640
  required?: boolean | undefined;
@@ -4638,7 +4654,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4638
4654
  hint?: string | undefined;
4639
4655
  messages?: {
4640
4656
  text: string;
4641
- type: "error" | "success" | "info" | "warning";
4657
+ type: "success" | "error" | "info" | "warning";
4642
4658
  id?: number | undefined;
4643
4659
  }[] | undefined;
4644
4660
  required?: boolean | undefined;
@@ -4657,7 +4673,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4657
4673
  hint?: string | undefined;
4658
4674
  messages?: {
4659
4675
  text: string;
4660
- type: "error" | "success" | "info" | "warning";
4676
+ type: "success" | "error" | "info" | "warning";
4661
4677
  id?: number | undefined;
4662
4678
  }[] | undefined;
4663
4679
  required?: boolean | undefined;
@@ -4679,7 +4695,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4679
4695
  hint?: string | undefined;
4680
4696
  messages?: {
4681
4697
  text: string;
4682
- type: "error" | "success" | "info" | "warning";
4698
+ type: "success" | "error" | "info" | "warning";
4683
4699
  id?: number | undefined;
4684
4700
  }[] | undefined;
4685
4701
  required?: boolean | undefined;
@@ -4701,7 +4717,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4701
4717
  hint?: string | undefined;
4702
4718
  messages?: {
4703
4719
  text: string;
4704
- type: "error" | "success" | "info" | "warning";
4720
+ type: "success" | "error" | "info" | "warning";
4705
4721
  id?: number | undefined;
4706
4722
  }[] | undefined;
4707
4723
  required?: boolean | undefined;
@@ -4720,7 +4736,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4720
4736
  hint?: string | undefined;
4721
4737
  messages?: {
4722
4738
  text: string;
4723
- type: "error" | "success" | "info" | "warning";
4739
+ type: "success" | "error" | "info" | "warning";
4724
4740
  id?: number | undefined;
4725
4741
  }[] | undefined;
4726
4742
  required?: boolean | undefined;
@@ -4745,7 +4761,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4745
4761
  hint?: string | undefined;
4746
4762
  messages?: {
4747
4763
  text: string;
4748
- type: "error" | "success" | "info" | "warning";
4764
+ type: "success" | "error" | "info" | "warning";
4749
4765
  id?: number | undefined;
4750
4766
  }[] | undefined;
4751
4767
  required?: boolean | undefined;
@@ -4766,7 +4782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4766
4782
  hint?: string | undefined;
4767
4783
  messages?: {
4768
4784
  text: string;
4769
- type: "error" | "success" | "info" | "warning";
4785
+ type: "success" | "error" | "info" | "warning";
4770
4786
  id?: number | undefined;
4771
4787
  }[] | undefined;
4772
4788
  required?: boolean | undefined;
@@ -4787,7 +4803,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4787
4803
  hint?: string | undefined;
4788
4804
  messages?: {
4789
4805
  text: string;
4790
- type: "error" | "success" | "info" | "warning";
4806
+ type: "success" | "error" | "info" | "warning";
4791
4807
  id?: number | undefined;
4792
4808
  }[] | undefined;
4793
4809
  required?: boolean | undefined;
@@ -5018,7 +5034,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5018
5034
  hint?: string | undefined;
5019
5035
  messages?: {
5020
5036
  text: string;
5021
- type: "error" | "success" | "info" | "warning";
5037
+ type: "success" | "error" | "info" | "warning";
5022
5038
  id?: number | undefined;
5023
5039
  }[] | undefined;
5024
5040
  required?: boolean | undefined;
@@ -5036,7 +5052,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5036
5052
  hint?: string | undefined;
5037
5053
  messages?: {
5038
5054
  text: string;
5039
- type: "error" | "success" | "info" | "warning";
5055
+ type: "success" | "error" | "info" | "warning";
5040
5056
  id?: number | undefined;
5041
5057
  }[] | undefined;
5042
5058
  required?: boolean | undefined;
@@ -5060,7 +5076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5060
5076
  hint?: string | undefined;
5061
5077
  messages?: {
5062
5078
  text: string;
5063
- type: "error" | "success" | "info" | "warning";
5079
+ type: "success" | "error" | "info" | "warning";
5064
5080
  id?: number | undefined;
5065
5081
  }[] | undefined;
5066
5082
  required?: boolean | undefined;
@@ -5084,7 +5100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5084
5100
  hint?: string | undefined;
5085
5101
  messages?: {
5086
5102
  text: string;
5087
- type: "error" | "success" | "info" | "warning";
5103
+ type: "success" | "error" | "info" | "warning";
5088
5104
  id?: number | undefined;
5089
5105
  }[] | undefined;
5090
5106
  required?: boolean | undefined;
@@ -5108,7 +5124,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5108
5124
  hint?: string | undefined;
5109
5125
  messages?: {
5110
5126
  text: string;
5111
- type: "error" | "success" | "info" | "warning";
5127
+ type: "success" | "error" | "info" | "warning";
5112
5128
  id?: number | undefined;
5113
5129
  }[] | undefined;
5114
5130
  required?: boolean | undefined;
@@ -5137,7 +5153,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5137
5153
  hint?: string | undefined;
5138
5154
  messages?: {
5139
5155
  text: string;
5140
- type: "error" | "success" | "info" | "warning";
5156
+ type: "success" | "error" | "info" | "warning";
5141
5157
  id?: number | undefined;
5142
5158
  }[] | undefined;
5143
5159
  required?: boolean | undefined;
@@ -5152,7 +5168,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5152
5168
  hint?: string | undefined;
5153
5169
  messages?: {
5154
5170
  text: string;
5155
- type: "error" | "success" | "info" | "warning";
5171
+ type: "success" | "error" | "info" | "warning";
5156
5172
  id?: number | undefined;
5157
5173
  }[] | undefined;
5158
5174
  required?: boolean | undefined;
@@ -5173,7 +5189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5173
5189
  hint?: string | undefined;
5174
5190
  messages?: {
5175
5191
  text: string;
5176
- type: "error" | "success" | "info" | "warning";
5192
+ type: "success" | "error" | "info" | "warning";
5177
5193
  id?: number | undefined;
5178
5194
  }[] | undefined;
5179
5195
  required?: boolean | undefined;
@@ -5198,7 +5214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5198
5214
  hint?: string | undefined;
5199
5215
  messages?: {
5200
5216
  text: string;
5201
- type: "error" | "success" | "info" | "warning";
5217
+ type: "success" | "error" | "info" | "warning";
5202
5218
  id?: number | undefined;
5203
5219
  }[] | undefined;
5204
5220
  required?: boolean | undefined;
@@ -5217,7 +5233,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5217
5233
  hint?: string | undefined;
5218
5234
  messages?: {
5219
5235
  text: string;
5220
- type: "error" | "success" | "info" | "warning";
5236
+ type: "success" | "error" | "info" | "warning";
5221
5237
  id?: number | undefined;
5222
5238
  }[] | undefined;
5223
5239
  required?: boolean | undefined;
@@ -5237,7 +5253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5237
5253
  hint?: string | undefined;
5238
5254
  messages?: {
5239
5255
  text: string;
5240
- type: "error" | "success" | "info" | "warning";
5256
+ type: "success" | "error" | "info" | "warning";
5241
5257
  id?: number | undefined;
5242
5258
  }[] | undefined;
5243
5259
  required?: boolean | undefined;
@@ -5256,7 +5272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5256
5272
  hint?: string | undefined;
5257
5273
  messages?: {
5258
5274
  text: string;
5259
- type: "error" | "success" | "info" | "warning";
5275
+ type: "success" | "error" | "info" | "warning";
5260
5276
  id?: number | undefined;
5261
5277
  }[] | undefined;
5262
5278
  required?: boolean | undefined;
@@ -5278,7 +5294,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5278
5294
  hint?: string | undefined;
5279
5295
  messages?: {
5280
5296
  text: string;
5281
- type: "error" | "success" | "info" | "warning";
5297
+ type: "success" | "error" | "info" | "warning";
5282
5298
  id?: number | undefined;
5283
5299
  }[] | undefined;
5284
5300
  required?: boolean | undefined;
@@ -5300,7 +5316,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5300
5316
  hint?: string | undefined;
5301
5317
  messages?: {
5302
5318
  text: string;
5303
- type: "error" | "success" | "info" | "warning";
5319
+ type: "success" | "error" | "info" | "warning";
5304
5320
  id?: number | undefined;
5305
5321
  }[] | undefined;
5306
5322
  required?: boolean | undefined;
@@ -5319,7 +5335,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5319
5335
  hint?: string | undefined;
5320
5336
  messages?: {
5321
5337
  text: string;
5322
- type: "error" | "success" | "info" | "warning";
5338
+ type: "success" | "error" | "info" | "warning";
5323
5339
  id?: number | undefined;
5324
5340
  }[] | undefined;
5325
5341
  required?: boolean | undefined;
@@ -5344,7 +5360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5344
5360
  hint?: string | undefined;
5345
5361
  messages?: {
5346
5362
  text: string;
5347
- type: "error" | "success" | "info" | "warning";
5363
+ type: "success" | "error" | "info" | "warning";
5348
5364
  id?: number | undefined;
5349
5365
  }[] | undefined;
5350
5366
  required?: boolean | undefined;
@@ -5365,7 +5381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5365
5381
  hint?: string | undefined;
5366
5382
  messages?: {
5367
5383
  text: string;
5368
- type: "error" | "success" | "info" | "warning";
5384
+ type: "success" | "error" | "info" | "warning";
5369
5385
  id?: number | undefined;
5370
5386
  }[] | undefined;
5371
5387
  required?: boolean | undefined;
@@ -5386,7 +5402,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5386
5402
  hint?: string | undefined;
5387
5403
  messages?: {
5388
5404
  text: string;
5389
- type: "error" | "success" | "info" | "warning";
5405
+ type: "success" | "error" | "info" | "warning";
5390
5406
  id?: number | undefined;
5391
5407
  }[] | undefined;
5392
5408
  required?: boolean | undefined;
@@ -5619,7 +5635,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5619
5635
  hint?: string | undefined;
5620
5636
  messages?: {
5621
5637
  text: string;
5622
- type: "error" | "success" | "info" | "warning";
5638
+ type: "success" | "error" | "info" | "warning";
5623
5639
  id?: number | undefined;
5624
5640
  }[] | undefined;
5625
5641
  required?: boolean | undefined;
@@ -5637,7 +5653,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5637
5653
  hint?: string | undefined;
5638
5654
  messages?: {
5639
5655
  text: string;
5640
- type: "error" | "success" | "info" | "warning";
5656
+ type: "success" | "error" | "info" | "warning";
5641
5657
  id?: number | undefined;
5642
5658
  }[] | undefined;
5643
5659
  required?: boolean | undefined;
@@ -5661,7 +5677,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5661
5677
  hint?: string | undefined;
5662
5678
  messages?: {
5663
5679
  text: string;
5664
- type: "error" | "success" | "info" | "warning";
5680
+ type: "success" | "error" | "info" | "warning";
5665
5681
  id?: number | undefined;
5666
5682
  }[] | undefined;
5667
5683
  required?: boolean | undefined;
@@ -5685,7 +5701,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5685
5701
  hint?: string | undefined;
5686
5702
  messages?: {
5687
5703
  text: string;
5688
- type: "error" | "success" | "info" | "warning";
5704
+ type: "success" | "error" | "info" | "warning";
5689
5705
  id?: number | undefined;
5690
5706
  }[] | undefined;
5691
5707
  required?: boolean | undefined;
@@ -5709,7 +5725,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5709
5725
  hint?: string | undefined;
5710
5726
  messages?: {
5711
5727
  text: string;
5712
- type: "error" | "success" | "info" | "warning";
5728
+ type: "success" | "error" | "info" | "warning";
5713
5729
  id?: number | undefined;
5714
5730
  }[] | undefined;
5715
5731
  required?: boolean | undefined;
@@ -5734,7 +5750,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5734
5750
  hint?: string | undefined;
5735
5751
  messages?: {
5736
5752
  text: string;
5737
- type: "error" | "success" | "info" | "warning";
5753
+ type: "success" | "error" | "info" | "warning";
5738
5754
  id?: number | undefined;
5739
5755
  }[] | undefined;
5740
5756
  required?: boolean | undefined;
@@ -5749,7 +5765,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5749
5765
  hint?: string | undefined;
5750
5766
  messages?: {
5751
5767
  text: string;
5752
- type: "error" | "success" | "info" | "warning";
5768
+ type: "success" | "error" | "info" | "warning";
5753
5769
  id?: number | undefined;
5754
5770
  }[] | undefined;
5755
5771
  required?: boolean | undefined;
@@ -5770,7 +5786,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5770
5786
  hint?: string | undefined;
5771
5787
  messages?: {
5772
5788
  text: string;
5773
- type: "error" | "success" | "info" | "warning";
5789
+ type: "success" | "error" | "info" | "warning";
5774
5790
  id?: number | undefined;
5775
5791
  }[] | undefined;
5776
5792
  required?: boolean | undefined;
@@ -5795,7 +5811,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5795
5811
  hint?: string | undefined;
5796
5812
  messages?: {
5797
5813
  text: string;
5798
- type: "error" | "success" | "info" | "warning";
5814
+ type: "success" | "error" | "info" | "warning";
5799
5815
  id?: number | undefined;
5800
5816
  }[] | undefined;
5801
5817
  required?: boolean | undefined;
@@ -5814,7 +5830,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5814
5830
  hint?: string | undefined;
5815
5831
  messages?: {
5816
5832
  text: string;
5817
- type: "error" | "success" | "info" | "warning";
5833
+ type: "success" | "error" | "info" | "warning";
5818
5834
  id?: number | undefined;
5819
5835
  }[] | undefined;
5820
5836
  required?: boolean | undefined;
@@ -5834,7 +5850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5834
5850
  hint?: string | undefined;
5835
5851
  messages?: {
5836
5852
  text: string;
5837
- type: "error" | "success" | "info" | "warning";
5853
+ type: "success" | "error" | "info" | "warning";
5838
5854
  id?: number | undefined;
5839
5855
  }[] | undefined;
5840
5856
  required?: boolean | undefined;
@@ -5853,7 +5869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5853
5869
  hint?: string | undefined;
5854
5870
  messages?: {
5855
5871
  text: string;
5856
- type: "error" | "success" | "info" | "warning";
5872
+ type: "success" | "error" | "info" | "warning";
5857
5873
  id?: number | undefined;
5858
5874
  }[] | undefined;
5859
5875
  required?: boolean | undefined;
@@ -5875,7 +5891,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5875
5891
  hint?: string | undefined;
5876
5892
  messages?: {
5877
5893
  text: string;
5878
- type: "error" | "success" | "info" | "warning";
5894
+ type: "success" | "error" | "info" | "warning";
5879
5895
  id?: number | undefined;
5880
5896
  }[] | undefined;
5881
5897
  required?: boolean | undefined;
@@ -5897,7 +5913,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5897
5913
  hint?: string | undefined;
5898
5914
  messages?: {
5899
5915
  text: string;
5900
- type: "error" | "success" | "info" | "warning";
5916
+ type: "success" | "error" | "info" | "warning";
5901
5917
  id?: number | undefined;
5902
5918
  }[] | undefined;
5903
5919
  required?: boolean | undefined;
@@ -5916,7 +5932,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5916
5932
  hint?: string | undefined;
5917
5933
  messages?: {
5918
5934
  text: string;
5919
- type: "error" | "success" | "info" | "warning";
5935
+ type: "success" | "error" | "info" | "warning";
5920
5936
  id?: number | undefined;
5921
5937
  }[] | undefined;
5922
5938
  required?: boolean | undefined;
@@ -5941,7 +5957,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5941
5957
  hint?: string | undefined;
5942
5958
  messages?: {
5943
5959
  text: string;
5944
- type: "error" | "success" | "info" | "warning";
5960
+ type: "success" | "error" | "info" | "warning";
5945
5961
  id?: number | undefined;
5946
5962
  }[] | undefined;
5947
5963
  required?: boolean | undefined;
@@ -5962,7 +5978,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5962
5978
  hint?: string | undefined;
5963
5979
  messages?: {
5964
5980
  text: string;
5965
- type: "error" | "success" | "info" | "warning";
5981
+ type: "success" | "error" | "info" | "warning";
5966
5982
  id?: number | undefined;
5967
5983
  }[] | undefined;
5968
5984
  required?: boolean | undefined;
@@ -5983,7 +5999,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5983
5999
  hint?: string | undefined;
5984
6000
  messages?: {
5985
6001
  text: string;
5986
- type: "error" | "success" | "info" | "warning";
6002
+ type: "success" | "error" | "info" | "warning";
5987
6003
  id?: number | undefined;
5988
6004
  }[] | undefined;
5989
6005
  required?: boolean | undefined;
@@ -6214,7 +6230,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6214
6230
  hint?: string | undefined;
6215
6231
  messages?: {
6216
6232
  text: string;
6217
- type: "error" | "success" | "info" | "warning";
6233
+ type: "success" | "error" | "info" | "warning";
6218
6234
  id?: number | undefined;
6219
6235
  }[] | undefined;
6220
6236
  required?: boolean | undefined;
@@ -6232,7 +6248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6232
6248
  hint?: string | undefined;
6233
6249
  messages?: {
6234
6250
  text: string;
6235
- type: "error" | "success" | "info" | "warning";
6251
+ type: "success" | "error" | "info" | "warning";
6236
6252
  id?: number | undefined;
6237
6253
  }[] | undefined;
6238
6254
  required?: boolean | undefined;
@@ -6256,7 +6272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6256
6272
  hint?: string | undefined;
6257
6273
  messages?: {
6258
6274
  text: string;
6259
- type: "error" | "success" | "info" | "warning";
6275
+ type: "success" | "error" | "info" | "warning";
6260
6276
  id?: number | undefined;
6261
6277
  }[] | undefined;
6262
6278
  required?: boolean | undefined;
@@ -6280,7 +6296,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6280
6296
  hint?: string | undefined;
6281
6297
  messages?: {
6282
6298
  text: string;
6283
- type: "error" | "success" | "info" | "warning";
6299
+ type: "success" | "error" | "info" | "warning";
6284
6300
  id?: number | undefined;
6285
6301
  }[] | undefined;
6286
6302
  required?: boolean | undefined;
@@ -6304,7 +6320,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6304
6320
  hint?: string | undefined;
6305
6321
  messages?: {
6306
6322
  text: string;
6307
- type: "error" | "success" | "info" | "warning";
6323
+ type: "success" | "error" | "info" | "warning";
6308
6324
  id?: number | undefined;
6309
6325
  }[] | undefined;
6310
6326
  required?: boolean | undefined;
@@ -6333,7 +6349,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6333
6349
  hint?: string | undefined;
6334
6350
  messages?: {
6335
6351
  text: string;
6336
- type: "error" | "success" | "info" | "warning";
6352
+ type: "success" | "error" | "info" | "warning";
6337
6353
  id?: number | undefined;
6338
6354
  }[] | undefined;
6339
6355
  required?: boolean | undefined;
@@ -6348,7 +6364,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6348
6364
  hint?: string | undefined;
6349
6365
  messages?: {
6350
6366
  text: string;
6351
- type: "error" | "success" | "info" | "warning";
6367
+ type: "success" | "error" | "info" | "warning";
6352
6368
  id?: number | undefined;
6353
6369
  }[] | undefined;
6354
6370
  required?: boolean | undefined;
@@ -6369,7 +6385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6369
6385
  hint?: string | undefined;
6370
6386
  messages?: {
6371
6387
  text: string;
6372
- type: "error" | "success" | "info" | "warning";
6388
+ type: "success" | "error" | "info" | "warning";
6373
6389
  id?: number | undefined;
6374
6390
  }[] | undefined;
6375
6391
  required?: boolean | undefined;
@@ -6394,7 +6410,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6394
6410
  hint?: string | undefined;
6395
6411
  messages?: {
6396
6412
  text: string;
6397
- type: "error" | "success" | "info" | "warning";
6413
+ type: "success" | "error" | "info" | "warning";
6398
6414
  id?: number | undefined;
6399
6415
  }[] | undefined;
6400
6416
  required?: boolean | undefined;
@@ -6413,7 +6429,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6413
6429
  hint?: string | undefined;
6414
6430
  messages?: {
6415
6431
  text: string;
6416
- type: "error" | "success" | "info" | "warning";
6432
+ type: "success" | "error" | "info" | "warning";
6417
6433
  id?: number | undefined;
6418
6434
  }[] | undefined;
6419
6435
  required?: boolean | undefined;
@@ -6433,7 +6449,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6433
6449
  hint?: string | undefined;
6434
6450
  messages?: {
6435
6451
  text: string;
6436
- type: "error" | "success" | "info" | "warning";
6452
+ type: "success" | "error" | "info" | "warning";
6437
6453
  id?: number | undefined;
6438
6454
  }[] | undefined;
6439
6455
  required?: boolean | undefined;
@@ -6452,7 +6468,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6452
6468
  hint?: string | undefined;
6453
6469
  messages?: {
6454
6470
  text: string;
6455
- type: "error" | "success" | "info" | "warning";
6471
+ type: "success" | "error" | "info" | "warning";
6456
6472
  id?: number | undefined;
6457
6473
  }[] | undefined;
6458
6474
  required?: boolean | undefined;
@@ -6474,7 +6490,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6474
6490
  hint?: string | undefined;
6475
6491
  messages?: {
6476
6492
  text: string;
6477
- type: "error" | "success" | "info" | "warning";
6493
+ type: "success" | "error" | "info" | "warning";
6478
6494
  id?: number | undefined;
6479
6495
  }[] | undefined;
6480
6496
  required?: boolean | undefined;
@@ -6496,7 +6512,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6496
6512
  hint?: string | undefined;
6497
6513
  messages?: {
6498
6514
  text: string;
6499
- type: "error" | "success" | "info" | "warning";
6515
+ type: "success" | "error" | "info" | "warning";
6500
6516
  id?: number | undefined;
6501
6517
  }[] | undefined;
6502
6518
  required?: boolean | undefined;
@@ -6515,7 +6531,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6515
6531
  hint?: string | undefined;
6516
6532
  messages?: {
6517
6533
  text: string;
6518
- type: "error" | "success" | "info" | "warning";
6534
+ type: "success" | "error" | "info" | "warning";
6519
6535
  id?: number | undefined;
6520
6536
  }[] | undefined;
6521
6537
  required?: boolean | undefined;
@@ -6540,7 +6556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6540
6556
  hint?: string | undefined;
6541
6557
  messages?: {
6542
6558
  text: string;
6543
- type: "error" | "success" | "info" | "warning";
6559
+ type: "success" | "error" | "info" | "warning";
6544
6560
  id?: number | undefined;
6545
6561
  }[] | undefined;
6546
6562
  required?: boolean | undefined;
@@ -6561,7 +6577,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6561
6577
  hint?: string | undefined;
6562
6578
  messages?: {
6563
6579
  text: string;
6564
- type: "error" | "success" | "info" | "warning";
6580
+ type: "success" | "error" | "info" | "warning";
6565
6581
  id?: number | undefined;
6566
6582
  }[] | undefined;
6567
6583
  required?: boolean | undefined;
@@ -6582,7 +6598,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6582
6598
  hint?: string | undefined;
6583
6599
  messages?: {
6584
6600
  text: string;
6585
- type: "error" | "success" | "info" | "warning";
6601
+ type: "success" | "error" | "info" | "warning";
6586
6602
  id?: number | undefined;
6587
6603
  }[] | undefined;
6588
6604
  required?: boolean | undefined;
@@ -6812,7 +6828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6812
6828
  };
6813
6829
  };
6814
6830
  output: {
6815
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6831
+ prompt: "signup" | "status" | "organizations" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6816
6832
  language: string;
6817
6833
  }[];
6818
6834
  outputFormat: "json";
@@ -6850,7 +6866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6850
6866
  $get: {
6851
6867
  input: {
6852
6868
  param: {
6853
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6869
+ prompt: "signup" | "status" | "organizations" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6854
6870
  language: string;
6855
6871
  };
6856
6872
  } & {
@@ -6872,7 +6888,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6872
6888
  $put: {
6873
6889
  input: {
6874
6890
  param: {
6875
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6891
+ prompt: "signup" | "status" | "organizations" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6876
6892
  language: string;
6877
6893
  };
6878
6894
  } & {
@@ -6896,7 +6912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6896
6912
  $delete: {
6897
6913
  input: {
6898
6914
  param: {
6899
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "invitation" | "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" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6915
+ prompt: "signup" | "status" | "organizations" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6900
6916
  language: string;
6901
6917
  };
6902
6918
  } & {
@@ -7758,7 +7774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7758
7774
  };
7759
7775
  } | {
7760
7776
  mode: "inline";
7761
- status: "error" | "success";
7777
+ status: "success" | "error";
7762
7778
  connection_id: string;
7763
7779
  connection_name: string;
7764
7780
  strategy: string;
@@ -9045,7 +9061,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9045
9061
  };
9046
9062
  };
9047
9063
  output: {
9048
- 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";
9064
+ type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9049
9065
  date: string;
9050
9066
  isMobile: boolean;
9051
9067
  log_id: string;
@@ -9084,7 +9100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9084
9100
  limit: number;
9085
9101
  length: number;
9086
9102
  logs: {
9087
- 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";
9103
+ type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9088
9104
  date: string;
9089
9105
  isMobile: boolean;
9090
9106
  log_id: string;
@@ -9138,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9138
9154
  };
9139
9155
  };
9140
9156
  output: {
9141
- 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";
9157
+ type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
9142
9158
  date: string;
9143
9159
  isMobile: boolean;
9144
9160
  log_id: string;
@@ -9526,7 +9542,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9526
9542
  addons?: {
9527
9543
  [x: string]: any;
9528
9544
  } | undefined;
9529
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9545
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9530
9546
  client_metadata?: {
9531
9547
  [x: string]: string;
9532
9548
  } | undefined;
@@ -9622,7 +9638,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9622
9638
  addons?: {
9623
9639
  [x: string]: any;
9624
9640
  } | undefined;
9625
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9641
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9626
9642
  client_metadata?: {
9627
9643
  [x: string]: string;
9628
9644
  } | undefined;
@@ -9733,7 +9749,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9733
9749
  addons?: {
9734
9750
  [x: string]: any;
9735
9751
  } | undefined;
9736
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9752
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9737
9753
  client_metadata?: {
9738
9754
  [x: string]: string;
9739
9755
  } | undefined;
@@ -9843,7 +9859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9843
9859
  custom_login_page_preview?: string | undefined;
9844
9860
  form_template?: string | undefined;
9845
9861
  addons?: Record<string, any> | undefined;
9846
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9862
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9847
9863
  client_metadata?: Record<string, string> | undefined;
9848
9864
  hide_sign_up_disabled_error?: boolean | undefined;
9849
9865
  mobile?: Record<string, any> | undefined;
@@ -9923,7 +9939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9923
9939
  addons?: {
9924
9940
  [x: string]: any;
9925
9941
  } | undefined;
9926
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9942
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9927
9943
  client_metadata?: {
9928
9944
  [x: string]: string;
9929
9945
  } | undefined;
@@ -10012,7 +10028,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10012
10028
  custom_login_page_preview?: string | undefined;
10013
10029
  form_template?: string | undefined;
10014
10030
  addons?: Record<string, any> | undefined;
10015
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10031
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10016
10032
  client_metadata?: Record<string, string> | undefined;
10017
10033
  hide_sign_up_disabled_error?: boolean | undefined;
10018
10034
  mobile?: Record<string, any> | undefined;
@@ -10092,7 +10108,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10092
10108
  addons?: {
10093
10109
  [x: string]: any;
10094
10110
  } | undefined;
10095
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10111
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10096
10112
  client_metadata?: {
10097
10113
  [x: string]: string;
10098
10114
  } | undefined;
@@ -11356,7 +11372,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11356
11372
  };
11357
11373
  };
11358
11374
  output: {
11359
- 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";
11375
+ type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
11360
11376
  date: string;
11361
11377
  isMobile: boolean;
11362
11378
  log_id: string;
@@ -11395,7 +11411,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11395
11411
  limit: number;
11396
11412
  length: number;
11397
11413
  logs: {
11398
- 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";
11414
+ type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "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";
11399
11415
  date: string;
11400
11416
  isMobile: boolean;
11401
11417
  log_id: string;
@@ -11710,7 +11726,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11710
11726
  };
11711
11727
  } & {
11712
11728
  json: {
11713
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11729
+ template: "verify_email" | "change_password" | "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";
11714
11730
  body: string;
11715
11731
  from: string;
11716
11732
  subject: string;
@@ -11731,7 +11747,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11731
11747
  };
11732
11748
  } & {
11733
11749
  json: {
11734
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11750
+ template: "verify_email" | "change_password" | "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";
11735
11751
  body: string;
11736
11752
  from: string;
11737
11753
  subject: string;
@@ -11743,7 +11759,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11743
11759
  };
11744
11760
  };
11745
11761
  output: {
11746
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11762
+ template: "verify_email" | "change_password" | "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";
11747
11763
  body: string;
11748
11764
  from: string;
11749
11765
  subject: string;
@@ -11766,7 +11782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11766
11782
  };
11767
11783
  };
11768
11784
  output: {
11769
- name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11785
+ name: "verify_email" | "change_password" | "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";
11770
11786
  body: string;
11771
11787
  subject: string;
11772
11788
  }[];
@@ -11779,7 +11795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11779
11795
  $get: {
11780
11796
  input: {
11781
11797
  param: {
11782
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11798
+ templateName: "verify_email" | "change_password" | "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";
11783
11799
  };
11784
11800
  } & {
11785
11801
  header: {
@@ -11792,7 +11808,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11792
11808
  } | {
11793
11809
  input: {
11794
11810
  param: {
11795
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11811
+ templateName: "verify_email" | "change_password" | "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";
11796
11812
  };
11797
11813
  } & {
11798
11814
  header: {
@@ -11800,7 +11816,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11800
11816
  };
11801
11817
  };
11802
11818
  output: {
11803
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11819
+ template: "verify_email" | "change_password" | "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";
11804
11820
  body: string;
11805
11821
  from: string;
11806
11822
  subject: string;
@@ -11819,7 +11835,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11819
11835
  $put: {
11820
11836
  input: {
11821
11837
  param: {
11822
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11838
+ templateName: "verify_email" | "change_password" | "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";
11823
11839
  };
11824
11840
  } & {
11825
11841
  header: {
@@ -11827,7 +11843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11827
11843
  };
11828
11844
  } & {
11829
11845
  json: {
11830
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11846
+ template: "verify_email" | "change_password" | "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";
11831
11847
  body: string;
11832
11848
  subject: string;
11833
11849
  syntax?: "liquid" | undefined;
@@ -11839,7 +11855,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11839
11855
  };
11840
11856
  };
11841
11857
  output: {
11842
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11858
+ template: "verify_email" | "change_password" | "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";
11843
11859
  body: string;
11844
11860
  from: string;
11845
11861
  subject: string;
@@ -11858,7 +11874,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11858
11874
  $patch: {
11859
11875
  input: {
11860
11876
  param: {
11861
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11877
+ templateName: "verify_email" | "change_password" | "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";
11862
11878
  };
11863
11879
  } & {
11864
11880
  header: {
@@ -11866,7 +11882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11866
11882
  };
11867
11883
  } & {
11868
11884
  json: {
11869
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11885
+ template?: "verify_email" | "change_password" | "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;
11870
11886
  body?: string | undefined;
11871
11887
  from?: string | undefined;
11872
11888
  subject?: string | undefined;
@@ -11883,7 +11899,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11883
11899
  } | {
11884
11900
  input: {
11885
11901
  param: {
11886
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11902
+ templateName: "verify_email" | "change_password" | "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";
11887
11903
  };
11888
11904
  } & {
11889
11905
  header: {
@@ -11891,7 +11907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11891
11907
  };
11892
11908
  } & {
11893
11909
  json: {
11894
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11910
+ template?: "verify_email" | "change_password" | "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;
11895
11911
  body?: string | undefined;
11896
11912
  from?: string | undefined;
11897
11913
  subject?: string | undefined;
@@ -11903,7 +11919,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11903
11919
  };
11904
11920
  };
11905
11921
  output: {
11906
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11922
+ template: "verify_email" | "change_password" | "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";
11907
11923
  body: string;
11908
11924
  from: string;
11909
11925
  subject: string;
@@ -11922,7 +11938,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11922
11938
  $delete: {
11923
11939
  input: {
11924
11940
  param: {
11925
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11941
+ templateName: "verify_email" | "change_password" | "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";
11926
11942
  };
11927
11943
  } & {
11928
11944
  header: {
@@ -11935,7 +11951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11935
11951
  } | {
11936
11952
  input: {
11937
11953
  param: {
11938
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11954
+ templateName: "verify_email" | "change_password" | "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";
11939
11955
  };
11940
11956
  } & {
11941
11957
  header: {
@@ -11952,7 +11968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11952
11968
  $post: {
11953
11969
  input: {
11954
11970
  param: {
11955
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11971
+ templateName: "verify_email" | "change_password" | "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";
11956
11972
  };
11957
11973
  } & {
11958
11974
  header: {
@@ -12904,7 +12920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12904
12920
  } & {
12905
12921
  json: {
12906
12922
  body?: string | undefined;
12907
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
12923
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
12908
12924
  branding?: {
12909
12925
  colors?: {
12910
12926
  primary: string;
@@ -13195,7 +13211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13195
13211
  logs: {
13196
13212
  action_name: string;
13197
13213
  lines: {
13198
- level: "error" | "log" | "info" | "warn" | "debug";
13214
+ level: "log" | "error" | "info" | "warn" | "debug";
13199
13215
  message: string;
13200
13216
  }[];
13201
13217
  }[];
@@ -13862,7 +13878,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13862
13878
  args: import("hono/utils/types").JSONValue[];
13863
13879
  }[];
13864
13880
  logs: {
13865
- level: "error" | "log" | "info" | "warn" | "debug";
13881
+ level: "log" | "error" | "info" | "warn" | "debug";
13866
13882
  message: string;
13867
13883
  }[];
13868
13884
  error?: string | undefined;