authhero 8.9.0 → 8.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +85 -85
  3. package/dist/authhero.d.ts +246 -246
  4. package/dist/authhero.mjs +1837 -1770
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/password.d.ts +10 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +6 -6
  9. package/dist/types/index.d.ts +246 -246
  10. package/dist/types/routes/auth-api/index.d.ts +30 -30
  11. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  12. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  13. package/dist/types/routes/auth-api/token.d.ts +10 -10
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/actions.d.ts +1 -1
  16. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  17. package/dist/types/routes/management-api/branding.d.ts +13 -13
  18. package/dist/types/routes/management-api/clients.d.ts +8 -8
  19. package/dist/types/routes/management-api/connections.d.ts +21 -21
  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/forms.d.ts +126 -126
  23. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  24. package/dist/types/routes/management-api/index.d.ts +214 -214
  25. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  30. package/dist/types/routes/management-api/themes.d.ts +6 -6
  31. package/dist/types/routes/management-api/users.d.ts +2 -2
  32. package/dist/types/routes/universal-login/common.d.ts +14 -14
  33. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  34. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  35. package/dist/types/routes/universal-login/index.d.ts +2 -2
  36. package/package.json +5 -5
@@ -80,7 +80,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
80
80
  };
81
81
  } & {
82
82
  json: {
83
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
83
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
84
84
  phone_number?: string | undefined;
85
85
  totp_secret?: string | undefined;
86
86
  credential_id?: string | undefined;
@@ -220,7 +220,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
220
220
  };
221
221
  };
222
222
  output: {
223
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
223
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
224
224
  enabled: boolean;
225
225
  trial_expired?: boolean | undefined;
226
226
  }[];
@@ -375,7 +375,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
375
375
  $get: {
376
376
  input: {
377
377
  param: {
378
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
378
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
379
379
  };
380
380
  } & {
381
381
  header: {
@@ -383,7 +383,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
383
383
  };
384
384
  };
385
385
  output: {
386
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
386
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
387
387
  enabled: boolean;
388
388
  trial_expired?: boolean | undefined;
389
389
  };
@@ -396,7 +396,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
396
396
  $put: {
397
397
  input: {
398
398
  param: {
399
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
399
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
400
400
  };
401
401
  } & {
402
402
  header: {
@@ -408,7 +408,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
408
408
  };
409
409
  };
410
410
  output: {
411
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
411
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
412
412
  enabled: boolean;
413
413
  trial_expired?: boolean | undefined;
414
414
  };
@@ -1153,11 +1153,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1153
1153
  invitee: {
1154
1154
  email?: string | undefined;
1155
1155
  };
1156
- id?: string | undefined;
1157
- roles?: string[] | undefined;
1158
- connection_id?: string | undefined;
1159
1156
  app_metadata?: Record<string, any> | undefined;
1160
1157
  user_metadata?: Record<string, any> | undefined;
1158
+ id?: string | undefined;
1159
+ connection_id?: string | undefined;
1160
+ roles?: string[] | undefined;
1161
1161
  ttl_sec?: number | undefined;
1162
1162
  send_invitation_email?: boolean | undefined;
1163
1163
  };
@@ -1341,8 +1341,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1341
1341
  };
1342
1342
  } & {
1343
1343
  json: {
1344
- assign_membership_on_login?: boolean | undefined;
1345
1344
  show_as_button?: boolean | undefined;
1345
+ assign_membership_on_login?: boolean | undefined;
1346
1346
  is_signup_enabled?: boolean | undefined;
1347
1347
  };
1348
1348
  };
@@ -2584,7 +2584,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2584
2584
  hint?: string | undefined;
2585
2585
  messages?: {
2586
2586
  text: string;
2587
- type: "error" | "success" | "info" | "warning";
2587
+ type: "success" | "error" | "info" | "warning";
2588
2588
  id?: number | undefined;
2589
2589
  }[] | undefined;
2590
2590
  required?: boolean | undefined;
@@ -2602,7 +2602,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2602
2602
  hint?: string | undefined;
2603
2603
  messages?: {
2604
2604
  text: string;
2605
- type: "error" | "success" | "info" | "warning";
2605
+ type: "success" | "error" | "info" | "warning";
2606
2606
  id?: number | undefined;
2607
2607
  }[] | undefined;
2608
2608
  required?: boolean | undefined;
@@ -2626,7 +2626,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2626
2626
  hint?: string | undefined;
2627
2627
  messages?: {
2628
2628
  text: string;
2629
- type: "error" | "success" | "info" | "warning";
2629
+ type: "success" | "error" | "info" | "warning";
2630
2630
  id?: number | undefined;
2631
2631
  }[] | undefined;
2632
2632
  required?: boolean | undefined;
@@ -2650,7 +2650,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2650
2650
  hint?: string | undefined;
2651
2651
  messages?: {
2652
2652
  text: string;
2653
- type: "error" | "success" | "info" | "warning";
2653
+ type: "success" | "error" | "info" | "warning";
2654
2654
  id?: number | undefined;
2655
2655
  }[] | undefined;
2656
2656
  required?: boolean | undefined;
@@ -2674,7 +2674,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2674
2674
  hint?: string | undefined;
2675
2675
  messages?: {
2676
2676
  text: string;
2677
- type: "error" | "success" | "info" | "warning";
2677
+ type: "success" | "error" | "info" | "warning";
2678
2678
  id?: number | undefined;
2679
2679
  }[] | undefined;
2680
2680
  required?: boolean | undefined;
@@ -2703,7 +2703,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2703
2703
  hint?: string | undefined;
2704
2704
  messages?: {
2705
2705
  text: string;
2706
- type: "error" | "success" | "info" | "warning";
2706
+ type: "success" | "error" | "info" | "warning";
2707
2707
  id?: number | undefined;
2708
2708
  }[] | undefined;
2709
2709
  required?: boolean | undefined;
@@ -2718,7 +2718,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2718
2718
  hint?: string | undefined;
2719
2719
  messages?: {
2720
2720
  text: string;
2721
- type: "error" | "success" | "info" | "warning";
2721
+ type: "success" | "error" | "info" | "warning";
2722
2722
  id?: number | undefined;
2723
2723
  }[] | undefined;
2724
2724
  required?: boolean | undefined;
@@ -2739,7 +2739,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2739
2739
  hint?: string | undefined;
2740
2740
  messages?: {
2741
2741
  text: string;
2742
- type: "error" | "success" | "info" | "warning";
2742
+ type: "success" | "error" | "info" | "warning";
2743
2743
  id?: number | undefined;
2744
2744
  }[] | undefined;
2745
2745
  required?: boolean | undefined;
@@ -2764,7 +2764,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2764
2764
  hint?: string | undefined;
2765
2765
  messages?: {
2766
2766
  text: string;
2767
- type: "error" | "success" | "info" | "warning";
2767
+ type: "success" | "error" | "info" | "warning";
2768
2768
  id?: number | undefined;
2769
2769
  }[] | undefined;
2770
2770
  required?: boolean | undefined;
@@ -2783,7 +2783,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2783
2783
  hint?: string | undefined;
2784
2784
  messages?: {
2785
2785
  text: string;
2786
- type: "error" | "success" | "info" | "warning";
2786
+ type: "success" | "error" | "info" | "warning";
2787
2787
  id?: number | undefined;
2788
2788
  }[] | undefined;
2789
2789
  required?: boolean | undefined;
@@ -2803,7 +2803,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2803
2803
  hint?: string | undefined;
2804
2804
  messages?: {
2805
2805
  text: string;
2806
- type: "error" | "success" | "info" | "warning";
2806
+ type: "success" | "error" | "info" | "warning";
2807
2807
  id?: number | undefined;
2808
2808
  }[] | undefined;
2809
2809
  required?: boolean | undefined;
@@ -2822,7 +2822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2822
2822
  hint?: string | undefined;
2823
2823
  messages?: {
2824
2824
  text: string;
2825
- type: "error" | "success" | "info" | "warning";
2825
+ type: "success" | "error" | "info" | "warning";
2826
2826
  id?: number | undefined;
2827
2827
  }[] | undefined;
2828
2828
  required?: boolean | undefined;
@@ -2844,7 +2844,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2844
2844
  hint?: string | undefined;
2845
2845
  messages?: {
2846
2846
  text: string;
2847
- type: "error" | "success" | "info" | "warning";
2847
+ type: "success" | "error" | "info" | "warning";
2848
2848
  id?: number | undefined;
2849
2849
  }[] | undefined;
2850
2850
  required?: boolean | undefined;
@@ -2866,7 +2866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2866
2866
  hint?: string | undefined;
2867
2867
  messages?: {
2868
2868
  text: string;
2869
- type: "error" | "success" | "info" | "warning";
2869
+ type: "success" | "error" | "info" | "warning";
2870
2870
  id?: number | undefined;
2871
2871
  }[] | undefined;
2872
2872
  required?: boolean | undefined;
@@ -2885,7 +2885,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2885
2885
  hint?: string | undefined;
2886
2886
  messages?: {
2887
2887
  text: string;
2888
- type: "error" | "success" | "info" | "warning";
2888
+ type: "success" | "error" | "info" | "warning";
2889
2889
  id?: number | undefined;
2890
2890
  }[] | undefined;
2891
2891
  required?: boolean | undefined;
@@ -2910,7 +2910,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2910
2910
  hint?: string | undefined;
2911
2911
  messages?: {
2912
2912
  text: string;
2913
- type: "error" | "success" | "info" | "warning";
2913
+ type: "success" | "error" | "info" | "warning";
2914
2914
  id?: number | undefined;
2915
2915
  }[] | undefined;
2916
2916
  required?: boolean | undefined;
@@ -2931,7 +2931,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2931
2931
  hint?: string | undefined;
2932
2932
  messages?: {
2933
2933
  text: string;
2934
- type: "error" | "success" | "info" | "warning";
2934
+ type: "success" | "error" | "info" | "warning";
2935
2935
  id?: number | undefined;
2936
2936
  }[] | undefined;
2937
2937
  required?: boolean | undefined;
@@ -2952,7 +2952,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2952
2952
  hint?: string | undefined;
2953
2953
  messages?: {
2954
2954
  text: string;
2955
- type: "error" | "success" | "info" | "warning";
2955
+ type: "success" | "error" | "info" | "warning";
2956
2956
  id?: number | undefined;
2957
2957
  }[] | undefined;
2958
2958
  required?: boolean | undefined;
@@ -3185,7 +3185,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3185
3185
  hint?: string | undefined;
3186
3186
  messages?: {
3187
3187
  text: string;
3188
- type: "error" | "success" | "info" | "warning";
3188
+ type: "success" | "error" | "info" | "warning";
3189
3189
  id?: number | undefined;
3190
3190
  }[] | undefined;
3191
3191
  required?: boolean | undefined;
@@ -3203,7 +3203,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3203
3203
  hint?: string | undefined;
3204
3204
  messages?: {
3205
3205
  text: string;
3206
- type: "error" | "success" | "info" | "warning";
3206
+ type: "success" | "error" | "info" | "warning";
3207
3207
  id?: number | undefined;
3208
3208
  }[] | undefined;
3209
3209
  required?: boolean | undefined;
@@ -3227,7 +3227,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3227
3227
  hint?: string | undefined;
3228
3228
  messages?: {
3229
3229
  text: string;
3230
- type: "error" | "success" | "info" | "warning";
3230
+ type: "success" | "error" | "info" | "warning";
3231
3231
  id?: number | undefined;
3232
3232
  }[] | undefined;
3233
3233
  required?: boolean | undefined;
@@ -3251,7 +3251,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3251
3251
  hint?: string | undefined;
3252
3252
  messages?: {
3253
3253
  text: string;
3254
- type: "error" | "success" | "info" | "warning";
3254
+ type: "success" | "error" | "info" | "warning";
3255
3255
  id?: number | undefined;
3256
3256
  }[] | undefined;
3257
3257
  required?: boolean | undefined;
@@ -3275,7 +3275,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3275
3275
  hint?: string | undefined;
3276
3276
  messages?: {
3277
3277
  text: string;
3278
- type: "error" | "success" | "info" | "warning";
3278
+ type: "success" | "error" | "info" | "warning";
3279
3279
  id?: number | undefined;
3280
3280
  }[] | undefined;
3281
3281
  required?: boolean | undefined;
@@ -3304,7 +3304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3304
3304
  hint?: string | undefined;
3305
3305
  messages?: {
3306
3306
  text: string;
3307
- type: "error" | "success" | "info" | "warning";
3307
+ type: "success" | "error" | "info" | "warning";
3308
3308
  id?: number | undefined;
3309
3309
  }[] | undefined;
3310
3310
  required?: boolean | undefined;
@@ -3319,7 +3319,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3319
3319
  hint?: string | undefined;
3320
3320
  messages?: {
3321
3321
  text: string;
3322
- type: "error" | "success" | "info" | "warning";
3322
+ type: "success" | "error" | "info" | "warning";
3323
3323
  id?: number | undefined;
3324
3324
  }[] | undefined;
3325
3325
  required?: boolean | undefined;
@@ -3340,7 +3340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3340
3340
  hint?: string | undefined;
3341
3341
  messages?: {
3342
3342
  text: string;
3343
- type: "error" | "success" | "info" | "warning";
3343
+ type: "success" | "error" | "info" | "warning";
3344
3344
  id?: number | undefined;
3345
3345
  }[] | undefined;
3346
3346
  required?: boolean | undefined;
@@ -3365,7 +3365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3365
3365
  hint?: string | undefined;
3366
3366
  messages?: {
3367
3367
  text: string;
3368
- type: "error" | "success" | "info" | "warning";
3368
+ type: "success" | "error" | "info" | "warning";
3369
3369
  id?: number | undefined;
3370
3370
  }[] | undefined;
3371
3371
  required?: boolean | undefined;
@@ -3384,7 +3384,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3384
3384
  hint?: string | undefined;
3385
3385
  messages?: {
3386
3386
  text: string;
3387
- type: "error" | "success" | "info" | "warning";
3387
+ type: "success" | "error" | "info" | "warning";
3388
3388
  id?: number | undefined;
3389
3389
  }[] | undefined;
3390
3390
  required?: boolean | undefined;
@@ -3404,7 +3404,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3404
3404
  hint?: string | undefined;
3405
3405
  messages?: {
3406
3406
  text: string;
3407
- type: "error" | "success" | "info" | "warning";
3407
+ type: "success" | "error" | "info" | "warning";
3408
3408
  id?: number | undefined;
3409
3409
  }[] | undefined;
3410
3410
  required?: boolean | undefined;
@@ -3423,7 +3423,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3423
3423
  hint?: string | undefined;
3424
3424
  messages?: {
3425
3425
  text: string;
3426
- type: "error" | "success" | "info" | "warning";
3426
+ type: "success" | "error" | "info" | "warning";
3427
3427
  id?: number | undefined;
3428
3428
  }[] | undefined;
3429
3429
  required?: boolean | undefined;
@@ -3445,7 +3445,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3445
3445
  hint?: string | undefined;
3446
3446
  messages?: {
3447
3447
  text: string;
3448
- type: "error" | "success" | "info" | "warning";
3448
+ type: "success" | "error" | "info" | "warning";
3449
3449
  id?: number | undefined;
3450
3450
  }[] | undefined;
3451
3451
  required?: boolean | undefined;
@@ -3467,7 +3467,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3467
3467
  hint?: string | undefined;
3468
3468
  messages?: {
3469
3469
  text: string;
3470
- type: "error" | "success" | "info" | "warning";
3470
+ type: "success" | "error" | "info" | "warning";
3471
3471
  id?: number | undefined;
3472
3472
  }[] | undefined;
3473
3473
  required?: boolean | undefined;
@@ -3486,7 +3486,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3486
3486
  hint?: string | undefined;
3487
3487
  messages?: {
3488
3488
  text: string;
3489
- type: "error" | "success" | "info" | "warning";
3489
+ type: "success" | "error" | "info" | "warning";
3490
3490
  id?: number | undefined;
3491
3491
  }[] | undefined;
3492
3492
  required?: boolean | undefined;
@@ -3511,7 +3511,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3511
3511
  hint?: string | undefined;
3512
3512
  messages?: {
3513
3513
  text: string;
3514
- type: "error" | "success" | "info" | "warning";
3514
+ type: "success" | "error" | "info" | "warning";
3515
3515
  id?: number | undefined;
3516
3516
  }[] | undefined;
3517
3517
  required?: boolean | undefined;
@@ -3532,7 +3532,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3532
3532
  hint?: string | undefined;
3533
3533
  messages?: {
3534
3534
  text: string;
3535
- type: "error" | "success" | "info" | "warning";
3535
+ type: "success" | "error" | "info" | "warning";
3536
3536
  id?: number | undefined;
3537
3537
  }[] | undefined;
3538
3538
  required?: boolean | undefined;
@@ -3553,7 +3553,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3553
3553
  hint?: string | undefined;
3554
3554
  messages?: {
3555
3555
  text: string;
3556
- type: "error" | "success" | "info" | "warning";
3556
+ type: "success" | "error" | "info" | "warning";
3557
3557
  id?: number | undefined;
3558
3558
  }[] | undefined;
3559
3559
  required?: boolean | undefined;
@@ -3801,7 +3801,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3801
3801
  hint?: string | undefined;
3802
3802
  messages?: {
3803
3803
  text: string;
3804
- type: "error" | "success" | "info" | "warning";
3804
+ type: "success" | "error" | "info" | "warning";
3805
3805
  id?: number | undefined;
3806
3806
  }[] | undefined;
3807
3807
  required?: boolean | undefined;
@@ -3819,7 +3819,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3819
3819
  hint?: string | undefined;
3820
3820
  messages?: {
3821
3821
  text: string;
3822
- type: "error" | "success" | "info" | "warning";
3822
+ type: "success" | "error" | "info" | "warning";
3823
3823
  id?: number | undefined;
3824
3824
  }[] | undefined;
3825
3825
  required?: boolean | undefined;
@@ -3843,7 +3843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3843
3843
  hint?: string | undefined;
3844
3844
  messages?: {
3845
3845
  text: string;
3846
- type: "error" | "success" | "info" | "warning";
3846
+ type: "success" | "error" | "info" | "warning";
3847
3847
  id?: number | undefined;
3848
3848
  }[] | undefined;
3849
3849
  required?: boolean | undefined;
@@ -3867,7 +3867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3867
3867
  hint?: string | undefined;
3868
3868
  messages?: {
3869
3869
  text: string;
3870
- type: "error" | "success" | "info" | "warning";
3870
+ type: "success" | "error" | "info" | "warning";
3871
3871
  id?: number | undefined;
3872
3872
  }[] | undefined;
3873
3873
  required?: boolean | undefined;
@@ -3891,7 +3891,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3891
3891
  hint?: string | undefined;
3892
3892
  messages?: {
3893
3893
  text: string;
3894
- type: "error" | "success" | "info" | "warning";
3894
+ type: "success" | "error" | "info" | "warning";
3895
3895
  id?: number | undefined;
3896
3896
  }[] | undefined;
3897
3897
  required?: boolean | undefined;
@@ -3920,7 +3920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3920
3920
  hint?: string | undefined;
3921
3921
  messages?: {
3922
3922
  text: string;
3923
- type: "error" | "success" | "info" | "warning";
3923
+ type: "success" | "error" | "info" | "warning";
3924
3924
  id?: number | undefined;
3925
3925
  }[] | undefined;
3926
3926
  required?: boolean | undefined;
@@ -3935,7 +3935,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3935
3935
  hint?: string | undefined;
3936
3936
  messages?: {
3937
3937
  text: string;
3938
- type: "error" | "success" | "info" | "warning";
3938
+ type: "success" | "error" | "info" | "warning";
3939
3939
  id?: number | undefined;
3940
3940
  }[] | undefined;
3941
3941
  required?: boolean | undefined;
@@ -3956,7 +3956,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3956
3956
  hint?: string | undefined;
3957
3957
  messages?: {
3958
3958
  text: string;
3959
- type: "error" | "success" | "info" | "warning";
3959
+ type: "success" | "error" | "info" | "warning";
3960
3960
  id?: number | undefined;
3961
3961
  }[] | undefined;
3962
3962
  required?: boolean | undefined;
@@ -3981,7 +3981,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3981
3981
  hint?: string | undefined;
3982
3982
  messages?: {
3983
3983
  text: string;
3984
- type: "error" | "success" | "info" | "warning";
3984
+ type: "success" | "error" | "info" | "warning";
3985
3985
  id?: number | undefined;
3986
3986
  }[] | undefined;
3987
3987
  required?: boolean | undefined;
@@ -4000,7 +4000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4000
4000
  hint?: string | undefined;
4001
4001
  messages?: {
4002
4002
  text: string;
4003
- type: "error" | "success" | "info" | "warning";
4003
+ type: "success" | "error" | "info" | "warning";
4004
4004
  id?: number | undefined;
4005
4005
  }[] | undefined;
4006
4006
  required?: boolean | undefined;
@@ -4020,7 +4020,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4020
4020
  hint?: string | undefined;
4021
4021
  messages?: {
4022
4022
  text: string;
4023
- type: "error" | "success" | "info" | "warning";
4023
+ type: "success" | "error" | "info" | "warning";
4024
4024
  id?: number | undefined;
4025
4025
  }[] | undefined;
4026
4026
  required?: boolean | undefined;
@@ -4039,7 +4039,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4039
4039
  hint?: string | undefined;
4040
4040
  messages?: {
4041
4041
  text: string;
4042
- type: "error" | "success" | "info" | "warning";
4042
+ type: "success" | "error" | "info" | "warning";
4043
4043
  id?: number | undefined;
4044
4044
  }[] | undefined;
4045
4045
  required?: boolean | undefined;
@@ -4061,7 +4061,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4061
4061
  hint?: string | undefined;
4062
4062
  messages?: {
4063
4063
  text: string;
4064
- type: "error" | "success" | "info" | "warning";
4064
+ type: "success" | "error" | "info" | "warning";
4065
4065
  id?: number | undefined;
4066
4066
  }[] | undefined;
4067
4067
  required?: boolean | undefined;
@@ -4083,7 +4083,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4083
4083
  hint?: string | undefined;
4084
4084
  messages?: {
4085
4085
  text: string;
4086
- type: "error" | "success" | "info" | "warning";
4086
+ type: "success" | "error" | "info" | "warning";
4087
4087
  id?: number | undefined;
4088
4088
  }[] | undefined;
4089
4089
  required?: boolean | undefined;
@@ -4102,7 +4102,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4102
4102
  hint?: string | undefined;
4103
4103
  messages?: {
4104
4104
  text: string;
4105
- type: "error" | "success" | "info" | "warning";
4105
+ type: "success" | "error" | "info" | "warning";
4106
4106
  id?: number | undefined;
4107
4107
  }[] | undefined;
4108
4108
  required?: boolean | undefined;
@@ -4127,7 +4127,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4127
4127
  hint?: string | undefined;
4128
4128
  messages?: {
4129
4129
  text: string;
4130
- type: "error" | "success" | "info" | "warning";
4130
+ type: "success" | "error" | "info" | "warning";
4131
4131
  id?: number | undefined;
4132
4132
  }[] | undefined;
4133
4133
  required?: boolean | undefined;
@@ -4148,7 +4148,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4148
4148
  hint?: string | undefined;
4149
4149
  messages?: {
4150
4150
  text: string;
4151
- type: "error" | "success" | "info" | "warning";
4151
+ type: "success" | "error" | "info" | "warning";
4152
4152
  id?: number | undefined;
4153
4153
  }[] | undefined;
4154
4154
  required?: boolean | undefined;
@@ -4169,7 +4169,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4169
4169
  hint?: string | undefined;
4170
4170
  messages?: {
4171
4171
  text: string;
4172
- type: "error" | "success" | "info" | "warning";
4172
+ type: "success" | "error" | "info" | "warning";
4173
4173
  id?: number | undefined;
4174
4174
  }[] | undefined;
4175
4175
  required?: boolean | undefined;
@@ -4423,7 +4423,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4423
4423
  hint?: string | undefined;
4424
4424
  messages?: {
4425
4425
  text: string;
4426
- type: "error" | "success" | "info" | "warning";
4426
+ type: "success" | "error" | "info" | "warning";
4427
4427
  id?: number | undefined;
4428
4428
  }[] | undefined;
4429
4429
  required?: boolean | undefined;
@@ -4441,7 +4441,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4441
4441
  hint?: string | undefined;
4442
4442
  messages?: {
4443
4443
  text: string;
4444
- type: "error" | "success" | "info" | "warning";
4444
+ type: "success" | "error" | "info" | "warning";
4445
4445
  id?: number | undefined;
4446
4446
  }[] | undefined;
4447
4447
  required?: boolean | undefined;
@@ -4465,7 +4465,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4465
4465
  hint?: string | undefined;
4466
4466
  messages?: {
4467
4467
  text: string;
4468
- type: "error" | "success" | "info" | "warning";
4468
+ type: "success" | "error" | "info" | "warning";
4469
4469
  id?: number | undefined;
4470
4470
  }[] | undefined;
4471
4471
  required?: boolean | undefined;
@@ -4489,7 +4489,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4489
4489
  hint?: string | undefined;
4490
4490
  messages?: {
4491
4491
  text: string;
4492
- type: "error" | "success" | "info" | "warning";
4492
+ type: "success" | "error" | "info" | "warning";
4493
4493
  id?: number | undefined;
4494
4494
  }[] | undefined;
4495
4495
  required?: boolean | undefined;
@@ -4513,7 +4513,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4513
4513
  hint?: string | undefined;
4514
4514
  messages?: {
4515
4515
  text: string;
4516
- type: "error" | "success" | "info" | "warning";
4516
+ type: "success" | "error" | "info" | "warning";
4517
4517
  id?: number | undefined;
4518
4518
  }[] | undefined;
4519
4519
  required?: boolean | undefined;
@@ -4538,7 +4538,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4538
4538
  hint?: string | undefined;
4539
4539
  messages?: {
4540
4540
  text: string;
4541
- type: "error" | "success" | "info" | "warning";
4541
+ type: "success" | "error" | "info" | "warning";
4542
4542
  id?: number | undefined;
4543
4543
  }[] | undefined;
4544
4544
  required?: boolean | undefined;
@@ -4553,7 +4553,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4553
4553
  hint?: string | undefined;
4554
4554
  messages?: {
4555
4555
  text: string;
4556
- type: "error" | "success" | "info" | "warning";
4556
+ type: "success" | "error" | "info" | "warning";
4557
4557
  id?: number | undefined;
4558
4558
  }[] | undefined;
4559
4559
  required?: boolean | undefined;
@@ -4574,7 +4574,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4574
4574
  hint?: string | undefined;
4575
4575
  messages?: {
4576
4576
  text: string;
4577
- type: "error" | "success" | "info" | "warning";
4577
+ type: "success" | "error" | "info" | "warning";
4578
4578
  id?: number | undefined;
4579
4579
  }[] | undefined;
4580
4580
  required?: boolean | undefined;
@@ -4599,7 +4599,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4599
4599
  hint?: string | undefined;
4600
4600
  messages?: {
4601
4601
  text: string;
4602
- type: "error" | "success" | "info" | "warning";
4602
+ type: "success" | "error" | "info" | "warning";
4603
4603
  id?: number | undefined;
4604
4604
  }[] | undefined;
4605
4605
  required?: boolean | undefined;
@@ -4618,7 +4618,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4618
4618
  hint?: string | undefined;
4619
4619
  messages?: {
4620
4620
  text: string;
4621
- type: "error" | "success" | "info" | "warning";
4621
+ type: "success" | "error" | "info" | "warning";
4622
4622
  id?: number | undefined;
4623
4623
  }[] | undefined;
4624
4624
  required?: boolean | undefined;
@@ -4638,7 +4638,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4638
4638
  hint?: string | undefined;
4639
4639
  messages?: {
4640
4640
  text: string;
4641
- type: "error" | "success" | "info" | "warning";
4641
+ type: "success" | "error" | "info" | "warning";
4642
4642
  id?: number | undefined;
4643
4643
  }[] | undefined;
4644
4644
  required?: boolean | undefined;
@@ -4657,7 +4657,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4657
4657
  hint?: string | undefined;
4658
4658
  messages?: {
4659
4659
  text: string;
4660
- type: "error" | "success" | "info" | "warning";
4660
+ type: "success" | "error" | "info" | "warning";
4661
4661
  id?: number | undefined;
4662
4662
  }[] | undefined;
4663
4663
  required?: boolean | undefined;
@@ -4679,7 +4679,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4679
4679
  hint?: string | undefined;
4680
4680
  messages?: {
4681
4681
  text: string;
4682
- type: "error" | "success" | "info" | "warning";
4682
+ type: "success" | "error" | "info" | "warning";
4683
4683
  id?: number | undefined;
4684
4684
  }[] | undefined;
4685
4685
  required?: boolean | undefined;
@@ -4701,7 +4701,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4701
4701
  hint?: string | undefined;
4702
4702
  messages?: {
4703
4703
  text: string;
4704
- type: "error" | "success" | "info" | "warning";
4704
+ type: "success" | "error" | "info" | "warning";
4705
4705
  id?: number | undefined;
4706
4706
  }[] | undefined;
4707
4707
  required?: boolean | undefined;
@@ -4720,7 +4720,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4720
4720
  hint?: string | undefined;
4721
4721
  messages?: {
4722
4722
  text: string;
4723
- type: "error" | "success" | "info" | "warning";
4723
+ type: "success" | "error" | "info" | "warning";
4724
4724
  id?: number | undefined;
4725
4725
  }[] | undefined;
4726
4726
  required?: boolean | undefined;
@@ -4745,7 +4745,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4745
4745
  hint?: string | undefined;
4746
4746
  messages?: {
4747
4747
  text: string;
4748
- type: "error" | "success" | "info" | "warning";
4748
+ type: "success" | "error" | "info" | "warning";
4749
4749
  id?: number | undefined;
4750
4750
  }[] | undefined;
4751
4751
  required?: boolean | undefined;
@@ -4766,7 +4766,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4766
4766
  hint?: string | undefined;
4767
4767
  messages?: {
4768
4768
  text: string;
4769
- type: "error" | "success" | "info" | "warning";
4769
+ type: "success" | "error" | "info" | "warning";
4770
4770
  id?: number | undefined;
4771
4771
  }[] | undefined;
4772
4772
  required?: boolean | undefined;
@@ -4787,7 +4787,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4787
4787
  hint?: string | undefined;
4788
4788
  messages?: {
4789
4789
  text: string;
4790
- type: "error" | "success" | "info" | "warning";
4790
+ type: "success" | "error" | "info" | "warning";
4791
4791
  id?: number | undefined;
4792
4792
  }[] | undefined;
4793
4793
  required?: boolean | undefined;
@@ -5018,7 +5018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5018
5018
  hint?: string | undefined;
5019
5019
  messages?: {
5020
5020
  text: string;
5021
- type: "error" | "success" | "info" | "warning";
5021
+ type: "success" | "error" | "info" | "warning";
5022
5022
  id?: number | undefined;
5023
5023
  }[] | undefined;
5024
5024
  required?: boolean | undefined;
@@ -5036,7 +5036,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5036
5036
  hint?: string | undefined;
5037
5037
  messages?: {
5038
5038
  text: string;
5039
- type: "error" | "success" | "info" | "warning";
5039
+ type: "success" | "error" | "info" | "warning";
5040
5040
  id?: number | undefined;
5041
5041
  }[] | undefined;
5042
5042
  required?: boolean | undefined;
@@ -5060,7 +5060,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5060
5060
  hint?: string | undefined;
5061
5061
  messages?: {
5062
5062
  text: string;
5063
- type: "error" | "success" | "info" | "warning";
5063
+ type: "success" | "error" | "info" | "warning";
5064
5064
  id?: number | undefined;
5065
5065
  }[] | undefined;
5066
5066
  required?: boolean | undefined;
@@ -5084,7 +5084,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5084
5084
  hint?: string | undefined;
5085
5085
  messages?: {
5086
5086
  text: string;
5087
- type: "error" | "success" | "info" | "warning";
5087
+ type: "success" | "error" | "info" | "warning";
5088
5088
  id?: number | undefined;
5089
5089
  }[] | undefined;
5090
5090
  required?: boolean | undefined;
@@ -5108,7 +5108,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5108
5108
  hint?: string | undefined;
5109
5109
  messages?: {
5110
5110
  text: string;
5111
- type: "error" | "success" | "info" | "warning";
5111
+ type: "success" | "error" | "info" | "warning";
5112
5112
  id?: number | undefined;
5113
5113
  }[] | undefined;
5114
5114
  required?: boolean | undefined;
@@ -5137,7 +5137,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5137
5137
  hint?: string | undefined;
5138
5138
  messages?: {
5139
5139
  text: string;
5140
- type: "error" | "success" | "info" | "warning";
5140
+ type: "success" | "error" | "info" | "warning";
5141
5141
  id?: number | undefined;
5142
5142
  }[] | undefined;
5143
5143
  required?: boolean | undefined;
@@ -5152,7 +5152,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5152
5152
  hint?: string | undefined;
5153
5153
  messages?: {
5154
5154
  text: string;
5155
- type: "error" | "success" | "info" | "warning";
5155
+ type: "success" | "error" | "info" | "warning";
5156
5156
  id?: number | undefined;
5157
5157
  }[] | undefined;
5158
5158
  required?: boolean | undefined;
@@ -5173,7 +5173,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5173
5173
  hint?: string | undefined;
5174
5174
  messages?: {
5175
5175
  text: string;
5176
- type: "error" | "success" | "info" | "warning";
5176
+ type: "success" | "error" | "info" | "warning";
5177
5177
  id?: number | undefined;
5178
5178
  }[] | undefined;
5179
5179
  required?: boolean | undefined;
@@ -5198,7 +5198,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5198
5198
  hint?: string | undefined;
5199
5199
  messages?: {
5200
5200
  text: string;
5201
- type: "error" | "success" | "info" | "warning";
5201
+ type: "success" | "error" | "info" | "warning";
5202
5202
  id?: number | undefined;
5203
5203
  }[] | undefined;
5204
5204
  required?: boolean | undefined;
@@ -5217,7 +5217,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5217
5217
  hint?: string | undefined;
5218
5218
  messages?: {
5219
5219
  text: string;
5220
- type: "error" | "success" | "info" | "warning";
5220
+ type: "success" | "error" | "info" | "warning";
5221
5221
  id?: number | undefined;
5222
5222
  }[] | undefined;
5223
5223
  required?: boolean | undefined;
@@ -5237,7 +5237,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5237
5237
  hint?: string | undefined;
5238
5238
  messages?: {
5239
5239
  text: string;
5240
- type: "error" | "success" | "info" | "warning";
5240
+ type: "success" | "error" | "info" | "warning";
5241
5241
  id?: number | undefined;
5242
5242
  }[] | undefined;
5243
5243
  required?: boolean | undefined;
@@ -5256,7 +5256,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5256
5256
  hint?: string | undefined;
5257
5257
  messages?: {
5258
5258
  text: string;
5259
- type: "error" | "success" | "info" | "warning";
5259
+ type: "success" | "error" | "info" | "warning";
5260
5260
  id?: number | undefined;
5261
5261
  }[] | undefined;
5262
5262
  required?: boolean | undefined;
@@ -5278,7 +5278,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5278
5278
  hint?: string | undefined;
5279
5279
  messages?: {
5280
5280
  text: string;
5281
- type: "error" | "success" | "info" | "warning";
5281
+ type: "success" | "error" | "info" | "warning";
5282
5282
  id?: number | undefined;
5283
5283
  }[] | undefined;
5284
5284
  required?: boolean | undefined;
@@ -5300,7 +5300,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5300
5300
  hint?: string | undefined;
5301
5301
  messages?: {
5302
5302
  text: string;
5303
- type: "error" | "success" | "info" | "warning";
5303
+ type: "success" | "error" | "info" | "warning";
5304
5304
  id?: number | undefined;
5305
5305
  }[] | undefined;
5306
5306
  required?: boolean | undefined;
@@ -5319,7 +5319,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5319
5319
  hint?: string | undefined;
5320
5320
  messages?: {
5321
5321
  text: string;
5322
- type: "error" | "success" | "info" | "warning";
5322
+ type: "success" | "error" | "info" | "warning";
5323
5323
  id?: number | undefined;
5324
5324
  }[] | undefined;
5325
5325
  required?: boolean | undefined;
@@ -5344,7 +5344,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5344
5344
  hint?: string | undefined;
5345
5345
  messages?: {
5346
5346
  text: string;
5347
- type: "error" | "success" | "info" | "warning";
5347
+ type: "success" | "error" | "info" | "warning";
5348
5348
  id?: number | undefined;
5349
5349
  }[] | undefined;
5350
5350
  required?: boolean | undefined;
@@ -5365,7 +5365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5365
5365
  hint?: string | undefined;
5366
5366
  messages?: {
5367
5367
  text: string;
5368
- type: "error" | "success" | "info" | "warning";
5368
+ type: "success" | "error" | "info" | "warning";
5369
5369
  id?: number | undefined;
5370
5370
  }[] | undefined;
5371
5371
  required?: boolean | undefined;
@@ -5386,7 +5386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5386
5386
  hint?: string | undefined;
5387
5387
  messages?: {
5388
5388
  text: string;
5389
- type: "error" | "success" | "info" | "warning";
5389
+ type: "success" | "error" | "info" | "warning";
5390
5390
  id?: number | undefined;
5391
5391
  }[] | undefined;
5392
5392
  required?: boolean | undefined;
@@ -5619,7 +5619,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5619
5619
  hint?: string | undefined;
5620
5620
  messages?: {
5621
5621
  text: string;
5622
- type: "error" | "success" | "info" | "warning";
5622
+ type: "success" | "error" | "info" | "warning";
5623
5623
  id?: number | undefined;
5624
5624
  }[] | undefined;
5625
5625
  required?: boolean | undefined;
@@ -5637,7 +5637,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5637
5637
  hint?: string | undefined;
5638
5638
  messages?: {
5639
5639
  text: string;
5640
- type: "error" | "success" | "info" | "warning";
5640
+ type: "success" | "error" | "info" | "warning";
5641
5641
  id?: number | undefined;
5642
5642
  }[] | undefined;
5643
5643
  required?: boolean | undefined;
@@ -5661,7 +5661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5661
5661
  hint?: string | undefined;
5662
5662
  messages?: {
5663
5663
  text: string;
5664
- type: "error" | "success" | "info" | "warning";
5664
+ type: "success" | "error" | "info" | "warning";
5665
5665
  id?: number | undefined;
5666
5666
  }[] | undefined;
5667
5667
  required?: boolean | undefined;
@@ -5685,7 +5685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5685
5685
  hint?: string | undefined;
5686
5686
  messages?: {
5687
5687
  text: string;
5688
- type: "error" | "success" | "info" | "warning";
5688
+ type: "success" | "error" | "info" | "warning";
5689
5689
  id?: number | undefined;
5690
5690
  }[] | undefined;
5691
5691
  required?: boolean | undefined;
@@ -5709,7 +5709,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5709
5709
  hint?: string | undefined;
5710
5710
  messages?: {
5711
5711
  text: string;
5712
- type: "error" | "success" | "info" | "warning";
5712
+ type: "success" | "error" | "info" | "warning";
5713
5713
  id?: number | undefined;
5714
5714
  }[] | undefined;
5715
5715
  required?: boolean | undefined;
@@ -5734,7 +5734,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5734
5734
  hint?: string | undefined;
5735
5735
  messages?: {
5736
5736
  text: string;
5737
- type: "error" | "success" | "info" | "warning";
5737
+ type: "success" | "error" | "info" | "warning";
5738
5738
  id?: number | undefined;
5739
5739
  }[] | undefined;
5740
5740
  required?: boolean | undefined;
@@ -5749,7 +5749,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5749
5749
  hint?: string | undefined;
5750
5750
  messages?: {
5751
5751
  text: string;
5752
- type: "error" | "success" | "info" | "warning";
5752
+ type: "success" | "error" | "info" | "warning";
5753
5753
  id?: number | undefined;
5754
5754
  }[] | undefined;
5755
5755
  required?: boolean | undefined;
@@ -5770,7 +5770,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5770
5770
  hint?: string | undefined;
5771
5771
  messages?: {
5772
5772
  text: string;
5773
- type: "error" | "success" | "info" | "warning";
5773
+ type: "success" | "error" | "info" | "warning";
5774
5774
  id?: number | undefined;
5775
5775
  }[] | undefined;
5776
5776
  required?: boolean | undefined;
@@ -5795,7 +5795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5795
5795
  hint?: string | undefined;
5796
5796
  messages?: {
5797
5797
  text: string;
5798
- type: "error" | "success" | "info" | "warning";
5798
+ type: "success" | "error" | "info" | "warning";
5799
5799
  id?: number | undefined;
5800
5800
  }[] | undefined;
5801
5801
  required?: boolean | undefined;
@@ -5814,7 +5814,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5814
5814
  hint?: string | undefined;
5815
5815
  messages?: {
5816
5816
  text: string;
5817
- type: "error" | "success" | "info" | "warning";
5817
+ type: "success" | "error" | "info" | "warning";
5818
5818
  id?: number | undefined;
5819
5819
  }[] | undefined;
5820
5820
  required?: boolean | undefined;
@@ -5834,7 +5834,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5834
5834
  hint?: string | undefined;
5835
5835
  messages?: {
5836
5836
  text: string;
5837
- type: "error" | "success" | "info" | "warning";
5837
+ type: "success" | "error" | "info" | "warning";
5838
5838
  id?: number | undefined;
5839
5839
  }[] | undefined;
5840
5840
  required?: boolean | undefined;
@@ -5853,7 +5853,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5853
5853
  hint?: string | undefined;
5854
5854
  messages?: {
5855
5855
  text: string;
5856
- type: "error" | "success" | "info" | "warning";
5856
+ type: "success" | "error" | "info" | "warning";
5857
5857
  id?: number | undefined;
5858
5858
  }[] | undefined;
5859
5859
  required?: boolean | undefined;
@@ -5875,7 +5875,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5875
5875
  hint?: string | undefined;
5876
5876
  messages?: {
5877
5877
  text: string;
5878
- type: "error" | "success" | "info" | "warning";
5878
+ type: "success" | "error" | "info" | "warning";
5879
5879
  id?: number | undefined;
5880
5880
  }[] | undefined;
5881
5881
  required?: boolean | undefined;
@@ -5897,7 +5897,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5897
5897
  hint?: string | undefined;
5898
5898
  messages?: {
5899
5899
  text: string;
5900
- type: "error" | "success" | "info" | "warning";
5900
+ type: "success" | "error" | "info" | "warning";
5901
5901
  id?: number | undefined;
5902
5902
  }[] | undefined;
5903
5903
  required?: boolean | undefined;
@@ -5916,7 +5916,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5916
5916
  hint?: string | undefined;
5917
5917
  messages?: {
5918
5918
  text: string;
5919
- type: "error" | "success" | "info" | "warning";
5919
+ type: "success" | "error" | "info" | "warning";
5920
5920
  id?: number | undefined;
5921
5921
  }[] | undefined;
5922
5922
  required?: boolean | undefined;
@@ -5941,7 +5941,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5941
5941
  hint?: string | undefined;
5942
5942
  messages?: {
5943
5943
  text: string;
5944
- type: "error" | "success" | "info" | "warning";
5944
+ type: "success" | "error" | "info" | "warning";
5945
5945
  id?: number | undefined;
5946
5946
  }[] | undefined;
5947
5947
  required?: boolean | undefined;
@@ -5962,7 +5962,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5962
5962
  hint?: string | undefined;
5963
5963
  messages?: {
5964
5964
  text: string;
5965
- type: "error" | "success" | "info" | "warning";
5965
+ type: "success" | "error" | "info" | "warning";
5966
5966
  id?: number | undefined;
5967
5967
  }[] | undefined;
5968
5968
  required?: boolean | undefined;
@@ -5983,7 +5983,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5983
5983
  hint?: string | undefined;
5984
5984
  messages?: {
5985
5985
  text: string;
5986
- type: "error" | "success" | "info" | "warning";
5986
+ type: "success" | "error" | "info" | "warning";
5987
5987
  id?: number | undefined;
5988
5988
  }[] | undefined;
5989
5989
  required?: boolean | undefined;
@@ -6214,7 +6214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6214
6214
  hint?: string | undefined;
6215
6215
  messages?: {
6216
6216
  text: string;
6217
- type: "error" | "success" | "info" | "warning";
6217
+ type: "success" | "error" | "info" | "warning";
6218
6218
  id?: number | undefined;
6219
6219
  }[] | undefined;
6220
6220
  required?: boolean | undefined;
@@ -6232,7 +6232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6232
6232
  hint?: string | undefined;
6233
6233
  messages?: {
6234
6234
  text: string;
6235
- type: "error" | "success" | "info" | "warning";
6235
+ type: "success" | "error" | "info" | "warning";
6236
6236
  id?: number | undefined;
6237
6237
  }[] | undefined;
6238
6238
  required?: boolean | undefined;
@@ -6256,7 +6256,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6256
6256
  hint?: string | undefined;
6257
6257
  messages?: {
6258
6258
  text: string;
6259
- type: "error" | "success" | "info" | "warning";
6259
+ type: "success" | "error" | "info" | "warning";
6260
6260
  id?: number | undefined;
6261
6261
  }[] | undefined;
6262
6262
  required?: boolean | undefined;
@@ -6280,7 +6280,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6280
6280
  hint?: string | undefined;
6281
6281
  messages?: {
6282
6282
  text: string;
6283
- type: "error" | "success" | "info" | "warning";
6283
+ type: "success" | "error" | "info" | "warning";
6284
6284
  id?: number | undefined;
6285
6285
  }[] | undefined;
6286
6286
  required?: boolean | undefined;
@@ -6304,7 +6304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6304
6304
  hint?: string | undefined;
6305
6305
  messages?: {
6306
6306
  text: string;
6307
- type: "error" | "success" | "info" | "warning";
6307
+ type: "success" | "error" | "info" | "warning";
6308
6308
  id?: number | undefined;
6309
6309
  }[] | undefined;
6310
6310
  required?: boolean | undefined;
@@ -6333,7 +6333,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6333
6333
  hint?: string | undefined;
6334
6334
  messages?: {
6335
6335
  text: string;
6336
- type: "error" | "success" | "info" | "warning";
6336
+ type: "success" | "error" | "info" | "warning";
6337
6337
  id?: number | undefined;
6338
6338
  }[] | undefined;
6339
6339
  required?: boolean | undefined;
@@ -6348,7 +6348,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6348
6348
  hint?: string | undefined;
6349
6349
  messages?: {
6350
6350
  text: string;
6351
- type: "error" | "success" | "info" | "warning";
6351
+ type: "success" | "error" | "info" | "warning";
6352
6352
  id?: number | undefined;
6353
6353
  }[] | undefined;
6354
6354
  required?: boolean | undefined;
@@ -6369,7 +6369,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6369
6369
  hint?: string | undefined;
6370
6370
  messages?: {
6371
6371
  text: string;
6372
- type: "error" | "success" | "info" | "warning";
6372
+ type: "success" | "error" | "info" | "warning";
6373
6373
  id?: number | undefined;
6374
6374
  }[] | undefined;
6375
6375
  required?: boolean | undefined;
@@ -6394,7 +6394,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6394
6394
  hint?: string | undefined;
6395
6395
  messages?: {
6396
6396
  text: string;
6397
- type: "error" | "success" | "info" | "warning";
6397
+ type: "success" | "error" | "info" | "warning";
6398
6398
  id?: number | undefined;
6399
6399
  }[] | undefined;
6400
6400
  required?: boolean | undefined;
@@ -6413,7 +6413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6413
6413
  hint?: string | undefined;
6414
6414
  messages?: {
6415
6415
  text: string;
6416
- type: "error" | "success" | "info" | "warning";
6416
+ type: "success" | "error" | "info" | "warning";
6417
6417
  id?: number | undefined;
6418
6418
  }[] | undefined;
6419
6419
  required?: boolean | undefined;
@@ -6433,7 +6433,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6433
6433
  hint?: string | undefined;
6434
6434
  messages?: {
6435
6435
  text: string;
6436
- type: "error" | "success" | "info" | "warning";
6436
+ type: "success" | "error" | "info" | "warning";
6437
6437
  id?: number | undefined;
6438
6438
  }[] | undefined;
6439
6439
  required?: boolean | undefined;
@@ -6452,7 +6452,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6452
6452
  hint?: string | undefined;
6453
6453
  messages?: {
6454
6454
  text: string;
6455
- type: "error" | "success" | "info" | "warning";
6455
+ type: "success" | "error" | "info" | "warning";
6456
6456
  id?: number | undefined;
6457
6457
  }[] | undefined;
6458
6458
  required?: boolean | undefined;
@@ -6474,7 +6474,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6474
6474
  hint?: string | undefined;
6475
6475
  messages?: {
6476
6476
  text: string;
6477
- type: "error" | "success" | "info" | "warning";
6477
+ type: "success" | "error" | "info" | "warning";
6478
6478
  id?: number | undefined;
6479
6479
  }[] | undefined;
6480
6480
  required?: boolean | undefined;
@@ -6496,7 +6496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6496
6496
  hint?: string | undefined;
6497
6497
  messages?: {
6498
6498
  text: string;
6499
- type: "error" | "success" | "info" | "warning";
6499
+ type: "success" | "error" | "info" | "warning";
6500
6500
  id?: number | undefined;
6501
6501
  }[] | undefined;
6502
6502
  required?: boolean | undefined;
@@ -6515,7 +6515,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6515
6515
  hint?: string | undefined;
6516
6516
  messages?: {
6517
6517
  text: string;
6518
- type: "error" | "success" | "info" | "warning";
6518
+ type: "success" | "error" | "info" | "warning";
6519
6519
  id?: number | undefined;
6520
6520
  }[] | undefined;
6521
6521
  required?: boolean | undefined;
@@ -6540,7 +6540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6540
6540
  hint?: string | undefined;
6541
6541
  messages?: {
6542
6542
  text: string;
6543
- type: "error" | "success" | "info" | "warning";
6543
+ type: "success" | "error" | "info" | "warning";
6544
6544
  id?: number | undefined;
6545
6545
  }[] | undefined;
6546
6546
  required?: boolean | undefined;
@@ -6561,7 +6561,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6561
6561
  hint?: string | undefined;
6562
6562
  messages?: {
6563
6563
  text: string;
6564
- type: "error" | "success" | "info" | "warning";
6564
+ type: "success" | "error" | "info" | "warning";
6565
6565
  id?: number | undefined;
6566
6566
  }[] | undefined;
6567
6567
  required?: boolean | undefined;
@@ -6582,7 +6582,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6582
6582
  hint?: string | undefined;
6583
6583
  messages?: {
6584
6584
  text: string;
6585
- type: "error" | "success" | "info" | "warning";
6585
+ type: "success" | "error" | "info" | "warning";
6586
6586
  id?: number | undefined;
6587
6587
  }[] | undefined;
6588
6588
  required?: boolean | undefined;
@@ -6812,7 +6812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6812
6812
  };
6813
6813
  };
6814
6814
  output: {
6815
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6815
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6816
6816
  language: string;
6817
6817
  }[];
6818
6818
  outputFormat: "json";
@@ -6850,7 +6850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6850
6850
  $get: {
6851
6851
  input: {
6852
6852
  param: {
6853
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6853
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6854
6854
  language: string;
6855
6855
  };
6856
6856
  } & {
@@ -6872,7 +6872,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6872
6872
  $put: {
6873
6873
  input: {
6874
6874
  param: {
6875
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6875
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6876
6876
  language: string;
6877
6877
  };
6878
6878
  } & {
@@ -6896,7 +6896,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6896
6896
  $delete: {
6897
6897
  input: {
6898
6898
  param: {
6899
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6899
+ prompt: "common" | "mfa" | "organizations" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6900
6900
  language: string;
6901
6901
  };
6902
6902
  } & {
@@ -6988,7 +6988,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6988
6988
  active?: boolean | undefined;
6989
6989
  } | undefined;
6990
6990
  signup?: {
6991
- status?: "optional" | "disabled" | "required" | undefined;
6991
+ status?: "optional" | "required" | "disabled" | undefined;
6992
6992
  verification?: {
6993
6993
  active?: boolean | undefined;
6994
6994
  } | undefined;
@@ -7005,7 +7005,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7005
7005
  active?: boolean | undefined;
7006
7006
  } | undefined;
7007
7007
  signup?: {
7008
- status?: "optional" | "disabled" | "required" | undefined;
7008
+ status?: "optional" | "required" | "disabled" | undefined;
7009
7009
  } | undefined;
7010
7010
  validation?: {
7011
7011
  max_length?: number | undefined;
@@ -7022,7 +7022,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7022
7022
  active?: boolean | undefined;
7023
7023
  } | undefined;
7024
7024
  signup?: {
7025
- status?: "optional" | "disabled" | "required" | undefined;
7025
+ status?: "optional" | "required" | "disabled" | undefined;
7026
7026
  } | undefined;
7027
7027
  } | undefined;
7028
7028
  } | undefined;
@@ -7035,7 +7035,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7035
7035
  } | undefined;
7036
7036
  } | undefined;
7037
7037
  passkey_options?: {
7038
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7038
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7039
7039
  local_enrollment_enabled?: boolean | undefined;
7040
7040
  progressive_enrollment_enabled?: boolean | undefined;
7041
7041
  } | undefined;
@@ -7122,7 +7122,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7122
7122
  active?: boolean | undefined;
7123
7123
  } | undefined;
7124
7124
  signup?: {
7125
- status?: "optional" | "disabled" | "required" | undefined;
7125
+ status?: "optional" | "required" | "disabled" | undefined;
7126
7126
  verification?: {
7127
7127
  active?: boolean | undefined;
7128
7128
  } | undefined;
@@ -7139,7 +7139,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7139
7139
  active?: boolean | undefined;
7140
7140
  } | undefined;
7141
7141
  signup?: {
7142
- status?: "optional" | "disabled" | "required" | undefined;
7142
+ status?: "optional" | "required" | "disabled" | undefined;
7143
7143
  } | undefined;
7144
7144
  validation?: {
7145
7145
  max_length?: number | undefined;
@@ -7156,7 +7156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7156
7156
  active?: boolean | undefined;
7157
7157
  } | undefined;
7158
7158
  signup?: {
7159
- status?: "optional" | "disabled" | "required" | undefined;
7159
+ status?: "optional" | "required" | "disabled" | undefined;
7160
7160
  } | undefined;
7161
7161
  } | undefined;
7162
7162
  } | undefined;
@@ -7169,7 +7169,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7169
7169
  } | undefined;
7170
7170
  } | undefined;
7171
7171
  passkey_options?: {
7172
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7172
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7173
7173
  local_enrollment_enabled?: boolean | undefined;
7174
7174
  progressive_enrollment_enabled?: boolean | undefined;
7175
7175
  } | undefined;
@@ -7271,7 +7271,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7271
7271
  active?: boolean | undefined;
7272
7272
  } | undefined;
7273
7273
  signup?: {
7274
- status?: "optional" | "disabled" | "required" | undefined;
7274
+ status?: "optional" | "required" | "disabled" | undefined;
7275
7275
  verification?: {
7276
7276
  active?: boolean | undefined;
7277
7277
  } | undefined;
@@ -7288,7 +7288,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7288
7288
  active?: boolean | undefined;
7289
7289
  } | undefined;
7290
7290
  signup?: {
7291
- status?: "optional" | "disabled" | "required" | undefined;
7291
+ status?: "optional" | "required" | "disabled" | undefined;
7292
7292
  } | undefined;
7293
7293
  validation?: {
7294
7294
  max_length?: number | undefined;
@@ -7305,7 +7305,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7305
7305
  active?: boolean | undefined;
7306
7306
  } | undefined;
7307
7307
  signup?: {
7308
- status?: "optional" | "disabled" | "required" | undefined;
7308
+ status?: "optional" | "required" | "disabled" | undefined;
7309
7309
  } | undefined;
7310
7310
  } | undefined;
7311
7311
  } | undefined;
@@ -7318,7 +7318,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7318
7318
  } | undefined;
7319
7319
  } | undefined;
7320
7320
  passkey_options?: {
7321
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7321
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7322
7322
  local_enrollment_enabled?: boolean | undefined;
7323
7323
  progressive_enrollment_enabled?: boolean | undefined;
7324
7324
  } | undefined;
@@ -7450,7 +7450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7450
7450
  active?: boolean | undefined;
7451
7451
  } | undefined;
7452
7452
  signup?: {
7453
- status?: "optional" | "disabled" | "required" | undefined;
7453
+ status?: "optional" | "required" | "disabled" | undefined;
7454
7454
  verification?: {
7455
7455
  active?: boolean | undefined;
7456
7456
  } | undefined;
@@ -7467,7 +7467,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7467
7467
  active?: boolean | undefined;
7468
7468
  } | undefined;
7469
7469
  signup?: {
7470
- status?: "optional" | "disabled" | "required" | undefined;
7470
+ status?: "optional" | "required" | "disabled" | undefined;
7471
7471
  } | undefined;
7472
7472
  validation?: {
7473
7473
  max_length?: number | undefined;
@@ -7484,7 +7484,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7484
7484
  active?: boolean | undefined;
7485
7485
  } | undefined;
7486
7486
  signup?: {
7487
- status?: "optional" | "disabled" | "required" | undefined;
7487
+ status?: "optional" | "required" | "disabled" | undefined;
7488
7488
  } | undefined;
7489
7489
  } | undefined;
7490
7490
  } | undefined;
@@ -7497,7 +7497,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7497
7497
  } | undefined;
7498
7498
  } | undefined;
7499
7499
  passkey_options?: {
7500
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7500
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7501
7501
  local_enrollment_enabled?: boolean | undefined;
7502
7502
  progressive_enrollment_enabled?: boolean | undefined;
7503
7503
  } | undefined;
@@ -7608,7 +7608,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7608
7608
  active?: boolean | undefined;
7609
7609
  } | undefined;
7610
7610
  signup?: {
7611
- status?: "optional" | "disabled" | "required" | undefined;
7611
+ status?: "optional" | "required" | "disabled" | undefined;
7612
7612
  verification?: {
7613
7613
  active?: boolean | undefined;
7614
7614
  } | undefined;
@@ -7625,7 +7625,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7625
7625
  active?: boolean | undefined;
7626
7626
  } | undefined;
7627
7627
  signup?: {
7628
- status?: "optional" | "disabled" | "required" | undefined;
7628
+ status?: "optional" | "required" | "disabled" | undefined;
7629
7629
  } | undefined;
7630
7630
  validation?: {
7631
7631
  max_length?: number | undefined;
@@ -7642,7 +7642,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7642
7642
  active?: boolean | undefined;
7643
7643
  } | undefined;
7644
7644
  signup?: {
7645
- status?: "optional" | "disabled" | "required" | undefined;
7645
+ status?: "optional" | "required" | "disabled" | undefined;
7646
7646
  } | undefined;
7647
7647
  } | undefined;
7648
7648
  } | undefined;
@@ -7655,7 +7655,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7655
7655
  } | undefined;
7656
7656
  } | undefined;
7657
7657
  passkey_options?: {
7658
- challenge_ui?: "both" | "autofill" | "button" | undefined;
7658
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
7659
7659
  local_enrollment_enabled?: boolean | undefined;
7660
7660
  progressive_enrollment_enabled?: boolean | undefined;
7661
7661
  } | undefined;
@@ -7758,7 +7758,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7758
7758
  };
7759
7759
  } | {
7760
7760
  mode: "inline";
7761
- status: "error" | "success";
7761
+ status: "success" | "error";
7762
7762
  connection_id: string;
7763
7763
  connection_name: string;
7764
7764
  strategy: string;
@@ -8397,7 +8397,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8397
8397
  log_type: string;
8398
8398
  category: "user_action" | "admin_action" | "system" | "api";
8399
8399
  actor: {
8400
- type: "client_credentials" | "user" | "api_key" | "system" | "admin";
8400
+ type: "user" | "client_credentials" | "api_key" | "system" | "admin";
8401
8401
  id?: string | undefined;
8402
8402
  email?: string | undefined;
8403
8403
  org_id?: string | undefined;
@@ -8875,7 +8875,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8875
8875
  [x: string]: import("hono/utils/types").JSONValue;
8876
8876
  };
8877
8877
  id: string;
8878
- status: "suspended" | "active" | "paused";
8878
+ status: "active" | "suspended" | "paused";
8879
8879
  filters?: {
8880
8880
  type: string;
8881
8881
  name: string;
@@ -8907,7 +8907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8907
8907
  [x: string]: import("hono/utils/types").JSONValue;
8908
8908
  };
8909
8909
  id: string;
8910
- status: "suspended" | "active" | "paused";
8910
+ status: "active" | "suspended" | "paused";
8911
8911
  filters?: {
8912
8912
  type: string;
8913
8913
  name: string;
@@ -8932,7 +8932,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8932
8932
  name: string;
8933
8933
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8934
8934
  sink: Record<string, unknown>;
8935
- status?: "suspended" | "active" | "paused" | undefined;
8935
+ status?: "active" | "suspended" | "paused" | undefined;
8936
8936
  filters?: {
8937
8937
  type: string;
8938
8938
  name: string;
@@ -8947,7 +8947,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8947
8947
  [x: string]: import("hono/utils/types").JSONValue;
8948
8948
  };
8949
8949
  id: string;
8950
- status: "suspended" | "active" | "paused";
8950
+ status: "active" | "suspended" | "paused";
8951
8951
  filters?: {
8952
8952
  type: string;
8953
8953
  name: string;
@@ -8982,7 +8982,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8982
8982
  }[] | undefined;
8983
8983
  isPriority?: boolean | undefined;
8984
8984
  id?: string | undefined;
8985
- status?: "suspended" | "active" | "paused" | undefined;
8985
+ status?: "active" | "suspended" | "paused" | undefined;
8986
8986
  created_at?: string | undefined;
8987
8987
  updated_at?: string | undefined;
8988
8988
  };
@@ -8994,7 +8994,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8994
8994
  [x: string]: import("hono/utils/types").JSONValue;
8995
8995
  };
8996
8996
  id: string;
8997
- status: "suspended" | "active" | "paused";
8997
+ status: "active" | "suspended" | "paused";
8998
8998
  filters?: {
8999
8999
  type: string;
9000
9000
  name: string;
@@ -9045,7 +9045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9045
9045
  };
9046
9046
  };
9047
9047
  output: {
9048
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9048
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9049
9049
  date: string;
9050
9050
  isMobile: boolean;
9051
9051
  log_id: string;
@@ -9084,7 +9084,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9084
9084
  limit: number;
9085
9085
  length: number;
9086
9086
  logs: {
9087
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9087
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9088
9088
  date: string;
9089
9089
  isMobile: boolean;
9090
9090
  log_id: string;
@@ -9138,7 +9138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9138
9138
  };
9139
9139
  };
9140
9140
  output: {
9141
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9141
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9142
9142
  date: string;
9143
9143
  isMobile: boolean;
9144
9144
  log_id: string;
@@ -10214,7 +10214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10214
10214
  active?: boolean | undefined;
10215
10215
  } | undefined;
10216
10216
  signup?: {
10217
- status?: "optional" | "disabled" | "required" | undefined;
10217
+ status?: "optional" | "required" | "disabled" | undefined;
10218
10218
  verification?: {
10219
10219
  active?: boolean | undefined;
10220
10220
  } | undefined;
@@ -10231,7 +10231,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10231
10231
  active?: boolean | undefined;
10232
10232
  } | undefined;
10233
10233
  signup?: {
10234
- status?: "optional" | "disabled" | "required" | undefined;
10234
+ status?: "optional" | "required" | "disabled" | undefined;
10235
10235
  } | undefined;
10236
10236
  validation?: {
10237
10237
  max_length?: number | undefined;
@@ -10248,7 +10248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10248
10248
  active?: boolean | undefined;
10249
10249
  } | undefined;
10250
10250
  signup?: {
10251
- status?: "optional" | "disabled" | "required" | undefined;
10251
+ status?: "optional" | "required" | "disabled" | undefined;
10252
10252
  } | undefined;
10253
10253
  } | undefined;
10254
10254
  } | undefined;
@@ -10261,7 +10261,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10261
10261
  } | undefined;
10262
10262
  } | undefined;
10263
10263
  passkey_options?: {
10264
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10264
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10265
10265
  local_enrollment_enabled?: boolean | undefined;
10266
10266
  progressive_enrollment_enabled?: boolean | undefined;
10267
10267
  } | undefined;
@@ -10368,7 +10368,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10368
10368
  active?: boolean | undefined;
10369
10369
  } | undefined;
10370
10370
  signup?: {
10371
- status?: "optional" | "disabled" | "required" | undefined;
10371
+ status?: "optional" | "required" | "disabled" | undefined;
10372
10372
  verification?: {
10373
10373
  active?: boolean | undefined;
10374
10374
  } | undefined;
@@ -10385,7 +10385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10385
10385
  active?: boolean | undefined;
10386
10386
  } | undefined;
10387
10387
  signup?: {
10388
- status?: "optional" | "disabled" | "required" | undefined;
10388
+ status?: "optional" | "required" | "disabled" | undefined;
10389
10389
  } | undefined;
10390
10390
  validation?: {
10391
10391
  max_length?: number | undefined;
@@ -10402,7 +10402,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10402
10402
  active?: boolean | undefined;
10403
10403
  } | undefined;
10404
10404
  signup?: {
10405
- status?: "optional" | "disabled" | "required" | undefined;
10405
+ status?: "optional" | "required" | "disabled" | undefined;
10406
10406
  } | undefined;
10407
10407
  } | undefined;
10408
10408
  } | undefined;
@@ -10415,7 +10415,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10415
10415
  } | undefined;
10416
10416
  } | undefined;
10417
10417
  passkey_options?: {
10418
- challenge_ui?: "both" | "autofill" | "button" | undefined;
10418
+ challenge_ui?: "button" | "both" | "autofill" | undefined;
10419
10419
  local_enrollment_enabled?: boolean | undefined;
10420
10420
  progressive_enrollment_enabled?: boolean | undefined;
10421
10421
  } | undefined;
@@ -11356,7 +11356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11356
11356
  };
11357
11357
  };
11358
11358
  output: {
11359
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11359
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11360
11360
  date: string;
11361
11361
  isMobile: boolean;
11362
11362
  log_id: string;
@@ -11395,7 +11395,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11395
11395
  limit: number;
11396
11396
  length: number;
11397
11397
  logs: {
11398
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11398
+ type: "i" | "f" | "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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11399
11399
  date: string;
11400
11400
  isMobile: boolean;
11401
11401
  log_id: string;
@@ -11710,7 +11710,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11710
11710
  };
11711
11711
  } & {
11712
11712
  json: {
11713
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11713
+ 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
11714
  body: string;
11715
11715
  from: string;
11716
11716
  subject: string;
@@ -11731,7 +11731,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11731
11731
  };
11732
11732
  } & {
11733
11733
  json: {
11734
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11734
+ 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
11735
  body: string;
11736
11736
  from: string;
11737
11737
  subject: string;
@@ -11743,7 +11743,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11743
11743
  };
11744
11744
  };
11745
11745
  output: {
11746
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11746
+ 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
11747
  body: string;
11748
11748
  from: string;
11749
11749
  subject: string;
@@ -11766,7 +11766,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11766
11766
  };
11767
11767
  };
11768
11768
  output: {
11769
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11769
+ 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
11770
  body: string;
11771
11771
  subject: string;
11772
11772
  }[];
@@ -11779,7 +11779,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11779
11779
  $get: {
11780
11780
  input: {
11781
11781
  param: {
11782
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11782
+ 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
11783
  };
11784
11784
  } & {
11785
11785
  header: {
@@ -11792,7 +11792,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11792
11792
  } | {
11793
11793
  input: {
11794
11794
  param: {
11795
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11795
+ 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
11796
  };
11797
11797
  } & {
11798
11798
  header: {
@@ -11800,7 +11800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11800
11800
  };
11801
11801
  };
11802
11802
  output: {
11803
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11803
+ 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
11804
  body: string;
11805
11805
  from: string;
11806
11806
  subject: string;
@@ -11819,7 +11819,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11819
11819
  $put: {
11820
11820
  input: {
11821
11821
  param: {
11822
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11822
+ 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
11823
  };
11824
11824
  } & {
11825
11825
  header: {
@@ -11827,7 +11827,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11827
11827
  };
11828
11828
  } & {
11829
11829
  json: {
11830
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11830
+ 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
11831
  body: string;
11832
11832
  subject: string;
11833
11833
  syntax?: "liquid" | undefined;
@@ -11839,7 +11839,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11839
11839
  };
11840
11840
  };
11841
11841
  output: {
11842
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11842
+ 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
11843
  body: string;
11844
11844
  from: string;
11845
11845
  subject: string;
@@ -11858,7 +11858,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11858
11858
  $patch: {
11859
11859
  input: {
11860
11860
  param: {
11861
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11861
+ 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
11862
  };
11863
11863
  } & {
11864
11864
  header: {
@@ -11866,7 +11866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11866
11866
  };
11867
11867
  } & {
11868
11868
  json: {
11869
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11869
+ 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
11870
  body?: string | undefined;
11871
11871
  from?: string | undefined;
11872
11872
  subject?: string | undefined;
@@ -11883,7 +11883,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11883
11883
  } | {
11884
11884
  input: {
11885
11885
  param: {
11886
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11886
+ 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
11887
  };
11888
11888
  } & {
11889
11889
  header: {
@@ -11891,7 +11891,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11891
11891
  };
11892
11892
  } & {
11893
11893
  json: {
11894
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11894
+ 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
11895
  body?: string | undefined;
11896
11896
  from?: string | undefined;
11897
11897
  subject?: string | undefined;
@@ -11903,7 +11903,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11903
11903
  };
11904
11904
  };
11905
11905
  output: {
11906
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11906
+ 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
11907
  body: string;
11908
11908
  from: string;
11909
11909
  subject: string;
@@ -11922,7 +11922,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11922
11922
  $delete: {
11923
11923
  input: {
11924
11924
  param: {
11925
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11925
+ 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
11926
  };
11927
11927
  } & {
11928
11928
  header: {
@@ -11935,7 +11935,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11935
11935
  } | {
11936
11936
  input: {
11937
11937
  param: {
11938
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11938
+ 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
11939
  };
11940
11940
  } & {
11941
11941
  header: {
@@ -11952,7 +11952,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11952
11952
  $post: {
11953
11953
  input: {
11954
11954
  param: {
11955
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11955
+ 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
11956
  };
11957
11957
  } & {
11958
11958
  header: {
@@ -12522,7 +12522,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12522
12522
  base_focus_color: string;
12523
12523
  base_hover_color: string;
12524
12524
  body_text: string;
12525
- captcha_widget_theme: "dark" | "light" | "auto";
12525
+ captcha_widget_theme: "auto" | "light" | "dark";
12526
12526
  error: string;
12527
12527
  header: string;
12528
12528
  icons: string;
@@ -12573,7 +12573,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12573
12573
  background_color: string;
12574
12574
  background_image_url: string;
12575
12575
  page_layout: "center" | "left" | "right";
12576
- logo_placement?: "widget" | "none" | "chip" | undefined;
12576
+ logo_placement?: "widget" | "chip" | "none" | undefined;
12577
12577
  };
12578
12578
  widget: {
12579
12579
  header_text_alignment: "center" | "left" | "right";
@@ -12612,7 +12612,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12612
12612
  base_focus_color: string;
12613
12613
  base_hover_color: string;
12614
12614
  body_text: string;
12615
- captcha_widget_theme: "dark" | "light" | "auto";
12615
+ captcha_widget_theme: "auto" | "light" | "dark";
12616
12616
  error: string;
12617
12617
  header: string;
12618
12618
  icons: string;
@@ -12663,7 +12663,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12663
12663
  background_color: string;
12664
12664
  background_image_url: string;
12665
12665
  page_layout: "center" | "left" | "right";
12666
- logo_placement?: "widget" | "none" | "chip" | undefined;
12666
+ logo_placement?: "widget" | "chip" | "none" | undefined;
12667
12667
  };
12668
12668
  widget: {
12669
12669
  header_text_alignment: "center" | "left" | "right";
@@ -12691,7 +12691,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12691
12691
  base_focus_color: string;
12692
12692
  base_hover_color: string;
12693
12693
  body_text: string;
12694
- captcha_widget_theme: "dark" | "light" | "auto";
12694
+ captcha_widget_theme: "auto" | "light" | "dark";
12695
12695
  error: string;
12696
12696
  header: string;
12697
12697
  icons: string;
@@ -12742,7 +12742,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12742
12742
  background_color: string;
12743
12743
  background_image_url: string;
12744
12744
  page_layout: "center" | "left" | "right";
12745
- logo_placement?: "widget" | "none" | "chip" | undefined;
12745
+ logo_placement?: "widget" | "chip" | "none" | undefined;
12746
12746
  };
12747
12747
  widget: {
12748
12748
  header_text_alignment: "center" | "left" | "right";
@@ -12781,7 +12781,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12781
12781
  font?: {
12782
12782
  url: string;
12783
12783
  } | undefined;
12784
- dark_mode?: "dark" | "light" | "auto" | undefined;
12784
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12785
12785
  };
12786
12786
  outputFormat: "json";
12787
12787
  status: 200;
@@ -12811,7 +12811,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12811
12811
  font?: {
12812
12812
  url: string;
12813
12813
  } | undefined;
12814
- dark_mode?: "dark" | "light" | "auto" | undefined;
12814
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12815
12815
  };
12816
12816
  };
12817
12817
  output: {
@@ -12830,7 +12830,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12830
12830
  font?: {
12831
12831
  url: string;
12832
12832
  } | undefined;
12833
- dark_mode?: "dark" | "light" | "auto" | undefined;
12833
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12834
12834
  };
12835
12835
  outputFormat: "json";
12836
12836
  status: 200;
@@ -12904,7 +12904,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12904
12904
  } & {
12905
12905
  json: {
12906
12906
  body?: string | undefined;
12907
- screen?: "password" | "signup" | "login" | "identifier" | undefined;
12907
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
12908
12908
  branding?: {
12909
12909
  colors?: {
12910
12910
  primary: string;
@@ -12921,7 +12921,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12921
12921
  font?: {
12922
12922
  url: string;
12923
12923
  } | undefined;
12924
- dark_mode?: "dark" | "light" | "auto" | undefined;
12924
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12925
12925
  } | undefined;
12926
12926
  theme?: {
12927
12927
  borders?: {
@@ -12939,7 +12939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12939
12939
  base_focus_color: string;
12940
12940
  base_hover_color: string;
12941
12941
  body_text: string;
12942
- captcha_widget_theme: "dark" | "light" | "auto";
12942
+ captcha_widget_theme: "auto" | "light" | "dark";
12943
12943
  error: string;
12944
12944
  header: string;
12945
12945
  icons: string;
@@ -12990,7 +12990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12990
12990
  background_color: string;
12991
12991
  background_image_url: string;
12992
12992
  page_layout: "center" | "left" | "right";
12993
- logo_placement?: "widget" | "none" | "chip" | undefined;
12993
+ logo_placement?: "widget" | "chip" | "none" | undefined;
12994
12994
  } | undefined;
12995
12995
  widget?: {
12996
12996
  header_text_alignment: "center" | "left" | "right";
@@ -13195,7 +13195,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13195
13195
  logs: {
13196
13196
  action_name: string;
13197
13197
  lines: {
13198
- level: "error" | "info" | "log" | "warn" | "debug";
13198
+ level: "log" | "error" | "info" | "warn" | "debug";
13199
13199
  message: string;
13200
13200
  }[];
13201
13201
  }[];
@@ -13862,7 +13862,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13862
13862
  args: import("hono/utils/types").JSONValue[];
13863
13863
  }[];
13864
13864
  logs: {
13865
- level: "error" | "info" | "log" | "warn" | "debug";
13865
+ level: "log" | "error" | "info" | "warn" | "debug";
13866
13866
  message: string;
13867
13867
  }[];
13868
13868
  error?: string | undefined;