authhero 8.7.1 → 8.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 (42) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/index.esm.js +1 -1
  3. package/dist/assets/u/widget/p-52a70476.entry.js +1 -0
  4. package/dist/authhero.cjs +104 -103
  5. package/dist/authhero.d.ts +256 -212
  6. package/dist/authhero.mjs +9669 -9519
  7. package/dist/stats.html +1 -1
  8. package/dist/tsconfig.types.tsbuildinfo +1 -1
  9. package/dist/types/authentication-flows/passwordless.d.ts +4 -3
  10. package/dist/types/helpers/client.d.ts +1 -0
  11. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  12. package/dist/types/helpers/mutable-response.d.ts +38 -0
  13. package/dist/types/index.d.ts +194 -211
  14. package/dist/types/routes/auth-api/index.d.ts +26 -26
  15. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  16. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  17. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  18. package/dist/types/routes/auth-api/token.d.ts +10 -10
  19. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  20. package/dist/types/routes/management-api/clients.d.ts +7 -7
  21. package/dist/types/routes/management-api/connections.d.ts +1 -1
  22. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  23. package/dist/types/routes/management-api/forms.d.ts +126 -126
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/index.d.ts +162 -162
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  28. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  29. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  30. package/dist/types/routes/management-api/tenants.d.ts +207 -3
  31. package/dist/types/routes/management-api/users.d.ts +2 -2
  32. package/dist/types/routes/universal-login/common.d.ts +6 -2
  33. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  34. package/dist/types/routes/universal-login/screens/connect-authz.d.ts +41 -0
  35. package/dist/types/routes/universal-login/u2-index.d.ts +5 -23
  36. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -23
  37. package/dist/types/routes/universal-login/u2-widget-page.d.ts +6 -0
  38. package/dist/types/types/AuthHeroConfig.d.ts +21 -0
  39. package/dist/types/types/Bindings.d.ts +1 -0
  40. package/dist/types/types/IdToken.d.ts +2 -2
  41. package/package.json +5 -5
  42. package/dist/assets/u/widget/p-5a319adc.entry.js +0 -1
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
37
37
  };
38
38
  } & {
39
39
  json: {
40
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
40
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
41
41
  phone_number?: string | undefined;
42
42
  totp_secret?: string | undefined;
43
43
  credential_id?: string | undefined;
@@ -177,7 +177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
177
177
  };
178
178
  };
179
179
  output: {
180
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
180
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
181
181
  enabled: boolean;
182
182
  trial_expired?: boolean | undefined;
183
183
  }[];
@@ -332,7 +332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
332
332
  $get: {
333
333
  input: {
334
334
  param: {
335
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
335
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
336
336
  };
337
337
  } & {
338
338
  header: {
@@ -340,7 +340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
340
340
  };
341
341
  };
342
342
  output: {
343
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
343
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
344
344
  enabled: boolean;
345
345
  trial_expired?: boolean | undefined;
346
346
  };
@@ -353,7 +353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
353
353
  $put: {
354
354
  input: {
355
355
  param: {
356
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
356
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
357
357
  };
358
358
  } & {
359
359
  header: {
@@ -365,7 +365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
365
365
  };
366
366
  };
367
367
  output: {
368
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
368
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
369
369
  enabled: boolean;
370
370
  trial_expired?: boolean | undefined;
371
371
  };
@@ -1111,10 +1111,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1111
1111
  email?: string | undefined;
1112
1112
  };
1113
1113
  id?: string | undefined;
1114
+ roles?: string[] | undefined;
1114
1115
  app_metadata?: Record<string, any> | undefined;
1115
1116
  user_metadata?: Record<string, any> | undefined;
1116
1117
  connection_id?: string | undefined;
1117
- roles?: string[] | undefined;
1118
1118
  ttl_sec?: number | undefined;
1119
1119
  send_invitation_email?: boolean | undefined;
1120
1120
  };
@@ -2541,7 +2541,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2541
2541
  hint?: string | undefined;
2542
2542
  messages?: {
2543
2543
  text: string;
2544
- type: "error" | "success" | "info" | "warning";
2544
+ type: "success" | "error" | "info" | "warning";
2545
2545
  id?: number | undefined;
2546
2546
  }[] | undefined;
2547
2547
  required?: boolean | undefined;
@@ -2559,7 +2559,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2559
2559
  hint?: string | undefined;
2560
2560
  messages?: {
2561
2561
  text: string;
2562
- type: "error" | "success" | "info" | "warning";
2562
+ type: "success" | "error" | "info" | "warning";
2563
2563
  id?: number | undefined;
2564
2564
  }[] | undefined;
2565
2565
  required?: boolean | undefined;
@@ -2583,7 +2583,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2583
2583
  hint?: string | undefined;
2584
2584
  messages?: {
2585
2585
  text: string;
2586
- type: "error" | "success" | "info" | "warning";
2586
+ type: "success" | "error" | "info" | "warning";
2587
2587
  id?: number | undefined;
2588
2588
  }[] | undefined;
2589
2589
  required?: boolean | undefined;
@@ -2607,7 +2607,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2607
2607
  hint?: string | undefined;
2608
2608
  messages?: {
2609
2609
  text: string;
2610
- type: "error" | "success" | "info" | "warning";
2610
+ type: "success" | "error" | "info" | "warning";
2611
2611
  id?: number | undefined;
2612
2612
  }[] | undefined;
2613
2613
  required?: boolean | undefined;
@@ -2631,7 +2631,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2631
2631
  hint?: string | undefined;
2632
2632
  messages?: {
2633
2633
  text: string;
2634
- type: "error" | "success" | "info" | "warning";
2634
+ type: "success" | "error" | "info" | "warning";
2635
2635
  id?: number | undefined;
2636
2636
  }[] | undefined;
2637
2637
  required?: boolean | undefined;
@@ -2660,7 +2660,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2660
2660
  hint?: string | undefined;
2661
2661
  messages?: {
2662
2662
  text: string;
2663
- type: "error" | "success" | "info" | "warning";
2663
+ type: "success" | "error" | "info" | "warning";
2664
2664
  id?: number | undefined;
2665
2665
  }[] | undefined;
2666
2666
  required?: boolean | undefined;
@@ -2675,7 +2675,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2675
2675
  hint?: string | undefined;
2676
2676
  messages?: {
2677
2677
  text: string;
2678
- type: "error" | "success" | "info" | "warning";
2678
+ type: "success" | "error" | "info" | "warning";
2679
2679
  id?: number | undefined;
2680
2680
  }[] | undefined;
2681
2681
  required?: boolean | undefined;
@@ -2696,7 +2696,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2696
2696
  hint?: string | undefined;
2697
2697
  messages?: {
2698
2698
  text: string;
2699
- type: "error" | "success" | "info" | "warning";
2699
+ type: "success" | "error" | "info" | "warning";
2700
2700
  id?: number | undefined;
2701
2701
  }[] | undefined;
2702
2702
  required?: boolean | undefined;
@@ -2721,7 +2721,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2721
2721
  hint?: string | undefined;
2722
2722
  messages?: {
2723
2723
  text: string;
2724
- type: "error" | "success" | "info" | "warning";
2724
+ type: "success" | "error" | "info" | "warning";
2725
2725
  id?: number | undefined;
2726
2726
  }[] | undefined;
2727
2727
  required?: boolean | undefined;
@@ -2740,7 +2740,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2740
2740
  hint?: string | undefined;
2741
2741
  messages?: {
2742
2742
  text: string;
2743
- type: "error" | "success" | "info" | "warning";
2743
+ type: "success" | "error" | "info" | "warning";
2744
2744
  id?: number | undefined;
2745
2745
  }[] | undefined;
2746
2746
  required?: boolean | undefined;
@@ -2760,7 +2760,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2760
2760
  hint?: string | undefined;
2761
2761
  messages?: {
2762
2762
  text: string;
2763
- type: "error" | "success" | "info" | "warning";
2763
+ type: "success" | "error" | "info" | "warning";
2764
2764
  id?: number | undefined;
2765
2765
  }[] | undefined;
2766
2766
  required?: boolean | undefined;
@@ -2779,7 +2779,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2779
2779
  hint?: string | undefined;
2780
2780
  messages?: {
2781
2781
  text: string;
2782
- type: "error" | "success" | "info" | "warning";
2782
+ type: "success" | "error" | "info" | "warning";
2783
2783
  id?: number | undefined;
2784
2784
  }[] | undefined;
2785
2785
  required?: boolean | undefined;
@@ -2801,7 +2801,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2801
2801
  hint?: string | undefined;
2802
2802
  messages?: {
2803
2803
  text: string;
2804
- type: "error" | "success" | "info" | "warning";
2804
+ type: "success" | "error" | "info" | "warning";
2805
2805
  id?: number | undefined;
2806
2806
  }[] | undefined;
2807
2807
  required?: boolean | undefined;
@@ -2823,7 +2823,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2823
2823
  hint?: string | undefined;
2824
2824
  messages?: {
2825
2825
  text: string;
2826
- type: "error" | "success" | "info" | "warning";
2826
+ type: "success" | "error" | "info" | "warning";
2827
2827
  id?: number | undefined;
2828
2828
  }[] | undefined;
2829
2829
  required?: boolean | undefined;
@@ -2842,7 +2842,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2842
2842
  hint?: string | undefined;
2843
2843
  messages?: {
2844
2844
  text: string;
2845
- type: "error" | "success" | "info" | "warning";
2845
+ type: "success" | "error" | "info" | "warning";
2846
2846
  id?: number | undefined;
2847
2847
  }[] | undefined;
2848
2848
  required?: boolean | undefined;
@@ -2867,7 +2867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2867
2867
  hint?: string | undefined;
2868
2868
  messages?: {
2869
2869
  text: string;
2870
- type: "error" | "success" | "info" | "warning";
2870
+ type: "success" | "error" | "info" | "warning";
2871
2871
  id?: number | undefined;
2872
2872
  }[] | undefined;
2873
2873
  required?: boolean | undefined;
@@ -2888,7 +2888,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2888
2888
  hint?: string | undefined;
2889
2889
  messages?: {
2890
2890
  text: string;
2891
- type: "error" | "success" | "info" | "warning";
2891
+ type: "success" | "error" | "info" | "warning";
2892
2892
  id?: number | undefined;
2893
2893
  }[] | undefined;
2894
2894
  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;
@@ -3142,7 +3142,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3142
3142
  hint?: string | undefined;
3143
3143
  messages?: {
3144
3144
  text: string;
3145
- type: "error" | "success" | "info" | "warning";
3145
+ type: "success" | "error" | "info" | "warning";
3146
3146
  id?: number | undefined;
3147
3147
  }[] | undefined;
3148
3148
  required?: boolean | undefined;
@@ -3160,7 +3160,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3160
3160
  hint?: string | undefined;
3161
3161
  messages?: {
3162
3162
  text: string;
3163
- type: "error" | "success" | "info" | "warning";
3163
+ type: "success" | "error" | "info" | "warning";
3164
3164
  id?: number | undefined;
3165
3165
  }[] | undefined;
3166
3166
  required?: boolean | undefined;
@@ -3184,7 +3184,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3184
3184
  hint?: string | undefined;
3185
3185
  messages?: {
3186
3186
  text: string;
3187
- type: "error" | "success" | "info" | "warning";
3187
+ type: "success" | "error" | "info" | "warning";
3188
3188
  id?: number | undefined;
3189
3189
  }[] | undefined;
3190
3190
  required?: boolean | undefined;
@@ -3208,7 +3208,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3208
3208
  hint?: string | undefined;
3209
3209
  messages?: {
3210
3210
  text: string;
3211
- type: "error" | "success" | "info" | "warning";
3211
+ type: "success" | "error" | "info" | "warning";
3212
3212
  id?: number | undefined;
3213
3213
  }[] | undefined;
3214
3214
  required?: boolean | undefined;
@@ -3232,7 +3232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3232
3232
  hint?: string | undefined;
3233
3233
  messages?: {
3234
3234
  text: string;
3235
- type: "error" | "success" | "info" | "warning";
3235
+ type: "success" | "error" | "info" | "warning";
3236
3236
  id?: number | undefined;
3237
3237
  }[] | undefined;
3238
3238
  required?: boolean | undefined;
@@ -3261,7 +3261,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3261
3261
  hint?: string | undefined;
3262
3262
  messages?: {
3263
3263
  text: string;
3264
- type: "error" | "success" | "info" | "warning";
3264
+ type: "success" | "error" | "info" | "warning";
3265
3265
  id?: number | undefined;
3266
3266
  }[] | undefined;
3267
3267
  required?: boolean | undefined;
@@ -3276,7 +3276,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3276
3276
  hint?: string | undefined;
3277
3277
  messages?: {
3278
3278
  text: string;
3279
- type: "error" | "success" | "info" | "warning";
3279
+ type: "success" | "error" | "info" | "warning";
3280
3280
  id?: number | undefined;
3281
3281
  }[] | undefined;
3282
3282
  required?: boolean | undefined;
@@ -3297,7 +3297,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3297
3297
  hint?: string | undefined;
3298
3298
  messages?: {
3299
3299
  text: string;
3300
- type: "error" | "success" | "info" | "warning";
3300
+ type: "success" | "error" | "info" | "warning";
3301
3301
  id?: number | undefined;
3302
3302
  }[] | undefined;
3303
3303
  required?: boolean | undefined;
@@ -3322,7 +3322,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3322
3322
  hint?: string | undefined;
3323
3323
  messages?: {
3324
3324
  text: string;
3325
- type: "error" | "success" | "info" | "warning";
3325
+ type: "success" | "error" | "info" | "warning";
3326
3326
  id?: number | undefined;
3327
3327
  }[] | undefined;
3328
3328
  required?: boolean | undefined;
@@ -3341,7 +3341,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3341
3341
  hint?: string | undefined;
3342
3342
  messages?: {
3343
3343
  text: string;
3344
- type: "error" | "success" | "info" | "warning";
3344
+ type: "success" | "error" | "info" | "warning";
3345
3345
  id?: number | undefined;
3346
3346
  }[] | undefined;
3347
3347
  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;
@@ -3380,7 +3380,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3380
3380
  hint?: string | undefined;
3381
3381
  messages?: {
3382
3382
  text: string;
3383
- type: "error" | "success" | "info" | "warning";
3383
+ type: "success" | "error" | "info" | "warning";
3384
3384
  id?: number | undefined;
3385
3385
  }[] | undefined;
3386
3386
  required?: boolean | undefined;
@@ -3402,7 +3402,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3402
3402
  hint?: string | undefined;
3403
3403
  messages?: {
3404
3404
  text: string;
3405
- type: "error" | "success" | "info" | "warning";
3405
+ type: "success" | "error" | "info" | "warning";
3406
3406
  id?: number | undefined;
3407
3407
  }[] | undefined;
3408
3408
  required?: boolean | undefined;
@@ -3424,7 +3424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3424
3424
  hint?: string | undefined;
3425
3425
  messages?: {
3426
3426
  text: string;
3427
- type: "error" | "success" | "info" | "warning";
3427
+ type: "success" | "error" | "info" | "warning";
3428
3428
  id?: number | undefined;
3429
3429
  }[] | undefined;
3430
3430
  required?: boolean | undefined;
@@ -3443,7 +3443,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3443
3443
  hint?: string | undefined;
3444
3444
  messages?: {
3445
3445
  text: string;
3446
- type: "error" | "success" | "info" | "warning";
3446
+ type: "success" | "error" | "info" | "warning";
3447
3447
  id?: number | undefined;
3448
3448
  }[] | undefined;
3449
3449
  required?: boolean | undefined;
@@ -3468,7 +3468,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3468
3468
  hint?: string | undefined;
3469
3469
  messages?: {
3470
3470
  text: string;
3471
- type: "error" | "success" | "info" | "warning";
3471
+ type: "success" | "error" | "info" | "warning";
3472
3472
  id?: number | undefined;
3473
3473
  }[] | undefined;
3474
3474
  required?: boolean | undefined;
@@ -3489,7 +3489,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3489
3489
  hint?: string | undefined;
3490
3490
  messages?: {
3491
3491
  text: string;
3492
- type: "error" | "success" | "info" | "warning";
3492
+ type: "success" | "error" | "info" | "warning";
3493
3493
  id?: number | undefined;
3494
3494
  }[] | undefined;
3495
3495
  required?: boolean | undefined;
@@ -3510,7 +3510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3510
3510
  hint?: string | undefined;
3511
3511
  messages?: {
3512
3512
  text: string;
3513
- type: "error" | "success" | "info" | "warning";
3513
+ type: "success" | "error" | "info" | "warning";
3514
3514
  id?: number | undefined;
3515
3515
  }[] | undefined;
3516
3516
  required?: boolean | undefined;
@@ -3758,7 +3758,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3758
3758
  hint?: string | undefined;
3759
3759
  messages?: {
3760
3760
  text: string;
3761
- type: "error" | "success" | "info" | "warning";
3761
+ type: "success" | "error" | "info" | "warning";
3762
3762
  id?: number | undefined;
3763
3763
  }[] | undefined;
3764
3764
  required?: boolean | undefined;
@@ -3776,7 +3776,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3776
3776
  hint?: string | undefined;
3777
3777
  messages?: {
3778
3778
  text: string;
3779
- type: "error" | "success" | "info" | "warning";
3779
+ type: "success" | "error" | "info" | "warning";
3780
3780
  id?: number | undefined;
3781
3781
  }[] | undefined;
3782
3782
  required?: boolean | undefined;
@@ -3800,7 +3800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3800
3800
  hint?: string | undefined;
3801
3801
  messages?: {
3802
3802
  text: string;
3803
- type: "error" | "success" | "info" | "warning";
3803
+ type: "success" | "error" | "info" | "warning";
3804
3804
  id?: number | undefined;
3805
3805
  }[] | undefined;
3806
3806
  required?: boolean | undefined;
@@ -3824,7 +3824,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3824
3824
  hint?: string | undefined;
3825
3825
  messages?: {
3826
3826
  text: string;
3827
- type: "error" | "success" | "info" | "warning";
3827
+ type: "success" | "error" | "info" | "warning";
3828
3828
  id?: number | undefined;
3829
3829
  }[] | undefined;
3830
3830
  required?: boolean | undefined;
@@ -3848,7 +3848,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3848
3848
  hint?: string | undefined;
3849
3849
  messages?: {
3850
3850
  text: string;
3851
- type: "error" | "success" | "info" | "warning";
3851
+ type: "success" | "error" | "info" | "warning";
3852
3852
  id?: number | undefined;
3853
3853
  }[] | undefined;
3854
3854
  required?: boolean | undefined;
@@ -3877,7 +3877,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3877
3877
  hint?: string | undefined;
3878
3878
  messages?: {
3879
3879
  text: string;
3880
- type: "error" | "success" | "info" | "warning";
3880
+ type: "success" | "error" | "info" | "warning";
3881
3881
  id?: number | undefined;
3882
3882
  }[] | undefined;
3883
3883
  required?: boolean | undefined;
@@ -3892,7 +3892,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3892
3892
  hint?: string | undefined;
3893
3893
  messages?: {
3894
3894
  text: string;
3895
- type: "error" | "success" | "info" | "warning";
3895
+ type: "success" | "error" | "info" | "warning";
3896
3896
  id?: number | undefined;
3897
3897
  }[] | undefined;
3898
3898
  required?: boolean | undefined;
@@ -3913,7 +3913,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3913
3913
  hint?: string | undefined;
3914
3914
  messages?: {
3915
3915
  text: string;
3916
- type: "error" | "success" | "info" | "warning";
3916
+ type: "success" | "error" | "info" | "warning";
3917
3917
  id?: number | undefined;
3918
3918
  }[] | undefined;
3919
3919
  required?: boolean | undefined;
@@ -3938,7 +3938,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3938
3938
  hint?: string | undefined;
3939
3939
  messages?: {
3940
3940
  text: string;
3941
- type: "error" | "success" | "info" | "warning";
3941
+ type: "success" | "error" | "info" | "warning";
3942
3942
  id?: number | undefined;
3943
3943
  }[] | undefined;
3944
3944
  required?: boolean | undefined;
@@ -3957,7 +3957,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3957
3957
  hint?: string | undefined;
3958
3958
  messages?: {
3959
3959
  text: string;
3960
- type: "error" | "success" | "info" | "warning";
3960
+ type: "success" | "error" | "info" | "warning";
3961
3961
  id?: number | undefined;
3962
3962
  }[] | undefined;
3963
3963
  required?: boolean | undefined;
@@ -3977,7 +3977,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3977
3977
  hint?: string | undefined;
3978
3978
  messages?: {
3979
3979
  text: string;
3980
- type: "error" | "success" | "info" | "warning";
3980
+ type: "success" | "error" | "info" | "warning";
3981
3981
  id?: number | undefined;
3982
3982
  }[] | undefined;
3983
3983
  required?: boolean | undefined;
@@ -3996,7 +3996,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3996
3996
  hint?: string | undefined;
3997
3997
  messages?: {
3998
3998
  text: string;
3999
- type: "error" | "success" | "info" | "warning";
3999
+ type: "success" | "error" | "info" | "warning";
4000
4000
  id?: number | undefined;
4001
4001
  }[] | undefined;
4002
4002
  required?: boolean | undefined;
@@ -4018,7 +4018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4018
4018
  hint?: string | undefined;
4019
4019
  messages?: {
4020
4020
  text: string;
4021
- type: "error" | "success" | "info" | "warning";
4021
+ type: "success" | "error" | "info" | "warning";
4022
4022
  id?: number | undefined;
4023
4023
  }[] | undefined;
4024
4024
  required?: boolean | undefined;
@@ -4040,7 +4040,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4040
4040
  hint?: string | undefined;
4041
4041
  messages?: {
4042
4042
  text: string;
4043
- type: "error" | "success" | "info" | "warning";
4043
+ type: "success" | "error" | "info" | "warning";
4044
4044
  id?: number | undefined;
4045
4045
  }[] | undefined;
4046
4046
  required?: boolean | undefined;
@@ -4059,7 +4059,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4059
4059
  hint?: string | undefined;
4060
4060
  messages?: {
4061
4061
  text: string;
4062
- type: "error" | "success" | "info" | "warning";
4062
+ type: "success" | "error" | "info" | "warning";
4063
4063
  id?: number | undefined;
4064
4064
  }[] | undefined;
4065
4065
  required?: boolean | undefined;
@@ -4084,7 +4084,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4084
4084
  hint?: string | undefined;
4085
4085
  messages?: {
4086
4086
  text: string;
4087
- type: "error" | "success" | "info" | "warning";
4087
+ type: "success" | "error" | "info" | "warning";
4088
4088
  id?: number | undefined;
4089
4089
  }[] | undefined;
4090
4090
  required?: boolean | undefined;
@@ -4105,7 +4105,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4105
4105
  hint?: string | undefined;
4106
4106
  messages?: {
4107
4107
  text: string;
4108
- type: "error" | "success" | "info" | "warning";
4108
+ type: "success" | "error" | "info" | "warning";
4109
4109
  id?: number | undefined;
4110
4110
  }[] | undefined;
4111
4111
  required?: boolean | undefined;
@@ -4126,7 +4126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4126
4126
  hint?: string | undefined;
4127
4127
  messages?: {
4128
4128
  text: string;
4129
- type: "error" | "success" | "info" | "warning";
4129
+ type: "success" | "error" | "info" | "warning";
4130
4130
  id?: number | undefined;
4131
4131
  }[] | undefined;
4132
4132
  required?: boolean | undefined;
@@ -4380,7 +4380,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4380
4380
  hint?: string | undefined;
4381
4381
  messages?: {
4382
4382
  text: string;
4383
- type: "error" | "success" | "info" | "warning";
4383
+ type: "success" | "error" | "info" | "warning";
4384
4384
  id?: number | undefined;
4385
4385
  }[] | undefined;
4386
4386
  required?: boolean | undefined;
@@ -4398,7 +4398,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4398
4398
  hint?: string | undefined;
4399
4399
  messages?: {
4400
4400
  text: string;
4401
- type: "error" | "success" | "info" | "warning";
4401
+ type: "success" | "error" | "info" | "warning";
4402
4402
  id?: number | undefined;
4403
4403
  }[] | undefined;
4404
4404
  required?: boolean | undefined;
@@ -4422,7 +4422,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4422
4422
  hint?: string | undefined;
4423
4423
  messages?: {
4424
4424
  text: string;
4425
- type: "error" | "success" | "info" | "warning";
4425
+ type: "success" | "error" | "info" | "warning";
4426
4426
  id?: number | undefined;
4427
4427
  }[] | undefined;
4428
4428
  required?: boolean | undefined;
@@ -4446,7 +4446,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4446
4446
  hint?: string | undefined;
4447
4447
  messages?: {
4448
4448
  text: string;
4449
- type: "error" | "success" | "info" | "warning";
4449
+ type: "success" | "error" | "info" | "warning";
4450
4450
  id?: number | undefined;
4451
4451
  }[] | undefined;
4452
4452
  required?: boolean | undefined;
@@ -4470,7 +4470,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4470
4470
  hint?: string | undefined;
4471
4471
  messages?: {
4472
4472
  text: string;
4473
- type: "error" | "success" | "info" | "warning";
4473
+ type: "success" | "error" | "info" | "warning";
4474
4474
  id?: number | undefined;
4475
4475
  }[] | undefined;
4476
4476
  required?: boolean | undefined;
@@ -4495,7 +4495,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4495
4495
  hint?: string | undefined;
4496
4496
  messages?: {
4497
4497
  text: string;
4498
- type: "error" | "success" | "info" | "warning";
4498
+ type: "success" | "error" | "info" | "warning";
4499
4499
  id?: number | undefined;
4500
4500
  }[] | undefined;
4501
4501
  required?: boolean | undefined;
@@ -4510,7 +4510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4510
4510
  hint?: string | undefined;
4511
4511
  messages?: {
4512
4512
  text: string;
4513
- type: "error" | "success" | "info" | "warning";
4513
+ type: "success" | "error" | "info" | "warning";
4514
4514
  id?: number | undefined;
4515
4515
  }[] | undefined;
4516
4516
  required?: boolean | undefined;
@@ -4531,7 +4531,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4531
4531
  hint?: string | undefined;
4532
4532
  messages?: {
4533
4533
  text: string;
4534
- type: "error" | "success" | "info" | "warning";
4534
+ type: "success" | "error" | "info" | "warning";
4535
4535
  id?: number | undefined;
4536
4536
  }[] | undefined;
4537
4537
  required?: boolean | undefined;
@@ -4556,7 +4556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4556
4556
  hint?: string | undefined;
4557
4557
  messages?: {
4558
4558
  text: string;
4559
- type: "error" | "success" | "info" | "warning";
4559
+ type: "success" | "error" | "info" | "warning";
4560
4560
  id?: number | undefined;
4561
4561
  }[] | undefined;
4562
4562
  required?: boolean | undefined;
@@ -4575,7 +4575,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4575
4575
  hint?: string | undefined;
4576
4576
  messages?: {
4577
4577
  text: string;
4578
- type: "error" | "success" | "info" | "warning";
4578
+ type: "success" | "error" | "info" | "warning";
4579
4579
  id?: number | undefined;
4580
4580
  }[] | undefined;
4581
4581
  required?: boolean | undefined;
@@ -4595,7 +4595,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4595
4595
  hint?: string | undefined;
4596
4596
  messages?: {
4597
4597
  text: string;
4598
- type: "error" | "success" | "info" | "warning";
4598
+ type: "success" | "error" | "info" | "warning";
4599
4599
  id?: number | undefined;
4600
4600
  }[] | undefined;
4601
4601
  required?: boolean | undefined;
@@ -4614,7 +4614,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4614
4614
  hint?: string | undefined;
4615
4615
  messages?: {
4616
4616
  text: string;
4617
- type: "error" | "success" | "info" | "warning";
4617
+ type: "success" | "error" | "info" | "warning";
4618
4618
  id?: number | undefined;
4619
4619
  }[] | undefined;
4620
4620
  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;
@@ -4658,7 +4658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4658
4658
  hint?: string | undefined;
4659
4659
  messages?: {
4660
4660
  text: string;
4661
- type: "error" | "success" | "info" | "warning";
4661
+ type: "success" | "error" | "info" | "warning";
4662
4662
  id?: number | undefined;
4663
4663
  }[] | undefined;
4664
4664
  required?: boolean | undefined;
@@ -4677,7 +4677,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4677
4677
  hint?: string | undefined;
4678
4678
  messages?: {
4679
4679
  text: string;
4680
- type: "error" | "success" | "info" | "warning";
4680
+ type: "success" | "error" | "info" | "warning";
4681
4681
  id?: number | undefined;
4682
4682
  }[] | undefined;
4683
4683
  required?: boolean | undefined;
@@ -4702,7 +4702,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4702
4702
  hint?: string | undefined;
4703
4703
  messages?: {
4704
4704
  text: string;
4705
- type: "error" | "success" | "info" | "warning";
4705
+ type: "success" | "error" | "info" | "warning";
4706
4706
  id?: number | undefined;
4707
4707
  }[] | undefined;
4708
4708
  required?: boolean | undefined;
@@ -4723,7 +4723,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4723
4723
  hint?: string | undefined;
4724
4724
  messages?: {
4725
4725
  text: string;
4726
- type: "error" | "success" | "info" | "warning";
4726
+ type: "success" | "error" | "info" | "warning";
4727
4727
  id?: number | undefined;
4728
4728
  }[] | undefined;
4729
4729
  required?: boolean | undefined;
@@ -4744,7 +4744,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4744
4744
  hint?: string | undefined;
4745
4745
  messages?: {
4746
4746
  text: string;
4747
- type: "error" | "success" | "info" | "warning";
4747
+ type: "success" | "error" | "info" | "warning";
4748
4748
  id?: number | undefined;
4749
4749
  }[] | undefined;
4750
4750
  required?: boolean | undefined;
@@ -4975,7 +4975,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4975
4975
  hint?: string | undefined;
4976
4976
  messages?: {
4977
4977
  text: string;
4978
- type: "error" | "success" | "info" | "warning";
4978
+ type: "success" | "error" | "info" | "warning";
4979
4979
  id?: number | undefined;
4980
4980
  }[] | undefined;
4981
4981
  required?: boolean | undefined;
@@ -4993,7 +4993,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4993
4993
  hint?: string | undefined;
4994
4994
  messages?: {
4995
4995
  text: string;
4996
- type: "error" | "success" | "info" | "warning";
4996
+ type: "success" | "error" | "info" | "warning";
4997
4997
  id?: number | undefined;
4998
4998
  }[] | undefined;
4999
4999
  required?: boolean | undefined;
@@ -5017,7 +5017,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5017
5017
  hint?: string | undefined;
5018
5018
  messages?: {
5019
5019
  text: string;
5020
- type: "error" | "success" | "info" | "warning";
5020
+ type: "success" | "error" | "info" | "warning";
5021
5021
  id?: number | undefined;
5022
5022
  }[] | undefined;
5023
5023
  required?: boolean | undefined;
@@ -5041,7 +5041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5041
5041
  hint?: string | undefined;
5042
5042
  messages?: {
5043
5043
  text: string;
5044
- type: "error" | "success" | "info" | "warning";
5044
+ type: "success" | "error" | "info" | "warning";
5045
5045
  id?: number | undefined;
5046
5046
  }[] | undefined;
5047
5047
  required?: boolean | undefined;
@@ -5065,7 +5065,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5065
5065
  hint?: string | undefined;
5066
5066
  messages?: {
5067
5067
  text: string;
5068
- type: "error" | "success" | "info" | "warning";
5068
+ type: "success" | "error" | "info" | "warning";
5069
5069
  id?: number | undefined;
5070
5070
  }[] | undefined;
5071
5071
  required?: boolean | undefined;
@@ -5094,7 +5094,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5094
5094
  hint?: string | undefined;
5095
5095
  messages?: {
5096
5096
  text: string;
5097
- type: "error" | "success" | "info" | "warning";
5097
+ type: "success" | "error" | "info" | "warning";
5098
5098
  id?: number | undefined;
5099
5099
  }[] | undefined;
5100
5100
  required?: boolean | undefined;
@@ -5109,7 +5109,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5109
5109
  hint?: string | undefined;
5110
5110
  messages?: {
5111
5111
  text: string;
5112
- type: "error" | "success" | "info" | "warning";
5112
+ type: "success" | "error" | "info" | "warning";
5113
5113
  id?: number | undefined;
5114
5114
  }[] | undefined;
5115
5115
  required?: boolean | undefined;
@@ -5130,7 +5130,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5130
5130
  hint?: string | undefined;
5131
5131
  messages?: {
5132
5132
  text: string;
5133
- type: "error" | "success" | "info" | "warning";
5133
+ type: "success" | "error" | "info" | "warning";
5134
5134
  id?: number | undefined;
5135
5135
  }[] | undefined;
5136
5136
  required?: boolean | undefined;
@@ -5155,7 +5155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5155
5155
  hint?: string | undefined;
5156
5156
  messages?: {
5157
5157
  text: string;
5158
- type: "error" | "success" | "info" | "warning";
5158
+ type: "success" | "error" | "info" | "warning";
5159
5159
  id?: number | undefined;
5160
5160
  }[] | undefined;
5161
5161
  required?: boolean | undefined;
@@ -5174,7 +5174,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5174
5174
  hint?: string | undefined;
5175
5175
  messages?: {
5176
5176
  text: string;
5177
- type: "error" | "success" | "info" | "warning";
5177
+ type: "success" | "error" | "info" | "warning";
5178
5178
  id?: number | undefined;
5179
5179
  }[] | undefined;
5180
5180
  required?: boolean | undefined;
@@ -5194,7 +5194,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5194
5194
  hint?: string | undefined;
5195
5195
  messages?: {
5196
5196
  text: string;
5197
- type: "error" | "success" | "info" | "warning";
5197
+ type: "success" | "error" | "info" | "warning";
5198
5198
  id?: number | undefined;
5199
5199
  }[] | undefined;
5200
5200
  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;
@@ -5235,7 +5235,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5235
5235
  hint?: string | undefined;
5236
5236
  messages?: {
5237
5237
  text: string;
5238
- type: "error" | "success" | "info" | "warning";
5238
+ type: "success" | "error" | "info" | "warning";
5239
5239
  id?: number | undefined;
5240
5240
  }[] | undefined;
5241
5241
  required?: boolean | undefined;
@@ -5257,7 +5257,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5257
5257
  hint?: string | undefined;
5258
5258
  messages?: {
5259
5259
  text: string;
5260
- type: "error" | "success" | "info" | "warning";
5260
+ type: "success" | "error" | "info" | "warning";
5261
5261
  id?: number | undefined;
5262
5262
  }[] | undefined;
5263
5263
  required?: boolean | undefined;
@@ -5276,7 +5276,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5276
5276
  hint?: string | undefined;
5277
5277
  messages?: {
5278
5278
  text: string;
5279
- type: "error" | "success" | "info" | "warning";
5279
+ type: "success" | "error" | "info" | "warning";
5280
5280
  id?: number | undefined;
5281
5281
  }[] | undefined;
5282
5282
  required?: boolean | undefined;
@@ -5301,7 +5301,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5301
5301
  hint?: string | undefined;
5302
5302
  messages?: {
5303
5303
  text: string;
5304
- type: "error" | "success" | "info" | "warning";
5304
+ type: "success" | "error" | "info" | "warning";
5305
5305
  id?: number | undefined;
5306
5306
  }[] | undefined;
5307
5307
  required?: boolean | undefined;
@@ -5322,7 +5322,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5322
5322
  hint?: string | undefined;
5323
5323
  messages?: {
5324
5324
  text: string;
5325
- type: "error" | "success" | "info" | "warning";
5325
+ type: "success" | "error" | "info" | "warning";
5326
5326
  id?: number | undefined;
5327
5327
  }[] | undefined;
5328
5328
  required?: boolean | undefined;
@@ -5343,7 +5343,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5343
5343
  hint?: string | undefined;
5344
5344
  messages?: {
5345
5345
  text: string;
5346
- type: "error" | "success" | "info" | "warning";
5346
+ type: "success" | "error" | "info" | "warning";
5347
5347
  id?: number | undefined;
5348
5348
  }[] | undefined;
5349
5349
  required?: boolean | undefined;
@@ -5576,7 +5576,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5576
5576
  hint?: string | undefined;
5577
5577
  messages?: {
5578
5578
  text: string;
5579
- type: "error" | "success" | "info" | "warning";
5579
+ type: "success" | "error" | "info" | "warning";
5580
5580
  id?: number | undefined;
5581
5581
  }[] | undefined;
5582
5582
  required?: boolean | undefined;
@@ -5594,7 +5594,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5594
5594
  hint?: string | undefined;
5595
5595
  messages?: {
5596
5596
  text: string;
5597
- type: "error" | "success" | "info" | "warning";
5597
+ type: "success" | "error" | "info" | "warning";
5598
5598
  id?: number | undefined;
5599
5599
  }[] | undefined;
5600
5600
  required?: boolean | undefined;
@@ -5618,7 +5618,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5618
5618
  hint?: string | undefined;
5619
5619
  messages?: {
5620
5620
  text: string;
5621
- type: "error" | "success" | "info" | "warning";
5621
+ type: "success" | "error" | "info" | "warning";
5622
5622
  id?: number | undefined;
5623
5623
  }[] | undefined;
5624
5624
  required?: boolean | undefined;
@@ -5642,7 +5642,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5642
5642
  hint?: string | undefined;
5643
5643
  messages?: {
5644
5644
  text: string;
5645
- type: "error" | "success" | "info" | "warning";
5645
+ type: "success" | "error" | "info" | "warning";
5646
5646
  id?: number | undefined;
5647
5647
  }[] | undefined;
5648
5648
  required?: boolean | undefined;
@@ -5666,7 +5666,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5666
5666
  hint?: string | undefined;
5667
5667
  messages?: {
5668
5668
  text: string;
5669
- type: "error" | "success" | "info" | "warning";
5669
+ type: "success" | "error" | "info" | "warning";
5670
5670
  id?: number | undefined;
5671
5671
  }[] | undefined;
5672
5672
  required?: boolean | undefined;
@@ -5691,7 +5691,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5691
5691
  hint?: string | undefined;
5692
5692
  messages?: {
5693
5693
  text: string;
5694
- type: "error" | "success" | "info" | "warning";
5694
+ type: "success" | "error" | "info" | "warning";
5695
5695
  id?: number | undefined;
5696
5696
  }[] | undefined;
5697
5697
  required?: boolean | undefined;
@@ -5706,7 +5706,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5706
5706
  hint?: string | undefined;
5707
5707
  messages?: {
5708
5708
  text: string;
5709
- type: "error" | "success" | "info" | "warning";
5709
+ type: "success" | "error" | "info" | "warning";
5710
5710
  id?: number | undefined;
5711
5711
  }[] | undefined;
5712
5712
  required?: boolean | undefined;
@@ -5727,7 +5727,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5727
5727
  hint?: string | undefined;
5728
5728
  messages?: {
5729
5729
  text: string;
5730
- type: "error" | "success" | "info" | "warning";
5730
+ type: "success" | "error" | "info" | "warning";
5731
5731
  id?: number | undefined;
5732
5732
  }[] | undefined;
5733
5733
  required?: boolean | undefined;
@@ -5752,7 +5752,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5752
5752
  hint?: string | undefined;
5753
5753
  messages?: {
5754
5754
  text: string;
5755
- type: "error" | "success" | "info" | "warning";
5755
+ type: "success" | "error" | "info" | "warning";
5756
5756
  id?: number | undefined;
5757
5757
  }[] | undefined;
5758
5758
  required?: boolean | undefined;
@@ -5771,7 +5771,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5771
5771
  hint?: string | undefined;
5772
5772
  messages?: {
5773
5773
  text: string;
5774
- type: "error" | "success" | "info" | "warning";
5774
+ type: "success" | "error" | "info" | "warning";
5775
5775
  id?: number | undefined;
5776
5776
  }[] | undefined;
5777
5777
  required?: boolean | undefined;
@@ -5791,7 +5791,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5791
5791
  hint?: string | undefined;
5792
5792
  messages?: {
5793
5793
  text: string;
5794
- type: "error" | "success" | "info" | "warning";
5794
+ type: "success" | "error" | "info" | "warning";
5795
5795
  id?: number | undefined;
5796
5796
  }[] | undefined;
5797
5797
  required?: boolean | undefined;
@@ -5810,7 +5810,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5810
5810
  hint?: string | undefined;
5811
5811
  messages?: {
5812
5812
  text: string;
5813
- type: "error" | "success" | "info" | "warning";
5813
+ type: "success" | "error" | "info" | "warning";
5814
5814
  id?: number | undefined;
5815
5815
  }[] | undefined;
5816
5816
  required?: boolean | undefined;
@@ -5832,7 +5832,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5832
5832
  hint?: string | undefined;
5833
5833
  messages?: {
5834
5834
  text: string;
5835
- type: "error" | "success" | "info" | "warning";
5835
+ type: "success" | "error" | "info" | "warning";
5836
5836
  id?: number | undefined;
5837
5837
  }[] | undefined;
5838
5838
  required?: boolean | undefined;
@@ -5854,7 +5854,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5854
5854
  hint?: string | undefined;
5855
5855
  messages?: {
5856
5856
  text: string;
5857
- type: "error" | "success" | "info" | "warning";
5857
+ type: "success" | "error" | "info" | "warning";
5858
5858
  id?: number | undefined;
5859
5859
  }[] | undefined;
5860
5860
  required?: boolean | undefined;
@@ -5873,7 +5873,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5873
5873
  hint?: string | undefined;
5874
5874
  messages?: {
5875
5875
  text: string;
5876
- type: "error" | "success" | "info" | "warning";
5876
+ type: "success" | "error" | "info" | "warning";
5877
5877
  id?: number | undefined;
5878
5878
  }[] | undefined;
5879
5879
  required?: boolean | undefined;
@@ -5898,7 +5898,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5898
5898
  hint?: string | undefined;
5899
5899
  messages?: {
5900
5900
  text: string;
5901
- type: "error" | "success" | "info" | "warning";
5901
+ type: "success" | "error" | "info" | "warning";
5902
5902
  id?: number | undefined;
5903
5903
  }[] | undefined;
5904
5904
  required?: boolean | undefined;
@@ -5919,7 +5919,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5919
5919
  hint?: string | undefined;
5920
5920
  messages?: {
5921
5921
  text: string;
5922
- type: "error" | "success" | "info" | "warning";
5922
+ type: "success" | "error" | "info" | "warning";
5923
5923
  id?: number | undefined;
5924
5924
  }[] | undefined;
5925
5925
  required?: boolean | undefined;
@@ -5940,7 +5940,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5940
5940
  hint?: string | undefined;
5941
5941
  messages?: {
5942
5942
  text: string;
5943
- type: "error" | "success" | "info" | "warning";
5943
+ type: "success" | "error" | "info" | "warning";
5944
5944
  id?: number | undefined;
5945
5945
  }[] | undefined;
5946
5946
  required?: boolean | undefined;
@@ -6171,7 +6171,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6171
6171
  hint?: string | undefined;
6172
6172
  messages?: {
6173
6173
  text: string;
6174
- type: "error" | "success" | "info" | "warning";
6174
+ type: "success" | "error" | "info" | "warning";
6175
6175
  id?: number | undefined;
6176
6176
  }[] | undefined;
6177
6177
  required?: boolean | undefined;
@@ -6189,7 +6189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6189
6189
  hint?: string | undefined;
6190
6190
  messages?: {
6191
6191
  text: string;
6192
- type: "error" | "success" | "info" | "warning";
6192
+ type: "success" | "error" | "info" | "warning";
6193
6193
  id?: number | undefined;
6194
6194
  }[] | undefined;
6195
6195
  required?: boolean | undefined;
@@ -6213,7 +6213,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6213
6213
  hint?: string | undefined;
6214
6214
  messages?: {
6215
6215
  text: string;
6216
- type: "error" | "success" | "info" | "warning";
6216
+ type: "success" | "error" | "info" | "warning";
6217
6217
  id?: number | undefined;
6218
6218
  }[] | undefined;
6219
6219
  required?: boolean | undefined;
@@ -6237,7 +6237,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6237
6237
  hint?: string | undefined;
6238
6238
  messages?: {
6239
6239
  text: string;
6240
- type: "error" | "success" | "info" | "warning";
6240
+ type: "success" | "error" | "info" | "warning";
6241
6241
  id?: number | undefined;
6242
6242
  }[] | undefined;
6243
6243
  required?: boolean | undefined;
@@ -6261,7 +6261,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6261
6261
  hint?: string | undefined;
6262
6262
  messages?: {
6263
6263
  text: string;
6264
- type: "error" | "success" | "info" | "warning";
6264
+ type: "success" | "error" | "info" | "warning";
6265
6265
  id?: number | undefined;
6266
6266
  }[] | undefined;
6267
6267
  required?: boolean | undefined;
@@ -6290,7 +6290,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6290
6290
  hint?: string | undefined;
6291
6291
  messages?: {
6292
6292
  text: string;
6293
- type: "error" | "success" | "info" | "warning";
6293
+ type: "success" | "error" | "info" | "warning";
6294
6294
  id?: number | undefined;
6295
6295
  }[] | undefined;
6296
6296
  required?: boolean | undefined;
@@ -6305,7 +6305,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6305
6305
  hint?: string | undefined;
6306
6306
  messages?: {
6307
6307
  text: string;
6308
- type: "error" | "success" | "info" | "warning";
6308
+ type: "success" | "error" | "info" | "warning";
6309
6309
  id?: number | undefined;
6310
6310
  }[] | undefined;
6311
6311
  required?: boolean | undefined;
@@ -6326,7 +6326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6326
6326
  hint?: string | undefined;
6327
6327
  messages?: {
6328
6328
  text: string;
6329
- type: "error" | "success" | "info" | "warning";
6329
+ type: "success" | "error" | "info" | "warning";
6330
6330
  id?: number | undefined;
6331
6331
  }[] | undefined;
6332
6332
  required?: boolean | undefined;
@@ -6351,7 +6351,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6351
6351
  hint?: string | undefined;
6352
6352
  messages?: {
6353
6353
  text: string;
6354
- type: "error" | "success" | "info" | "warning";
6354
+ type: "success" | "error" | "info" | "warning";
6355
6355
  id?: number | undefined;
6356
6356
  }[] | undefined;
6357
6357
  required?: boolean | undefined;
@@ -6370,7 +6370,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6370
6370
  hint?: string | undefined;
6371
6371
  messages?: {
6372
6372
  text: string;
6373
- type: "error" | "success" | "info" | "warning";
6373
+ type: "success" | "error" | "info" | "warning";
6374
6374
  id?: number | undefined;
6375
6375
  }[] | undefined;
6376
6376
  required?: boolean | undefined;
@@ -6390,7 +6390,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6390
6390
  hint?: string | undefined;
6391
6391
  messages?: {
6392
6392
  text: string;
6393
- type: "error" | "success" | "info" | "warning";
6393
+ type: "success" | "error" | "info" | "warning";
6394
6394
  id?: number | undefined;
6395
6395
  }[] | undefined;
6396
6396
  required?: boolean | undefined;
@@ -6409,7 +6409,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6409
6409
  hint?: string | undefined;
6410
6410
  messages?: {
6411
6411
  text: string;
6412
- type: "error" | "success" | "info" | "warning";
6412
+ type: "success" | "error" | "info" | "warning";
6413
6413
  id?: number | undefined;
6414
6414
  }[] | undefined;
6415
6415
  required?: boolean | undefined;
@@ -6431,7 +6431,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6431
6431
  hint?: string | undefined;
6432
6432
  messages?: {
6433
6433
  text: string;
6434
- type: "error" | "success" | "info" | "warning";
6434
+ type: "success" | "error" | "info" | "warning";
6435
6435
  id?: number | undefined;
6436
6436
  }[] | undefined;
6437
6437
  required?: boolean | undefined;
@@ -6453,7 +6453,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6453
6453
  hint?: string | undefined;
6454
6454
  messages?: {
6455
6455
  text: string;
6456
- type: "error" | "success" | "info" | "warning";
6456
+ type: "success" | "error" | "info" | "warning";
6457
6457
  id?: number | undefined;
6458
6458
  }[] | undefined;
6459
6459
  required?: boolean | undefined;
@@ -6472,7 +6472,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6472
6472
  hint?: string | undefined;
6473
6473
  messages?: {
6474
6474
  text: string;
6475
- type: "error" | "success" | "info" | "warning";
6475
+ type: "success" | "error" | "info" | "warning";
6476
6476
  id?: number | undefined;
6477
6477
  }[] | undefined;
6478
6478
  required?: boolean | undefined;
@@ -6497,7 +6497,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6497
6497
  hint?: string | undefined;
6498
6498
  messages?: {
6499
6499
  text: string;
6500
- type: "error" | "success" | "info" | "warning";
6500
+ type: "success" | "error" | "info" | "warning";
6501
6501
  id?: number | undefined;
6502
6502
  }[] | undefined;
6503
6503
  required?: boolean | undefined;
@@ -6518,7 +6518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6518
6518
  hint?: string | undefined;
6519
6519
  messages?: {
6520
6520
  text: string;
6521
- type: "error" | "success" | "info" | "warning";
6521
+ type: "success" | "error" | "info" | "warning";
6522
6522
  id?: number | undefined;
6523
6523
  }[] | undefined;
6524
6524
  required?: boolean | undefined;
@@ -6539,7 +6539,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6539
6539
  hint?: string | undefined;
6540
6540
  messages?: {
6541
6541
  text: string;
6542
- type: "error" | "success" | "info" | "warning";
6542
+ type: "success" | "error" | "info" | "warning";
6543
6543
  id?: number | undefined;
6544
6544
  }[] | undefined;
6545
6545
  required?: boolean | undefined;
@@ -6769,7 +6769,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6769
6769
  };
6770
6770
  };
6771
6771
  output: {
6772
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6772
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
6773
6773
  language: string;
6774
6774
  }[];
6775
6775
  outputFormat: "json";
@@ -6807,7 +6807,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6807
6807
  $get: {
6808
6808
  input: {
6809
6809
  param: {
6810
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6810
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
6811
6811
  language: string;
6812
6812
  };
6813
6813
  } & {
@@ -6829,7 +6829,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6829
6829
  $put: {
6830
6830
  input: {
6831
6831
  param: {
6832
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6832
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
6833
6833
  language: string;
6834
6834
  };
6835
6835
  } & {
@@ -6853,7 +6853,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6853
6853
  $delete: {
6854
6854
  input: {
6855
6855
  param: {
6856
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6856
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
6857
6857
  language: string;
6858
6858
  };
6859
6859
  } & {
@@ -7715,7 +7715,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7715
7715
  };
7716
7716
  } | {
7717
7717
  mode: "inline";
7718
- status: "error" | "success";
7718
+ status: "success" | "error";
7719
7719
  connection_id: string;
7720
7720
  connection_name: string;
7721
7721
  strategy: string;
@@ -8662,7 +8662,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8662
8662
  created_at: string;
8663
8663
  updated_at: string;
8664
8664
  name: string;
8665
- provider: "auth0" | "oidc" | "okta" | "cognito";
8665
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8666
8666
  connection: string;
8667
8667
  enabled: boolean;
8668
8668
  credentials: {
@@ -8694,7 +8694,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8694
8694
  created_at: string;
8695
8695
  updated_at: string;
8696
8696
  name: string;
8697
- provider: "auth0" | "oidc" | "okta" | "cognito";
8697
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8698
8698
  connection: string;
8699
8699
  enabled: boolean;
8700
8700
  credentials: {
@@ -8720,7 +8720,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8720
8720
  } & {
8721
8721
  json: {
8722
8722
  name: string;
8723
- provider: "auth0" | "oidc" | "okta" | "cognito";
8723
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8724
8724
  connection: string;
8725
8725
  credentials: {
8726
8726
  domain: string;
@@ -8737,7 +8737,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8737
8737
  created_at: string;
8738
8738
  updated_at: string;
8739
8739
  name: string;
8740
- provider: "auth0" | "oidc" | "okta" | "cognito";
8740
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8741
8741
  connection: string;
8742
8742
  enabled: boolean;
8743
8743
  credentials: {
@@ -8768,7 +8768,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8768
8768
  json: {
8769
8769
  id?: string | undefined;
8770
8770
  name?: string | undefined;
8771
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8771
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8772
8772
  connection?: string | undefined;
8773
8773
  enabled?: boolean | undefined;
8774
8774
  credentials?: {
@@ -8784,7 +8784,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8784
8784
  created_at: string;
8785
8785
  updated_at: string;
8786
8786
  name: string;
8787
- provider: "auth0" | "oidc" | "okta" | "cognito";
8787
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8788
8788
  connection: string;
8789
8789
  enabled: boolean;
8790
8790
  credentials: {
@@ -9002,7 +9002,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9002
9002
  };
9003
9003
  };
9004
9004
  output: {
9005
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
9005
+ 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";
9006
9006
  date: string;
9007
9007
  isMobile: boolean;
9008
9008
  log_id: string;
@@ -9041,7 +9041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9041
9041
  limit: number;
9042
9042
  length: number;
9043
9043
  logs: {
9044
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
9044
+ 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";
9045
9045
  date: string;
9046
9046
  isMobile: boolean;
9047
9047
  log_id: string;
@@ -9095,7 +9095,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9095
9095
  };
9096
9096
  };
9097
9097
  output: {
9098
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
9098
+ 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";
9099
9099
  date: string;
9100
9100
  isMobile: boolean;
9101
9101
  log_id: string;
@@ -9483,7 +9483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9483
9483
  addons?: {
9484
9484
  [x: string]: any;
9485
9485
  } | undefined;
9486
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9486
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9487
9487
  client_metadata?: {
9488
9488
  [x: string]: string;
9489
9489
  } | undefined;
@@ -9579,7 +9579,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9579
9579
  addons?: {
9580
9580
  [x: string]: any;
9581
9581
  } | undefined;
9582
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9582
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9583
9583
  client_metadata?: {
9584
9584
  [x: string]: string;
9585
9585
  } | undefined;
@@ -9690,7 +9690,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9690
9690
  addons?: {
9691
9691
  [x: string]: any;
9692
9692
  } | undefined;
9693
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9693
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9694
9694
  client_metadata?: {
9695
9695
  [x: string]: string;
9696
9696
  } | undefined;
@@ -9800,7 +9800,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9800
9800
  custom_login_page_preview?: string | undefined;
9801
9801
  form_template?: string | undefined;
9802
9802
  addons?: Record<string, any> | undefined;
9803
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9803
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9804
9804
  client_metadata?: Record<string, string> | undefined;
9805
9805
  hide_sign_up_disabled_error?: boolean | undefined;
9806
9806
  mobile?: Record<string, any> | undefined;
@@ -9880,7 +9880,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9880
9880
  addons?: {
9881
9881
  [x: string]: any;
9882
9882
  } | undefined;
9883
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9883
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9884
9884
  client_metadata?: {
9885
9885
  [x: string]: string;
9886
9886
  } | undefined;
@@ -9969,7 +9969,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9969
9969
  custom_login_page_preview?: string | undefined;
9970
9970
  form_template?: string | undefined;
9971
9971
  addons?: Record<string, any> | undefined;
9972
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9972
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9973
9973
  client_metadata?: Record<string, string> | undefined;
9974
9974
  hide_sign_up_disabled_error?: boolean | undefined;
9975
9975
  mobile?: Record<string, any> | undefined;
@@ -10049,7 +10049,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10049
10049
  addons?: {
10050
10050
  [x: string]: any;
10051
10051
  } | undefined;
10052
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10052
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10053
10053
  client_metadata?: {
10054
10054
  [x: string]: string;
10055
10055
  } | undefined;
@@ -11313,7 +11313,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11313
11313
  };
11314
11314
  };
11315
11315
  output: {
11316
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
11316
+ 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";
11317
11317
  date: string;
11318
11318
  isMobile: boolean;
11319
11319
  log_id: string;
@@ -11352,7 +11352,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11352
11352
  limit: number;
11353
11353
  length: number;
11354
11354
  logs: {
11355
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
11355
+ 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";
11356
11356
  date: string;
11357
11357
  isMobile: boolean;
11358
11358
  log_id: string;
@@ -12192,7 +12192,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12192
12192
  type: "auth0_managed_certs" | "self_managed_certs";
12193
12193
  custom_domain_id: string;
12194
12194
  primary: boolean;
12195
- status: "pending" | "ready" | "disabled" | "pending_verification";
12195
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12196
12196
  verification_method?: "txt" | undefined;
12197
12197
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12198
12198
  domain_metadata?: {
@@ -12233,7 +12233,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12233
12233
  type: "auth0_managed_certs" | "self_managed_certs";
12234
12234
  custom_domain_id: string;
12235
12235
  primary: boolean;
12236
- status: "pending" | "ready" | "disabled" | "pending_verification";
12236
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12237
12237
  verification_method?: "txt" | undefined;
12238
12238
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12239
12239
  domain_metadata?: {
@@ -12297,7 +12297,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12297
12297
  type: "auth0_managed_certs" | "self_managed_certs";
12298
12298
  custom_domain_id: string;
12299
12299
  primary: boolean;
12300
- status: "pending" | "ready" | "disabled" | "pending_verification";
12300
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12301
12301
  verification_method?: "txt" | undefined;
12302
12302
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12303
12303
  domain_metadata?: {
@@ -12344,7 +12344,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12344
12344
  type: "auth0_managed_certs" | "self_managed_certs";
12345
12345
  custom_domain_id: string;
12346
12346
  primary: boolean;
12347
- status: "pending" | "ready" | "disabled" | "pending_verification";
12347
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12348
12348
  verification_method?: "txt" | undefined;
12349
12349
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12350
12350
  domain_metadata?: {
@@ -12390,7 +12390,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12390
12390
  type: "auth0_managed_certs" | "self_managed_certs";
12391
12391
  custom_domain_id: string;
12392
12392
  primary: boolean;
12393
- status: "pending" | "ready" | "disabled" | "pending_verification";
12393
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12394
12394
  verification_method?: "txt" | undefined;
12395
12395
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12396
12396
  domain_metadata?: {
@@ -12431,7 +12431,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12431
12431
  type: "auth0_managed_certs" | "self_managed_certs";
12432
12432
  custom_domain_id: string;
12433
12433
  primary: boolean;
12434
- status: "pending" | "ready" | "disabled" | "pending_verification";
12434
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12435
12435
  verification_method?: "txt" | undefined;
12436
12436
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12437
12437
  domain_metadata?: {