authhero 9.12.0 → 9.12.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.
@@ -215,7 +215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
215
215
  };
216
216
  } & {
217
217
  json: {
218
- type: "email" | "totp" | "phone" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform";
218
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
219
219
  phone_number?: string | undefined;
220
220
  totp_secret?: string | undefined;
221
221
  credential_id?: string | undefined;
@@ -355,7 +355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
355
355
  };
356
356
  };
357
357
  output: {
358
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
358
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
359
359
  enabled: boolean;
360
360
  trial_expired?: boolean | undefined;
361
361
  }[];
@@ -510,7 +510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
510
510
  $get: {
511
511
  input: {
512
512
  param: {
513
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
513
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
514
514
  };
515
515
  } & {
516
516
  header: {
@@ -518,7 +518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
518
518
  };
519
519
  };
520
520
  output: {
521
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
521
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
522
522
  enabled: boolean;
523
523
  trial_expired?: boolean | undefined;
524
524
  };
@@ -531,7 +531,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
531
531
  $put: {
532
532
  input: {
533
533
  param: {
534
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
534
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
535
535
  };
536
536
  } & {
537
537
  header: {
@@ -543,7 +543,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
543
543
  };
544
544
  };
545
545
  output: {
546
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
546
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
547
547
  enabled: boolean;
548
548
  trial_expired?: boolean | undefined;
549
549
  };
@@ -1315,19 +1315,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1315
1315
  } & {
1316
1316
  json: {
1317
1317
  client_id: string;
1318
- invitee: {
1319
- email?: string | undefined;
1320
- };
1321
1318
  inviter: {
1322
1319
  name?: string | undefined;
1323
1320
  };
1321
+ invitee: {
1322
+ email?: string | undefined;
1323
+ };
1324
1324
  id?: string | undefined;
1325
+ connection_id?: string | undefined;
1325
1326
  app_metadata?: Record<string, any> | undefined;
1326
1327
  user_metadata?: Record<string, any> | undefined;
1327
- connection_id?: string | undefined;
1328
1328
  roles?: string[] | undefined;
1329
- send_invitation_email?: boolean | undefined;
1330
1329
  ttl_sec?: number | undefined;
1330
+ send_invitation_email?: boolean | undefined;
1331
1331
  };
1332
1332
  };
1333
1333
  output: {
@@ -1510,8 +1510,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1510
1510
  };
1511
1511
  } & {
1512
1512
  json: {
1513
- show_as_button?: boolean | undefined;
1514
1513
  assign_membership_on_login?: boolean | undefined;
1514
+ show_as_button?: boolean | undefined;
1515
1515
  is_signup_enabled?: boolean | undefined;
1516
1516
  };
1517
1517
  };
@@ -2082,9 +2082,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2082
2082
  };
2083
2083
  } & {
2084
2084
  query: {
2085
+ from?: string | undefined;
2085
2086
  page?: string | undefined;
2086
2087
  include_totals?: string | undefined;
2087
- from?: string | undefined;
2088
2088
  per_page?: string | undefined;
2089
2089
  take?: string | undefined;
2090
2090
  };
@@ -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: "success" | "error" | "info" | "warning";
2810
+ type: "error" | "success" | "info" | "warning";
2811
2811
  id?: number | undefined;
2812
2812
  }[] | undefined;
2813
2813
  required?: boolean | undefined;
@@ -2825,7 +2825,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2825
2825
  hint?: string | undefined;
2826
2826
  messages?: {
2827
2827
  text: string;
2828
- type: "success" | "error" | "info" | "warning";
2828
+ type: "error" | "success" | "info" | "warning";
2829
2829
  id?: number | undefined;
2830
2830
  }[] | undefined;
2831
2831
  required?: boolean | undefined;
@@ -2849,7 +2849,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2849
2849
  hint?: string | undefined;
2850
2850
  messages?: {
2851
2851
  text: string;
2852
- type: "success" | "error" | "info" | "warning";
2852
+ type: "error" | "success" | "info" | "warning";
2853
2853
  id?: number | undefined;
2854
2854
  }[] | undefined;
2855
2855
  required?: boolean | undefined;
@@ -2873,7 +2873,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2873
2873
  hint?: string | undefined;
2874
2874
  messages?: {
2875
2875
  text: string;
2876
- type: "success" | "error" | "info" | "warning";
2876
+ type: "error" | "success" | "info" | "warning";
2877
2877
  id?: number | undefined;
2878
2878
  }[] | undefined;
2879
2879
  required?: boolean | undefined;
@@ -2897,7 +2897,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2897
2897
  hint?: string | undefined;
2898
2898
  messages?: {
2899
2899
  text: string;
2900
- type: "success" | "error" | "info" | "warning";
2900
+ type: "error" | "success" | "info" | "warning";
2901
2901
  id?: number | undefined;
2902
2902
  }[] | undefined;
2903
2903
  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: "success" | "error" | "info" | "warning";
2929
+ type: "error" | "success" | "info" | "warning";
2930
2930
  id?: number | undefined;
2931
2931
  }[] | undefined;
2932
2932
  required?: boolean | undefined;
@@ -2941,7 +2941,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2941
2941
  hint?: string | undefined;
2942
2942
  messages?: {
2943
2943
  text: string;
2944
- type: "success" | "error" | "info" | "warning";
2944
+ type: "error" | "success" | "info" | "warning";
2945
2945
  id?: number | undefined;
2946
2946
  }[] | undefined;
2947
2947
  required?: boolean | undefined;
@@ -2962,7 +2962,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2962
2962
  hint?: string | undefined;
2963
2963
  messages?: {
2964
2964
  text: string;
2965
- type: "success" | "error" | "info" | "warning";
2965
+ type: "error" | "success" | "info" | "warning";
2966
2966
  id?: number | undefined;
2967
2967
  }[] | undefined;
2968
2968
  required?: boolean | undefined;
@@ -2987,7 +2987,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2987
2987
  hint?: string | undefined;
2988
2988
  messages?: {
2989
2989
  text: string;
2990
- type: "success" | "error" | "info" | "warning";
2990
+ type: "error" | "success" | "info" | "warning";
2991
2991
  id?: number | undefined;
2992
2992
  }[] | undefined;
2993
2993
  required?: boolean | undefined;
@@ -3008,7 +3008,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3008
3008
  hint?: string | undefined;
3009
3009
  messages?: {
3010
3010
  text: string;
3011
- type: "success" | "error" | "info" | "warning";
3011
+ type: "error" | "success" | "info" | "warning";
3012
3012
  id?: number | undefined;
3013
3013
  }[] | undefined;
3014
3014
  required?: boolean | undefined;
@@ -3028,7 +3028,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3028
3028
  hint?: string | undefined;
3029
3029
  messages?: {
3030
3030
  text: string;
3031
- type: "success" | "error" | "info" | "warning";
3031
+ type: "error" | "success" | "info" | "warning";
3032
3032
  id?: number | undefined;
3033
3033
  }[] | undefined;
3034
3034
  required?: boolean | undefined;
@@ -3047,7 +3047,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3047
3047
  hint?: string | undefined;
3048
3048
  messages?: {
3049
3049
  text: string;
3050
- type: "success" | "error" | "info" | "warning";
3050
+ type: "error" | "success" | "info" | "warning";
3051
3051
  id?: number | undefined;
3052
3052
  }[] | undefined;
3053
3053
  required?: boolean | undefined;
@@ -3069,7 +3069,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3069
3069
  hint?: string | undefined;
3070
3070
  messages?: {
3071
3071
  text: string;
3072
- type: "success" | "error" | "info" | "warning";
3072
+ type: "error" | "success" | "info" | "warning";
3073
3073
  id?: number | undefined;
3074
3074
  }[] | undefined;
3075
3075
  required?: boolean | undefined;
@@ -3091,7 +3091,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3091
3091
  hint?: string | undefined;
3092
3092
  messages?: {
3093
3093
  text: string;
3094
- type: "success" | "error" | "info" | "warning";
3094
+ type: "error" | "success" | "info" | "warning";
3095
3095
  id?: number | undefined;
3096
3096
  }[] | undefined;
3097
3097
  required?: boolean | undefined;
@@ -3110,7 +3110,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3110
3110
  hint?: string | undefined;
3111
3111
  messages?: {
3112
3112
  text: string;
3113
- type: "success" | "error" | "info" | "warning";
3113
+ type: "error" | "success" | "info" | "warning";
3114
3114
  id?: number | undefined;
3115
3115
  }[] | undefined;
3116
3116
  required?: boolean | undefined;
@@ -3137,7 +3137,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3137
3137
  hint?: string | undefined;
3138
3138
  messages?: {
3139
3139
  text: string;
3140
- type: "success" | "error" | "info" | "warning";
3140
+ type: "error" | "success" | "info" | "warning";
3141
3141
  id?: number | undefined;
3142
3142
  }[] | undefined;
3143
3143
  required?: boolean | undefined;
@@ -3158,7 +3158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3158
3158
  hint?: string | undefined;
3159
3159
  messages?: {
3160
3160
  text: string;
3161
- type: "success" | "error" | "info" | "warning";
3161
+ type: "error" | "success" | "info" | "warning";
3162
3162
  id?: number | undefined;
3163
3163
  }[] | undefined;
3164
3164
  required?: boolean | undefined;
@@ -3181,7 +3181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3181
3181
  hint?: string | undefined;
3182
3182
  messages?: {
3183
3183
  text: string;
3184
- type: "success" | "error" | "info" | "warning";
3184
+ type: "error" | "success" | "info" | "warning";
3185
3185
  id?: number | undefined;
3186
3186
  }[] | undefined;
3187
3187
  required?: boolean | undefined;
@@ -3414,7 +3414,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3414
3414
  hint?: string | undefined;
3415
3415
  messages?: {
3416
3416
  text: string;
3417
- type: "success" | "error" | "info" | "warning";
3417
+ type: "error" | "success" | "info" | "warning";
3418
3418
  id?: number | undefined;
3419
3419
  }[] | undefined;
3420
3420
  required?: boolean | undefined;
@@ -3432,7 +3432,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3432
3432
  hint?: string | undefined;
3433
3433
  messages?: {
3434
3434
  text: string;
3435
- type: "success" | "error" | "info" | "warning";
3435
+ type: "error" | "success" | "info" | "warning";
3436
3436
  id?: number | undefined;
3437
3437
  }[] | undefined;
3438
3438
  required?: boolean | undefined;
@@ -3456,7 +3456,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3456
3456
  hint?: string | undefined;
3457
3457
  messages?: {
3458
3458
  text: string;
3459
- type: "success" | "error" | "info" | "warning";
3459
+ type: "error" | "success" | "info" | "warning";
3460
3460
  id?: number | undefined;
3461
3461
  }[] | undefined;
3462
3462
  required?: boolean | undefined;
@@ -3480,7 +3480,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3480
3480
  hint?: string | undefined;
3481
3481
  messages?: {
3482
3482
  text: string;
3483
- type: "success" | "error" | "info" | "warning";
3483
+ type: "error" | "success" | "info" | "warning";
3484
3484
  id?: number | undefined;
3485
3485
  }[] | undefined;
3486
3486
  required?: boolean | undefined;
@@ -3504,7 +3504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3504
3504
  hint?: string | undefined;
3505
3505
  messages?: {
3506
3506
  text: string;
3507
- type: "success" | "error" | "info" | "warning";
3507
+ type: "error" | "success" | "info" | "warning";
3508
3508
  id?: number | undefined;
3509
3509
  }[] | undefined;
3510
3510
  required?: boolean | undefined;
@@ -3533,7 +3533,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3533
3533
  hint?: string | undefined;
3534
3534
  messages?: {
3535
3535
  text: string;
3536
- type: "success" | "error" | "info" | "warning";
3536
+ type: "error" | "success" | "info" | "warning";
3537
3537
  id?: number | undefined;
3538
3538
  }[] | undefined;
3539
3539
  required?: boolean | undefined;
@@ -3548,7 +3548,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3548
3548
  hint?: string | undefined;
3549
3549
  messages?: {
3550
3550
  text: string;
3551
- type: "success" | "error" | "info" | "warning";
3551
+ type: "error" | "success" | "info" | "warning";
3552
3552
  id?: number | undefined;
3553
3553
  }[] | undefined;
3554
3554
  required?: boolean | undefined;
@@ -3569,7 +3569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3569
3569
  hint?: string | undefined;
3570
3570
  messages?: {
3571
3571
  text: string;
3572
- type: "success" | "error" | "info" | "warning";
3572
+ type: "error" | "success" | "info" | "warning";
3573
3573
  id?: number | undefined;
3574
3574
  }[] | undefined;
3575
3575
  required?: boolean | undefined;
@@ -3594,7 +3594,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3594
3594
  hint?: string | undefined;
3595
3595
  messages?: {
3596
3596
  text: string;
3597
- type: "success" | "error" | "info" | "warning";
3597
+ type: "error" | "success" | "info" | "warning";
3598
3598
  id?: number | undefined;
3599
3599
  }[] | undefined;
3600
3600
  required?: boolean | undefined;
@@ -3615,7 +3615,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3615
3615
  hint?: string | undefined;
3616
3616
  messages?: {
3617
3617
  text: string;
3618
- type: "success" | "error" | "info" | "warning";
3618
+ type: "error" | "success" | "info" | "warning";
3619
3619
  id?: number | undefined;
3620
3620
  }[] | undefined;
3621
3621
  required?: boolean | undefined;
@@ -3635,7 +3635,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3635
3635
  hint?: string | undefined;
3636
3636
  messages?: {
3637
3637
  text: string;
3638
- type: "success" | "error" | "info" | "warning";
3638
+ type: "error" | "success" | "info" | "warning";
3639
3639
  id?: number | undefined;
3640
3640
  }[] | undefined;
3641
3641
  required?: boolean | undefined;
@@ -3654,7 +3654,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3654
3654
  hint?: string | undefined;
3655
3655
  messages?: {
3656
3656
  text: string;
3657
- type: "success" | "error" | "info" | "warning";
3657
+ type: "error" | "success" | "info" | "warning";
3658
3658
  id?: number | undefined;
3659
3659
  }[] | undefined;
3660
3660
  required?: boolean | undefined;
@@ -3676,7 +3676,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3676
3676
  hint?: string | undefined;
3677
3677
  messages?: {
3678
3678
  text: string;
3679
- type: "success" | "error" | "info" | "warning";
3679
+ type: "error" | "success" | "info" | "warning";
3680
3680
  id?: number | undefined;
3681
3681
  }[] | undefined;
3682
3682
  required?: boolean | undefined;
@@ -3698,7 +3698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3698
3698
  hint?: string | undefined;
3699
3699
  messages?: {
3700
3700
  text: string;
3701
- type: "success" | "error" | "info" | "warning";
3701
+ type: "error" | "success" | "info" | "warning";
3702
3702
  id?: number | undefined;
3703
3703
  }[] | undefined;
3704
3704
  required?: boolean | undefined;
@@ -3717,7 +3717,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3717
3717
  hint?: string | undefined;
3718
3718
  messages?: {
3719
3719
  text: string;
3720
- type: "success" | "error" | "info" | "warning";
3720
+ type: "error" | "success" | "info" | "warning";
3721
3721
  id?: number | undefined;
3722
3722
  }[] | undefined;
3723
3723
  required?: boolean | undefined;
@@ -3744,7 +3744,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3744
3744
  hint?: string | undefined;
3745
3745
  messages?: {
3746
3746
  text: string;
3747
- type: "success" | "error" | "info" | "warning";
3747
+ type: "error" | "success" | "info" | "warning";
3748
3748
  id?: number | undefined;
3749
3749
  }[] | undefined;
3750
3750
  required?: boolean | undefined;
@@ -3765,7 +3765,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3765
3765
  hint?: string | undefined;
3766
3766
  messages?: {
3767
3767
  text: string;
3768
- type: "success" | "error" | "info" | "warning";
3768
+ type: "error" | "success" | "info" | "warning";
3769
3769
  id?: number | undefined;
3770
3770
  }[] | undefined;
3771
3771
  required?: boolean | undefined;
@@ -3788,7 +3788,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3788
3788
  hint?: string | undefined;
3789
3789
  messages?: {
3790
3790
  text: string;
3791
- type: "success" | "error" | "info" | "warning";
3791
+ type: "error" | "success" | "info" | "warning";
3792
3792
  id?: number | undefined;
3793
3793
  }[] | undefined;
3794
3794
  required?: boolean | undefined;
@@ -4037,7 +4037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4037
4037
  hint?: string | undefined;
4038
4038
  messages?: {
4039
4039
  text: string;
4040
- type: "success" | "error" | "info" | "warning";
4040
+ type: "error" | "success" | "info" | "warning";
4041
4041
  id?: number | undefined;
4042
4042
  }[] | undefined;
4043
4043
  required?: boolean | undefined;
@@ -4055,7 +4055,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4055
4055
  hint?: string | undefined;
4056
4056
  messages?: {
4057
4057
  text: string;
4058
- type: "success" | "error" | "info" | "warning";
4058
+ type: "error" | "success" | "info" | "warning";
4059
4059
  id?: number | undefined;
4060
4060
  }[] | undefined;
4061
4061
  required?: boolean | undefined;
@@ -4079,7 +4079,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4079
4079
  hint?: string | undefined;
4080
4080
  messages?: {
4081
4081
  text: string;
4082
- type: "success" | "error" | "info" | "warning";
4082
+ type: "error" | "success" | "info" | "warning";
4083
4083
  id?: number | undefined;
4084
4084
  }[] | undefined;
4085
4085
  required?: boolean | undefined;
@@ -4103,7 +4103,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4103
4103
  hint?: string | undefined;
4104
4104
  messages?: {
4105
4105
  text: string;
4106
- type: "success" | "error" | "info" | "warning";
4106
+ type: "error" | "success" | "info" | "warning";
4107
4107
  id?: number | undefined;
4108
4108
  }[] | undefined;
4109
4109
  required?: boolean | undefined;
@@ -4127,7 +4127,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4127
4127
  hint?: string | undefined;
4128
4128
  messages?: {
4129
4129
  text: string;
4130
- type: "success" | "error" | "info" | "warning";
4130
+ type: "error" | "success" | "info" | "warning";
4131
4131
  id?: number | undefined;
4132
4132
  }[] | undefined;
4133
4133
  required?: boolean | undefined;
@@ -4156,7 +4156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4156
4156
  hint?: string | undefined;
4157
4157
  messages?: {
4158
4158
  text: string;
4159
- type: "success" | "error" | "info" | "warning";
4159
+ type: "error" | "success" | "info" | "warning";
4160
4160
  id?: number | undefined;
4161
4161
  }[] | undefined;
4162
4162
  required?: boolean | undefined;
@@ -4171,7 +4171,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4171
4171
  hint?: string | undefined;
4172
4172
  messages?: {
4173
4173
  text: string;
4174
- type: "success" | "error" | "info" | "warning";
4174
+ type: "error" | "success" | "info" | "warning";
4175
4175
  id?: number | undefined;
4176
4176
  }[] | undefined;
4177
4177
  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: "success" | "error" | "info" | "warning";
4195
+ type: "error" | "success" | "info" | "warning";
4196
4196
  id?: number | undefined;
4197
4197
  }[] | undefined;
4198
4198
  required?: boolean | undefined;
@@ -4217,7 +4217,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4217
4217
  hint?: string | undefined;
4218
4218
  messages?: {
4219
4219
  text: string;
4220
- type: "success" | "error" | "info" | "warning";
4220
+ type: "error" | "success" | "info" | "warning";
4221
4221
  id?: number | undefined;
4222
4222
  }[] | undefined;
4223
4223
  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: "success" | "error" | "info" | "warning";
4241
+ type: "error" | "success" | "info" | "warning";
4242
4242
  id?: number | undefined;
4243
4243
  }[] | undefined;
4244
4244
  required?: boolean | undefined;
@@ -4258,7 +4258,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4258
4258
  hint?: string | undefined;
4259
4259
  messages?: {
4260
4260
  text: string;
4261
- type: "success" | "error" | "info" | "warning";
4261
+ type: "error" | "success" | "info" | "warning";
4262
4262
  id?: number | undefined;
4263
4263
  }[] | undefined;
4264
4264
  required?: boolean | undefined;
@@ -4277,7 +4277,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4277
4277
  hint?: string | undefined;
4278
4278
  messages?: {
4279
4279
  text: string;
4280
- type: "success" | "error" | "info" | "warning";
4280
+ type: "error" | "success" | "info" | "warning";
4281
4281
  id?: number | undefined;
4282
4282
  }[] | undefined;
4283
4283
  required?: boolean | undefined;
@@ -4299,7 +4299,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4299
4299
  hint?: string | undefined;
4300
4300
  messages?: {
4301
4301
  text: string;
4302
- type: "success" | "error" | "info" | "warning";
4302
+ type: "error" | "success" | "info" | "warning";
4303
4303
  id?: number | undefined;
4304
4304
  }[] | undefined;
4305
4305
  required?: boolean | undefined;
@@ -4321,7 +4321,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4321
4321
  hint?: string | undefined;
4322
4322
  messages?: {
4323
4323
  text: string;
4324
- type: "success" | "error" | "info" | "warning";
4324
+ type: "error" | "success" | "info" | "warning";
4325
4325
  id?: number | undefined;
4326
4326
  }[] | undefined;
4327
4327
  required?: boolean | undefined;
@@ -4340,7 +4340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4340
4340
  hint?: string | undefined;
4341
4341
  messages?: {
4342
4342
  text: string;
4343
- type: "success" | "error" | "info" | "warning";
4343
+ type: "error" | "success" | "info" | "warning";
4344
4344
  id?: number | undefined;
4345
4345
  }[] | undefined;
4346
4346
  required?: boolean | undefined;
@@ -4367,7 +4367,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4367
4367
  hint?: string | undefined;
4368
4368
  messages?: {
4369
4369
  text: string;
4370
- type: "success" | "error" | "info" | "warning";
4370
+ type: "error" | "success" | "info" | "warning";
4371
4371
  id?: number | undefined;
4372
4372
  }[] | undefined;
4373
4373
  required?: boolean | undefined;
@@ -4388,7 +4388,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4388
4388
  hint?: string | undefined;
4389
4389
  messages?: {
4390
4390
  text: string;
4391
- type: "success" | "error" | "info" | "warning";
4391
+ type: "error" | "success" | "info" | "warning";
4392
4392
  id?: number | undefined;
4393
4393
  }[] | undefined;
4394
4394
  required?: boolean | undefined;
@@ -4411,7 +4411,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4411
4411
  hint?: string | undefined;
4412
4412
  messages?: {
4413
4413
  text: string;
4414
- type: "success" | "error" | "info" | "warning";
4414
+ type: "error" | "success" | "info" | "warning";
4415
4415
  id?: number | undefined;
4416
4416
  }[] | undefined;
4417
4417
  required?: boolean | undefined;
@@ -4665,7 +4665,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4665
4665
  hint?: string | undefined;
4666
4666
  messages?: {
4667
4667
  text: string;
4668
- type: "success" | "error" | "info" | "warning";
4668
+ type: "error" | "success" | "info" | "warning";
4669
4669
  id?: number | undefined;
4670
4670
  }[] | undefined;
4671
4671
  required?: boolean | undefined;
@@ -4683,7 +4683,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4683
4683
  hint?: string | undefined;
4684
4684
  messages?: {
4685
4685
  text: string;
4686
- type: "success" | "error" | "info" | "warning";
4686
+ type: "error" | "success" | "info" | "warning";
4687
4687
  id?: number | undefined;
4688
4688
  }[] | undefined;
4689
4689
  required?: boolean | undefined;
@@ -4707,7 +4707,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4707
4707
  hint?: string | undefined;
4708
4708
  messages?: {
4709
4709
  text: string;
4710
- type: "success" | "error" | "info" | "warning";
4710
+ type: "error" | "success" | "info" | "warning";
4711
4711
  id?: number | undefined;
4712
4712
  }[] | undefined;
4713
4713
  required?: boolean | undefined;
@@ -4731,7 +4731,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4731
4731
  hint?: string | undefined;
4732
4732
  messages?: {
4733
4733
  text: string;
4734
- type: "success" | "error" | "info" | "warning";
4734
+ type: "error" | "success" | "info" | "warning";
4735
4735
  id?: number | undefined;
4736
4736
  }[] | undefined;
4737
4737
  required?: boolean | undefined;
@@ -4755,7 +4755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4755
4755
  hint?: string | undefined;
4756
4756
  messages?: {
4757
4757
  text: string;
4758
- type: "success" | "error" | "info" | "warning";
4758
+ type: "error" | "success" | "info" | "warning";
4759
4759
  id?: number | undefined;
4760
4760
  }[] | undefined;
4761
4761
  required?: boolean | undefined;
@@ -4780,7 +4780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4780
4780
  hint?: string | undefined;
4781
4781
  messages?: {
4782
4782
  text: string;
4783
- type: "success" | "error" | "info" | "warning";
4783
+ type: "error" | "success" | "info" | "warning";
4784
4784
  id?: number | undefined;
4785
4785
  }[] | undefined;
4786
4786
  required?: boolean | undefined;
@@ -4795,7 +4795,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4795
4795
  hint?: string | undefined;
4796
4796
  messages?: {
4797
4797
  text: string;
4798
- type: "success" | "error" | "info" | "warning";
4798
+ type: "error" | "success" | "info" | "warning";
4799
4799
  id?: number | undefined;
4800
4800
  }[] | undefined;
4801
4801
  required?: boolean | undefined;
@@ -4816,7 +4816,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4816
4816
  hint?: string | undefined;
4817
4817
  messages?: {
4818
4818
  text: string;
4819
- type: "success" | "error" | "info" | "warning";
4819
+ type: "error" | "success" | "info" | "warning";
4820
4820
  id?: number | undefined;
4821
4821
  }[] | undefined;
4822
4822
  required?: boolean | undefined;
@@ -4841,7 +4841,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4841
4841
  hint?: string | undefined;
4842
4842
  messages?: {
4843
4843
  text: string;
4844
- type: "success" | "error" | "info" | "warning";
4844
+ type: "error" | "success" | "info" | "warning";
4845
4845
  id?: number | undefined;
4846
4846
  }[] | undefined;
4847
4847
  required?: boolean | undefined;
@@ -4862,7 +4862,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4862
4862
  hint?: string | undefined;
4863
4863
  messages?: {
4864
4864
  text: string;
4865
- type: "success" | "error" | "info" | "warning";
4865
+ type: "error" | "success" | "info" | "warning";
4866
4866
  id?: number | undefined;
4867
4867
  }[] | undefined;
4868
4868
  required?: boolean | undefined;
@@ -4882,7 +4882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4882
4882
  hint?: string | undefined;
4883
4883
  messages?: {
4884
4884
  text: string;
4885
- type: "success" | "error" | "info" | "warning";
4885
+ type: "error" | "success" | "info" | "warning";
4886
4886
  id?: number | undefined;
4887
4887
  }[] | undefined;
4888
4888
  required?: boolean | undefined;
@@ -4901,7 +4901,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4901
4901
  hint?: string | undefined;
4902
4902
  messages?: {
4903
4903
  text: string;
4904
- type: "success" | "error" | "info" | "warning";
4904
+ type: "error" | "success" | "info" | "warning";
4905
4905
  id?: number | undefined;
4906
4906
  }[] | undefined;
4907
4907
  required?: boolean | undefined;
@@ -4923,7 +4923,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4923
4923
  hint?: string | undefined;
4924
4924
  messages?: {
4925
4925
  text: string;
4926
- type: "success" | "error" | "info" | "warning";
4926
+ type: "error" | "success" | "info" | "warning";
4927
4927
  id?: number | undefined;
4928
4928
  }[] | undefined;
4929
4929
  required?: boolean | undefined;
@@ -4945,7 +4945,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4945
4945
  hint?: string | undefined;
4946
4946
  messages?: {
4947
4947
  text: string;
4948
- type: "success" | "error" | "info" | "warning";
4948
+ type: "error" | "success" | "info" | "warning";
4949
4949
  id?: number | undefined;
4950
4950
  }[] | undefined;
4951
4951
  required?: boolean | undefined;
@@ -4964,7 +4964,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4964
4964
  hint?: string | undefined;
4965
4965
  messages?: {
4966
4966
  text: string;
4967
- type: "success" | "error" | "info" | "warning";
4967
+ type: "error" | "success" | "info" | "warning";
4968
4968
  id?: number | undefined;
4969
4969
  }[] | undefined;
4970
4970
  required?: boolean | undefined;
@@ -4991,7 +4991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4991
4991
  hint?: string | undefined;
4992
4992
  messages?: {
4993
4993
  text: string;
4994
- type: "success" | "error" | "info" | "warning";
4994
+ type: "error" | "success" | "info" | "warning";
4995
4995
  id?: number | undefined;
4996
4996
  }[] | undefined;
4997
4997
  required?: boolean | undefined;
@@ -5012,7 +5012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5012
5012
  hint?: string | undefined;
5013
5013
  messages?: {
5014
5014
  text: string;
5015
- type: "success" | "error" | "info" | "warning";
5015
+ type: "error" | "success" | "info" | "warning";
5016
5016
  id?: number | undefined;
5017
5017
  }[] | undefined;
5018
5018
  required?: boolean | undefined;
@@ -5035,7 +5035,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5035
5035
  hint?: string | undefined;
5036
5036
  messages?: {
5037
5037
  text: string;
5038
- type: "success" | "error" | "info" | "warning";
5038
+ type: "error" | "success" | "info" | "warning";
5039
5039
  id?: number | undefined;
5040
5040
  }[] | undefined;
5041
5041
  required?: boolean | undefined;
@@ -5266,7 +5266,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5266
5266
  hint?: string | undefined;
5267
5267
  messages?: {
5268
5268
  text: string;
5269
- type: "success" | "error" | "info" | "warning";
5269
+ type: "error" | "success" | "info" | "warning";
5270
5270
  id?: number | undefined;
5271
5271
  }[] | undefined;
5272
5272
  required?: boolean | undefined;
@@ -5284,7 +5284,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5284
5284
  hint?: string | undefined;
5285
5285
  messages?: {
5286
5286
  text: string;
5287
- type: "success" | "error" | "info" | "warning";
5287
+ type: "error" | "success" | "info" | "warning";
5288
5288
  id?: number | undefined;
5289
5289
  }[] | undefined;
5290
5290
  required?: boolean | undefined;
@@ -5308,7 +5308,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5308
5308
  hint?: string | undefined;
5309
5309
  messages?: {
5310
5310
  text: string;
5311
- type: "success" | "error" | "info" | "warning";
5311
+ type: "error" | "success" | "info" | "warning";
5312
5312
  id?: number | undefined;
5313
5313
  }[] | undefined;
5314
5314
  required?: boolean | undefined;
@@ -5332,7 +5332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5332
5332
  hint?: string | undefined;
5333
5333
  messages?: {
5334
5334
  text: string;
5335
- type: "success" | "error" | "info" | "warning";
5335
+ type: "error" | "success" | "info" | "warning";
5336
5336
  id?: number | undefined;
5337
5337
  }[] | undefined;
5338
5338
  required?: boolean | undefined;
@@ -5356,7 +5356,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5356
5356
  hint?: string | undefined;
5357
5357
  messages?: {
5358
5358
  text: string;
5359
- type: "success" | "error" | "info" | "warning";
5359
+ type: "error" | "success" | "info" | "warning";
5360
5360
  id?: number | undefined;
5361
5361
  }[] | undefined;
5362
5362
  required?: boolean | undefined;
@@ -5385,7 +5385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5385
5385
  hint?: string | undefined;
5386
5386
  messages?: {
5387
5387
  text: string;
5388
- type: "success" | "error" | "info" | "warning";
5388
+ type: "error" | "success" | "info" | "warning";
5389
5389
  id?: number | undefined;
5390
5390
  }[] | undefined;
5391
5391
  required?: boolean | undefined;
@@ -5400,7 +5400,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5400
5400
  hint?: string | undefined;
5401
5401
  messages?: {
5402
5402
  text: string;
5403
- type: "success" | "error" | "info" | "warning";
5403
+ type: "error" | "success" | "info" | "warning";
5404
5404
  id?: number | undefined;
5405
5405
  }[] | undefined;
5406
5406
  required?: boolean | undefined;
@@ -5421,7 +5421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5421
5421
  hint?: string | undefined;
5422
5422
  messages?: {
5423
5423
  text: string;
5424
- type: "success" | "error" | "info" | "warning";
5424
+ type: "error" | "success" | "info" | "warning";
5425
5425
  id?: number | undefined;
5426
5426
  }[] | undefined;
5427
5427
  required?: boolean | undefined;
@@ -5446,7 +5446,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5446
5446
  hint?: string | undefined;
5447
5447
  messages?: {
5448
5448
  text: string;
5449
- type: "success" | "error" | "info" | "warning";
5449
+ type: "error" | "success" | "info" | "warning";
5450
5450
  id?: number | undefined;
5451
5451
  }[] | undefined;
5452
5452
  required?: boolean | undefined;
@@ -5467,7 +5467,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5467
5467
  hint?: string | undefined;
5468
5468
  messages?: {
5469
5469
  text: string;
5470
- type: "success" | "error" | "info" | "warning";
5470
+ type: "error" | "success" | "info" | "warning";
5471
5471
  id?: number | undefined;
5472
5472
  }[] | undefined;
5473
5473
  required?: boolean | undefined;
@@ -5487,7 +5487,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5487
5487
  hint?: string | undefined;
5488
5488
  messages?: {
5489
5489
  text: string;
5490
- type: "success" | "error" | "info" | "warning";
5490
+ type: "error" | "success" | "info" | "warning";
5491
5491
  id?: number | undefined;
5492
5492
  }[] | undefined;
5493
5493
  required?: boolean | undefined;
@@ -5506,7 +5506,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5506
5506
  hint?: string | undefined;
5507
5507
  messages?: {
5508
5508
  text: string;
5509
- type: "success" | "error" | "info" | "warning";
5509
+ type: "error" | "success" | "info" | "warning";
5510
5510
  id?: number | undefined;
5511
5511
  }[] | undefined;
5512
5512
  required?: boolean | undefined;
@@ -5528,7 +5528,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5528
5528
  hint?: string | undefined;
5529
5529
  messages?: {
5530
5530
  text: string;
5531
- type: "success" | "error" | "info" | "warning";
5531
+ type: "error" | "success" | "info" | "warning";
5532
5532
  id?: number | undefined;
5533
5533
  }[] | undefined;
5534
5534
  required?: boolean | undefined;
@@ -5550,7 +5550,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5550
5550
  hint?: string | undefined;
5551
5551
  messages?: {
5552
5552
  text: string;
5553
- type: "success" | "error" | "info" | "warning";
5553
+ type: "error" | "success" | "info" | "warning";
5554
5554
  id?: number | undefined;
5555
5555
  }[] | undefined;
5556
5556
  required?: boolean | undefined;
@@ -5569,7 +5569,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5569
5569
  hint?: string | undefined;
5570
5570
  messages?: {
5571
5571
  text: string;
5572
- type: "success" | "error" | "info" | "warning";
5572
+ type: "error" | "success" | "info" | "warning";
5573
5573
  id?: number | undefined;
5574
5574
  }[] | undefined;
5575
5575
  required?: boolean | undefined;
@@ -5596,7 +5596,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5596
5596
  hint?: string | undefined;
5597
5597
  messages?: {
5598
5598
  text: string;
5599
- type: "success" | "error" | "info" | "warning";
5599
+ type: "error" | "success" | "info" | "warning";
5600
5600
  id?: number | undefined;
5601
5601
  }[] | undefined;
5602
5602
  required?: boolean | undefined;
@@ -5617,7 +5617,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5617
5617
  hint?: string | undefined;
5618
5618
  messages?: {
5619
5619
  text: string;
5620
- type: "success" | "error" | "info" | "warning";
5620
+ type: "error" | "success" | "info" | "warning";
5621
5621
  id?: number | undefined;
5622
5622
  }[] | undefined;
5623
5623
  required?: boolean | undefined;
@@ -5640,7 +5640,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5640
5640
  hint?: string | undefined;
5641
5641
  messages?: {
5642
5642
  text: string;
5643
- type: "success" | "error" | "info" | "warning";
5643
+ type: "error" | "success" | "info" | "warning";
5644
5644
  id?: number | undefined;
5645
5645
  }[] | undefined;
5646
5646
  required?: boolean | undefined;
@@ -5873,7 +5873,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5873
5873
  hint?: string | undefined;
5874
5874
  messages?: {
5875
5875
  text: string;
5876
- type: "success" | "error" | "info" | "warning";
5876
+ type: "error" | "success" | "info" | "warning";
5877
5877
  id?: number | undefined;
5878
5878
  }[] | undefined;
5879
5879
  required?: boolean | undefined;
@@ -5891,7 +5891,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5891
5891
  hint?: string | undefined;
5892
5892
  messages?: {
5893
5893
  text: string;
5894
- type: "success" | "error" | "info" | "warning";
5894
+ type: "error" | "success" | "info" | "warning";
5895
5895
  id?: number | undefined;
5896
5896
  }[] | undefined;
5897
5897
  required?: boolean | undefined;
@@ -5915,7 +5915,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5915
5915
  hint?: string | undefined;
5916
5916
  messages?: {
5917
5917
  text: string;
5918
- type: "success" | "error" | "info" | "warning";
5918
+ type: "error" | "success" | "info" | "warning";
5919
5919
  id?: number | undefined;
5920
5920
  }[] | undefined;
5921
5921
  required?: boolean | undefined;
@@ -5939,7 +5939,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5939
5939
  hint?: string | undefined;
5940
5940
  messages?: {
5941
5941
  text: string;
5942
- type: "success" | "error" | "info" | "warning";
5942
+ type: "error" | "success" | "info" | "warning";
5943
5943
  id?: number | undefined;
5944
5944
  }[] | undefined;
5945
5945
  required?: boolean | undefined;
@@ -5963,7 +5963,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5963
5963
  hint?: string | undefined;
5964
5964
  messages?: {
5965
5965
  text: string;
5966
- type: "success" | "error" | "info" | "warning";
5966
+ type: "error" | "success" | "info" | "warning";
5967
5967
  id?: number | undefined;
5968
5968
  }[] | undefined;
5969
5969
  required?: boolean | undefined;
@@ -5988,7 +5988,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5988
5988
  hint?: string | undefined;
5989
5989
  messages?: {
5990
5990
  text: string;
5991
- type: "success" | "error" | "info" | "warning";
5991
+ type: "error" | "success" | "info" | "warning";
5992
5992
  id?: number | undefined;
5993
5993
  }[] | undefined;
5994
5994
  required?: boolean | undefined;
@@ -6003,7 +6003,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6003
6003
  hint?: string | undefined;
6004
6004
  messages?: {
6005
6005
  text: string;
6006
- type: "success" | "error" | "info" | "warning";
6006
+ type: "error" | "success" | "info" | "warning";
6007
6007
  id?: number | undefined;
6008
6008
  }[] | undefined;
6009
6009
  required?: boolean | undefined;
@@ -6024,7 +6024,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6024
6024
  hint?: string | undefined;
6025
6025
  messages?: {
6026
6026
  text: string;
6027
- type: "success" | "error" | "info" | "warning";
6027
+ type: "error" | "success" | "info" | "warning";
6028
6028
  id?: number | undefined;
6029
6029
  }[] | undefined;
6030
6030
  required?: boolean | undefined;
@@ -6049,7 +6049,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6049
6049
  hint?: string | undefined;
6050
6050
  messages?: {
6051
6051
  text: string;
6052
- type: "success" | "error" | "info" | "warning";
6052
+ type: "error" | "success" | "info" | "warning";
6053
6053
  id?: number | undefined;
6054
6054
  }[] | undefined;
6055
6055
  required?: boolean | undefined;
@@ -6070,7 +6070,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6070
6070
  hint?: string | undefined;
6071
6071
  messages?: {
6072
6072
  text: string;
6073
- type: "success" | "error" | "info" | "warning";
6073
+ type: "error" | "success" | "info" | "warning";
6074
6074
  id?: number | undefined;
6075
6075
  }[] | undefined;
6076
6076
  required?: boolean | undefined;
@@ -6090,7 +6090,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6090
6090
  hint?: string | undefined;
6091
6091
  messages?: {
6092
6092
  text: string;
6093
- type: "success" | "error" | "info" | "warning";
6093
+ type: "error" | "success" | "info" | "warning";
6094
6094
  id?: number | undefined;
6095
6095
  }[] | undefined;
6096
6096
  required?: boolean | undefined;
@@ -6109,7 +6109,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6109
6109
  hint?: string | undefined;
6110
6110
  messages?: {
6111
6111
  text: string;
6112
- type: "success" | "error" | "info" | "warning";
6112
+ type: "error" | "success" | "info" | "warning";
6113
6113
  id?: number | undefined;
6114
6114
  }[] | undefined;
6115
6115
  required?: boolean | undefined;
@@ -6131,7 +6131,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6131
6131
  hint?: string | undefined;
6132
6132
  messages?: {
6133
6133
  text: string;
6134
- type: "success" | "error" | "info" | "warning";
6134
+ type: "error" | "success" | "info" | "warning";
6135
6135
  id?: number | undefined;
6136
6136
  }[] | undefined;
6137
6137
  required?: boolean | undefined;
@@ -6153,7 +6153,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6153
6153
  hint?: string | undefined;
6154
6154
  messages?: {
6155
6155
  text: string;
6156
- type: "success" | "error" | "info" | "warning";
6156
+ type: "error" | "success" | "info" | "warning";
6157
6157
  id?: number | undefined;
6158
6158
  }[] | undefined;
6159
6159
  required?: boolean | undefined;
@@ -6172,7 +6172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6172
6172
  hint?: string | undefined;
6173
6173
  messages?: {
6174
6174
  text: string;
6175
- type: "success" | "error" | "info" | "warning";
6175
+ type: "error" | "success" | "info" | "warning";
6176
6176
  id?: number | undefined;
6177
6177
  }[] | undefined;
6178
6178
  required?: boolean | undefined;
@@ -6199,7 +6199,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6199
6199
  hint?: string | undefined;
6200
6200
  messages?: {
6201
6201
  text: string;
6202
- type: "success" | "error" | "info" | "warning";
6202
+ type: "error" | "success" | "info" | "warning";
6203
6203
  id?: number | undefined;
6204
6204
  }[] | undefined;
6205
6205
  required?: boolean | undefined;
@@ -6220,7 +6220,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6220
6220
  hint?: string | undefined;
6221
6221
  messages?: {
6222
6222
  text: string;
6223
- type: "success" | "error" | "info" | "warning";
6223
+ type: "error" | "success" | "info" | "warning";
6224
6224
  id?: number | undefined;
6225
6225
  }[] | undefined;
6226
6226
  required?: boolean | undefined;
@@ -6243,7 +6243,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6243
6243
  hint?: string | undefined;
6244
6244
  messages?: {
6245
6245
  text: string;
6246
- type: "success" | "error" | "info" | "warning";
6246
+ type: "error" | "success" | "info" | "warning";
6247
6247
  id?: number | undefined;
6248
6248
  }[] | undefined;
6249
6249
  required?: boolean | undefined;
@@ -6474,7 +6474,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6474
6474
  hint?: string | undefined;
6475
6475
  messages?: {
6476
6476
  text: string;
6477
- type: "success" | "error" | "info" | "warning";
6477
+ type: "error" | "success" | "info" | "warning";
6478
6478
  id?: number | undefined;
6479
6479
  }[] | undefined;
6480
6480
  required?: boolean | undefined;
@@ -6492,7 +6492,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6492
6492
  hint?: string | undefined;
6493
6493
  messages?: {
6494
6494
  text: string;
6495
- type: "success" | "error" | "info" | "warning";
6495
+ type: "error" | "success" | "info" | "warning";
6496
6496
  id?: number | undefined;
6497
6497
  }[] | undefined;
6498
6498
  required?: boolean | undefined;
@@ -6516,7 +6516,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6516
6516
  hint?: string | undefined;
6517
6517
  messages?: {
6518
6518
  text: string;
6519
- type: "success" | "error" | "info" | "warning";
6519
+ type: "error" | "success" | "info" | "warning";
6520
6520
  id?: number | undefined;
6521
6521
  }[] | undefined;
6522
6522
  required?: boolean | undefined;
@@ -6540,7 +6540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6540
6540
  hint?: string | undefined;
6541
6541
  messages?: {
6542
6542
  text: string;
6543
- type: "success" | "error" | "info" | "warning";
6543
+ type: "error" | "success" | "info" | "warning";
6544
6544
  id?: number | undefined;
6545
6545
  }[] | undefined;
6546
6546
  required?: boolean | undefined;
@@ -6564,7 +6564,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6564
6564
  hint?: string | undefined;
6565
6565
  messages?: {
6566
6566
  text: string;
6567
- type: "success" | "error" | "info" | "warning";
6567
+ type: "error" | "success" | "info" | "warning";
6568
6568
  id?: number | undefined;
6569
6569
  }[] | undefined;
6570
6570
  required?: boolean | undefined;
@@ -6593,7 +6593,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6593
6593
  hint?: string | undefined;
6594
6594
  messages?: {
6595
6595
  text: string;
6596
- type: "success" | "error" | "info" | "warning";
6596
+ type: "error" | "success" | "info" | "warning";
6597
6597
  id?: number | undefined;
6598
6598
  }[] | undefined;
6599
6599
  required?: boolean | undefined;
@@ -6608,7 +6608,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6608
6608
  hint?: string | undefined;
6609
6609
  messages?: {
6610
6610
  text: string;
6611
- type: "success" | "error" | "info" | "warning";
6611
+ type: "error" | "success" | "info" | "warning";
6612
6612
  id?: number | undefined;
6613
6613
  }[] | undefined;
6614
6614
  required?: boolean | undefined;
@@ -6629,7 +6629,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6629
6629
  hint?: string | undefined;
6630
6630
  messages?: {
6631
6631
  text: string;
6632
- type: "success" | "error" | "info" | "warning";
6632
+ type: "error" | "success" | "info" | "warning";
6633
6633
  id?: number | undefined;
6634
6634
  }[] | undefined;
6635
6635
  required?: boolean | undefined;
@@ -6654,7 +6654,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6654
6654
  hint?: string | undefined;
6655
6655
  messages?: {
6656
6656
  text: string;
6657
- type: "success" | "error" | "info" | "warning";
6657
+ type: "error" | "success" | "info" | "warning";
6658
6658
  id?: number | undefined;
6659
6659
  }[] | undefined;
6660
6660
  required?: boolean | undefined;
@@ -6675,7 +6675,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6675
6675
  hint?: string | undefined;
6676
6676
  messages?: {
6677
6677
  text: string;
6678
- type: "success" | "error" | "info" | "warning";
6678
+ type: "error" | "success" | "info" | "warning";
6679
6679
  id?: number | undefined;
6680
6680
  }[] | undefined;
6681
6681
  required?: boolean | undefined;
@@ -6695,7 +6695,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6695
6695
  hint?: string | undefined;
6696
6696
  messages?: {
6697
6697
  text: string;
6698
- type: "success" | "error" | "info" | "warning";
6698
+ type: "error" | "success" | "info" | "warning";
6699
6699
  id?: number | undefined;
6700
6700
  }[] | undefined;
6701
6701
  required?: boolean | undefined;
@@ -6714,7 +6714,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6714
6714
  hint?: string | undefined;
6715
6715
  messages?: {
6716
6716
  text: string;
6717
- type: "success" | "error" | "info" | "warning";
6717
+ type: "error" | "success" | "info" | "warning";
6718
6718
  id?: number | undefined;
6719
6719
  }[] | undefined;
6720
6720
  required?: boolean | undefined;
@@ -6736,7 +6736,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6736
6736
  hint?: string | undefined;
6737
6737
  messages?: {
6738
6738
  text: string;
6739
- type: "success" | "error" | "info" | "warning";
6739
+ type: "error" | "success" | "info" | "warning";
6740
6740
  id?: number | undefined;
6741
6741
  }[] | undefined;
6742
6742
  required?: boolean | undefined;
@@ -6758,7 +6758,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6758
6758
  hint?: string | undefined;
6759
6759
  messages?: {
6760
6760
  text: string;
6761
- type: "success" | "error" | "info" | "warning";
6761
+ type: "error" | "success" | "info" | "warning";
6762
6762
  id?: number | undefined;
6763
6763
  }[] | undefined;
6764
6764
  required?: boolean | undefined;
@@ -6777,7 +6777,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6777
6777
  hint?: string | undefined;
6778
6778
  messages?: {
6779
6779
  text: string;
6780
- type: "success" | "error" | "info" | "warning";
6780
+ type: "error" | "success" | "info" | "warning";
6781
6781
  id?: number | undefined;
6782
6782
  }[] | undefined;
6783
6783
  required?: boolean | undefined;
@@ -6804,7 +6804,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6804
6804
  hint?: string | undefined;
6805
6805
  messages?: {
6806
6806
  text: string;
6807
- type: "success" | "error" | "info" | "warning";
6807
+ type: "error" | "success" | "info" | "warning";
6808
6808
  id?: number | undefined;
6809
6809
  }[] | undefined;
6810
6810
  required?: boolean | undefined;
@@ -6825,7 +6825,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6825
6825
  hint?: string | undefined;
6826
6826
  messages?: {
6827
6827
  text: string;
6828
- type: "success" | "error" | "info" | "warning";
6828
+ type: "error" | "success" | "info" | "warning";
6829
6829
  id?: number | undefined;
6830
6830
  }[] | undefined;
6831
6831
  required?: boolean | undefined;
@@ -6848,7 +6848,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6848
6848
  hint?: string | undefined;
6849
6849
  messages?: {
6850
6850
  text: string;
6851
- type: "success" | "error" | "info" | "warning";
6851
+ type: "error" | "success" | "info" | "warning";
6852
6852
  id?: number | undefined;
6853
6853
  }[] | undefined;
6854
6854
  required?: boolean | undefined;
@@ -7154,7 +7154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7154
7154
  };
7155
7155
  };
7156
7156
  output: {
7157
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7157
+ prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7158
7158
  language: string;
7159
7159
  }[];
7160
7160
  outputFormat: "json";
@@ -7192,7 +7192,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7192
7192
  $get: {
7193
7193
  input: {
7194
7194
  param: {
7195
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7195
+ prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7196
7196
  language: string;
7197
7197
  };
7198
7198
  } & {
@@ -7214,7 +7214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7214
7214
  $put: {
7215
7215
  input: {
7216
7216
  param: {
7217
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7217
+ prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7218
7218
  language: string;
7219
7219
  };
7220
7220
  } & {
@@ -7238,7 +7238,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7238
7238
  $delete: {
7239
7239
  input: {
7240
7240
  param: {
7241
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7241
+ prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7242
7242
  language: string;
7243
7243
  };
7244
7244
  } & {
@@ -8121,7 +8121,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8121
8121
  };
8122
8122
  } | {
8123
8123
  mode: "inline";
8124
- status: "success" | "error";
8124
+ status: "error" | "success";
8125
8125
  connection_id: string;
8126
8126
  connection_name: string;
8127
8127
  strategy: string;
@@ -8850,7 +8850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8850
8850
  log_type: string;
8851
8851
  category: "user_action" | "admin_action" | "system" | "api";
8852
8852
  actor: {
8853
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8853
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8854
8854
  id?: string | undefined;
8855
8855
  email?: string | undefined;
8856
8856
  org_id?: string | undefined;
@@ -9181,7 +9181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9181
9181
  created_at: string;
9182
9182
  updated_at: string;
9183
9183
  name: string;
9184
- provider: "auth0" | "oidc" | "okta" | "cognito";
9184
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9185
9185
  connection: string;
9186
9186
  enabled: boolean;
9187
9187
  credentials: {
@@ -9213,7 +9213,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9213
9213
  created_at: string;
9214
9214
  updated_at: string;
9215
9215
  name: string;
9216
- provider: "auth0" | "oidc" | "okta" | "cognito";
9216
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9217
9217
  connection: string;
9218
9218
  enabled: boolean;
9219
9219
  credentials: {
@@ -9239,7 +9239,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9239
9239
  } & {
9240
9240
  json: {
9241
9241
  name: string;
9242
- provider: "auth0" | "oidc" | "okta" | "cognito";
9242
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9243
9243
  connection: string;
9244
9244
  credentials: {
9245
9245
  domain: string;
@@ -9256,7 +9256,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9256
9256
  created_at: string;
9257
9257
  updated_at: string;
9258
9258
  name: string;
9259
- provider: "auth0" | "oidc" | "okta" | "cognito";
9259
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9260
9260
  connection: string;
9261
9261
  enabled: boolean;
9262
9262
  credentials: {
@@ -9287,7 +9287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9287
9287
  json: {
9288
9288
  id?: string | undefined;
9289
9289
  name?: string | undefined;
9290
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
9290
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
9291
9291
  connection?: string | undefined;
9292
9292
  enabled?: boolean | undefined;
9293
9293
  credentials?: {
@@ -9303,7 +9303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9303
9303
  created_at: string;
9304
9304
  updated_at: string;
9305
9305
  name: string;
9306
- provider: "auth0" | "oidc" | "okta" | "cognito";
9306
+ provider: "auth0" | "cognito" | "okta" | "oidc";
9307
9307
  connection: string;
9308
9308
  enabled: boolean;
9309
9309
  credentials: {
@@ -9351,7 +9351,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9351
9351
  [x: string]: import("hono/utils/types").JSONValue;
9352
9352
  };
9353
9353
  id: string;
9354
- status: "active" | "suspended" | "paused";
9354
+ status: "suspended" | "active" | "paused";
9355
9355
  filters?: {
9356
9356
  type: string;
9357
9357
  name: string;
@@ -9383,7 +9383,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9383
9383
  [x: string]: import("hono/utils/types").JSONValue;
9384
9384
  };
9385
9385
  id: string;
9386
- status: "active" | "suspended" | "paused";
9386
+ status: "suspended" | "active" | "paused";
9387
9387
  filters?: {
9388
9388
  type: string;
9389
9389
  name: string;
@@ -9408,7 +9408,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9408
9408
  name: string;
9409
9409
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
9410
9410
  sink: Record<string, unknown>;
9411
- status?: "active" | "suspended" | "paused" | undefined;
9411
+ status?: "suspended" | "active" | "paused" | undefined;
9412
9412
  filters?: {
9413
9413
  type: string;
9414
9414
  name: string;
@@ -9423,7 +9423,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9423
9423
  [x: string]: import("hono/utils/types").JSONValue;
9424
9424
  };
9425
9425
  id: string;
9426
- status: "active" | "suspended" | "paused";
9426
+ status: "suspended" | "active" | "paused";
9427
9427
  filters?: {
9428
9428
  type: string;
9429
9429
  name: string;
@@ -9458,7 +9458,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9458
9458
  }[] | undefined;
9459
9459
  isPriority?: boolean | undefined;
9460
9460
  id?: string | undefined;
9461
- status?: "active" | "suspended" | "paused" | undefined;
9461
+ status?: "suspended" | "active" | "paused" | undefined;
9462
9462
  created_at?: string | undefined;
9463
9463
  updated_at?: string | undefined;
9464
9464
  };
@@ -9470,7 +9470,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9470
9470
  [x: string]: import("hono/utils/types").JSONValue;
9471
9471
  };
9472
9472
  id: string;
9473
- status: "active" | "suspended" | "paused";
9473
+ status: "suspended" | "active" | "paused";
9474
9474
  filters?: {
9475
9475
  type: string;
9476
9476
  name: string;
@@ -9521,7 +9521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9521
9521
  };
9522
9522
  };
9523
9523
  output: {
9524
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9524
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9525
9525
  date: string;
9526
9526
  isMobile: boolean;
9527
9527
  log_id: string;
@@ -9560,7 +9560,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9560
9560
  limit: number;
9561
9561
  length: number;
9562
9562
  logs: {
9563
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9563
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9564
9564
  date: string;
9565
9565
  isMobile: boolean;
9566
9566
  log_id: string;
@@ -9599,7 +9599,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9599
9599
  next?: string | undefined;
9600
9600
  } | {
9601
9601
  logs: {
9602
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9602
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9603
9603
  date: string;
9604
9604
  isMobile: boolean;
9605
9605
  log_id: string;
@@ -9653,7 +9653,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9653
9653
  };
9654
9654
  };
9655
9655
  output: {
9656
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9656
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9657
9657
  date: string;
9658
9658
  isMobile: boolean;
9659
9659
  log_id: string;
@@ -10064,7 +10064,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10064
10064
  addons?: {
10065
10065
  [x: string]: any;
10066
10066
  } | undefined;
10067
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10067
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10068
10068
  client_metadata?: {
10069
10069
  [x: string]: string;
10070
10070
  } | undefined;
@@ -10166,7 +10166,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10166
10166
  addons?: {
10167
10167
  [x: string]: any;
10168
10168
  } | undefined;
10169
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10169
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10170
10170
  client_metadata?: {
10171
10171
  [x: string]: string;
10172
10172
  } | undefined;
@@ -10268,7 +10268,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10268
10268
  addons?: {
10269
10269
  [x: string]: any;
10270
10270
  } | undefined;
10271
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10271
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10272
10272
  client_metadata?: {
10273
10273
  [x: string]: string;
10274
10274
  } | undefined;
@@ -10385,7 +10385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10385
10385
  addons?: {
10386
10386
  [x: string]: any;
10387
10387
  } | undefined;
10388
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10388
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10389
10389
  client_metadata?: {
10390
10390
  [x: string]: string;
10391
10391
  } | undefined;
@@ -10503,7 +10503,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10503
10503
  custom_login_page_preview?: string | undefined;
10504
10504
  form_template?: string | undefined;
10505
10505
  addons?: Record<string, any> | undefined;
10506
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10506
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10507
10507
  client_metadata?: Record<string, string> | undefined;
10508
10508
  hide_sign_up_disabled_error?: boolean | undefined;
10509
10509
  mobile?: Record<string, any> | undefined;
@@ -10589,7 +10589,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10589
10589
  addons?: {
10590
10590
  [x: string]: any;
10591
10591
  } | undefined;
10592
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10592
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10593
10593
  client_metadata?: {
10594
10594
  [x: string]: string;
10595
10595
  } | undefined;
@@ -10686,7 +10686,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10686
10686
  custom_login_page_preview?: string | undefined;
10687
10687
  form_template?: string | undefined;
10688
10688
  addons?: Record<string, any> | undefined;
10689
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10689
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10690
10690
  client_metadata?: Record<string, string> | undefined;
10691
10691
  hide_sign_up_disabled_error?: boolean | undefined;
10692
10692
  mobile?: Record<string, any> | undefined;
@@ -10772,7 +10772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10772
10772
  addons?: {
10773
10773
  [x: string]: any;
10774
10774
  } | undefined;
10775
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10775
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10776
10776
  client_metadata?: {
10777
10777
  [x: string]: string;
10778
10778
  } | undefined;
@@ -11237,15 +11237,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11237
11237
  cert: string;
11238
11238
  fingerprint: string;
11239
11239
  thumbprint: string;
11240
- connection?: string | undefined;
11241
11240
  tenant_id?: string | undefined;
11242
- current?: boolean | undefined;
11241
+ connection?: string | undefined;
11243
11242
  next?: boolean | undefined;
11243
+ revoked_at?: string | undefined;
11244
+ current?: boolean | undefined;
11244
11245
  previous?: boolean | undefined;
11245
11246
  current_since?: string | undefined;
11246
11247
  current_until?: string | undefined;
11247
11248
  revoked?: boolean | undefined;
11248
- revoked_at?: string | undefined;
11249
11249
  expires_at?: string | undefined;
11250
11250
  expired?: boolean | undefined;
11251
11251
  inherited?: boolean | undefined;
@@ -11276,15 +11276,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11276
11276
  cert: string;
11277
11277
  fingerprint: string;
11278
11278
  thumbprint: string;
11279
- connection?: string | undefined;
11280
11279
  tenant_id?: string | undefined;
11281
- current?: boolean | undefined;
11280
+ connection?: string | undefined;
11282
11281
  next?: boolean | undefined;
11282
+ revoked_at?: string | undefined;
11283
+ current?: boolean | undefined;
11283
11284
  previous?: boolean | undefined;
11284
11285
  current_since?: string | undefined;
11285
11286
  current_until?: string | undefined;
11286
11287
  revoked?: boolean | undefined;
11287
- revoked_at?: string | undefined;
11288
11288
  expires_at?: string | undefined;
11289
11289
  expired?: boolean | undefined;
11290
11290
  inherited?: boolean | undefined;
@@ -11314,15 +11314,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11314
11314
  cert: string;
11315
11315
  fingerprint: string;
11316
11316
  thumbprint: string;
11317
- connection?: string | undefined;
11318
11317
  tenant_id?: string | undefined;
11319
- current?: boolean | undefined;
11318
+ connection?: string | undefined;
11320
11319
  next?: boolean | undefined;
11320
+ revoked_at?: string | undefined;
11321
+ current?: boolean | undefined;
11321
11322
  previous?: boolean | undefined;
11322
11323
  current_since?: string | undefined;
11323
11324
  current_until?: string | undefined;
11324
11325
  revoked?: boolean | undefined;
11325
- revoked_at?: string | undefined;
11326
11326
  expires_at?: string | undefined;
11327
11327
  expired?: boolean | undefined;
11328
11328
  inherited?: boolean | undefined;
@@ -11354,15 +11354,15 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11354
11354
  cert: string;
11355
11355
  fingerprint: string;
11356
11356
  thumbprint: string;
11357
- connection?: string | undefined;
11358
11357
  tenant_id?: string | undefined;
11359
- current?: boolean | undefined;
11358
+ connection?: string | undefined;
11360
11359
  next?: boolean | undefined;
11360
+ revoked_at?: string | undefined;
11361
+ current?: boolean | undefined;
11361
11362
  previous?: boolean | undefined;
11362
11363
  current_since?: string | undefined;
11363
11364
  current_until?: string | undefined;
11364
11365
  revoked?: boolean | undefined;
11365
- revoked_at?: string | undefined;
11366
11366
  expires_at?: string | undefined;
11367
11367
  expired?: boolean | undefined;
11368
11368
  inherited?: boolean | undefined;
@@ -12208,9 +12208,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12208
12208
  };
12209
12209
  output: {
12210
12210
  id: string;
12211
- user_id: string;
12212
12211
  created_at: string;
12213
12212
  client_id: string;
12213
+ user_id: string;
12214
12214
  rotating: boolean;
12215
12215
  device: {
12216
12216
  initial_user_agent: string;
@@ -12225,26 +12225,23 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12225
12225
  audience: string;
12226
12226
  scopes: string;
12227
12227
  }[];
12228
+ revoked_at?: string | undefined;
12228
12229
  expires_at?: string | undefined;
12230
+ idle_expires_at?: string | undefined;
12229
12231
  session_id?: string | undefined;
12232
+ organization?: string | undefined;
12230
12233
  auth_connection?: string | undefined;
12231
12234
  auth_strategy?: {
12232
12235
  strategy: string;
12233
12236
  strategy_type: string;
12234
12237
  } | undefined;
12235
- organization?: string | undefined;
12236
- revoked_at?: string | undefined;
12237
- idle_expires_at?: string | undefined;
12238
12238
  last_exchanged_at?: string | undefined;
12239
12239
  }[] | {
12240
- start: number;
12241
- limit: number;
12242
- length: number;
12243
12240
  tokens: {
12244
12241
  id: string;
12245
- user_id: string;
12246
12242
  created_at: string;
12247
12243
  client_id: string;
12244
+ user_id: string;
12248
12245
  rotating: boolean;
12249
12246
  device: {
12250
12247
  initial_user_agent: string;
@@ -12259,26 +12256,28 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12259
12256
  audience: string;
12260
12257
  scopes: string;
12261
12258
  }[];
12259
+ revoked_at?: string | undefined;
12262
12260
  expires_at?: string | undefined;
12261
+ idle_expires_at?: string | undefined;
12263
12262
  session_id?: string | undefined;
12263
+ organization?: string | undefined;
12264
12264
  auth_connection?: string | undefined;
12265
12265
  auth_strategy?: {
12266
12266
  strategy: string;
12267
12267
  strategy_type: string;
12268
12268
  } | undefined;
12269
- organization?: string | undefined;
12270
- revoked_at?: string | undefined;
12271
- idle_expires_at?: string | undefined;
12272
12269
  last_exchanged_at?: string | undefined;
12273
12270
  }[];
12274
- total?: number | undefined;
12275
12271
  next?: string | undefined;
12276
12272
  } | {
12273
+ start: number;
12274
+ limit: number;
12275
+ length: number;
12277
12276
  tokens: {
12278
12277
  id: string;
12279
- user_id: string;
12280
12278
  created_at: string;
12281
12279
  client_id: string;
12280
+ user_id: string;
12282
12281
  rotating: boolean;
12283
12282
  device: {
12284
12283
  initial_user_agent: string;
@@ -12293,18 +12292,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12293
12292
  audience: string;
12294
12293
  scopes: string;
12295
12294
  }[];
12295
+ revoked_at?: string | undefined;
12296
12296
  expires_at?: string | undefined;
12297
+ idle_expires_at?: string | undefined;
12297
12298
  session_id?: string | undefined;
12299
+ organization?: string | undefined;
12298
12300
  auth_connection?: string | undefined;
12299
12301
  auth_strategy?: {
12300
12302
  strategy: string;
12301
12303
  strategy_type: string;
12302
12304
  } | undefined;
12303
- organization?: string | undefined;
12304
- revoked_at?: string | undefined;
12305
- idle_expires_at?: string | undefined;
12306
12305
  last_exchanged_at?: string | undefined;
12307
12306
  }[];
12307
+ total?: number | undefined;
12308
12308
  next?: string | undefined;
12309
12309
  };
12310
12310
  outputFormat: "json";
@@ -12353,7 +12353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12353
12353
  };
12354
12354
  };
12355
12355
  output: {
12356
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12356
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12357
12357
  date: string;
12358
12358
  isMobile: boolean;
12359
12359
  log_id: string;
@@ -12392,7 +12392,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12392
12392
  limit: number;
12393
12393
  length: number;
12394
12394
  logs: {
12395
- type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12395
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12396
12396
  date: string;
12397
12397
  isMobile: boolean;
12398
12398
  log_id: string;
@@ -12711,7 +12711,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12711
12711
  };
12712
12712
  } & {
12713
12713
  json: {
12714
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12714
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12715
12715
  body: string;
12716
12716
  from: string;
12717
12717
  subject: string;
@@ -12732,7 +12732,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12732
12732
  };
12733
12733
  } & {
12734
12734
  json: {
12735
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12735
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12736
12736
  body: string;
12737
12737
  from: string;
12738
12738
  subject: string;
@@ -12744,7 +12744,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12744
12744
  };
12745
12745
  };
12746
12746
  output: {
12747
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12747
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12748
12748
  body: string;
12749
12749
  from: string;
12750
12750
  subject: string;
@@ -12767,7 +12767,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12767
12767
  };
12768
12768
  };
12769
12769
  output: {
12770
- name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12770
+ name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12771
12771
  body: string;
12772
12772
  subject: string;
12773
12773
  }[];
@@ -12780,7 +12780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12780
12780
  $get: {
12781
12781
  input: {
12782
12782
  param: {
12783
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12783
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12784
12784
  };
12785
12785
  } & {
12786
12786
  header: {
@@ -12793,7 +12793,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12793
12793
  } | {
12794
12794
  input: {
12795
12795
  param: {
12796
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12796
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12797
12797
  };
12798
12798
  } & {
12799
12799
  header: {
@@ -12801,7 +12801,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12801
12801
  };
12802
12802
  };
12803
12803
  output: {
12804
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12804
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12805
12805
  body: string;
12806
12806
  from: string;
12807
12807
  subject: string;
@@ -12820,7 +12820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12820
12820
  $put: {
12821
12821
  input: {
12822
12822
  param: {
12823
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12823
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12824
12824
  };
12825
12825
  } & {
12826
12826
  header: {
@@ -12828,7 +12828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12828
12828
  };
12829
12829
  } & {
12830
12830
  json: {
12831
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12831
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12832
12832
  body: string;
12833
12833
  subject: string;
12834
12834
  syntax?: "liquid" | undefined;
@@ -12840,7 +12840,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12840
12840
  };
12841
12841
  };
12842
12842
  output: {
12843
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12843
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12844
12844
  body: string;
12845
12845
  from: string;
12846
12846
  subject: string;
@@ -12859,7 +12859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12859
12859
  $patch: {
12860
12860
  input: {
12861
12861
  param: {
12862
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12862
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12863
12863
  };
12864
12864
  } & {
12865
12865
  header: {
@@ -12867,7 +12867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12867
12867
  };
12868
12868
  } & {
12869
12869
  json: {
12870
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12870
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12871
12871
  body?: string | undefined;
12872
12872
  from?: string | undefined;
12873
12873
  subject?: string | undefined;
@@ -12884,7 +12884,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12884
12884
  } | {
12885
12885
  input: {
12886
12886
  param: {
12887
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12887
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12888
12888
  };
12889
12889
  } & {
12890
12890
  header: {
@@ -12892,7 +12892,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12892
12892
  };
12893
12893
  } & {
12894
12894
  json: {
12895
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12895
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12896
12896
  body?: string | undefined;
12897
12897
  from?: string | undefined;
12898
12898
  subject?: string | undefined;
@@ -12904,7 +12904,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12904
12904
  };
12905
12905
  };
12906
12906
  output: {
12907
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12907
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12908
12908
  body: string;
12909
12909
  from: string;
12910
12910
  subject: string;
@@ -12923,7 +12923,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12923
12923
  $delete: {
12924
12924
  input: {
12925
12925
  param: {
12926
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12926
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12927
12927
  };
12928
12928
  } & {
12929
12929
  header: {
@@ -12936,7 +12936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12936
12936
  } | {
12937
12937
  input: {
12938
12938
  param: {
12939
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12939
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12940
12940
  };
12941
12941
  } & {
12942
12942
  header: {
@@ -12953,7 +12953,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12953
12953
  $post: {
12954
12954
  input: {
12955
12955
  param: {
12956
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12956
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12957
12957
  };
12958
12958
  } & {
12959
12959
  header: {
@@ -13574,7 +13574,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13574
13574
  background_color: string;
13575
13575
  background_image_url: string;
13576
13576
  page_layout: "center" | "left" | "right";
13577
- logo_placement?: "none" | "widget" | "chip" | undefined;
13577
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13578
13578
  };
13579
13579
  widget: {
13580
13580
  header_text_alignment: "center" | "left" | "right";
@@ -13664,7 +13664,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13664
13664
  background_color: string;
13665
13665
  background_image_url: string;
13666
13666
  page_layout: "center" | "left" | "right";
13667
- logo_placement?: "none" | "widget" | "chip" | undefined;
13667
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13668
13668
  };
13669
13669
  widget: {
13670
13670
  header_text_alignment: "center" | "left" | "right";
@@ -13743,7 +13743,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13743
13743
  background_color: string;
13744
13744
  background_image_url: string;
13745
13745
  page_layout: "center" | "left" | "right";
13746
- logo_placement?: "none" | "widget" | "chip" | undefined;
13746
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13747
13747
  };
13748
13748
  widget: {
13749
13749
  header_text_alignment: "center" | "left" | "right";
@@ -13905,7 +13905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13905
13905
  } & {
13906
13906
  json: {
13907
13907
  body?: string | undefined;
13908
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
13908
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
13909
13909
  branding?: {
13910
13910
  colors?: {
13911
13911
  primary: string;
@@ -13991,7 +13991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13991
13991
  background_color: string;
13992
13992
  background_image_url: string;
13993
13993
  page_layout: "center" | "left" | "right";
13994
- logo_placement?: "none" | "widget" | "chip" | undefined;
13994
+ logo_placement?: "widget" | "chip" | "none" | undefined;
13995
13995
  } | undefined;
13996
13996
  widget?: {
13997
13997
  header_text_alignment: "center" | "left" | "right";