authhero 9.1.0 → 9.1.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.
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8
8
  $get: {
9
9
  input: {
10
10
  query: {
11
- include_password_hashes?: "true" | "false" | undefined;
12
- gzip?: "true" | "false" | undefined;
11
+ include_password_hashes?: "false" | "true" | undefined;
12
+ gzip?: "false" | "true" | undefined;
13
13
  };
14
14
  } & {
15
15
  header: {
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
22
22
  } | {
23
23
  input: {
24
24
  query: {
25
- include_password_hashes?: "true" | "false" | undefined;
26
- gzip?: "true" | "false" | undefined;
25
+ include_password_hashes?: "false" | "true" | undefined;
26
+ gzip?: "false" | "true" | undefined;
27
27
  };
28
28
  } & {
29
29
  header: {
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
42
42
  $post: {
43
43
  input: {
44
44
  query: {
45
- include_password_hashes?: "true" | "false" | undefined;
45
+ include_password_hashes?: "false" | "true" | undefined;
46
46
  };
47
47
  } & {
48
48
  header: {
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
236
236
  };
237
237
  };
238
238
  output: {
239
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
239
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
240
240
  enabled: boolean;
241
241
  trial_expired?: boolean | undefined;
242
242
  }[];
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
391
391
  $get: {
392
392
  input: {
393
393
  param: {
394
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
394
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
395
395
  };
396
396
  } & {
397
397
  header: {
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
399
399
  };
400
400
  };
401
401
  output: {
402
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
402
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
403
403
  enabled: boolean;
404
404
  trial_expired?: boolean | undefined;
405
405
  };
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
412
412
  $put: {
413
413
  input: {
414
414
  param: {
415
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
415
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
416
416
  };
417
417
  } & {
418
418
  header: {
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
424
424
  };
425
425
  };
426
426
  output: {
427
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
427
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
428
428
  enabled: boolean;
429
429
  trial_expired?: boolean | undefined;
430
430
  };
@@ -1196,19 +1196,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1196
1196
  } & {
1197
1197
  json: {
1198
1198
  client_id: string;
1199
- invitee: {
1200
- email?: string | undefined;
1201
- };
1202
1199
  inviter: {
1203
1200
  name?: string | undefined;
1204
1201
  };
1205
- connection_id?: string | undefined;
1206
- id?: string | undefined;
1202
+ invitee: {
1203
+ email?: string | undefined;
1204
+ };
1207
1205
  app_metadata?: Record<string, any> | undefined;
1208
1206
  user_metadata?: Record<string, any> | undefined;
1207
+ id?: string | undefined;
1208
+ connection_id?: string | undefined;
1209
1209
  roles?: string[] | undefined;
1210
- send_invitation_email?: boolean | undefined;
1211
1210
  ttl_sec?: number | undefined;
1211
+ send_invitation_email?: boolean | undefined;
1212
1212
  };
1213
1213
  };
1214
1214
  output: {
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1391
1391
  };
1392
1392
  } & {
1393
1393
  json: {
1394
- show_as_button?: boolean | undefined;
1395
1394
  assign_membership_on_login?: boolean | undefined;
1395
+ show_as_button?: boolean | undefined;
1396
1396
  is_signup_enabled?: boolean | undefined;
1397
1397
  };
1398
1398
  };
@@ -2688,7 +2688,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2688
2688
  hint?: string | undefined;
2689
2689
  messages?: {
2690
2690
  text: string;
2691
- type: "error" | "success" | "info" | "warning";
2691
+ type: "success" | "error" | "info" | "warning";
2692
2692
  id?: number | undefined;
2693
2693
  }[] | undefined;
2694
2694
  required?: boolean | undefined;
@@ -2706,7 +2706,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2706
2706
  hint?: string | undefined;
2707
2707
  messages?: {
2708
2708
  text: string;
2709
- type: "error" | "success" | "info" | "warning";
2709
+ type: "success" | "error" | "info" | "warning";
2710
2710
  id?: number | undefined;
2711
2711
  }[] | undefined;
2712
2712
  required?: boolean | undefined;
@@ -2730,7 +2730,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2730
2730
  hint?: string | undefined;
2731
2731
  messages?: {
2732
2732
  text: string;
2733
- type: "error" | "success" | "info" | "warning";
2733
+ type: "success" | "error" | "info" | "warning";
2734
2734
  id?: number | undefined;
2735
2735
  }[] | undefined;
2736
2736
  required?: boolean | undefined;
@@ -2754,7 +2754,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2754
2754
  hint?: string | undefined;
2755
2755
  messages?: {
2756
2756
  text: string;
2757
- type: "error" | "success" | "info" | "warning";
2757
+ type: "success" | "error" | "info" | "warning";
2758
2758
  id?: number | undefined;
2759
2759
  }[] | undefined;
2760
2760
  required?: boolean | undefined;
@@ -2778,7 +2778,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2778
2778
  hint?: string | undefined;
2779
2779
  messages?: {
2780
2780
  text: string;
2781
- type: "error" | "success" | "info" | "warning";
2781
+ type: "success" | "error" | "info" | "warning";
2782
2782
  id?: number | undefined;
2783
2783
  }[] | undefined;
2784
2784
  required?: boolean | undefined;
@@ -2807,7 +2807,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2807
2807
  hint?: string | undefined;
2808
2808
  messages?: {
2809
2809
  text: string;
2810
- type: "error" | "success" | "info" | "warning";
2810
+ type: "success" | "error" | "info" | "warning";
2811
2811
  id?: number | undefined;
2812
2812
  }[] | undefined;
2813
2813
  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;
@@ -2843,7 +2843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2843
2843
  hint?: string | undefined;
2844
2844
  messages?: {
2845
2845
  text: string;
2846
- type: "error" | "success" | "info" | "warning";
2846
+ type: "success" | "error" | "info" | "warning";
2847
2847
  id?: number | undefined;
2848
2848
  }[] | undefined;
2849
2849
  required?: boolean | undefined;
@@ -2868,7 +2868,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2868
2868
  hint?: string | undefined;
2869
2869
  messages?: {
2870
2870
  text: string;
2871
- type: "error" | "success" | "info" | "warning";
2871
+ type: "success" | "error" | "info" | "warning";
2872
2872
  id?: number | undefined;
2873
2873
  }[] | undefined;
2874
2874
  required?: boolean | undefined;
@@ -2887,7 +2887,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2887
2887
  hint?: string | undefined;
2888
2888
  messages?: {
2889
2889
  text: string;
2890
- type: "error" | "success" | "info" | "warning";
2890
+ type: "success" | "error" | "info" | "warning";
2891
2891
  id?: number | undefined;
2892
2892
  }[] | undefined;
2893
2893
  required?: boolean | undefined;
@@ -2907,7 +2907,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2907
2907
  hint?: string | undefined;
2908
2908
  messages?: {
2909
2909
  text: string;
2910
- type: "error" | "success" | "info" | "warning";
2910
+ type: "success" | "error" | "info" | "warning";
2911
2911
  id?: number | undefined;
2912
2912
  }[] | undefined;
2913
2913
  required?: boolean | undefined;
@@ -2926,7 +2926,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2926
2926
  hint?: string | undefined;
2927
2927
  messages?: {
2928
2928
  text: string;
2929
- type: "error" | "success" | "info" | "warning";
2929
+ type: "success" | "error" | "info" | "warning";
2930
2930
  id?: number | undefined;
2931
2931
  }[] | undefined;
2932
2932
  required?: boolean | undefined;
@@ -2948,7 +2948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2948
2948
  hint?: string | undefined;
2949
2949
  messages?: {
2950
2950
  text: string;
2951
- type: "error" | "success" | "info" | "warning";
2951
+ type: "success" | "error" | "info" | "warning";
2952
2952
  id?: number | undefined;
2953
2953
  }[] | undefined;
2954
2954
  required?: boolean | undefined;
@@ -2970,7 +2970,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2970
2970
  hint?: string | undefined;
2971
2971
  messages?: {
2972
2972
  text: string;
2973
- type: "error" | "success" | "info" | "warning";
2973
+ type: "success" | "error" | "info" | "warning";
2974
2974
  id?: number | undefined;
2975
2975
  }[] | undefined;
2976
2976
  required?: boolean | undefined;
@@ -2989,7 +2989,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2989
2989
  hint?: string | undefined;
2990
2990
  messages?: {
2991
2991
  text: string;
2992
- type: "error" | "success" | "info" | "warning";
2992
+ type: "success" | "error" | "info" | "warning";
2993
2993
  id?: number | undefined;
2994
2994
  }[] | undefined;
2995
2995
  required?: boolean | undefined;
@@ -3016,7 +3016,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3016
3016
  hint?: string | undefined;
3017
3017
  messages?: {
3018
3018
  text: string;
3019
- type: "error" | "success" | "info" | "warning";
3019
+ type: "success" | "error" | "info" | "warning";
3020
3020
  id?: number | undefined;
3021
3021
  }[] | undefined;
3022
3022
  required?: boolean | undefined;
@@ -3037,7 +3037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3037
3037
  hint?: string | undefined;
3038
3038
  messages?: {
3039
3039
  text: string;
3040
- type: "error" | "success" | "info" | "warning";
3040
+ type: "success" | "error" | "info" | "warning";
3041
3041
  id?: number | undefined;
3042
3042
  }[] | undefined;
3043
3043
  required?: boolean | undefined;
@@ -3058,7 +3058,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3058
3058
  hint?: string | undefined;
3059
3059
  messages?: {
3060
3060
  text: string;
3061
- type: "error" | "success" | "info" | "warning";
3061
+ type: "success" | "error" | "info" | "warning";
3062
3062
  id?: number | undefined;
3063
3063
  }[] | undefined;
3064
3064
  required?: boolean | undefined;
@@ -3291,7 +3291,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3291
3291
  hint?: string | undefined;
3292
3292
  messages?: {
3293
3293
  text: string;
3294
- type: "error" | "success" | "info" | "warning";
3294
+ type: "success" | "error" | "info" | "warning";
3295
3295
  id?: number | undefined;
3296
3296
  }[] | undefined;
3297
3297
  required?: boolean | undefined;
@@ -3309,7 +3309,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3309
3309
  hint?: string | undefined;
3310
3310
  messages?: {
3311
3311
  text: string;
3312
- type: "error" | "success" | "info" | "warning";
3312
+ type: "success" | "error" | "info" | "warning";
3313
3313
  id?: number | undefined;
3314
3314
  }[] | undefined;
3315
3315
  required?: boolean | undefined;
@@ -3333,7 +3333,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3333
3333
  hint?: string | undefined;
3334
3334
  messages?: {
3335
3335
  text: string;
3336
- type: "error" | "success" | "info" | "warning";
3336
+ type: "success" | "error" | "info" | "warning";
3337
3337
  id?: number | undefined;
3338
3338
  }[] | undefined;
3339
3339
  required?: boolean | undefined;
@@ -3357,7 +3357,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3357
3357
  hint?: string | undefined;
3358
3358
  messages?: {
3359
3359
  text: string;
3360
- type: "error" | "success" | "info" | "warning";
3360
+ type: "success" | "error" | "info" | "warning";
3361
3361
  id?: number | undefined;
3362
3362
  }[] | undefined;
3363
3363
  required?: boolean | undefined;
@@ -3381,7 +3381,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3381
3381
  hint?: string | undefined;
3382
3382
  messages?: {
3383
3383
  text: string;
3384
- type: "error" | "success" | "info" | "warning";
3384
+ type: "success" | "error" | "info" | "warning";
3385
3385
  id?: number | undefined;
3386
3386
  }[] | undefined;
3387
3387
  required?: boolean | undefined;
@@ -3410,7 +3410,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3410
3410
  hint?: string | undefined;
3411
3411
  messages?: {
3412
3412
  text: string;
3413
- type: "error" | "success" | "info" | "warning";
3413
+ type: "success" | "error" | "info" | "warning";
3414
3414
  id?: number | undefined;
3415
3415
  }[] | undefined;
3416
3416
  required?: boolean | undefined;
@@ -3425,7 +3425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3425
3425
  hint?: string | undefined;
3426
3426
  messages?: {
3427
3427
  text: string;
3428
- type: "error" | "success" | "info" | "warning";
3428
+ type: "success" | "error" | "info" | "warning";
3429
3429
  id?: number | undefined;
3430
3430
  }[] | undefined;
3431
3431
  required?: boolean | undefined;
@@ -3446,7 +3446,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3446
3446
  hint?: string | undefined;
3447
3447
  messages?: {
3448
3448
  text: string;
3449
- type: "error" | "success" | "info" | "warning";
3449
+ type: "success" | "error" | "info" | "warning";
3450
3450
  id?: number | undefined;
3451
3451
  }[] | undefined;
3452
3452
  required?: boolean | undefined;
@@ -3471,7 +3471,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3471
3471
  hint?: string | undefined;
3472
3472
  messages?: {
3473
3473
  text: string;
3474
- type: "error" | "success" | "info" | "warning";
3474
+ type: "success" | "error" | "info" | "warning";
3475
3475
  id?: number | undefined;
3476
3476
  }[] | undefined;
3477
3477
  required?: boolean | undefined;
@@ -3490,7 +3490,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3490
3490
  hint?: string | undefined;
3491
3491
  messages?: {
3492
3492
  text: string;
3493
- type: "error" | "success" | "info" | "warning";
3493
+ type: "success" | "error" | "info" | "warning";
3494
3494
  id?: number | undefined;
3495
3495
  }[] | undefined;
3496
3496
  required?: boolean | undefined;
@@ -3510,7 +3510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3510
3510
  hint?: string | undefined;
3511
3511
  messages?: {
3512
3512
  text: string;
3513
- type: "error" | "success" | "info" | "warning";
3513
+ type: "success" | "error" | "info" | "warning";
3514
3514
  id?: number | undefined;
3515
3515
  }[] | undefined;
3516
3516
  required?: boolean | undefined;
@@ -3529,7 +3529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3529
3529
  hint?: string | undefined;
3530
3530
  messages?: {
3531
3531
  text: string;
3532
- type: "error" | "success" | "info" | "warning";
3532
+ type: "success" | "error" | "info" | "warning";
3533
3533
  id?: number | undefined;
3534
3534
  }[] | undefined;
3535
3535
  required?: boolean | undefined;
@@ -3551,7 +3551,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3551
3551
  hint?: string | undefined;
3552
3552
  messages?: {
3553
3553
  text: string;
3554
- type: "error" | "success" | "info" | "warning";
3554
+ type: "success" | "error" | "info" | "warning";
3555
3555
  id?: number | undefined;
3556
3556
  }[] | undefined;
3557
3557
  required?: boolean | undefined;
@@ -3573,7 +3573,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3573
3573
  hint?: string | undefined;
3574
3574
  messages?: {
3575
3575
  text: string;
3576
- type: "error" | "success" | "info" | "warning";
3576
+ type: "success" | "error" | "info" | "warning";
3577
3577
  id?: number | undefined;
3578
3578
  }[] | undefined;
3579
3579
  required?: boolean | undefined;
@@ -3592,7 +3592,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3592
3592
  hint?: string | undefined;
3593
3593
  messages?: {
3594
3594
  text: string;
3595
- type: "error" | "success" | "info" | "warning";
3595
+ type: "success" | "error" | "info" | "warning";
3596
3596
  id?: number | undefined;
3597
3597
  }[] | undefined;
3598
3598
  required?: boolean | undefined;
@@ -3619,7 +3619,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3619
3619
  hint?: string | undefined;
3620
3620
  messages?: {
3621
3621
  text: string;
3622
- type: "error" | "success" | "info" | "warning";
3622
+ type: "success" | "error" | "info" | "warning";
3623
3623
  id?: number | undefined;
3624
3624
  }[] | undefined;
3625
3625
  required?: boolean | undefined;
@@ -3640,7 +3640,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3640
3640
  hint?: string | undefined;
3641
3641
  messages?: {
3642
3642
  text: string;
3643
- type: "error" | "success" | "info" | "warning";
3643
+ type: "success" | "error" | "info" | "warning";
3644
3644
  id?: number | undefined;
3645
3645
  }[] | undefined;
3646
3646
  required?: boolean | undefined;
@@ -3661,7 +3661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3661
3661
  hint?: string | undefined;
3662
3662
  messages?: {
3663
3663
  text: string;
3664
- type: "error" | "success" | "info" | "warning";
3664
+ type: "success" | "error" | "info" | "warning";
3665
3665
  id?: number | undefined;
3666
3666
  }[] | undefined;
3667
3667
  required?: boolean | undefined;
@@ -3910,7 +3910,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3910
3910
  hint?: string | undefined;
3911
3911
  messages?: {
3912
3912
  text: string;
3913
- type: "error" | "success" | "info" | "warning";
3913
+ type: "success" | "error" | "info" | "warning";
3914
3914
  id?: number | undefined;
3915
3915
  }[] | undefined;
3916
3916
  required?: boolean | undefined;
@@ -3928,7 +3928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3928
3928
  hint?: string | undefined;
3929
3929
  messages?: {
3930
3930
  text: string;
3931
- type: "error" | "success" | "info" | "warning";
3931
+ type: "success" | "error" | "info" | "warning";
3932
3932
  id?: number | undefined;
3933
3933
  }[] | undefined;
3934
3934
  required?: boolean | undefined;
@@ -3952,7 +3952,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3952
3952
  hint?: string | undefined;
3953
3953
  messages?: {
3954
3954
  text: string;
3955
- type: "error" | "success" | "info" | "warning";
3955
+ type: "success" | "error" | "info" | "warning";
3956
3956
  id?: number | undefined;
3957
3957
  }[] | undefined;
3958
3958
  required?: boolean | undefined;
@@ -3976,7 +3976,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3976
3976
  hint?: string | undefined;
3977
3977
  messages?: {
3978
3978
  text: string;
3979
- type: "error" | "success" | "info" | "warning";
3979
+ type: "success" | "error" | "info" | "warning";
3980
3980
  id?: number | undefined;
3981
3981
  }[] | undefined;
3982
3982
  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;
@@ -4029,7 +4029,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4029
4029
  hint?: string | undefined;
4030
4030
  messages?: {
4031
4031
  text: string;
4032
- type: "error" | "success" | "info" | "warning";
4032
+ type: "success" | "error" | "info" | "warning";
4033
4033
  id?: number | undefined;
4034
4034
  }[] | undefined;
4035
4035
  required?: boolean | undefined;
@@ -4044,7 +4044,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4044
4044
  hint?: string | undefined;
4045
4045
  messages?: {
4046
4046
  text: string;
4047
- type: "error" | "success" | "info" | "warning";
4047
+ type: "success" | "error" | "info" | "warning";
4048
4048
  id?: number | undefined;
4049
4049
  }[] | undefined;
4050
4050
  required?: boolean | undefined;
@@ -4065,7 +4065,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4065
4065
  hint?: string | undefined;
4066
4066
  messages?: {
4067
4067
  text: string;
4068
- type: "error" | "success" | "info" | "warning";
4068
+ type: "success" | "error" | "info" | "warning";
4069
4069
  id?: number | undefined;
4070
4070
  }[] | undefined;
4071
4071
  required?: boolean | undefined;
@@ -4090,7 +4090,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4090
4090
  hint?: string | undefined;
4091
4091
  messages?: {
4092
4092
  text: string;
4093
- type: "error" | "success" | "info" | "warning";
4093
+ type: "success" | "error" | "info" | "warning";
4094
4094
  id?: number | undefined;
4095
4095
  }[] | undefined;
4096
4096
  required?: boolean | undefined;
@@ -4109,7 +4109,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4109
4109
  hint?: string | undefined;
4110
4110
  messages?: {
4111
4111
  text: string;
4112
- type: "error" | "success" | "info" | "warning";
4112
+ type: "success" | "error" | "info" | "warning";
4113
4113
  id?: number | undefined;
4114
4114
  }[] | undefined;
4115
4115
  required?: boolean | undefined;
@@ -4129,7 +4129,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4129
4129
  hint?: string | undefined;
4130
4130
  messages?: {
4131
4131
  text: string;
4132
- type: "error" | "success" | "info" | "warning";
4132
+ type: "success" | "error" | "info" | "warning";
4133
4133
  id?: number | undefined;
4134
4134
  }[] | undefined;
4135
4135
  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;
@@ -4170,7 +4170,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4170
4170
  hint?: string | undefined;
4171
4171
  messages?: {
4172
4172
  text: string;
4173
- type: "error" | "success" | "info" | "warning";
4173
+ type: "success" | "error" | "info" | "warning";
4174
4174
  id?: number | undefined;
4175
4175
  }[] | undefined;
4176
4176
  required?: boolean | undefined;
@@ -4192,7 +4192,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4192
4192
  hint?: string | undefined;
4193
4193
  messages?: {
4194
4194
  text: string;
4195
- type: "error" | "success" | "info" | "warning";
4195
+ type: "success" | "error" | "info" | "warning";
4196
4196
  id?: number | undefined;
4197
4197
  }[] | undefined;
4198
4198
  required?: boolean | undefined;
@@ -4211,7 +4211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4211
4211
  hint?: string | undefined;
4212
4212
  messages?: {
4213
4213
  text: string;
4214
- type: "error" | "success" | "info" | "warning";
4214
+ type: "success" | "error" | "info" | "warning";
4215
4215
  id?: number | undefined;
4216
4216
  }[] | undefined;
4217
4217
  required?: boolean | undefined;
@@ -4238,7 +4238,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4238
4238
  hint?: string | undefined;
4239
4239
  messages?: {
4240
4240
  text: string;
4241
- type: "error" | "success" | "info" | "warning";
4241
+ type: "success" | "error" | "info" | "warning";
4242
4242
  id?: number | undefined;
4243
4243
  }[] | undefined;
4244
4244
  required?: boolean | undefined;
@@ -4259,7 +4259,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4259
4259
  hint?: string | undefined;
4260
4260
  messages?: {
4261
4261
  text: string;
4262
- type: "error" | "success" | "info" | "warning";
4262
+ type: "success" | "error" | "info" | "warning";
4263
4263
  id?: number | undefined;
4264
4264
  }[] | undefined;
4265
4265
  required?: boolean | undefined;
@@ -4280,7 +4280,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4280
4280
  hint?: string | undefined;
4281
4281
  messages?: {
4282
4282
  text: string;
4283
- type: "error" | "success" | "info" | "warning";
4283
+ type: "success" | "error" | "info" | "warning";
4284
4284
  id?: number | undefined;
4285
4285
  }[] | undefined;
4286
4286
  required?: boolean | undefined;
@@ -4534,7 +4534,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4534
4534
  hint?: string | undefined;
4535
4535
  messages?: {
4536
4536
  text: string;
4537
- type: "error" | "success" | "info" | "warning";
4537
+ type: "success" | "error" | "info" | "warning";
4538
4538
  id?: number | undefined;
4539
4539
  }[] | undefined;
4540
4540
  required?: boolean | undefined;
@@ -4552,7 +4552,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4552
4552
  hint?: string | undefined;
4553
4553
  messages?: {
4554
4554
  text: string;
4555
- type: "error" | "success" | "info" | "warning";
4555
+ type: "success" | "error" | "info" | "warning";
4556
4556
  id?: number | undefined;
4557
4557
  }[] | undefined;
4558
4558
  required?: boolean | undefined;
@@ -4576,7 +4576,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4576
4576
  hint?: string | undefined;
4577
4577
  messages?: {
4578
4578
  text: string;
4579
- type: "error" | "success" | "info" | "warning";
4579
+ type: "success" | "error" | "info" | "warning";
4580
4580
  id?: number | undefined;
4581
4581
  }[] | undefined;
4582
4582
  required?: boolean | undefined;
@@ -4600,7 +4600,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4600
4600
  hint?: string | undefined;
4601
4601
  messages?: {
4602
4602
  text: string;
4603
- type: "error" | "success" | "info" | "warning";
4603
+ type: "success" | "error" | "info" | "warning";
4604
4604
  id?: number | undefined;
4605
4605
  }[] | undefined;
4606
4606
  required?: boolean | undefined;
@@ -4624,7 +4624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4624
4624
  hint?: string | undefined;
4625
4625
  messages?: {
4626
4626
  text: string;
4627
- type: "error" | "success" | "info" | "warning";
4627
+ type: "success" | "error" | "info" | "warning";
4628
4628
  id?: number | undefined;
4629
4629
  }[] | undefined;
4630
4630
  required?: boolean | undefined;
@@ -4649,7 +4649,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4649
4649
  hint?: string | undefined;
4650
4650
  messages?: {
4651
4651
  text: string;
4652
- type: "error" | "success" | "info" | "warning";
4652
+ type: "success" | "error" | "info" | "warning";
4653
4653
  id?: number | undefined;
4654
4654
  }[] | undefined;
4655
4655
  required?: boolean | undefined;
@@ -4664,7 +4664,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4664
4664
  hint?: string | undefined;
4665
4665
  messages?: {
4666
4666
  text: string;
4667
- type: "error" | "success" | "info" | "warning";
4667
+ type: "success" | "error" | "info" | "warning";
4668
4668
  id?: number | undefined;
4669
4669
  }[] | undefined;
4670
4670
  required?: boolean | undefined;
@@ -4685,7 +4685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4685
4685
  hint?: string | undefined;
4686
4686
  messages?: {
4687
4687
  text: string;
4688
- type: "error" | "success" | "info" | "warning";
4688
+ type: "success" | "error" | "info" | "warning";
4689
4689
  id?: number | undefined;
4690
4690
  }[] | undefined;
4691
4691
  required?: boolean | undefined;
@@ -4710,7 +4710,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4710
4710
  hint?: string | undefined;
4711
4711
  messages?: {
4712
4712
  text: string;
4713
- type: "error" | "success" | "info" | "warning";
4713
+ type: "success" | "error" | "info" | "warning";
4714
4714
  id?: number | undefined;
4715
4715
  }[] | undefined;
4716
4716
  required?: boolean | undefined;
@@ -4729,7 +4729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4729
4729
  hint?: string | undefined;
4730
4730
  messages?: {
4731
4731
  text: string;
4732
- type: "error" | "success" | "info" | "warning";
4732
+ type: "success" | "error" | "info" | "warning";
4733
4733
  id?: number | undefined;
4734
4734
  }[] | undefined;
4735
4735
  required?: boolean | undefined;
@@ -4749,7 +4749,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4749
4749
  hint?: string | undefined;
4750
4750
  messages?: {
4751
4751
  text: string;
4752
- type: "error" | "success" | "info" | "warning";
4752
+ type: "success" | "error" | "info" | "warning";
4753
4753
  id?: number | undefined;
4754
4754
  }[] | undefined;
4755
4755
  required?: boolean | undefined;
@@ -4768,7 +4768,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4768
4768
  hint?: string | undefined;
4769
4769
  messages?: {
4770
4770
  text: string;
4771
- type: "error" | "success" | "info" | "warning";
4771
+ type: "success" | "error" | "info" | "warning";
4772
4772
  id?: number | undefined;
4773
4773
  }[] | undefined;
4774
4774
  required?: boolean | undefined;
@@ -4790,7 +4790,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4790
4790
  hint?: string | undefined;
4791
4791
  messages?: {
4792
4792
  text: string;
4793
- type: "error" | "success" | "info" | "warning";
4793
+ type: "success" | "error" | "info" | "warning";
4794
4794
  id?: number | undefined;
4795
4795
  }[] | undefined;
4796
4796
  required?: boolean | undefined;
@@ -4812,7 +4812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4812
4812
  hint?: string | undefined;
4813
4813
  messages?: {
4814
4814
  text: string;
4815
- type: "error" | "success" | "info" | "warning";
4815
+ type: "success" | "error" | "info" | "warning";
4816
4816
  id?: number | undefined;
4817
4817
  }[] | undefined;
4818
4818
  required?: boolean | undefined;
@@ -4831,7 +4831,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4831
4831
  hint?: string | undefined;
4832
4832
  messages?: {
4833
4833
  text: string;
4834
- type: "error" | "success" | "info" | "warning";
4834
+ type: "success" | "error" | "info" | "warning";
4835
4835
  id?: number | undefined;
4836
4836
  }[] | undefined;
4837
4837
  required?: boolean | undefined;
@@ -4858,7 +4858,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4858
4858
  hint?: string | undefined;
4859
4859
  messages?: {
4860
4860
  text: string;
4861
- type: "error" | "success" | "info" | "warning";
4861
+ type: "success" | "error" | "info" | "warning";
4862
4862
  id?: number | undefined;
4863
4863
  }[] | undefined;
4864
4864
  required?: boolean | undefined;
@@ -4879,7 +4879,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4879
4879
  hint?: string | undefined;
4880
4880
  messages?: {
4881
4881
  text: string;
4882
- type: "error" | "success" | "info" | "warning";
4882
+ type: "success" | "error" | "info" | "warning";
4883
4883
  id?: number | undefined;
4884
4884
  }[] | undefined;
4885
4885
  required?: boolean | undefined;
@@ -4900,7 +4900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4900
4900
  hint?: string | undefined;
4901
4901
  messages?: {
4902
4902
  text: string;
4903
- type: "error" | "success" | "info" | "warning";
4903
+ type: "success" | "error" | "info" | "warning";
4904
4904
  id?: number | undefined;
4905
4905
  }[] | undefined;
4906
4906
  required?: boolean | undefined;
@@ -5131,7 +5131,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5131
5131
  hint?: string | undefined;
5132
5132
  messages?: {
5133
5133
  text: string;
5134
- type: "error" | "success" | "info" | "warning";
5134
+ type: "success" | "error" | "info" | "warning";
5135
5135
  id?: number | undefined;
5136
5136
  }[] | undefined;
5137
5137
  required?: boolean | undefined;
@@ -5149,7 +5149,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5149
5149
  hint?: string | undefined;
5150
5150
  messages?: {
5151
5151
  text: string;
5152
- type: "error" | "success" | "info" | "warning";
5152
+ type: "success" | "error" | "info" | "warning";
5153
5153
  id?: number | undefined;
5154
5154
  }[] | undefined;
5155
5155
  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;
@@ -5197,7 +5197,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5197
5197
  hint?: string | undefined;
5198
5198
  messages?: {
5199
5199
  text: string;
5200
- type: "error" | "success" | "info" | "warning";
5200
+ type: "success" | "error" | "info" | "warning";
5201
5201
  id?: number | undefined;
5202
5202
  }[] | undefined;
5203
5203
  required?: boolean | undefined;
@@ -5221,7 +5221,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5221
5221
  hint?: string | undefined;
5222
5222
  messages?: {
5223
5223
  text: string;
5224
- type: "error" | "success" | "info" | "warning";
5224
+ type: "success" | "error" | "info" | "warning";
5225
5225
  id?: number | undefined;
5226
5226
  }[] | undefined;
5227
5227
  required?: boolean | undefined;
@@ -5250,7 +5250,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5250
5250
  hint?: string | undefined;
5251
5251
  messages?: {
5252
5252
  text: string;
5253
- type: "error" | "success" | "info" | "warning";
5253
+ type: "success" | "error" | "info" | "warning";
5254
5254
  id?: number | undefined;
5255
5255
  }[] | undefined;
5256
5256
  required?: boolean | undefined;
@@ -5265,7 +5265,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5265
5265
  hint?: string | undefined;
5266
5266
  messages?: {
5267
5267
  text: string;
5268
- type: "error" | "success" | "info" | "warning";
5268
+ type: "success" | "error" | "info" | "warning";
5269
5269
  id?: number | undefined;
5270
5270
  }[] | undefined;
5271
5271
  required?: boolean | undefined;
@@ -5286,7 +5286,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5286
5286
  hint?: string | undefined;
5287
5287
  messages?: {
5288
5288
  text: string;
5289
- type: "error" | "success" | "info" | "warning";
5289
+ type: "success" | "error" | "info" | "warning";
5290
5290
  id?: number | undefined;
5291
5291
  }[] | undefined;
5292
5292
  required?: boolean | undefined;
@@ -5311,7 +5311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5311
5311
  hint?: string | undefined;
5312
5312
  messages?: {
5313
5313
  text: string;
5314
- type: "error" | "success" | "info" | "warning";
5314
+ type: "success" | "error" | "info" | "warning";
5315
5315
  id?: number | undefined;
5316
5316
  }[] | undefined;
5317
5317
  required?: boolean | undefined;
@@ -5330,7 +5330,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5330
5330
  hint?: string | undefined;
5331
5331
  messages?: {
5332
5332
  text: string;
5333
- type: "error" | "success" | "info" | "warning";
5333
+ type: "success" | "error" | "info" | "warning";
5334
5334
  id?: number | undefined;
5335
5335
  }[] | undefined;
5336
5336
  required?: boolean | undefined;
@@ -5350,7 +5350,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5350
5350
  hint?: string | undefined;
5351
5351
  messages?: {
5352
5352
  text: string;
5353
- type: "error" | "success" | "info" | "warning";
5353
+ type: "success" | "error" | "info" | "warning";
5354
5354
  id?: number | undefined;
5355
5355
  }[] | undefined;
5356
5356
  required?: boolean | undefined;
@@ -5369,7 +5369,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5369
5369
  hint?: string | undefined;
5370
5370
  messages?: {
5371
5371
  text: string;
5372
- type: "error" | "success" | "info" | "warning";
5372
+ type: "success" | "error" | "info" | "warning";
5373
5373
  id?: number | undefined;
5374
5374
  }[] | undefined;
5375
5375
  required?: boolean | undefined;
@@ -5391,7 +5391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5391
5391
  hint?: string | undefined;
5392
5392
  messages?: {
5393
5393
  text: string;
5394
- type: "error" | "success" | "info" | "warning";
5394
+ type: "success" | "error" | "info" | "warning";
5395
5395
  id?: number | undefined;
5396
5396
  }[] | undefined;
5397
5397
  required?: boolean | undefined;
@@ -5413,7 +5413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5413
5413
  hint?: string | undefined;
5414
5414
  messages?: {
5415
5415
  text: string;
5416
- type: "error" | "success" | "info" | "warning";
5416
+ type: "success" | "error" | "info" | "warning";
5417
5417
  id?: number | undefined;
5418
5418
  }[] | undefined;
5419
5419
  required?: boolean | undefined;
@@ -5432,7 +5432,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5432
5432
  hint?: string | undefined;
5433
5433
  messages?: {
5434
5434
  text: string;
5435
- type: "error" | "success" | "info" | "warning";
5435
+ type: "success" | "error" | "info" | "warning";
5436
5436
  id?: number | undefined;
5437
5437
  }[] | undefined;
5438
5438
  required?: boolean | undefined;
@@ -5459,7 +5459,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5459
5459
  hint?: string | undefined;
5460
5460
  messages?: {
5461
5461
  text: string;
5462
- type: "error" | "success" | "info" | "warning";
5462
+ type: "success" | "error" | "info" | "warning";
5463
5463
  id?: number | undefined;
5464
5464
  }[] | undefined;
5465
5465
  required?: boolean | undefined;
@@ -5480,7 +5480,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5480
5480
  hint?: string | undefined;
5481
5481
  messages?: {
5482
5482
  text: string;
5483
- type: "error" | "success" | "info" | "warning";
5483
+ type: "success" | "error" | "info" | "warning";
5484
5484
  id?: number | undefined;
5485
5485
  }[] | undefined;
5486
5486
  required?: boolean | undefined;
@@ -5501,7 +5501,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5501
5501
  hint?: string | undefined;
5502
5502
  messages?: {
5503
5503
  text: string;
5504
- type: "error" | "success" | "info" | "warning";
5504
+ type: "success" | "error" | "info" | "warning";
5505
5505
  id?: number | undefined;
5506
5506
  }[] | undefined;
5507
5507
  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;
@@ -5752,7 +5752,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5752
5752
  hint?: string | undefined;
5753
5753
  messages?: {
5754
5754
  text: string;
5755
- type: "error" | "success" | "info" | "warning";
5755
+ type: "success" | "error" | "info" | "warning";
5756
5756
  id?: number | undefined;
5757
5757
  }[] | undefined;
5758
5758
  required?: boolean | undefined;
@@ -5776,7 +5776,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5776
5776
  hint?: string | undefined;
5777
5777
  messages?: {
5778
5778
  text: string;
5779
- type: "error" | "success" | "info" | "warning";
5779
+ type: "success" | "error" | "info" | "warning";
5780
5780
  id?: number | undefined;
5781
5781
  }[] | undefined;
5782
5782
  required?: boolean | undefined;
@@ -5800,7 +5800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5800
5800
  hint?: string | undefined;
5801
5801
  messages?: {
5802
5802
  text: string;
5803
- type: "error" | "success" | "info" | "warning";
5803
+ type: "success" | "error" | "info" | "warning";
5804
5804
  id?: number | undefined;
5805
5805
  }[] | undefined;
5806
5806
  required?: boolean | undefined;
@@ -5824,7 +5824,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5824
5824
  hint?: string | undefined;
5825
5825
  messages?: {
5826
5826
  text: string;
5827
- type: "error" | "success" | "info" | "warning";
5827
+ type: "success" | "error" | "info" | "warning";
5828
5828
  id?: number | undefined;
5829
5829
  }[] | undefined;
5830
5830
  required?: boolean | undefined;
@@ -5849,7 +5849,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5849
5849
  hint?: string | undefined;
5850
5850
  messages?: {
5851
5851
  text: string;
5852
- type: "error" | "success" | "info" | "warning";
5852
+ type: "success" | "error" | "info" | "warning";
5853
5853
  id?: number | undefined;
5854
5854
  }[] | undefined;
5855
5855
  required?: boolean | undefined;
@@ -5864,7 +5864,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5864
5864
  hint?: string | undefined;
5865
5865
  messages?: {
5866
5866
  text: string;
5867
- type: "error" | "success" | "info" | "warning";
5867
+ type: "success" | "error" | "info" | "warning";
5868
5868
  id?: number | undefined;
5869
5869
  }[] | undefined;
5870
5870
  required?: boolean | undefined;
@@ -5885,7 +5885,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5885
5885
  hint?: string | undefined;
5886
5886
  messages?: {
5887
5887
  text: string;
5888
- type: "error" | "success" | "info" | "warning";
5888
+ type: "success" | "error" | "info" | "warning";
5889
5889
  id?: number | undefined;
5890
5890
  }[] | undefined;
5891
5891
  required?: boolean | undefined;
@@ -5910,7 +5910,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5910
5910
  hint?: string | undefined;
5911
5911
  messages?: {
5912
5912
  text: string;
5913
- type: "error" | "success" | "info" | "warning";
5913
+ type: "success" | "error" | "info" | "warning";
5914
5914
  id?: number | undefined;
5915
5915
  }[] | undefined;
5916
5916
  required?: boolean | undefined;
@@ -5929,7 +5929,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5929
5929
  hint?: string | undefined;
5930
5930
  messages?: {
5931
5931
  text: string;
5932
- type: "error" | "success" | "info" | "warning";
5932
+ type: "success" | "error" | "info" | "warning";
5933
5933
  id?: number | undefined;
5934
5934
  }[] | undefined;
5935
5935
  required?: boolean | undefined;
@@ -5949,7 +5949,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5949
5949
  hint?: string | undefined;
5950
5950
  messages?: {
5951
5951
  text: string;
5952
- type: "error" | "success" | "info" | "warning";
5952
+ type: "success" | "error" | "info" | "warning";
5953
5953
  id?: number | undefined;
5954
5954
  }[] | undefined;
5955
5955
  required?: boolean | undefined;
@@ -5968,7 +5968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5968
5968
  hint?: string | undefined;
5969
5969
  messages?: {
5970
5970
  text: string;
5971
- type: "error" | "success" | "info" | "warning";
5971
+ type: "success" | "error" | "info" | "warning";
5972
5972
  id?: number | undefined;
5973
5973
  }[] | undefined;
5974
5974
  required?: boolean | undefined;
@@ -5990,7 +5990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5990
5990
  hint?: string | undefined;
5991
5991
  messages?: {
5992
5992
  text: string;
5993
- type: "error" | "success" | "info" | "warning";
5993
+ type: "success" | "error" | "info" | "warning";
5994
5994
  id?: number | undefined;
5995
5995
  }[] | undefined;
5996
5996
  required?: boolean | undefined;
@@ -6012,7 +6012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6012
6012
  hint?: string | undefined;
6013
6013
  messages?: {
6014
6014
  text: string;
6015
- type: "error" | "success" | "info" | "warning";
6015
+ type: "success" | "error" | "info" | "warning";
6016
6016
  id?: number | undefined;
6017
6017
  }[] | undefined;
6018
6018
  required?: boolean | undefined;
@@ -6031,7 +6031,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6031
6031
  hint?: string | undefined;
6032
6032
  messages?: {
6033
6033
  text: string;
6034
- type: "error" | "success" | "info" | "warning";
6034
+ type: "success" | "error" | "info" | "warning";
6035
6035
  id?: number | undefined;
6036
6036
  }[] | undefined;
6037
6037
  required?: boolean | undefined;
@@ -6058,7 +6058,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6058
6058
  hint?: string | undefined;
6059
6059
  messages?: {
6060
6060
  text: string;
6061
- type: "error" | "success" | "info" | "warning";
6061
+ type: "success" | "error" | "info" | "warning";
6062
6062
  id?: number | undefined;
6063
6063
  }[] | undefined;
6064
6064
  required?: boolean | undefined;
@@ -6079,7 +6079,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6079
6079
  hint?: string | undefined;
6080
6080
  messages?: {
6081
6081
  text: string;
6082
- type: "error" | "success" | "info" | "warning";
6082
+ type: "success" | "error" | "info" | "warning";
6083
6083
  id?: number | undefined;
6084
6084
  }[] | undefined;
6085
6085
  required?: boolean | undefined;
@@ -6100,7 +6100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6100
6100
  hint?: string | undefined;
6101
6101
  messages?: {
6102
6102
  text: string;
6103
- type: "error" | "success" | "info" | "warning";
6103
+ type: "success" | "error" | "info" | "warning";
6104
6104
  id?: number | undefined;
6105
6105
  }[] | undefined;
6106
6106
  required?: boolean | undefined;
@@ -6331,7 +6331,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6331
6331
  hint?: string | undefined;
6332
6332
  messages?: {
6333
6333
  text: string;
6334
- type: "error" | "success" | "info" | "warning";
6334
+ type: "success" | "error" | "info" | "warning";
6335
6335
  id?: number | undefined;
6336
6336
  }[] | undefined;
6337
6337
  required?: boolean | undefined;
@@ -6349,7 +6349,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6349
6349
  hint?: string | undefined;
6350
6350
  messages?: {
6351
6351
  text: string;
6352
- type: "error" | "success" | "info" | "warning";
6352
+ type: "success" | "error" | "info" | "warning";
6353
6353
  id?: number | undefined;
6354
6354
  }[] | undefined;
6355
6355
  required?: boolean | undefined;
@@ -6373,7 +6373,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6373
6373
  hint?: string | undefined;
6374
6374
  messages?: {
6375
6375
  text: string;
6376
- type: "error" | "success" | "info" | "warning";
6376
+ type: "success" | "error" | "info" | "warning";
6377
6377
  id?: number | undefined;
6378
6378
  }[] | undefined;
6379
6379
  required?: boolean | undefined;
@@ -6397,7 +6397,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6397
6397
  hint?: string | undefined;
6398
6398
  messages?: {
6399
6399
  text: string;
6400
- type: "error" | "success" | "info" | "warning";
6400
+ type: "success" | "error" | "info" | "warning";
6401
6401
  id?: number | undefined;
6402
6402
  }[] | undefined;
6403
6403
  required?: boolean | undefined;
@@ -6421,7 +6421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6421
6421
  hint?: string | undefined;
6422
6422
  messages?: {
6423
6423
  text: string;
6424
- type: "error" | "success" | "info" | "warning";
6424
+ type: "success" | "error" | "info" | "warning";
6425
6425
  id?: number | undefined;
6426
6426
  }[] | undefined;
6427
6427
  required?: boolean | undefined;
@@ -6450,7 +6450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6450
6450
  hint?: string | undefined;
6451
6451
  messages?: {
6452
6452
  text: string;
6453
- type: "error" | "success" | "info" | "warning";
6453
+ type: "success" | "error" | "info" | "warning";
6454
6454
  id?: number | undefined;
6455
6455
  }[] | undefined;
6456
6456
  required?: boolean | undefined;
@@ -6465,7 +6465,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6465
6465
  hint?: string | undefined;
6466
6466
  messages?: {
6467
6467
  text: string;
6468
- type: "error" | "success" | "info" | "warning";
6468
+ type: "success" | "error" | "info" | "warning";
6469
6469
  id?: number | undefined;
6470
6470
  }[] | undefined;
6471
6471
  required?: boolean | undefined;
@@ -6486,7 +6486,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6486
6486
  hint?: string | undefined;
6487
6487
  messages?: {
6488
6488
  text: string;
6489
- type: "error" | "success" | "info" | "warning";
6489
+ type: "success" | "error" | "info" | "warning";
6490
6490
  id?: number | undefined;
6491
6491
  }[] | undefined;
6492
6492
  required?: boolean | undefined;
@@ -6511,7 +6511,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6511
6511
  hint?: string | undefined;
6512
6512
  messages?: {
6513
6513
  text: string;
6514
- type: "error" | "success" | "info" | "warning";
6514
+ type: "success" | "error" | "info" | "warning";
6515
6515
  id?: number | undefined;
6516
6516
  }[] | undefined;
6517
6517
  required?: boolean | undefined;
@@ -6530,7 +6530,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6530
6530
  hint?: string | undefined;
6531
6531
  messages?: {
6532
6532
  text: string;
6533
- type: "error" | "success" | "info" | "warning";
6533
+ type: "success" | "error" | "info" | "warning";
6534
6534
  id?: number | undefined;
6535
6535
  }[] | undefined;
6536
6536
  required?: boolean | undefined;
@@ -6550,7 +6550,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6550
6550
  hint?: string | undefined;
6551
6551
  messages?: {
6552
6552
  text: string;
6553
- type: "error" | "success" | "info" | "warning";
6553
+ type: "success" | "error" | "info" | "warning";
6554
6554
  id?: number | undefined;
6555
6555
  }[] | undefined;
6556
6556
  required?: boolean | undefined;
@@ -6569,7 +6569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6569
6569
  hint?: string | undefined;
6570
6570
  messages?: {
6571
6571
  text: string;
6572
- type: "error" | "success" | "info" | "warning";
6572
+ type: "success" | "error" | "info" | "warning";
6573
6573
  id?: number | undefined;
6574
6574
  }[] | undefined;
6575
6575
  required?: boolean | undefined;
@@ -6591,7 +6591,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6591
6591
  hint?: string | undefined;
6592
6592
  messages?: {
6593
6593
  text: string;
6594
- type: "error" | "success" | "info" | "warning";
6594
+ type: "success" | "error" | "info" | "warning";
6595
6595
  id?: number | undefined;
6596
6596
  }[] | undefined;
6597
6597
  required?: boolean | undefined;
@@ -6613,7 +6613,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6613
6613
  hint?: string | undefined;
6614
6614
  messages?: {
6615
6615
  text: string;
6616
- type: "error" | "success" | "info" | "warning";
6616
+ type: "success" | "error" | "info" | "warning";
6617
6617
  id?: number | undefined;
6618
6618
  }[] | undefined;
6619
6619
  required?: boolean | undefined;
@@ -6632,7 +6632,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6632
6632
  hint?: string | undefined;
6633
6633
  messages?: {
6634
6634
  text: string;
6635
- type: "error" | "success" | "info" | "warning";
6635
+ type: "success" | "error" | "info" | "warning";
6636
6636
  id?: number | undefined;
6637
6637
  }[] | undefined;
6638
6638
  required?: boolean | undefined;
@@ -6659,7 +6659,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6659
6659
  hint?: string | undefined;
6660
6660
  messages?: {
6661
6661
  text: string;
6662
- type: "error" | "success" | "info" | "warning";
6662
+ type: "success" | "error" | "info" | "warning";
6663
6663
  id?: number | undefined;
6664
6664
  }[] | undefined;
6665
6665
  required?: boolean | undefined;
@@ -6680,7 +6680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6680
6680
  hint?: string | undefined;
6681
6681
  messages?: {
6682
6682
  text: string;
6683
- type: "error" | "success" | "info" | "warning";
6683
+ type: "success" | "error" | "info" | "warning";
6684
6684
  id?: number | undefined;
6685
6685
  }[] | undefined;
6686
6686
  required?: boolean | undefined;
@@ -6701,7 +6701,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6701
6701
  hint?: string | undefined;
6702
6702
  messages?: {
6703
6703
  text: string;
6704
- type: "error" | "success" | "info" | "warning";
6704
+ type: "success" | "error" | "info" | "warning";
6705
6705
  id?: number | undefined;
6706
6706
  }[] | undefined;
6707
6707
  required?: boolean | undefined;
@@ -6933,7 +6933,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6933
6933
  };
6934
6934
  };
6935
6935
  output: {
6936
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6936
+ prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
6937
6937
  language: string;
6938
6938
  }[];
6939
6939
  outputFormat: "json";
@@ -6971,7 +6971,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6971
6971
  $get: {
6972
6972
  input: {
6973
6973
  param: {
6974
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6974
+ prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
6975
6975
  language: string;
6976
6976
  };
6977
6977
  } & {
@@ -6993,7 +6993,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6993
6993
  $put: {
6994
6994
  input: {
6995
6995
  param: {
6996
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6996
+ prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
6997
6997
  language: string;
6998
6998
  };
6999
6999
  } & {
@@ -7017,7 +7017,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7017
7017
  $delete: {
7018
7018
  input: {
7019
7019
  param: {
7020
- prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7020
+ prompt: "status" | "login" | "mfa" | "organizations" | "signup" | "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";
7021
7021
  language: string;
7022
7022
  };
7023
7023
  } & {
@@ -7880,7 +7880,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7880
7880
  };
7881
7881
  } | {
7882
7882
  mode: "inline";
7883
- status: "error" | "success";
7883
+ status: "success" | "error";
7884
7884
  connection_id: string;
7885
7885
  connection_name: string;
7886
7886
  strategy: string;
@@ -8520,7 +8520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8520
8520
  log_type: string;
8521
8521
  category: "user_action" | "admin_action" | "system" | "api";
8522
8522
  actor: {
8523
- type: "user" | "client_credentials" | "api_key" | "system" | "admin";
8523
+ type: "client_credentials" | "user" | "api_key" | "system" | "admin";
8524
8524
  id?: string | undefined;
8525
8525
  email?: string | undefined;
8526
8526
  org_id?: string | undefined;
@@ -8831,7 +8831,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8831
8831
  created_at: string;
8832
8832
  updated_at: string;
8833
8833
  name: string;
8834
- provider: "auth0" | "oidc" | "okta" | "cognito";
8834
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8835
8835
  connection: string;
8836
8836
  enabled: boolean;
8837
8837
  credentials: {
@@ -8863,7 +8863,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8863
8863
  created_at: string;
8864
8864
  updated_at: string;
8865
8865
  name: string;
8866
- provider: "auth0" | "oidc" | "okta" | "cognito";
8866
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8867
8867
  connection: string;
8868
8868
  enabled: boolean;
8869
8869
  credentials: {
@@ -8889,7 +8889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8889
8889
  } & {
8890
8890
  json: {
8891
8891
  name: string;
8892
- provider: "auth0" | "oidc" | "okta" | "cognito";
8892
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8893
8893
  connection: string;
8894
8894
  credentials: {
8895
8895
  domain: string;
@@ -8906,7 +8906,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8906
8906
  created_at: string;
8907
8907
  updated_at: string;
8908
8908
  name: string;
8909
- provider: "auth0" | "oidc" | "okta" | "cognito";
8909
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8910
8910
  connection: string;
8911
8911
  enabled: boolean;
8912
8912
  credentials: {
@@ -8937,7 +8937,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8937
8937
  json: {
8938
8938
  id?: string | undefined;
8939
8939
  name?: string | undefined;
8940
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8940
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8941
8941
  connection?: string | undefined;
8942
8942
  enabled?: boolean | undefined;
8943
8943
  credentials?: {
@@ -8953,7 +8953,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8953
8953
  created_at: string;
8954
8954
  updated_at: string;
8955
8955
  name: string;
8956
- provider: "auth0" | "oidc" | "okta" | "cognito";
8956
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8957
8957
  connection: string;
8958
8958
  enabled: boolean;
8959
8959
  credentials: {
@@ -9171,7 +9171,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9171
9171
  };
9172
9172
  };
9173
9173
  output: {
9174
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9174
+ type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9175
9175
  date: string;
9176
9176
  isMobile: boolean;
9177
9177
  log_id: string;
@@ -9210,7 +9210,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9210
9210
  limit: number;
9211
9211
  length: number;
9212
9212
  logs: {
9213
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9213
+ type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9214
9214
  date: string;
9215
9215
  isMobile: boolean;
9216
9216
  log_id: string;
@@ -9249,7 +9249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9249
9249
  next?: string | undefined;
9250
9250
  } | {
9251
9251
  logs: {
9252
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9252
+ type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9253
9253
  date: string;
9254
9254
  isMobile: boolean;
9255
9255
  log_id: string;
@@ -9303,7 +9303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9303
9303
  };
9304
9304
  };
9305
9305
  output: {
9306
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9306
+ type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9307
9307
  date: string;
9308
9308
  isMobile: boolean;
9309
9309
  log_id: string;
@@ -11767,7 +11767,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11767
11767
  };
11768
11768
  };
11769
11769
  output: {
11770
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11770
+ type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11771
11771
  date: string;
11772
11772
  isMobile: boolean;
11773
11773
  log_id: string;
@@ -11806,7 +11806,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11806
11806
  limit: number;
11807
11807
  length: number;
11808
11808
  logs: {
11809
- type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11809
+ type: "fh" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11810
11810
  date: string;
11811
11811
  isMobile: boolean;
11812
11812
  log_id: string;
@@ -12125,7 +12125,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12125
12125
  };
12126
12126
  } & {
12127
12127
  json: {
12128
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12128
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12129
12129
  body: string;
12130
12130
  from: string;
12131
12131
  subject: string;
@@ -12146,7 +12146,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12146
12146
  };
12147
12147
  } & {
12148
12148
  json: {
12149
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12149
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12150
12150
  body: string;
12151
12151
  from: string;
12152
12152
  subject: string;
@@ -12158,7 +12158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12158
12158
  };
12159
12159
  };
12160
12160
  output: {
12161
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12161
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12162
12162
  body: string;
12163
12163
  from: string;
12164
12164
  subject: string;
@@ -12181,7 +12181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12181
12181
  };
12182
12182
  };
12183
12183
  output: {
12184
- name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12184
+ name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12185
12185
  body: string;
12186
12186
  subject: string;
12187
12187
  }[];
@@ -12194,7 +12194,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12194
12194
  $get: {
12195
12195
  input: {
12196
12196
  param: {
12197
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12197
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12198
12198
  };
12199
12199
  } & {
12200
12200
  header: {
@@ -12207,7 +12207,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12207
12207
  } | {
12208
12208
  input: {
12209
12209
  param: {
12210
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12210
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12211
12211
  };
12212
12212
  } & {
12213
12213
  header: {
@@ -12215,7 +12215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12215
12215
  };
12216
12216
  };
12217
12217
  output: {
12218
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12218
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12219
12219
  body: string;
12220
12220
  from: string;
12221
12221
  subject: string;
@@ -12234,7 +12234,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12234
12234
  $put: {
12235
12235
  input: {
12236
12236
  param: {
12237
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12237
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12238
12238
  };
12239
12239
  } & {
12240
12240
  header: {
@@ -12242,7 +12242,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12242
12242
  };
12243
12243
  } & {
12244
12244
  json: {
12245
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12245
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12246
12246
  body: string;
12247
12247
  subject: string;
12248
12248
  syntax?: "liquid" | undefined;
@@ -12254,7 +12254,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12254
12254
  };
12255
12255
  };
12256
12256
  output: {
12257
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12257
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12258
12258
  body: string;
12259
12259
  from: string;
12260
12260
  subject: string;
@@ -12273,7 +12273,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12273
12273
  $patch: {
12274
12274
  input: {
12275
12275
  param: {
12276
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12276
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12277
12277
  };
12278
12278
  } & {
12279
12279
  header: {
@@ -12281,7 +12281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12281
12281
  };
12282
12282
  } & {
12283
12283
  json: {
12284
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12284
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12285
12285
  body?: string | undefined;
12286
12286
  from?: string | undefined;
12287
12287
  subject?: string | undefined;
@@ -12298,7 +12298,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12298
12298
  } | {
12299
12299
  input: {
12300
12300
  param: {
12301
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12301
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12302
12302
  };
12303
12303
  } & {
12304
12304
  header: {
@@ -12306,7 +12306,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12306
12306
  };
12307
12307
  } & {
12308
12308
  json: {
12309
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12309
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12310
12310
  body?: string | undefined;
12311
12311
  from?: string | undefined;
12312
12312
  subject?: string | undefined;
@@ -12318,7 +12318,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12318
12318
  };
12319
12319
  };
12320
12320
  output: {
12321
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12321
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12322
12322
  body: string;
12323
12323
  from: string;
12324
12324
  subject: string;
@@ -12337,7 +12337,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12337
12337
  $delete: {
12338
12338
  input: {
12339
12339
  param: {
12340
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12340
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12341
12341
  };
12342
12342
  } & {
12343
12343
  header: {
@@ -12350,7 +12350,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12350
12350
  } | {
12351
12351
  input: {
12352
12352
  param: {
12353
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12353
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12354
12354
  };
12355
12355
  } & {
12356
12356
  header: {
@@ -12367,7 +12367,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12367
12367
  $post: {
12368
12368
  input: {
12369
12369
  param: {
12370
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12370
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12371
12371
  };
12372
12372
  } & {
12373
12373
  header: {
@@ -13488,7 +13488,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13488
13488
  json: {
13489
13489
  bindings: {
13490
13490
  ref: {
13491
- type?: "action_id" | "action_name" | undefined;
13491
+ type?: "action_name" | "action_id" | undefined;
13492
13492
  value?: string | undefined;
13493
13493
  id?: string | undefined;
13494
13494
  name?: string | undefined;
@@ -13610,7 +13610,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13610
13610
  logs: {
13611
13611
  action_name: string;
13612
13612
  lines: {
13613
- level: "error" | "log" | "info" | "warn" | "debug";
13613
+ level: "log" | "error" | "info" | "warn" | "debug";
13614
13614
  message: string;
13615
13615
  }[];
13616
13616
  }[];
@@ -14279,7 +14279,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
14279
14279
  args: import("hono/utils/types").JSONValue[];
14280
14280
  }[];
14281
14281
  logs: {
14282
- level: "error" | "log" | "info" | "warn" | "debug";
14282
+ level: "log" | "error" | "info" | "warn" | "debug";
14283
14283
  message: string;
14284
14284
  }[];
14285
14285
  error?: string | undefined;