authhero 9.7.0 → 9.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/authhero.cjs +144 -144
  2. package/dist/authhero.d.ts +334 -242
  3. package/dist/authhero.mjs +11866 -11658
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +5 -5
  6. package/dist/types/constants.d.ts +2 -0
  7. package/dist/types/helpers/signing-keys.d.ts +11 -0
  8. package/dist/types/index.d.ts +324 -242
  9. package/dist/types/routes/auth-api/index.d.ts +21 -21
  10. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  11. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  12. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  13. package/dist/types/routes/management-api/clients.d.ts +6 -6
  14. package/dist/types/routes/management-api/connections.d.ts +16 -16
  15. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  16. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  17. package/dist/types/routes/management-api/forms.d.ts +126 -126
  18. package/dist/types/routes/management-api/index.d.ts +298 -216
  19. package/dist/types/routes/management-api/keys.d.ts +86 -4
  20. package/dist/types/routes/management-api/logs.d.ts +4 -4
  21. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  22. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/roles.d.ts +1 -1
  25. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  26. package/dist/types/routes/management-api/tenants.d.ts +4 -4
  27. package/dist/types/routes/management-api/users.d.ts +18 -18
  28. package/dist/types/routes/universal-login/common.d.ts +6 -6
  29. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  30. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  31. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  32. package/dist/types/utils/encryption.d.ts +51 -0
  33. package/dist/types/utils/jwks.d.ts +2 -2
  34. package/package.json +3 -3
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8
8
  $get: {
9
9
  input: {
10
10
  query: {
11
- include_password_hashes?: "false" | "true" | undefined;
12
- gzip?: "false" | "true" | undefined;
11
+ include_password_hashes?: "true" | "false" | undefined;
12
+ gzip?: "true" | "false" | undefined;
13
13
  };
14
14
  } & {
15
15
  header: {
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
22
22
  } | {
23
23
  input: {
24
24
  query: {
25
- include_password_hashes?: "false" | "true" | undefined;
26
- gzip?: "false" | "true" | undefined;
25
+ include_password_hashes?: "true" | "false" | undefined;
26
+ gzip?: "true" | "false" | undefined;
27
27
  };
28
28
  } & {
29
29
  header: {
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
42
42
  $post: {
43
43
  input: {
44
44
  query: {
45
- include_password_hashes?: "false" | "true" | undefined;
45
+ include_password_hashes?: "true" | "false" | undefined;
46
46
  };
47
47
  } & {
48
48
  header: {
@@ -1203,10 +1203,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1203
1203
  email?: string | undefined;
1204
1204
  };
1205
1205
  id?: string | undefined;
1206
+ roles?: string[] | undefined;
1206
1207
  app_metadata?: Record<string, any> | undefined;
1207
1208
  user_metadata?: Record<string, any> | undefined;
1208
1209
  connection_id?: string | undefined;
1209
- roles?: string[] | undefined;
1210
1210
  ttl_sec?: number | undefined;
1211
1211
  send_invitation_email?: boolean | undefined;
1212
1212
  };
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1391
1391
  };
1392
1392
  } & {
1393
1393
  json: {
1394
- assign_membership_on_login?: boolean | undefined;
1395
1394
  show_as_button?: boolean | undefined;
1395
+ assign_membership_on_login?: boolean | undefined;
1396
1396
  is_signup_enabled?: boolean | undefined;
1397
1397
  };
1398
1398
  };
@@ -1964,8 +1964,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1964
1964
  } & {
1965
1965
  query: {
1966
1966
  page?: string | undefined;
1967
- include_totals?: string | undefined;
1968
1967
  from?: string | undefined;
1968
+ include_totals?: string | undefined;
1969
1969
  per_page?: string | undefined;
1970
1970
  take?: string | undefined;
1971
1971
  };
@@ -2688,7 +2688,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2688
2688
  hint?: string | undefined;
2689
2689
  messages?: {
2690
2690
  text: string;
2691
- type: "error" | "success" | "info" | "warning";
2691
+ type: "success" | "error" | "info" | "warning";
2692
2692
  id?: number | undefined;
2693
2693
  }[] | undefined;
2694
2694
  required?: boolean | undefined;
@@ -2706,7 +2706,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2706
2706
  hint?: string | undefined;
2707
2707
  messages?: {
2708
2708
  text: string;
2709
- type: "error" | "success" | "info" | "warning";
2709
+ type: "success" | "error" | "info" | "warning";
2710
2710
  id?: number | undefined;
2711
2711
  }[] | undefined;
2712
2712
  required?: boolean | undefined;
@@ -2730,7 +2730,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2730
2730
  hint?: string | undefined;
2731
2731
  messages?: {
2732
2732
  text: string;
2733
- type: "error" | "success" | "info" | "warning";
2733
+ type: "success" | "error" | "info" | "warning";
2734
2734
  id?: number | undefined;
2735
2735
  }[] | undefined;
2736
2736
  required?: boolean | undefined;
@@ -2754,7 +2754,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2754
2754
  hint?: string | undefined;
2755
2755
  messages?: {
2756
2756
  text: string;
2757
- type: "error" | "success" | "info" | "warning";
2757
+ type: "success" | "error" | "info" | "warning";
2758
2758
  id?: number | undefined;
2759
2759
  }[] | undefined;
2760
2760
  required?: boolean | undefined;
@@ -2778,7 +2778,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2778
2778
  hint?: string | undefined;
2779
2779
  messages?: {
2780
2780
  text: string;
2781
- type: "error" | "success" | "info" | "warning";
2781
+ type: "success" | "error" | "info" | "warning";
2782
2782
  id?: number | undefined;
2783
2783
  }[] | undefined;
2784
2784
  required?: boolean | undefined;
@@ -2807,7 +2807,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2807
2807
  hint?: string | undefined;
2808
2808
  messages?: {
2809
2809
  text: string;
2810
- type: "error" | "success" | "info" | "warning";
2810
+ type: "success" | "error" | "info" | "warning";
2811
2811
  id?: number | undefined;
2812
2812
  }[] | undefined;
2813
2813
  required?: boolean | undefined;
@@ -2822,7 +2822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2822
2822
  hint?: string | undefined;
2823
2823
  messages?: {
2824
2824
  text: string;
2825
- type: "error" | "success" | "info" | "warning";
2825
+ type: "success" | "error" | "info" | "warning";
2826
2826
  id?: number | undefined;
2827
2827
  }[] | undefined;
2828
2828
  required?: boolean | undefined;
@@ -2843,7 +2843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2843
2843
  hint?: string | undefined;
2844
2844
  messages?: {
2845
2845
  text: string;
2846
- type: "error" | "success" | "info" | "warning";
2846
+ type: "success" | "error" | "info" | "warning";
2847
2847
  id?: number | undefined;
2848
2848
  }[] | undefined;
2849
2849
  required?: boolean | undefined;
@@ -2868,7 +2868,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2868
2868
  hint?: string | undefined;
2869
2869
  messages?: {
2870
2870
  text: string;
2871
- type: "error" | "success" | "info" | "warning";
2871
+ type: "success" | "error" | "info" | "warning";
2872
2872
  id?: number | undefined;
2873
2873
  }[] | undefined;
2874
2874
  required?: boolean | undefined;
@@ -2889,7 +2889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2889
2889
  hint?: string | undefined;
2890
2890
  messages?: {
2891
2891
  text: string;
2892
- type: "error" | "success" | "info" | "warning";
2892
+ type: "success" | "error" | "info" | "warning";
2893
2893
  id?: number | undefined;
2894
2894
  }[] | undefined;
2895
2895
  required?: boolean | undefined;
@@ -2909,7 +2909,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2909
2909
  hint?: string | undefined;
2910
2910
  messages?: {
2911
2911
  text: string;
2912
- type: "error" | "success" | "info" | "warning";
2912
+ type: "success" | "error" | "info" | "warning";
2913
2913
  id?: number | undefined;
2914
2914
  }[] | undefined;
2915
2915
  required?: boolean | undefined;
@@ -2928,7 +2928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2928
2928
  hint?: string | undefined;
2929
2929
  messages?: {
2930
2930
  text: string;
2931
- type: "error" | "success" | "info" | "warning";
2931
+ type: "success" | "error" | "info" | "warning";
2932
2932
  id?: number | undefined;
2933
2933
  }[] | undefined;
2934
2934
  required?: boolean | undefined;
@@ -2950,7 +2950,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2950
2950
  hint?: string | undefined;
2951
2951
  messages?: {
2952
2952
  text: string;
2953
- type: "error" | "success" | "info" | "warning";
2953
+ type: "success" | "error" | "info" | "warning";
2954
2954
  id?: number | undefined;
2955
2955
  }[] | undefined;
2956
2956
  required?: boolean | undefined;
@@ -2972,7 +2972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2972
2972
  hint?: string | undefined;
2973
2973
  messages?: {
2974
2974
  text: string;
2975
- type: "error" | "success" | "info" | "warning";
2975
+ type: "success" | "error" | "info" | "warning";
2976
2976
  id?: number | undefined;
2977
2977
  }[] | undefined;
2978
2978
  required?: boolean | undefined;
@@ -2991,7 +2991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2991
2991
  hint?: string | undefined;
2992
2992
  messages?: {
2993
2993
  text: string;
2994
- type: "error" | "success" | "info" | "warning";
2994
+ type: "success" | "error" | "info" | "warning";
2995
2995
  id?: number | undefined;
2996
2996
  }[] | undefined;
2997
2997
  required?: boolean | undefined;
@@ -3018,7 +3018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3018
3018
  hint?: string | undefined;
3019
3019
  messages?: {
3020
3020
  text: string;
3021
- type: "error" | "success" | "info" | "warning";
3021
+ type: "success" | "error" | "info" | "warning";
3022
3022
  id?: number | undefined;
3023
3023
  }[] | undefined;
3024
3024
  required?: boolean | undefined;
@@ -3039,7 +3039,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3039
3039
  hint?: string | undefined;
3040
3040
  messages?: {
3041
3041
  text: string;
3042
- type: "error" | "success" | "info" | "warning";
3042
+ type: "success" | "error" | "info" | "warning";
3043
3043
  id?: number | undefined;
3044
3044
  }[] | undefined;
3045
3045
  required?: boolean | undefined;
@@ -3062,7 +3062,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3062
3062
  hint?: string | undefined;
3063
3063
  messages?: {
3064
3064
  text: string;
3065
- type: "error" | "success" | "info" | "warning";
3065
+ type: "success" | "error" | "info" | "warning";
3066
3066
  id?: number | undefined;
3067
3067
  }[] | undefined;
3068
3068
  required?: boolean | undefined;
@@ -3295,7 +3295,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3295
3295
  hint?: string | undefined;
3296
3296
  messages?: {
3297
3297
  text: string;
3298
- type: "error" | "success" | "info" | "warning";
3298
+ type: "success" | "error" | "info" | "warning";
3299
3299
  id?: number | undefined;
3300
3300
  }[] | undefined;
3301
3301
  required?: boolean | undefined;
@@ -3313,7 +3313,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3313
3313
  hint?: string | undefined;
3314
3314
  messages?: {
3315
3315
  text: string;
3316
- type: "error" | "success" | "info" | "warning";
3316
+ type: "success" | "error" | "info" | "warning";
3317
3317
  id?: number | undefined;
3318
3318
  }[] | undefined;
3319
3319
  required?: boolean | undefined;
@@ -3337,7 +3337,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3337
3337
  hint?: string | undefined;
3338
3338
  messages?: {
3339
3339
  text: string;
3340
- type: "error" | "success" | "info" | "warning";
3340
+ type: "success" | "error" | "info" | "warning";
3341
3341
  id?: number | undefined;
3342
3342
  }[] | undefined;
3343
3343
  required?: boolean | undefined;
@@ -3361,7 +3361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3361
3361
  hint?: string | undefined;
3362
3362
  messages?: {
3363
3363
  text: string;
3364
- type: "error" | "success" | "info" | "warning";
3364
+ type: "success" | "error" | "info" | "warning";
3365
3365
  id?: number | undefined;
3366
3366
  }[] | undefined;
3367
3367
  required?: boolean | undefined;
@@ -3385,7 +3385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3385
3385
  hint?: string | undefined;
3386
3386
  messages?: {
3387
3387
  text: string;
3388
- type: "error" | "success" | "info" | "warning";
3388
+ type: "success" | "error" | "info" | "warning";
3389
3389
  id?: number | undefined;
3390
3390
  }[] | undefined;
3391
3391
  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: "error" | "success" | "info" | "warning";
3417
+ type: "success" | "error" | "info" | "warning";
3418
3418
  id?: number | undefined;
3419
3419
  }[] | undefined;
3420
3420
  required?: boolean | undefined;
@@ -3429,7 +3429,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3429
3429
  hint?: string | undefined;
3430
3430
  messages?: {
3431
3431
  text: string;
3432
- type: "error" | "success" | "info" | "warning";
3432
+ type: "success" | "error" | "info" | "warning";
3433
3433
  id?: number | undefined;
3434
3434
  }[] | undefined;
3435
3435
  required?: boolean | undefined;
@@ -3450,7 +3450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3450
3450
  hint?: string | undefined;
3451
3451
  messages?: {
3452
3452
  text: string;
3453
- type: "error" | "success" | "info" | "warning";
3453
+ type: "success" | "error" | "info" | "warning";
3454
3454
  id?: number | undefined;
3455
3455
  }[] | undefined;
3456
3456
  required?: boolean | undefined;
@@ -3475,7 +3475,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3475
3475
  hint?: string | undefined;
3476
3476
  messages?: {
3477
3477
  text: string;
3478
- type: "error" | "success" | "info" | "warning";
3478
+ type: "success" | "error" | "info" | "warning";
3479
3479
  id?: number | undefined;
3480
3480
  }[] | undefined;
3481
3481
  required?: boolean | undefined;
@@ -3496,7 +3496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3496
3496
  hint?: string | undefined;
3497
3497
  messages?: {
3498
3498
  text: string;
3499
- type: "error" | "success" | "info" | "warning";
3499
+ type: "success" | "error" | "info" | "warning";
3500
3500
  id?: number | undefined;
3501
3501
  }[] | undefined;
3502
3502
  required?: boolean | undefined;
@@ -3516,7 +3516,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3516
3516
  hint?: string | undefined;
3517
3517
  messages?: {
3518
3518
  text: string;
3519
- type: "error" | "success" | "info" | "warning";
3519
+ type: "success" | "error" | "info" | "warning";
3520
3520
  id?: number | undefined;
3521
3521
  }[] | undefined;
3522
3522
  required?: boolean | undefined;
@@ -3535,7 +3535,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3535
3535
  hint?: string | undefined;
3536
3536
  messages?: {
3537
3537
  text: string;
3538
- type: "error" | "success" | "info" | "warning";
3538
+ type: "success" | "error" | "info" | "warning";
3539
3539
  id?: number | undefined;
3540
3540
  }[] | undefined;
3541
3541
  required?: boolean | undefined;
@@ -3557,7 +3557,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3557
3557
  hint?: string | undefined;
3558
3558
  messages?: {
3559
3559
  text: string;
3560
- type: "error" | "success" | "info" | "warning";
3560
+ type: "success" | "error" | "info" | "warning";
3561
3561
  id?: number | undefined;
3562
3562
  }[] | undefined;
3563
3563
  required?: boolean | undefined;
@@ -3579,7 +3579,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3579
3579
  hint?: string | undefined;
3580
3580
  messages?: {
3581
3581
  text: string;
3582
- type: "error" | "success" | "info" | "warning";
3582
+ type: "success" | "error" | "info" | "warning";
3583
3583
  id?: number | undefined;
3584
3584
  }[] | undefined;
3585
3585
  required?: boolean | undefined;
@@ -3598,7 +3598,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3598
3598
  hint?: string | undefined;
3599
3599
  messages?: {
3600
3600
  text: string;
3601
- type: "error" | "success" | "info" | "warning";
3601
+ type: "success" | "error" | "info" | "warning";
3602
3602
  id?: number | undefined;
3603
3603
  }[] | undefined;
3604
3604
  required?: boolean | undefined;
@@ -3625,7 +3625,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3625
3625
  hint?: string | undefined;
3626
3626
  messages?: {
3627
3627
  text: string;
3628
- type: "error" | "success" | "info" | "warning";
3628
+ type: "success" | "error" | "info" | "warning";
3629
3629
  id?: number | undefined;
3630
3630
  }[] | undefined;
3631
3631
  required?: boolean | undefined;
@@ -3646,7 +3646,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3646
3646
  hint?: string | undefined;
3647
3647
  messages?: {
3648
3648
  text: string;
3649
- type: "error" | "success" | "info" | "warning";
3649
+ type: "success" | "error" | "info" | "warning";
3650
3650
  id?: number | undefined;
3651
3651
  }[] | undefined;
3652
3652
  required?: boolean | undefined;
@@ -3669,7 +3669,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3669
3669
  hint?: string | undefined;
3670
3670
  messages?: {
3671
3671
  text: string;
3672
- type: "error" | "success" | "info" | "warning";
3672
+ type: "success" | "error" | "info" | "warning";
3673
3673
  id?: number | undefined;
3674
3674
  }[] | undefined;
3675
3675
  required?: boolean | undefined;
@@ -3918,7 +3918,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3918
3918
  hint?: string | undefined;
3919
3919
  messages?: {
3920
3920
  text: string;
3921
- type: "error" | "success" | "info" | "warning";
3921
+ type: "success" | "error" | "info" | "warning";
3922
3922
  id?: number | undefined;
3923
3923
  }[] | undefined;
3924
3924
  required?: boolean | undefined;
@@ -3936,7 +3936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3936
3936
  hint?: string | undefined;
3937
3937
  messages?: {
3938
3938
  text: string;
3939
- type: "error" | "success" | "info" | "warning";
3939
+ type: "success" | "error" | "info" | "warning";
3940
3940
  id?: number | undefined;
3941
3941
  }[] | undefined;
3942
3942
  required?: boolean | undefined;
@@ -3960,7 +3960,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3960
3960
  hint?: string | undefined;
3961
3961
  messages?: {
3962
3962
  text: string;
3963
- type: "error" | "success" | "info" | "warning";
3963
+ type: "success" | "error" | "info" | "warning";
3964
3964
  id?: number | undefined;
3965
3965
  }[] | undefined;
3966
3966
  required?: boolean | undefined;
@@ -3984,7 +3984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3984
3984
  hint?: string | undefined;
3985
3985
  messages?: {
3986
3986
  text: string;
3987
- type: "error" | "success" | "info" | "warning";
3987
+ type: "success" | "error" | "info" | "warning";
3988
3988
  id?: number | undefined;
3989
3989
  }[] | undefined;
3990
3990
  required?: boolean | undefined;
@@ -4008,7 +4008,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4008
4008
  hint?: string | undefined;
4009
4009
  messages?: {
4010
4010
  text: string;
4011
- type: "error" | "success" | "info" | "warning";
4011
+ type: "success" | "error" | "info" | "warning";
4012
4012
  id?: number | undefined;
4013
4013
  }[] | undefined;
4014
4014
  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: "error" | "success" | "info" | "warning";
4040
+ type: "success" | "error" | "info" | "warning";
4041
4041
  id?: number | undefined;
4042
4042
  }[] | undefined;
4043
4043
  required?: boolean | undefined;
@@ -4052,7 +4052,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4052
4052
  hint?: string | undefined;
4053
4053
  messages?: {
4054
4054
  text: string;
4055
- type: "error" | "success" | "info" | "warning";
4055
+ type: "success" | "error" | "info" | "warning";
4056
4056
  id?: number | undefined;
4057
4057
  }[] | undefined;
4058
4058
  required?: boolean | undefined;
@@ -4073,7 +4073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4073
4073
  hint?: string | undefined;
4074
4074
  messages?: {
4075
4075
  text: string;
4076
- type: "error" | "success" | "info" | "warning";
4076
+ type: "success" | "error" | "info" | "warning";
4077
4077
  id?: number | undefined;
4078
4078
  }[] | undefined;
4079
4079
  required?: boolean | undefined;
@@ -4098,7 +4098,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4098
4098
  hint?: string | undefined;
4099
4099
  messages?: {
4100
4100
  text: string;
4101
- type: "error" | "success" | "info" | "warning";
4101
+ type: "success" | "error" | "info" | "warning";
4102
4102
  id?: number | undefined;
4103
4103
  }[] | undefined;
4104
4104
  required?: boolean | undefined;
@@ -4119,7 +4119,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4119
4119
  hint?: string | undefined;
4120
4120
  messages?: {
4121
4121
  text: string;
4122
- type: "error" | "success" | "info" | "warning";
4122
+ type: "success" | "error" | "info" | "warning";
4123
4123
  id?: number | undefined;
4124
4124
  }[] | undefined;
4125
4125
  required?: boolean | undefined;
@@ -4139,7 +4139,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4139
4139
  hint?: string | undefined;
4140
4140
  messages?: {
4141
4141
  text: string;
4142
- type: "error" | "success" | "info" | "warning";
4142
+ type: "success" | "error" | "info" | "warning";
4143
4143
  id?: number | undefined;
4144
4144
  }[] | undefined;
4145
4145
  required?: boolean | undefined;
@@ -4158,7 +4158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4158
4158
  hint?: string | undefined;
4159
4159
  messages?: {
4160
4160
  text: string;
4161
- type: "error" | "success" | "info" | "warning";
4161
+ type: "success" | "error" | "info" | "warning";
4162
4162
  id?: number | undefined;
4163
4163
  }[] | undefined;
4164
4164
  required?: boolean | undefined;
@@ -4180,7 +4180,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4180
4180
  hint?: string | undefined;
4181
4181
  messages?: {
4182
4182
  text: string;
4183
- type: "error" | "success" | "info" | "warning";
4183
+ type: "success" | "error" | "info" | "warning";
4184
4184
  id?: number | undefined;
4185
4185
  }[] | undefined;
4186
4186
  required?: boolean | undefined;
@@ -4202,7 +4202,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4202
4202
  hint?: string | undefined;
4203
4203
  messages?: {
4204
4204
  text: string;
4205
- type: "error" | "success" | "info" | "warning";
4205
+ type: "success" | "error" | "info" | "warning";
4206
4206
  id?: number | undefined;
4207
4207
  }[] | undefined;
4208
4208
  required?: boolean | undefined;
@@ -4221,7 +4221,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4221
4221
  hint?: string | undefined;
4222
4222
  messages?: {
4223
4223
  text: string;
4224
- type: "error" | "success" | "info" | "warning";
4224
+ type: "success" | "error" | "info" | "warning";
4225
4225
  id?: number | undefined;
4226
4226
  }[] | undefined;
4227
4227
  required?: boolean | undefined;
@@ -4248,7 +4248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4248
4248
  hint?: string | undefined;
4249
4249
  messages?: {
4250
4250
  text: string;
4251
- type: "error" | "success" | "info" | "warning";
4251
+ type: "success" | "error" | "info" | "warning";
4252
4252
  id?: number | undefined;
4253
4253
  }[] | undefined;
4254
4254
  required?: boolean | undefined;
@@ -4269,7 +4269,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4269
4269
  hint?: string | undefined;
4270
4270
  messages?: {
4271
4271
  text: string;
4272
- type: "error" | "success" | "info" | "warning";
4272
+ type: "success" | "error" | "info" | "warning";
4273
4273
  id?: number | undefined;
4274
4274
  }[] | undefined;
4275
4275
  required?: boolean | undefined;
@@ -4292,7 +4292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4292
4292
  hint?: string | undefined;
4293
4293
  messages?: {
4294
4294
  text: string;
4295
- type: "error" | "success" | "info" | "warning";
4295
+ type: "success" | "error" | "info" | "warning";
4296
4296
  id?: number | undefined;
4297
4297
  }[] | undefined;
4298
4298
  required?: boolean | undefined;
@@ -4546,7 +4546,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4546
4546
  hint?: string | undefined;
4547
4547
  messages?: {
4548
4548
  text: string;
4549
- type: "error" | "success" | "info" | "warning";
4549
+ type: "success" | "error" | "info" | "warning";
4550
4550
  id?: number | undefined;
4551
4551
  }[] | undefined;
4552
4552
  required?: boolean | undefined;
@@ -4564,7 +4564,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4564
4564
  hint?: string | undefined;
4565
4565
  messages?: {
4566
4566
  text: string;
4567
- type: "error" | "success" | "info" | "warning";
4567
+ type: "success" | "error" | "info" | "warning";
4568
4568
  id?: number | undefined;
4569
4569
  }[] | undefined;
4570
4570
  required?: boolean | undefined;
@@ -4588,7 +4588,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4588
4588
  hint?: string | undefined;
4589
4589
  messages?: {
4590
4590
  text: string;
4591
- type: "error" | "success" | "info" | "warning";
4591
+ type: "success" | "error" | "info" | "warning";
4592
4592
  id?: number | undefined;
4593
4593
  }[] | undefined;
4594
4594
  required?: boolean | undefined;
@@ -4612,7 +4612,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4612
4612
  hint?: string | undefined;
4613
4613
  messages?: {
4614
4614
  text: string;
4615
- type: "error" | "success" | "info" | "warning";
4615
+ type: "success" | "error" | "info" | "warning";
4616
4616
  id?: number | undefined;
4617
4617
  }[] | undefined;
4618
4618
  required?: boolean | undefined;
@@ -4636,7 +4636,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4636
4636
  hint?: string | undefined;
4637
4637
  messages?: {
4638
4638
  text: string;
4639
- type: "error" | "success" | "info" | "warning";
4639
+ type: "success" | "error" | "info" | "warning";
4640
4640
  id?: number | undefined;
4641
4641
  }[] | undefined;
4642
4642
  required?: boolean | undefined;
@@ -4661,7 +4661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4661
4661
  hint?: string | undefined;
4662
4662
  messages?: {
4663
4663
  text: string;
4664
- type: "error" | "success" | "info" | "warning";
4664
+ type: "success" | "error" | "info" | "warning";
4665
4665
  id?: number | undefined;
4666
4666
  }[] | undefined;
4667
4667
  required?: boolean | undefined;
@@ -4676,7 +4676,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4676
4676
  hint?: string | undefined;
4677
4677
  messages?: {
4678
4678
  text: string;
4679
- type: "error" | "success" | "info" | "warning";
4679
+ type: "success" | "error" | "info" | "warning";
4680
4680
  id?: number | undefined;
4681
4681
  }[] | undefined;
4682
4682
  required?: boolean | undefined;
@@ -4697,7 +4697,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4697
4697
  hint?: string | undefined;
4698
4698
  messages?: {
4699
4699
  text: string;
4700
- type: "error" | "success" | "info" | "warning";
4700
+ type: "success" | "error" | "info" | "warning";
4701
4701
  id?: number | undefined;
4702
4702
  }[] | undefined;
4703
4703
  required?: boolean | undefined;
@@ -4722,7 +4722,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4722
4722
  hint?: string | undefined;
4723
4723
  messages?: {
4724
4724
  text: string;
4725
- type: "error" | "success" | "info" | "warning";
4725
+ type: "success" | "error" | "info" | "warning";
4726
4726
  id?: number | undefined;
4727
4727
  }[] | undefined;
4728
4728
  required?: boolean | undefined;
@@ -4743,7 +4743,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4743
4743
  hint?: string | undefined;
4744
4744
  messages?: {
4745
4745
  text: string;
4746
- type: "error" | "success" | "info" | "warning";
4746
+ type: "success" | "error" | "info" | "warning";
4747
4747
  id?: number | undefined;
4748
4748
  }[] | undefined;
4749
4749
  required?: boolean | undefined;
@@ -4763,7 +4763,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4763
4763
  hint?: string | undefined;
4764
4764
  messages?: {
4765
4765
  text: string;
4766
- type: "error" | "success" | "info" | "warning";
4766
+ type: "success" | "error" | "info" | "warning";
4767
4767
  id?: number | undefined;
4768
4768
  }[] | undefined;
4769
4769
  required?: boolean | undefined;
@@ -4782,7 +4782,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4782
4782
  hint?: string | undefined;
4783
4783
  messages?: {
4784
4784
  text: string;
4785
- type: "error" | "success" | "info" | "warning";
4785
+ type: "success" | "error" | "info" | "warning";
4786
4786
  id?: number | undefined;
4787
4787
  }[] | undefined;
4788
4788
  required?: boolean | undefined;
@@ -4804,7 +4804,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4804
4804
  hint?: string | undefined;
4805
4805
  messages?: {
4806
4806
  text: string;
4807
- type: "error" | "success" | "info" | "warning";
4807
+ type: "success" | "error" | "info" | "warning";
4808
4808
  id?: number | undefined;
4809
4809
  }[] | undefined;
4810
4810
  required?: boolean | undefined;
@@ -4826,7 +4826,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4826
4826
  hint?: string | undefined;
4827
4827
  messages?: {
4828
4828
  text: string;
4829
- type: "error" | "success" | "info" | "warning";
4829
+ type: "success" | "error" | "info" | "warning";
4830
4830
  id?: number | undefined;
4831
4831
  }[] | undefined;
4832
4832
  required?: boolean | undefined;
@@ -4845,7 +4845,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4845
4845
  hint?: string | undefined;
4846
4846
  messages?: {
4847
4847
  text: string;
4848
- type: "error" | "success" | "info" | "warning";
4848
+ type: "success" | "error" | "info" | "warning";
4849
4849
  id?: number | undefined;
4850
4850
  }[] | undefined;
4851
4851
  required?: boolean | undefined;
@@ -4872,7 +4872,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4872
4872
  hint?: string | undefined;
4873
4873
  messages?: {
4874
4874
  text: string;
4875
- type: "error" | "success" | "info" | "warning";
4875
+ type: "success" | "error" | "info" | "warning";
4876
4876
  id?: number | undefined;
4877
4877
  }[] | undefined;
4878
4878
  required?: boolean | undefined;
@@ -4893,7 +4893,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4893
4893
  hint?: string | undefined;
4894
4894
  messages?: {
4895
4895
  text: string;
4896
- type: "error" | "success" | "info" | "warning";
4896
+ type: "success" | "error" | "info" | "warning";
4897
4897
  id?: number | undefined;
4898
4898
  }[] | undefined;
4899
4899
  required?: boolean | undefined;
@@ -4916,7 +4916,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4916
4916
  hint?: string | undefined;
4917
4917
  messages?: {
4918
4918
  text: string;
4919
- type: "error" | "success" | "info" | "warning";
4919
+ type: "success" | "error" | "info" | "warning";
4920
4920
  id?: number | undefined;
4921
4921
  }[] | undefined;
4922
4922
  required?: boolean | undefined;
@@ -5147,7 +5147,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5147
5147
  hint?: string | undefined;
5148
5148
  messages?: {
5149
5149
  text: string;
5150
- type: "error" | "success" | "info" | "warning";
5150
+ type: "success" | "error" | "info" | "warning";
5151
5151
  id?: number | undefined;
5152
5152
  }[] | undefined;
5153
5153
  required?: boolean | undefined;
@@ -5165,7 +5165,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5165
5165
  hint?: string | undefined;
5166
5166
  messages?: {
5167
5167
  text: string;
5168
- type: "error" | "success" | "info" | "warning";
5168
+ type: "success" | "error" | "info" | "warning";
5169
5169
  id?: number | undefined;
5170
5170
  }[] | undefined;
5171
5171
  required?: boolean | undefined;
@@ -5189,7 +5189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5189
5189
  hint?: string | undefined;
5190
5190
  messages?: {
5191
5191
  text: string;
5192
- type: "error" | "success" | "info" | "warning";
5192
+ type: "success" | "error" | "info" | "warning";
5193
5193
  id?: number | undefined;
5194
5194
  }[] | undefined;
5195
5195
  required?: boolean | undefined;
@@ -5213,7 +5213,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5213
5213
  hint?: string | undefined;
5214
5214
  messages?: {
5215
5215
  text: string;
5216
- type: "error" | "success" | "info" | "warning";
5216
+ type: "success" | "error" | "info" | "warning";
5217
5217
  id?: number | undefined;
5218
5218
  }[] | undefined;
5219
5219
  required?: boolean | undefined;
@@ -5237,7 +5237,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5237
5237
  hint?: string | undefined;
5238
5238
  messages?: {
5239
5239
  text: string;
5240
- type: "error" | "success" | "info" | "warning";
5240
+ type: "success" | "error" | "info" | "warning";
5241
5241
  id?: number | undefined;
5242
5242
  }[] | undefined;
5243
5243
  required?: boolean | undefined;
@@ -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: "error" | "success" | "info" | "warning";
5269
+ type: "success" | "error" | "info" | "warning";
5270
5270
  id?: number | undefined;
5271
5271
  }[] | undefined;
5272
5272
  required?: boolean | undefined;
@@ -5281,7 +5281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5281
5281
  hint?: string | undefined;
5282
5282
  messages?: {
5283
5283
  text: string;
5284
- type: "error" | "success" | "info" | "warning";
5284
+ type: "success" | "error" | "info" | "warning";
5285
5285
  id?: number | undefined;
5286
5286
  }[] | undefined;
5287
5287
  required?: boolean | undefined;
@@ -5302,7 +5302,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5302
5302
  hint?: string | undefined;
5303
5303
  messages?: {
5304
5304
  text: string;
5305
- type: "error" | "success" | "info" | "warning";
5305
+ type: "success" | "error" | "info" | "warning";
5306
5306
  id?: number | undefined;
5307
5307
  }[] | undefined;
5308
5308
  required?: boolean | undefined;
@@ -5327,7 +5327,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5327
5327
  hint?: string | undefined;
5328
5328
  messages?: {
5329
5329
  text: string;
5330
- type: "error" | "success" | "info" | "warning";
5330
+ type: "success" | "error" | "info" | "warning";
5331
5331
  id?: number | undefined;
5332
5332
  }[] | undefined;
5333
5333
  required?: boolean | undefined;
@@ -5348,7 +5348,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5348
5348
  hint?: string | undefined;
5349
5349
  messages?: {
5350
5350
  text: string;
5351
- type: "error" | "success" | "info" | "warning";
5351
+ type: "success" | "error" | "info" | "warning";
5352
5352
  id?: number | undefined;
5353
5353
  }[] | undefined;
5354
5354
  required?: boolean | undefined;
@@ -5368,7 +5368,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5368
5368
  hint?: string | undefined;
5369
5369
  messages?: {
5370
5370
  text: string;
5371
- type: "error" | "success" | "info" | "warning";
5371
+ type: "success" | "error" | "info" | "warning";
5372
5372
  id?: number | undefined;
5373
5373
  }[] | undefined;
5374
5374
  required?: boolean | undefined;
@@ -5387,7 +5387,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5387
5387
  hint?: string | undefined;
5388
5388
  messages?: {
5389
5389
  text: string;
5390
- type: "error" | "success" | "info" | "warning";
5390
+ type: "success" | "error" | "info" | "warning";
5391
5391
  id?: number | undefined;
5392
5392
  }[] | undefined;
5393
5393
  required?: boolean | undefined;
@@ -5409,7 +5409,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5409
5409
  hint?: string | undefined;
5410
5410
  messages?: {
5411
5411
  text: string;
5412
- type: "error" | "success" | "info" | "warning";
5412
+ type: "success" | "error" | "info" | "warning";
5413
5413
  id?: number | undefined;
5414
5414
  }[] | undefined;
5415
5415
  required?: boolean | undefined;
@@ -5431,7 +5431,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5431
5431
  hint?: string | undefined;
5432
5432
  messages?: {
5433
5433
  text: string;
5434
- type: "error" | "success" | "info" | "warning";
5434
+ type: "success" | "error" | "info" | "warning";
5435
5435
  id?: number | undefined;
5436
5436
  }[] | undefined;
5437
5437
  required?: boolean | undefined;
@@ -5450,7 +5450,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5450
5450
  hint?: string | undefined;
5451
5451
  messages?: {
5452
5452
  text: string;
5453
- type: "error" | "success" | "info" | "warning";
5453
+ type: "success" | "error" | "info" | "warning";
5454
5454
  id?: number | undefined;
5455
5455
  }[] | undefined;
5456
5456
  required?: boolean | undefined;
@@ -5477,7 +5477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5477
5477
  hint?: string | undefined;
5478
5478
  messages?: {
5479
5479
  text: string;
5480
- type: "error" | "success" | "info" | "warning";
5480
+ type: "success" | "error" | "info" | "warning";
5481
5481
  id?: number | undefined;
5482
5482
  }[] | undefined;
5483
5483
  required?: boolean | undefined;
@@ -5498,7 +5498,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5498
5498
  hint?: string | undefined;
5499
5499
  messages?: {
5500
5500
  text: string;
5501
- type: "error" | "success" | "info" | "warning";
5501
+ type: "success" | "error" | "info" | "warning";
5502
5502
  id?: number | undefined;
5503
5503
  }[] | undefined;
5504
5504
  required?: boolean | undefined;
@@ -5521,7 +5521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5521
5521
  hint?: string | undefined;
5522
5522
  messages?: {
5523
5523
  text: string;
5524
- type: "error" | "success" | "info" | "warning";
5524
+ type: "success" | "error" | "info" | "warning";
5525
5525
  id?: number | undefined;
5526
5526
  }[] | undefined;
5527
5527
  required?: boolean | undefined;
@@ -5754,7 +5754,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5754
5754
  hint?: string | undefined;
5755
5755
  messages?: {
5756
5756
  text: string;
5757
- type: "error" | "success" | "info" | "warning";
5757
+ type: "success" | "error" | "info" | "warning";
5758
5758
  id?: number | undefined;
5759
5759
  }[] | undefined;
5760
5760
  required?: boolean | undefined;
@@ -5772,7 +5772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5772
5772
  hint?: string | undefined;
5773
5773
  messages?: {
5774
5774
  text: string;
5775
- type: "error" | "success" | "info" | "warning";
5775
+ type: "success" | "error" | "info" | "warning";
5776
5776
  id?: number | undefined;
5777
5777
  }[] | undefined;
5778
5778
  required?: boolean | undefined;
@@ -5796,7 +5796,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5796
5796
  hint?: string | undefined;
5797
5797
  messages?: {
5798
5798
  text: string;
5799
- type: "error" | "success" | "info" | "warning";
5799
+ type: "success" | "error" | "info" | "warning";
5800
5800
  id?: number | undefined;
5801
5801
  }[] | undefined;
5802
5802
  required?: boolean | undefined;
@@ -5820,7 +5820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5820
5820
  hint?: string | undefined;
5821
5821
  messages?: {
5822
5822
  text: string;
5823
- type: "error" | "success" | "info" | "warning";
5823
+ type: "success" | "error" | "info" | "warning";
5824
5824
  id?: number | undefined;
5825
5825
  }[] | undefined;
5826
5826
  required?: boolean | undefined;
@@ -5844,7 +5844,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5844
5844
  hint?: string | undefined;
5845
5845
  messages?: {
5846
5846
  text: string;
5847
- type: "error" | "success" | "info" | "warning";
5847
+ type: "success" | "error" | "info" | "warning";
5848
5848
  id?: number | undefined;
5849
5849
  }[] | undefined;
5850
5850
  required?: boolean | undefined;
@@ -5869,7 +5869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5869
5869
  hint?: string | undefined;
5870
5870
  messages?: {
5871
5871
  text: string;
5872
- type: "error" | "success" | "info" | "warning";
5872
+ type: "success" | "error" | "info" | "warning";
5873
5873
  id?: number | undefined;
5874
5874
  }[] | undefined;
5875
5875
  required?: boolean | undefined;
@@ -5884,7 +5884,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5884
5884
  hint?: string | undefined;
5885
5885
  messages?: {
5886
5886
  text: string;
5887
- type: "error" | "success" | "info" | "warning";
5887
+ type: "success" | "error" | "info" | "warning";
5888
5888
  id?: number | undefined;
5889
5889
  }[] | undefined;
5890
5890
  required?: boolean | undefined;
@@ -5905,7 +5905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5905
5905
  hint?: string | undefined;
5906
5906
  messages?: {
5907
5907
  text: string;
5908
- type: "error" | "success" | "info" | "warning";
5908
+ type: "success" | "error" | "info" | "warning";
5909
5909
  id?: number | undefined;
5910
5910
  }[] | undefined;
5911
5911
  required?: boolean | undefined;
@@ -5930,7 +5930,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5930
5930
  hint?: string | undefined;
5931
5931
  messages?: {
5932
5932
  text: string;
5933
- type: "error" | "success" | "info" | "warning";
5933
+ type: "success" | "error" | "info" | "warning";
5934
5934
  id?: number | undefined;
5935
5935
  }[] | undefined;
5936
5936
  required?: boolean | undefined;
@@ -5951,7 +5951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5951
5951
  hint?: string | undefined;
5952
5952
  messages?: {
5953
5953
  text: string;
5954
- type: "error" | "success" | "info" | "warning";
5954
+ type: "success" | "error" | "info" | "warning";
5955
5955
  id?: number | undefined;
5956
5956
  }[] | undefined;
5957
5957
  required?: boolean | undefined;
@@ -5971,7 +5971,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5971
5971
  hint?: string | undefined;
5972
5972
  messages?: {
5973
5973
  text: string;
5974
- type: "error" | "success" | "info" | "warning";
5974
+ type: "success" | "error" | "info" | "warning";
5975
5975
  id?: number | undefined;
5976
5976
  }[] | undefined;
5977
5977
  required?: boolean | undefined;
@@ -5990,7 +5990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5990
5990
  hint?: string | undefined;
5991
5991
  messages?: {
5992
5992
  text: string;
5993
- type: "error" | "success" | "info" | "warning";
5993
+ type: "success" | "error" | "info" | "warning";
5994
5994
  id?: number | undefined;
5995
5995
  }[] | undefined;
5996
5996
  required?: boolean | undefined;
@@ -6012,7 +6012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6012
6012
  hint?: string | undefined;
6013
6013
  messages?: {
6014
6014
  text: string;
6015
- type: "error" | "success" | "info" | "warning";
6015
+ type: "success" | "error" | "info" | "warning";
6016
6016
  id?: number | undefined;
6017
6017
  }[] | undefined;
6018
6018
  required?: boolean | undefined;
@@ -6034,7 +6034,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6034
6034
  hint?: string | undefined;
6035
6035
  messages?: {
6036
6036
  text: string;
6037
- type: "error" | "success" | "info" | "warning";
6037
+ type: "success" | "error" | "info" | "warning";
6038
6038
  id?: number | undefined;
6039
6039
  }[] | undefined;
6040
6040
  required?: boolean | undefined;
@@ -6053,7 +6053,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6053
6053
  hint?: string | undefined;
6054
6054
  messages?: {
6055
6055
  text: string;
6056
- type: "error" | "success" | "info" | "warning";
6056
+ type: "success" | "error" | "info" | "warning";
6057
6057
  id?: number | undefined;
6058
6058
  }[] | undefined;
6059
6059
  required?: boolean | undefined;
@@ -6080,7 +6080,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6080
6080
  hint?: string | undefined;
6081
6081
  messages?: {
6082
6082
  text: string;
6083
- type: "error" | "success" | "info" | "warning";
6083
+ type: "success" | "error" | "info" | "warning";
6084
6084
  id?: number | undefined;
6085
6085
  }[] | undefined;
6086
6086
  required?: boolean | undefined;
@@ -6101,7 +6101,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6101
6101
  hint?: string | undefined;
6102
6102
  messages?: {
6103
6103
  text: string;
6104
- type: "error" | "success" | "info" | "warning";
6104
+ type: "success" | "error" | "info" | "warning";
6105
6105
  id?: number | undefined;
6106
6106
  }[] | undefined;
6107
6107
  required?: boolean | undefined;
@@ -6124,7 +6124,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6124
6124
  hint?: string | undefined;
6125
6125
  messages?: {
6126
6126
  text: string;
6127
- type: "error" | "success" | "info" | "warning";
6127
+ type: "success" | "error" | "info" | "warning";
6128
6128
  id?: number | undefined;
6129
6129
  }[] | undefined;
6130
6130
  required?: boolean | undefined;
@@ -6355,7 +6355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6355
6355
  hint?: string | undefined;
6356
6356
  messages?: {
6357
6357
  text: string;
6358
- type: "error" | "success" | "info" | "warning";
6358
+ type: "success" | "error" | "info" | "warning";
6359
6359
  id?: number | undefined;
6360
6360
  }[] | undefined;
6361
6361
  required?: boolean | undefined;
@@ -6373,7 +6373,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6373
6373
  hint?: string | undefined;
6374
6374
  messages?: {
6375
6375
  text: string;
6376
- type: "error" | "success" | "info" | "warning";
6376
+ type: "success" | "error" | "info" | "warning";
6377
6377
  id?: number | undefined;
6378
6378
  }[] | undefined;
6379
6379
  required?: boolean | undefined;
@@ -6397,7 +6397,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6397
6397
  hint?: string | undefined;
6398
6398
  messages?: {
6399
6399
  text: string;
6400
- type: "error" | "success" | "info" | "warning";
6400
+ type: "success" | "error" | "info" | "warning";
6401
6401
  id?: number | undefined;
6402
6402
  }[] | undefined;
6403
6403
  required?: boolean | undefined;
@@ -6421,7 +6421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6421
6421
  hint?: string | undefined;
6422
6422
  messages?: {
6423
6423
  text: string;
6424
- type: "error" | "success" | "info" | "warning";
6424
+ type: "success" | "error" | "info" | "warning";
6425
6425
  id?: number | undefined;
6426
6426
  }[] | undefined;
6427
6427
  required?: boolean | undefined;
@@ -6445,7 +6445,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6445
6445
  hint?: string | undefined;
6446
6446
  messages?: {
6447
6447
  text: string;
6448
- type: "error" | "success" | "info" | "warning";
6448
+ type: "success" | "error" | "info" | "warning";
6449
6449
  id?: number | undefined;
6450
6450
  }[] | undefined;
6451
6451
  required?: boolean | undefined;
@@ -6474,7 +6474,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6474
6474
  hint?: string | undefined;
6475
6475
  messages?: {
6476
6476
  text: string;
6477
- type: "error" | "success" | "info" | "warning";
6477
+ type: "success" | "error" | "info" | "warning";
6478
6478
  id?: number | undefined;
6479
6479
  }[] | undefined;
6480
6480
  required?: boolean | undefined;
@@ -6489,7 +6489,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6489
6489
  hint?: string | undefined;
6490
6490
  messages?: {
6491
6491
  text: string;
6492
- type: "error" | "success" | "info" | "warning";
6492
+ type: "success" | "error" | "info" | "warning";
6493
6493
  id?: number | undefined;
6494
6494
  }[] | undefined;
6495
6495
  required?: boolean | undefined;
@@ -6510,7 +6510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6510
6510
  hint?: string | undefined;
6511
6511
  messages?: {
6512
6512
  text: string;
6513
- type: "error" | "success" | "info" | "warning";
6513
+ type: "success" | "error" | "info" | "warning";
6514
6514
  id?: number | undefined;
6515
6515
  }[] | undefined;
6516
6516
  required?: boolean | undefined;
@@ -6535,7 +6535,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6535
6535
  hint?: string | undefined;
6536
6536
  messages?: {
6537
6537
  text: string;
6538
- type: "error" | "success" | "info" | "warning";
6538
+ type: "success" | "error" | "info" | "warning";
6539
6539
  id?: number | undefined;
6540
6540
  }[] | undefined;
6541
6541
  required?: boolean | undefined;
@@ -6556,7 +6556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6556
6556
  hint?: string | undefined;
6557
6557
  messages?: {
6558
6558
  text: string;
6559
- type: "error" | "success" | "info" | "warning";
6559
+ type: "success" | "error" | "info" | "warning";
6560
6560
  id?: number | undefined;
6561
6561
  }[] | undefined;
6562
6562
  required?: boolean | undefined;
@@ -6576,7 +6576,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6576
6576
  hint?: string | undefined;
6577
6577
  messages?: {
6578
6578
  text: string;
6579
- type: "error" | "success" | "info" | "warning";
6579
+ type: "success" | "error" | "info" | "warning";
6580
6580
  id?: number | undefined;
6581
6581
  }[] | undefined;
6582
6582
  required?: boolean | undefined;
@@ -6595,7 +6595,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6595
6595
  hint?: string | undefined;
6596
6596
  messages?: {
6597
6597
  text: string;
6598
- type: "error" | "success" | "info" | "warning";
6598
+ type: "success" | "error" | "info" | "warning";
6599
6599
  id?: number | undefined;
6600
6600
  }[] | undefined;
6601
6601
  required?: boolean | undefined;
@@ -6617,7 +6617,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6617
6617
  hint?: string | undefined;
6618
6618
  messages?: {
6619
6619
  text: string;
6620
- type: "error" | "success" | "info" | "warning";
6620
+ type: "success" | "error" | "info" | "warning";
6621
6621
  id?: number | undefined;
6622
6622
  }[] | undefined;
6623
6623
  required?: boolean | undefined;
@@ -6639,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6639
6639
  hint?: string | undefined;
6640
6640
  messages?: {
6641
6641
  text: string;
6642
- type: "error" | "success" | "info" | "warning";
6642
+ type: "success" | "error" | "info" | "warning";
6643
6643
  id?: number | undefined;
6644
6644
  }[] | undefined;
6645
6645
  required?: boolean | undefined;
@@ -6658,7 +6658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6658
6658
  hint?: string | undefined;
6659
6659
  messages?: {
6660
6660
  text: string;
6661
- type: "error" | "success" | "info" | "warning";
6661
+ type: "success" | "error" | "info" | "warning";
6662
6662
  id?: number | undefined;
6663
6663
  }[] | undefined;
6664
6664
  required?: boolean | undefined;
@@ -6685,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6685
6685
  hint?: string | undefined;
6686
6686
  messages?: {
6687
6687
  text: string;
6688
- type: "error" | "success" | "info" | "warning";
6688
+ type: "success" | "error" | "info" | "warning";
6689
6689
  id?: number | undefined;
6690
6690
  }[] | undefined;
6691
6691
  required?: boolean | undefined;
@@ -6706,7 +6706,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6706
6706
  hint?: string | undefined;
6707
6707
  messages?: {
6708
6708
  text: string;
6709
- type: "error" | "success" | "info" | "warning";
6709
+ type: "success" | "error" | "info" | "warning";
6710
6710
  id?: number | undefined;
6711
6711
  }[] | undefined;
6712
6712
  required?: boolean | undefined;
@@ -6729,7 +6729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6729
6729
  hint?: string | undefined;
6730
6730
  messages?: {
6731
6731
  text: string;
6732
- type: "error" | "success" | "info" | "warning";
6732
+ type: "success" | "error" | "info" | "warning";
6733
6733
  id?: number | undefined;
6734
6734
  }[] | undefined;
6735
6735
  required?: boolean | undefined;
@@ -7035,7 +7035,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7035
7035
  };
7036
7036
  };
7037
7037
  output: {
7038
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7038
+ prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7039
7039
  language: string;
7040
7040
  }[];
7041
7041
  outputFormat: "json";
@@ -7073,7 +7073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7073
7073
  $get: {
7074
7074
  input: {
7075
7075
  param: {
7076
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7076
+ prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7077
7077
  language: string;
7078
7078
  };
7079
7079
  } & {
@@ -7095,7 +7095,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7095
7095
  $put: {
7096
7096
  input: {
7097
7097
  param: {
7098
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7098
+ prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7099
7099
  language: string;
7100
7100
  };
7101
7101
  } & {
@@ -7119,7 +7119,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7119
7119
  $delete: {
7120
7120
  input: {
7121
7121
  param: {
7122
- prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7122
+ prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7123
7123
  language: string;
7124
7124
  };
7125
7125
  } & {
@@ -7215,7 +7215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7215
7215
  active?: boolean | undefined;
7216
7216
  } | undefined;
7217
7217
  signup?: {
7218
- status?: "required" | "optional" | "disabled" | undefined;
7218
+ status?: "optional" | "required" | "disabled" | undefined;
7219
7219
  verification?: {
7220
7220
  active?: boolean | undefined;
7221
7221
  } | undefined;
@@ -7232,7 +7232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7232
7232
  active?: boolean | undefined;
7233
7233
  } | undefined;
7234
7234
  signup?: {
7235
- status?: "required" | "optional" | "disabled" | undefined;
7235
+ status?: "optional" | "required" | "disabled" | undefined;
7236
7236
  } | undefined;
7237
7237
  validation?: {
7238
7238
  max_length?: number | undefined;
@@ -7249,7 +7249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7249
7249
  active?: boolean | undefined;
7250
7250
  } | undefined;
7251
7251
  signup?: {
7252
- status?: "required" | "optional" | "disabled" | undefined;
7252
+ status?: "optional" | "required" | "disabled" | undefined;
7253
7253
  } | undefined;
7254
7254
  } | undefined;
7255
7255
  } | undefined;
@@ -7353,7 +7353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7353
7353
  active?: boolean | undefined;
7354
7354
  } | undefined;
7355
7355
  signup?: {
7356
- status?: "required" | "optional" | "disabled" | undefined;
7356
+ status?: "optional" | "required" | "disabled" | undefined;
7357
7357
  verification?: {
7358
7358
  active?: boolean | undefined;
7359
7359
  } | undefined;
@@ -7370,7 +7370,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7370
7370
  active?: boolean | undefined;
7371
7371
  } | undefined;
7372
7372
  signup?: {
7373
- status?: "required" | "optional" | "disabled" | undefined;
7373
+ status?: "optional" | "required" | "disabled" | undefined;
7374
7374
  } | undefined;
7375
7375
  validation?: {
7376
7376
  max_length?: number | undefined;
@@ -7387,7 +7387,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7387
7387
  active?: boolean | undefined;
7388
7388
  } | undefined;
7389
7389
  signup?: {
7390
- status?: "required" | "optional" | "disabled" | undefined;
7390
+ status?: "optional" | "required" | "disabled" | undefined;
7391
7391
  } | undefined;
7392
7392
  } | undefined;
7393
7393
  } | undefined;
@@ -7507,7 +7507,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7507
7507
  active?: boolean | undefined;
7508
7508
  } | undefined;
7509
7509
  signup?: {
7510
- status?: "required" | "optional" | "disabled" | undefined;
7510
+ status?: "optional" | "required" | "disabled" | undefined;
7511
7511
  verification?: {
7512
7512
  active?: boolean | undefined;
7513
7513
  } | undefined;
@@ -7524,7 +7524,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7524
7524
  active?: boolean | undefined;
7525
7525
  } | undefined;
7526
7526
  signup?: {
7527
- status?: "required" | "optional" | "disabled" | undefined;
7527
+ status?: "optional" | "required" | "disabled" | undefined;
7528
7528
  } | undefined;
7529
7529
  validation?: {
7530
7530
  max_length?: number | undefined;
@@ -7541,7 +7541,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7541
7541
  active?: boolean | undefined;
7542
7542
  } | undefined;
7543
7543
  signup?: {
7544
- status?: "required" | "optional" | "disabled" | undefined;
7544
+ status?: "optional" | "required" | "disabled" | undefined;
7545
7545
  } | undefined;
7546
7546
  } | undefined;
7547
7547
  } | undefined;
@@ -7690,7 +7690,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7690
7690
  active?: boolean | undefined;
7691
7691
  } | undefined;
7692
7692
  signup?: {
7693
- status?: "required" | "optional" | "disabled" | undefined;
7693
+ status?: "optional" | "required" | "disabled" | undefined;
7694
7694
  verification?: {
7695
7695
  active?: boolean | undefined;
7696
7696
  } | undefined;
@@ -7707,7 +7707,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7707
7707
  active?: boolean | undefined;
7708
7708
  } | undefined;
7709
7709
  signup?: {
7710
- status?: "required" | "optional" | "disabled" | undefined;
7710
+ status?: "optional" | "required" | "disabled" | undefined;
7711
7711
  } | undefined;
7712
7712
  validation?: {
7713
7713
  max_length?: number | undefined;
@@ -7724,7 +7724,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7724
7724
  active?: boolean | undefined;
7725
7725
  } | undefined;
7726
7726
  signup?: {
7727
- status?: "required" | "optional" | "disabled" | undefined;
7727
+ status?: "optional" | "required" | "disabled" | undefined;
7728
7728
  } | undefined;
7729
7729
  } | undefined;
7730
7730
  } | undefined;
@@ -7852,7 +7852,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7852
7852
  active?: boolean | undefined;
7853
7853
  } | undefined;
7854
7854
  signup?: {
7855
- status?: "required" | "optional" | "disabled" | undefined;
7855
+ status?: "optional" | "required" | "disabled" | undefined;
7856
7856
  verification?: {
7857
7857
  active?: boolean | undefined;
7858
7858
  } | undefined;
@@ -7869,7 +7869,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7869
7869
  active?: boolean | undefined;
7870
7870
  } | undefined;
7871
7871
  signup?: {
7872
- status?: "required" | "optional" | "disabled" | undefined;
7872
+ status?: "optional" | "required" | "disabled" | undefined;
7873
7873
  } | undefined;
7874
7874
  validation?: {
7875
7875
  max_length?: number | undefined;
@@ -7886,7 +7886,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7886
7886
  active?: boolean | undefined;
7887
7887
  } | undefined;
7888
7888
  signup?: {
7889
- status?: "required" | "optional" | "disabled" | undefined;
7889
+ status?: "optional" | "required" | "disabled" | undefined;
7890
7890
  } | undefined;
7891
7891
  } | undefined;
7892
7892
  } | undefined;
@@ -8002,7 +8002,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8002
8002
  };
8003
8003
  } | {
8004
8004
  mode: "inline";
8005
- status: "error" | "success";
8005
+ status: "success" | "error";
8006
8006
  connection_id: string;
8007
8007
  connection_name: string;
8008
8008
  strategy: string;
@@ -9042,7 +9042,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9042
9042
  created_at: string;
9043
9043
  updated_at: string;
9044
9044
  name: string;
9045
- provider: "auth0" | "cognito" | "okta" | "oidc";
9045
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9046
9046
  connection: string;
9047
9047
  enabled: boolean;
9048
9048
  credentials: {
@@ -9074,7 +9074,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9074
9074
  created_at: string;
9075
9075
  updated_at: string;
9076
9076
  name: string;
9077
- provider: "auth0" | "cognito" | "okta" | "oidc";
9077
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9078
9078
  connection: string;
9079
9079
  enabled: boolean;
9080
9080
  credentials: {
@@ -9100,7 +9100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9100
9100
  } & {
9101
9101
  json: {
9102
9102
  name: string;
9103
- provider: "auth0" | "cognito" | "okta" | "oidc";
9103
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9104
9104
  connection: string;
9105
9105
  credentials: {
9106
9106
  domain: string;
@@ -9117,7 +9117,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9117
9117
  created_at: string;
9118
9118
  updated_at: string;
9119
9119
  name: string;
9120
- provider: "auth0" | "cognito" | "okta" | "oidc";
9120
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9121
9121
  connection: string;
9122
9122
  enabled: boolean;
9123
9123
  credentials: {
@@ -9148,7 +9148,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9148
9148
  json: {
9149
9149
  id?: string | undefined;
9150
9150
  name?: string | undefined;
9151
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
9151
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
9152
9152
  connection?: string | undefined;
9153
9153
  enabled?: boolean | undefined;
9154
9154
  credentials?: {
@@ -9164,7 +9164,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9164
9164
  created_at: string;
9165
9165
  updated_at: string;
9166
9166
  name: string;
9167
- provider: "auth0" | "cognito" | "okta" | "oidc";
9167
+ provider: "auth0" | "oidc" | "okta" | "cognito";
9168
9168
  connection: string;
9169
9169
  enabled: boolean;
9170
9170
  credentials: {
@@ -9382,7 +9382,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9382
9382
  };
9383
9383
  };
9384
9384
  output: {
9385
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9385
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9386
9386
  date: string;
9387
9387
  isMobile: boolean;
9388
9388
  log_id: string;
@@ -9421,7 +9421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9421
9421
  limit: number;
9422
9422
  length: number;
9423
9423
  logs: {
9424
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9424
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9425
9425
  date: string;
9426
9426
  isMobile: boolean;
9427
9427
  log_id: string;
@@ -9460,7 +9460,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9460
9460
  next?: string | undefined;
9461
9461
  } | {
9462
9462
  logs: {
9463
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9463
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9464
9464
  date: string;
9465
9465
  isMobile: boolean;
9466
9466
  log_id: string;
@@ -9514,7 +9514,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9514
9514
  };
9515
9515
  };
9516
9516
  output: {
9517
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9517
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9518
9518
  date: string;
9519
9519
  isMobile: boolean;
9520
9520
  log_id: string;
@@ -10759,7 +10759,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10759
10759
  active?: boolean | undefined;
10760
10760
  } | undefined;
10761
10761
  signup?: {
10762
- status?: "required" | "optional" | "disabled" | undefined;
10762
+ status?: "optional" | "required" | "disabled" | undefined;
10763
10763
  verification?: {
10764
10764
  active?: boolean | undefined;
10765
10765
  } | undefined;
@@ -10776,7 +10776,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10776
10776
  active?: boolean | undefined;
10777
10777
  } | undefined;
10778
10778
  signup?: {
10779
- status?: "required" | "optional" | "disabled" | undefined;
10779
+ status?: "optional" | "required" | "disabled" | undefined;
10780
10780
  } | undefined;
10781
10781
  validation?: {
10782
10782
  max_length?: number | undefined;
@@ -10793,7 +10793,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10793
10793
  active?: boolean | undefined;
10794
10794
  } | undefined;
10795
10795
  signup?: {
10796
- status?: "required" | "optional" | "disabled" | undefined;
10796
+ status?: "optional" | "required" | "disabled" | undefined;
10797
10797
  } | undefined;
10798
10798
  } | undefined;
10799
10799
  } | undefined;
@@ -10917,7 +10917,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10917
10917
  active?: boolean | undefined;
10918
10918
  } | undefined;
10919
10919
  signup?: {
10920
- status?: "required" | "optional" | "disabled" | undefined;
10920
+ status?: "optional" | "required" | "disabled" | undefined;
10921
10921
  verification?: {
10922
10922
  active?: boolean | undefined;
10923
10923
  } | undefined;
@@ -10934,7 +10934,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10934
10934
  active?: boolean | undefined;
10935
10935
  } | undefined;
10936
10936
  signup?: {
10937
- status?: "required" | "optional" | "disabled" | undefined;
10937
+ status?: "optional" | "required" | "disabled" | undefined;
10938
10938
  } | undefined;
10939
10939
  validation?: {
10940
10940
  max_length?: number | undefined;
@@ -10951,7 +10951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10951
10951
  active?: boolean | undefined;
10952
10952
  } | undefined;
10953
10953
  signup?: {
10954
- status?: "required" | "optional" | "disabled" | undefined;
10954
+ status?: "optional" | "required" | "disabled" | undefined;
10955
10955
  } | undefined;
10956
10956
  } | undefined;
10957
10957
  } | undefined;
@@ -11084,6 +11084,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11084
11084
  "/signing": {
11085
11085
  $get: {
11086
11086
  input: {
11087
+ query: {
11088
+ type?: "jwt_signing" | "saml_encryption" | undefined;
11089
+ };
11090
+ } & {
11087
11091
  header: {
11088
11092
  "tenant-id"?: string | undefined;
11089
11093
  };
@@ -11095,7 +11099,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11095
11099
  thumbprint: string;
11096
11100
  type: "jwt_signing" | "saml_encryption";
11097
11101
  tenant_id?: string | undefined;
11098
- pkcs7?: string | undefined;
11099
11102
  current?: boolean | undefined;
11100
11103
  next?: boolean | undefined;
11101
11104
  previous?: boolean | undefined;
@@ -11104,6 +11107,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11104
11107
  revoked?: boolean | undefined;
11105
11108
  revoked_at?: string | undefined;
11106
11109
  connection?: string | undefined;
11110
+ expires_at?: string | undefined;
11111
+ expired?: boolean | undefined;
11112
+ inherited?: boolean | undefined;
11107
11113
  }[];
11108
11114
  outputFormat: "json";
11109
11115
  status: 200;
@@ -11116,6 +11122,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11116
11122
  param: {
11117
11123
  kid: string;
11118
11124
  };
11125
+ } & {
11126
+ query: {
11127
+ type?: "jwt_signing" | "saml_encryption" | undefined;
11128
+ };
11119
11129
  } & {
11120
11130
  header: {
11121
11131
  "tenant-id"?: string | undefined;
@@ -11128,7 +11138,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11128
11138
  thumbprint: string;
11129
11139
  type: "jwt_signing" | "saml_encryption";
11130
11140
  tenant_id?: string | undefined;
11131
- pkcs7?: string | undefined;
11132
11141
  current?: boolean | undefined;
11133
11142
  next?: boolean | undefined;
11134
11143
  previous?: boolean | undefined;
@@ -11137,6 +11146,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11137
11146
  revoked?: boolean | undefined;
11138
11147
  revoked_at?: string | undefined;
11139
11148
  connection?: string | undefined;
11149
+ expires_at?: string | undefined;
11150
+ expired?: boolean | undefined;
11151
+ inherited?: boolean | undefined;
11140
11152
  };
11141
11153
  outputFormat: "json";
11142
11154
  status: 200;
@@ -11146,15 +11158,80 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11146
11158
  "/signing/rotate": {
11147
11159
  $post: {
11148
11160
  input: {
11161
+ query: {
11162
+ type?: "jwt_signing" | "saml_encryption" | undefined;
11163
+ validity_days?: unknown;
11164
+ activate_in_days?: unknown;
11165
+ grace_days?: unknown;
11166
+ };
11167
+ } & {
11149
11168
  header: {
11150
11169
  "tenant-id"?: string | undefined;
11151
11170
  };
11152
11171
  };
11153
- output: {};
11154
- outputFormat: string;
11172
+ output: {
11173
+ kid: string;
11174
+ cert: string;
11175
+ fingerprint: string;
11176
+ thumbprint: string;
11177
+ type: "jwt_signing" | "saml_encryption";
11178
+ tenant_id?: string | undefined;
11179
+ current?: boolean | undefined;
11180
+ next?: boolean | undefined;
11181
+ previous?: boolean | undefined;
11182
+ current_since?: string | undefined;
11183
+ current_until?: string | undefined;
11184
+ revoked?: boolean | undefined;
11185
+ revoked_at?: string | undefined;
11186
+ connection?: string | undefined;
11187
+ expires_at?: string | undefined;
11188
+ expired?: boolean | undefined;
11189
+ inherited?: boolean | undefined;
11190
+ };
11191
+ outputFormat: "json";
11155
11192
  status: 201;
11156
11193
  };
11157
11194
  };
11195
+ } & {
11196
+ "/signing/:kid/renew": {
11197
+ $post: {
11198
+ input: {
11199
+ param: {
11200
+ kid: string;
11201
+ };
11202
+ } & {
11203
+ query: {
11204
+ type?: "jwt_signing" | "saml_encryption" | undefined;
11205
+ validity_days?: unknown;
11206
+ };
11207
+ } & {
11208
+ header: {
11209
+ "tenant-id"?: string | undefined;
11210
+ };
11211
+ };
11212
+ output: {
11213
+ kid: string;
11214
+ cert: string;
11215
+ fingerprint: string;
11216
+ thumbprint: string;
11217
+ type: "jwt_signing" | "saml_encryption";
11218
+ tenant_id?: string | undefined;
11219
+ current?: boolean | undefined;
11220
+ next?: boolean | undefined;
11221
+ previous?: boolean | undefined;
11222
+ current_since?: string | undefined;
11223
+ current_until?: string | undefined;
11224
+ revoked?: boolean | undefined;
11225
+ revoked_at?: string | undefined;
11226
+ connection?: string | undefined;
11227
+ expires_at?: string | undefined;
11228
+ expired?: boolean | undefined;
11229
+ inherited?: boolean | undefined;
11230
+ };
11231
+ outputFormat: "json";
11232
+ status: 200;
11233
+ };
11234
+ };
11158
11235
  } & {
11159
11236
  "/signing/:kid/revoke": {
11160
11237
  $put: {
@@ -11162,6 +11239,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11162
11239
  param: {
11163
11240
  kid: string;
11164
11241
  };
11242
+ } & {
11243
+ query: {
11244
+ type?: "jwt_signing" | "saml_encryption" | undefined;
11245
+ validity_days?: unknown;
11246
+ };
11165
11247
  } & {
11166
11248
  header: {
11167
11249
  "tenant-id"?: string | undefined;
@@ -11986,10 +12068,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11986
12068
  };
11987
12069
  };
11988
12070
  output: {
11989
- id: string;
11990
12071
  created_at: string;
11991
- user_id: string;
12072
+ id: string;
11992
12073
  client_id: string;
12074
+ user_id: string;
11993
12075
  rotating: boolean;
11994
12076
  device: {
11995
12077
  initial_user_agent: string;
@@ -12006,21 +12088,24 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12006
12088
  }[];
12007
12089
  revoked_at?: string | undefined;
12008
12090
  expires_at?: string | undefined;
12009
- idle_expires_at?: string | undefined;
12010
- session_id?: string | undefined;
12011
12091
  organization?: string | undefined;
12092
+ session_id?: string | undefined;
12012
12093
  auth_connection?: string | undefined;
12013
12094
  auth_strategy?: {
12014
12095
  strategy: string;
12015
12096
  strategy_type: string;
12016
12097
  } | undefined;
12098
+ idle_expires_at?: string | undefined;
12017
12099
  last_exchanged_at?: string | undefined;
12018
12100
  }[] | {
12101
+ start: number;
12102
+ limit: number;
12103
+ length: number;
12019
12104
  tokens: {
12020
- id: string;
12021
12105
  created_at: string;
12022
- user_id: string;
12106
+ id: string;
12023
12107
  client_id: string;
12108
+ user_id: string;
12024
12109
  rotating: boolean;
12025
12110
  device: {
12026
12111
  initial_user_agent: string;
@@ -12037,26 +12122,24 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12037
12122
  }[];
12038
12123
  revoked_at?: string | undefined;
12039
12124
  expires_at?: string | undefined;
12040
- idle_expires_at?: string | undefined;
12041
- session_id?: string | undefined;
12042
12125
  organization?: string | undefined;
12126
+ session_id?: string | undefined;
12043
12127
  auth_connection?: string | undefined;
12044
12128
  auth_strategy?: {
12045
12129
  strategy: string;
12046
12130
  strategy_type: string;
12047
12131
  } | undefined;
12132
+ idle_expires_at?: string | undefined;
12048
12133
  last_exchanged_at?: string | undefined;
12049
12134
  }[];
12135
+ total?: number | undefined;
12050
12136
  next?: string | undefined;
12051
12137
  } | {
12052
- start: number;
12053
- limit: number;
12054
- length: number;
12055
12138
  tokens: {
12056
- id: string;
12057
12139
  created_at: string;
12058
- user_id: string;
12140
+ id: string;
12059
12141
  client_id: string;
12142
+ user_id: string;
12060
12143
  rotating: boolean;
12061
12144
  device: {
12062
12145
  initial_user_agent: string;
@@ -12073,17 +12156,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12073
12156
  }[];
12074
12157
  revoked_at?: string | undefined;
12075
12158
  expires_at?: string | undefined;
12076
- idle_expires_at?: string | undefined;
12077
- session_id?: string | undefined;
12078
12159
  organization?: string | undefined;
12160
+ session_id?: string | undefined;
12079
12161
  auth_connection?: string | undefined;
12080
12162
  auth_strategy?: {
12081
12163
  strategy: string;
12082
12164
  strategy_type: string;
12083
12165
  } | undefined;
12166
+ idle_expires_at?: string | undefined;
12084
12167
  last_exchanged_at?: string | undefined;
12085
12168
  }[];
12086
- total?: number | undefined;
12087
12169
  next?: string | undefined;
12088
12170
  };
12089
12171
  outputFormat: "json";
@@ -12132,7 +12214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12132
12214
  };
12133
12215
  };
12134
12216
  output: {
12135
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12217
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12136
12218
  date: string;
12137
12219
  isMobile: boolean;
12138
12220
  log_id: string;
@@ -12171,7 +12253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12171
12253
  limit: number;
12172
12254
  length: number;
12173
12255
  logs: {
12174
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12256
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12175
12257
  date: string;
12176
12258
  isMobile: boolean;
12177
12259
  log_id: string;
@@ -12490,7 +12572,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12490
12572
  };
12491
12573
  } & {
12492
12574
  json: {
12493
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12575
+ 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";
12494
12576
  body: string;
12495
12577
  from: string;
12496
12578
  subject: string;
@@ -12511,7 +12593,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12511
12593
  };
12512
12594
  } & {
12513
12595
  json: {
12514
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12596
+ 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";
12515
12597
  body: string;
12516
12598
  from: string;
12517
12599
  subject: string;
@@ -12523,7 +12605,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12523
12605
  };
12524
12606
  };
12525
12607
  output: {
12526
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12608
+ 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";
12527
12609
  body: string;
12528
12610
  from: string;
12529
12611
  subject: string;
@@ -12546,7 +12628,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12546
12628
  };
12547
12629
  };
12548
12630
  output: {
12549
- name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12631
+ 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";
12550
12632
  body: string;
12551
12633
  subject: string;
12552
12634
  }[];
@@ -12559,7 +12641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12559
12641
  $get: {
12560
12642
  input: {
12561
12643
  param: {
12562
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12644
+ 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";
12563
12645
  };
12564
12646
  } & {
12565
12647
  header: {
@@ -12572,7 +12654,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12572
12654
  } | {
12573
12655
  input: {
12574
12656
  param: {
12575
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12657
+ 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";
12576
12658
  };
12577
12659
  } & {
12578
12660
  header: {
@@ -12580,7 +12662,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12580
12662
  };
12581
12663
  };
12582
12664
  output: {
12583
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12665
+ 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";
12584
12666
  body: string;
12585
12667
  from: string;
12586
12668
  subject: string;
@@ -12599,7 +12681,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12599
12681
  $put: {
12600
12682
  input: {
12601
12683
  param: {
12602
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12684
+ 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";
12603
12685
  };
12604
12686
  } & {
12605
12687
  header: {
@@ -12607,7 +12689,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12607
12689
  };
12608
12690
  } & {
12609
12691
  json: {
12610
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12692
+ 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";
12611
12693
  body: string;
12612
12694
  subject: string;
12613
12695
  syntax?: "liquid" | undefined;
@@ -12619,7 +12701,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12619
12701
  };
12620
12702
  };
12621
12703
  output: {
12622
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12704
+ 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";
12623
12705
  body: string;
12624
12706
  from: string;
12625
12707
  subject: string;
@@ -12638,7 +12720,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12638
12720
  $patch: {
12639
12721
  input: {
12640
12722
  param: {
12641
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12723
+ 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";
12642
12724
  };
12643
12725
  } & {
12644
12726
  header: {
@@ -12646,7 +12728,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12646
12728
  };
12647
12729
  } & {
12648
12730
  json: {
12649
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12731
+ 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;
12650
12732
  body?: string | undefined;
12651
12733
  from?: string | undefined;
12652
12734
  subject?: string | undefined;
@@ -12663,7 +12745,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12663
12745
  } | {
12664
12746
  input: {
12665
12747
  param: {
12666
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12748
+ 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";
12667
12749
  };
12668
12750
  } & {
12669
12751
  header: {
@@ -12671,7 +12753,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12671
12753
  };
12672
12754
  } & {
12673
12755
  json: {
12674
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12756
+ 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;
12675
12757
  body?: string | undefined;
12676
12758
  from?: string | undefined;
12677
12759
  subject?: string | undefined;
@@ -12683,7 +12765,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12683
12765
  };
12684
12766
  };
12685
12767
  output: {
12686
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12768
+ 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";
12687
12769
  body: string;
12688
12770
  from: string;
12689
12771
  subject: string;
@@ -12702,7 +12784,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12702
12784
  $delete: {
12703
12785
  input: {
12704
12786
  param: {
12705
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12787
+ 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";
12706
12788
  };
12707
12789
  } & {
12708
12790
  header: {
@@ -12715,7 +12797,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12715
12797
  } | {
12716
12798
  input: {
12717
12799
  param: {
12718
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12800
+ 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";
12719
12801
  };
12720
12802
  } & {
12721
12803
  header: {
@@ -12732,7 +12814,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12732
12814
  $post: {
12733
12815
  input: {
12734
12816
  param: {
12735
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12817
+ 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";
12736
12818
  };
12737
12819
  } & {
12738
12820
  header: {
@@ -13015,7 +13097,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13015
13097
  type: "auth0_managed_certs" | "self_managed_certs";
13016
13098
  custom_domain_id: string;
13017
13099
  primary: boolean;
13018
- status: "disabled" | "pending" | "ready" | "pending_verification";
13100
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13019
13101
  verification_method?: "txt" | undefined;
13020
13102
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13021
13103
  domain_metadata?: {
@@ -13056,7 +13138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13056
13138
  type: "auth0_managed_certs" | "self_managed_certs";
13057
13139
  custom_domain_id: string;
13058
13140
  primary: boolean;
13059
- status: "disabled" | "pending" | "ready" | "pending_verification";
13141
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13060
13142
  verification_method?: "txt" | undefined;
13061
13143
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13062
13144
  domain_metadata?: {
@@ -13120,7 +13202,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13120
13202
  type: "auth0_managed_certs" | "self_managed_certs";
13121
13203
  custom_domain_id: string;
13122
13204
  primary: boolean;
13123
- status: "disabled" | "pending" | "ready" | "pending_verification";
13205
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13124
13206
  verification_method?: "txt" | undefined;
13125
13207
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13126
13208
  domain_metadata?: {
@@ -13167,7 +13249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13167
13249
  type: "auth0_managed_certs" | "self_managed_certs";
13168
13250
  custom_domain_id: string;
13169
13251
  primary: boolean;
13170
- status: "disabled" | "pending" | "ready" | "pending_verification";
13252
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13171
13253
  verification_method?: "txt" | undefined;
13172
13254
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13173
13255
  domain_metadata?: {
@@ -13213,7 +13295,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13213
13295
  type: "auth0_managed_certs" | "self_managed_certs";
13214
13296
  custom_domain_id: string;
13215
13297
  primary: boolean;
13216
- status: "disabled" | "pending" | "ready" | "pending_verification";
13298
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13217
13299
  verification_method?: "txt" | undefined;
13218
13300
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13219
13301
  domain_metadata?: {
@@ -13254,7 +13336,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13254
13336
  type: "auth0_managed_certs" | "self_managed_certs";
13255
13337
  custom_domain_id: string;
13256
13338
  primary: boolean;
13257
- status: "disabled" | "pending" | "ready" | "pending_verification";
13339
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13258
13340
  verification_method?: "txt" | undefined;
13259
13341
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13260
13342
  domain_metadata?: {