authhero 5.16.0 → 5.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist/authhero.cjs +70 -70
  2. package/dist/authhero.d.ts +315 -265
  3. package/dist/authhero.mjs +4304 -4265
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +2 -2
  7. package/dist/types/emails/defaults/Layout.d.ts +1 -1
  8. package/dist/types/emails/defaults/PrimaryButton.d.ts +1 -1
  9. package/dist/types/emails/defaults/ResetEmail.d.ts +1 -1
  10. package/dist/types/emails/defaults/ResetEmailByCode.d.ts +1 -1
  11. package/dist/types/emails/defaults/UserInvitation.d.ts +1 -1
  12. package/dist/types/emails/defaults/VerifyEmail.d.ts +1 -1
  13. package/dist/types/emails/defaults/VerifyEmailByCode.d.ts +1 -1
  14. package/dist/types/emails/defaults/WelcomeEmail.d.ts +1 -1
  15. package/dist/types/index.d.ts +239 -238
  16. package/dist/types/middlewares/authentication.d.ts +17 -0
  17. package/dist/types/routes/auth-api/authorize.d.ts +12 -12
  18. package/dist/types/routes/auth-api/index.d.ts +54 -54
  19. package/dist/types/routes/auth-api/oidc-logout.d.ts +3 -3
  20. package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
  21. package/dist/types/routes/auth-api/token.d.ts +21 -21
  22. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  23. package/dist/types/routes/management-api/actions.d.ts +1 -1
  24. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  25. package/dist/types/routes/management-api/branding.d.ts +8 -8
  26. package/dist/types/routes/management-api/connections.d.ts +1 -1
  27. package/dist/types/routes/management-api/email-templates.d.ts +14 -14
  28. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  29. package/dist/types/routes/management-api/forms.d.ts +119 -119
  30. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  31. package/dist/types/routes/management-api/index.d.ts +169 -169
  32. package/dist/types/routes/management-api/logs.d.ts +3 -3
  33. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  34. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  35. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  36. package/dist/types/routes/management-api/themes.d.ts +3 -3
  37. package/dist/types/routes/management-api/users.d.ts +2 -2
  38. package/dist/types/routes/universal-login/common.d.ts +4 -4
  39. package/dist/types/routes/universal-login/continue.d.ts +2 -2
  40. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  41. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  42. package/dist/types/routes/universal-login/impersonate.d.ts +4 -4
  43. package/dist/types/routes/universal-login/index.d.ts +8 -8
  44. package/dist/types/routes/universal-login/u2-index.d.ts +7 -7
  45. package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
  46. package/dist/types/types/AuthHeroConfig.d.ts +33 -0
  47. package/dist/types/types/Hooks.d.ts +1 -1
  48. package/dist/types/types/IdToken.d.ts +1 -1
  49. package/dist/types/types/Variables.d.ts +1 -0
  50. package/package.json +3 -3
@@ -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" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
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" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
369
369
  enabled: boolean;
370
370
  trial_expired?: boolean | undefined;
371
371
  };
@@ -1110,10 +1110,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1110
1110
  invitee: {
1111
1111
  email?: string | undefined;
1112
1112
  };
1113
- id?: string | undefined;
1114
- connection_id?: string | undefined;
1115
1113
  app_metadata?: Record<string, any> | undefined;
1116
1114
  user_metadata?: Record<string, any> | undefined;
1115
+ connection_id?: string | undefined;
1116
+ id?: string | undefined;
1117
1117
  roles?: string[] | undefined;
1118
1118
  ttl_sec?: number | undefined;
1119
1119
  send_invitation_email?: boolean | undefined;
@@ -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;
@@ -2636,7 +2636,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2636
2636
  hint?: string | undefined;
2637
2637
  messages?: {
2638
2638
  text: string;
2639
- type: "error" | "success" | "info" | "warning";
2639
+ type: "success" | "error" | "info" | "warning";
2640
2640
  id?: number | undefined;
2641
2641
  }[] | undefined;
2642
2642
  required?: boolean | undefined;
@@ -2651,7 +2651,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2651
2651
  hint?: string | undefined;
2652
2652
  messages?: {
2653
2653
  text: string;
2654
- type: "error" | "success" | "info" | "warning";
2654
+ type: "success" | "error" | "info" | "warning";
2655
2655
  id?: number | undefined;
2656
2656
  }[] | undefined;
2657
2657
  required?: boolean | undefined;
@@ -2672,7 +2672,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2672
2672
  hint?: string | undefined;
2673
2673
  messages?: {
2674
2674
  text: string;
2675
- type: "error" | "success" | "info" | "warning";
2675
+ type: "success" | "error" | "info" | "warning";
2676
2676
  id?: number | undefined;
2677
2677
  }[] | undefined;
2678
2678
  required?: boolean | undefined;
@@ -2697,7 +2697,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2697
2697
  hint?: string | undefined;
2698
2698
  messages?: {
2699
2699
  text: string;
2700
- type: "error" | "success" | "info" | "warning";
2700
+ type: "success" | "error" | "info" | "warning";
2701
2701
  id?: number | undefined;
2702
2702
  }[] | undefined;
2703
2703
  required?: boolean | undefined;
@@ -2716,7 +2716,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2716
2716
  hint?: string | undefined;
2717
2717
  messages?: {
2718
2718
  text: string;
2719
- type: "error" | "success" | "info" | "warning";
2719
+ type: "success" | "error" | "info" | "warning";
2720
2720
  id?: number | undefined;
2721
2721
  }[] | undefined;
2722
2722
  required?: boolean | undefined;
@@ -2736,7 +2736,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2736
2736
  hint?: string | undefined;
2737
2737
  messages?: {
2738
2738
  text: string;
2739
- type: "error" | "success" | "info" | "warning";
2739
+ type: "success" | "error" | "info" | "warning";
2740
2740
  id?: number | undefined;
2741
2741
  }[] | undefined;
2742
2742
  required?: boolean | undefined;
@@ -2755,7 +2755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2755
2755
  hint?: string | undefined;
2756
2756
  messages?: {
2757
2757
  text: string;
2758
- type: "error" | "success" | "info" | "warning";
2758
+ type: "success" | "error" | "info" | "warning";
2759
2759
  id?: number | undefined;
2760
2760
  }[] | undefined;
2761
2761
  required?: boolean | undefined;
@@ -2777,7 +2777,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2777
2777
  hint?: string | undefined;
2778
2778
  messages?: {
2779
2779
  text: string;
2780
- type: "error" | "success" | "info" | "warning";
2780
+ type: "success" | "error" | "info" | "warning";
2781
2781
  id?: number | undefined;
2782
2782
  }[] | undefined;
2783
2783
  required?: boolean | undefined;
@@ -2799,7 +2799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2799
2799
  hint?: string | undefined;
2800
2800
  messages?: {
2801
2801
  text: string;
2802
- type: "error" | "success" | "info" | "warning";
2802
+ type: "success" | "error" | "info" | "warning";
2803
2803
  id?: number | undefined;
2804
2804
  }[] | undefined;
2805
2805
  required?: boolean | undefined;
@@ -2818,7 +2818,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2818
2818
  hint?: string | undefined;
2819
2819
  messages?: {
2820
2820
  text: string;
2821
- type: "error" | "success" | "info" | "warning";
2821
+ type: "success" | "error" | "info" | "warning";
2822
2822
  id?: number | undefined;
2823
2823
  }[] | undefined;
2824
2824
  required?: boolean | undefined;
@@ -2843,7 +2843,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2843
2843
  hint?: string | undefined;
2844
2844
  messages?: {
2845
2845
  text: string;
2846
- type: "error" | "success" | "info" | "warning";
2846
+ type: "success" | "error" | "info" | "warning";
2847
2847
  id?: number | undefined;
2848
2848
  }[] | undefined;
2849
2849
  required?: boolean | undefined;
@@ -2864,7 +2864,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2864
2864
  hint?: string | undefined;
2865
2865
  messages?: {
2866
2866
  text: string;
2867
- type: "error" | "success" | "info" | "warning";
2867
+ type: "success" | "error" | "info" | "warning";
2868
2868
  id?: number | undefined;
2869
2869
  }[] | undefined;
2870
2870
  required?: boolean | undefined;
@@ -2885,7 +2885,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2885
2885
  hint?: string | undefined;
2886
2886
  messages?: {
2887
2887
  text: string;
2888
- type: "error" | "success" | "info" | "warning";
2888
+ type: "success" | "error" | "info" | "warning";
2889
2889
  id?: number | undefined;
2890
2890
  }[] | undefined;
2891
2891
  required?: boolean | undefined;
@@ -3118,7 +3118,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3118
3118
  hint?: string | undefined;
3119
3119
  messages?: {
3120
3120
  text: string;
3121
- type: "error" | "success" | "info" | "warning";
3121
+ type: "success" | "error" | "info" | "warning";
3122
3122
  id?: number | undefined;
3123
3123
  }[] | undefined;
3124
3124
  required?: boolean | undefined;
@@ -3136,7 +3136,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3136
3136
  hint?: string | undefined;
3137
3137
  messages?: {
3138
3138
  text: string;
3139
- type: "error" | "success" | "info" | "warning";
3139
+ type: "success" | "error" | "info" | "warning";
3140
3140
  id?: number | undefined;
3141
3141
  }[] | undefined;
3142
3142
  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;
@@ -3213,7 +3213,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3213
3213
  hint?: string | undefined;
3214
3214
  messages?: {
3215
3215
  text: string;
3216
- type: "error" | "success" | "info" | "warning";
3216
+ type: "success" | "error" | "info" | "warning";
3217
3217
  id?: number | undefined;
3218
3218
  }[] | undefined;
3219
3219
  required?: boolean | undefined;
@@ -3228,7 +3228,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3228
3228
  hint?: string | undefined;
3229
3229
  messages?: {
3230
3230
  text: string;
3231
- type: "error" | "success" | "info" | "warning";
3231
+ type: "success" | "error" | "info" | "warning";
3232
3232
  id?: number | undefined;
3233
3233
  }[] | undefined;
3234
3234
  required?: boolean | undefined;
@@ -3249,7 +3249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3249
3249
  hint?: string | undefined;
3250
3250
  messages?: {
3251
3251
  text: string;
3252
- type: "error" | "success" | "info" | "warning";
3252
+ type: "success" | "error" | "info" | "warning";
3253
3253
  id?: number | undefined;
3254
3254
  }[] | undefined;
3255
3255
  required?: boolean | undefined;
@@ -3274,7 +3274,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3274
3274
  hint?: string | undefined;
3275
3275
  messages?: {
3276
3276
  text: string;
3277
- type: "error" | "success" | "info" | "warning";
3277
+ type: "success" | "error" | "info" | "warning";
3278
3278
  id?: number | undefined;
3279
3279
  }[] | undefined;
3280
3280
  required?: boolean | undefined;
@@ -3293,7 +3293,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3293
3293
  hint?: string | undefined;
3294
3294
  messages?: {
3295
3295
  text: string;
3296
- type: "error" | "success" | "info" | "warning";
3296
+ type: "success" | "error" | "info" | "warning";
3297
3297
  id?: number | undefined;
3298
3298
  }[] | undefined;
3299
3299
  required?: boolean | undefined;
@@ -3313,7 +3313,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3313
3313
  hint?: string | undefined;
3314
3314
  messages?: {
3315
3315
  text: string;
3316
- type: "error" | "success" | "info" | "warning";
3316
+ type: "success" | "error" | "info" | "warning";
3317
3317
  id?: number | undefined;
3318
3318
  }[] | undefined;
3319
3319
  required?: boolean | undefined;
@@ -3332,7 +3332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3332
3332
  hint?: string | undefined;
3333
3333
  messages?: {
3334
3334
  text: string;
3335
- type: "error" | "success" | "info" | "warning";
3335
+ type: "success" | "error" | "info" | "warning";
3336
3336
  id?: number | undefined;
3337
3337
  }[] | undefined;
3338
3338
  required?: boolean | undefined;
@@ -3354,7 +3354,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3354
3354
  hint?: string | undefined;
3355
3355
  messages?: {
3356
3356
  text: string;
3357
- type: "error" | "success" | "info" | "warning";
3357
+ type: "success" | "error" | "info" | "warning";
3358
3358
  id?: number | undefined;
3359
3359
  }[] | undefined;
3360
3360
  required?: boolean | undefined;
@@ -3376,7 +3376,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3376
3376
  hint?: string | undefined;
3377
3377
  messages?: {
3378
3378
  text: string;
3379
- type: "error" | "success" | "info" | "warning";
3379
+ type: "success" | "error" | "info" | "warning";
3380
3380
  id?: number | undefined;
3381
3381
  }[] | undefined;
3382
3382
  required?: boolean | undefined;
@@ -3395,7 +3395,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3395
3395
  hint?: string | undefined;
3396
3396
  messages?: {
3397
3397
  text: string;
3398
- type: "error" | "success" | "info" | "warning";
3398
+ type: "success" | "error" | "info" | "warning";
3399
3399
  id?: number | undefined;
3400
3400
  }[] | undefined;
3401
3401
  required?: boolean | undefined;
@@ -3420,7 +3420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3420
3420
  hint?: string | undefined;
3421
3421
  messages?: {
3422
3422
  text: string;
3423
- type: "error" | "success" | "info" | "warning";
3423
+ type: "success" | "error" | "info" | "warning";
3424
3424
  id?: number | undefined;
3425
3425
  }[] | undefined;
3426
3426
  required?: boolean | undefined;
@@ -3441,7 +3441,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3441
3441
  hint?: string | undefined;
3442
3442
  messages?: {
3443
3443
  text: string;
3444
- type: "error" | "success" | "info" | "warning";
3444
+ type: "success" | "error" | "info" | "warning";
3445
3445
  id?: number | undefined;
3446
3446
  }[] | undefined;
3447
3447
  required?: boolean | undefined;
@@ -3462,7 +3462,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3462
3462
  hint?: string | undefined;
3463
3463
  messages?: {
3464
3464
  text: string;
3465
- type: "error" | "success" | "info" | "warning";
3465
+ type: "success" | "error" | "info" | "warning";
3466
3466
  id?: number | undefined;
3467
3467
  }[] | undefined;
3468
3468
  required?: boolean | undefined;
@@ -3710,7 +3710,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3710
3710
  hint?: string | undefined;
3711
3711
  messages?: {
3712
3712
  text: string;
3713
- type: "error" | "success" | "info" | "warning";
3713
+ type: "success" | "error" | "info" | "warning";
3714
3714
  id?: number | undefined;
3715
3715
  }[] | undefined;
3716
3716
  required?: boolean | undefined;
@@ -3728,7 +3728,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3728
3728
  hint?: string | undefined;
3729
3729
  messages?: {
3730
3730
  text: string;
3731
- type: "error" | "success" | "info" | "warning";
3731
+ type: "success" | "error" | "info" | "warning";
3732
3732
  id?: number | undefined;
3733
3733
  }[] | undefined;
3734
3734
  required?: boolean | undefined;
@@ -3752,7 +3752,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3752
3752
  hint?: string | undefined;
3753
3753
  messages?: {
3754
3754
  text: string;
3755
- type: "error" | "success" | "info" | "warning";
3755
+ type: "success" | "error" | "info" | "warning";
3756
3756
  id?: number | undefined;
3757
3757
  }[] | undefined;
3758
3758
  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;
@@ -3805,7 +3805,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3805
3805
  hint?: string | undefined;
3806
3806
  messages?: {
3807
3807
  text: string;
3808
- type: "error" | "success" | "info" | "warning";
3808
+ type: "success" | "error" | "info" | "warning";
3809
3809
  id?: number | undefined;
3810
3810
  }[] | undefined;
3811
3811
  required?: boolean | undefined;
@@ -3820,7 +3820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3820
3820
  hint?: string | undefined;
3821
3821
  messages?: {
3822
3822
  text: string;
3823
- type: "error" | "success" | "info" | "warning";
3823
+ type: "success" | "error" | "info" | "warning";
3824
3824
  id?: number | undefined;
3825
3825
  }[] | undefined;
3826
3826
  required?: boolean | undefined;
@@ -3841,7 +3841,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3841
3841
  hint?: string | undefined;
3842
3842
  messages?: {
3843
3843
  text: string;
3844
- type: "error" | "success" | "info" | "warning";
3844
+ type: "success" | "error" | "info" | "warning";
3845
3845
  id?: number | undefined;
3846
3846
  }[] | undefined;
3847
3847
  required?: boolean | undefined;
@@ -3866,7 +3866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3866
3866
  hint?: string | undefined;
3867
3867
  messages?: {
3868
3868
  text: string;
3869
- type: "error" | "success" | "info" | "warning";
3869
+ type: "success" | "error" | "info" | "warning";
3870
3870
  id?: number | undefined;
3871
3871
  }[] | undefined;
3872
3872
  required?: boolean | undefined;
@@ -3885,7 +3885,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3885
3885
  hint?: string | undefined;
3886
3886
  messages?: {
3887
3887
  text: string;
3888
- type: "error" | "success" | "info" | "warning";
3888
+ type: "success" | "error" | "info" | "warning";
3889
3889
  id?: number | undefined;
3890
3890
  }[] | undefined;
3891
3891
  required?: boolean | undefined;
@@ -3905,7 +3905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3905
3905
  hint?: string | undefined;
3906
3906
  messages?: {
3907
3907
  text: string;
3908
- type: "error" | "success" | "info" | "warning";
3908
+ type: "success" | "error" | "info" | "warning";
3909
3909
  id?: number | undefined;
3910
3910
  }[] | undefined;
3911
3911
  required?: boolean | undefined;
@@ -3924,7 +3924,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3924
3924
  hint?: string | undefined;
3925
3925
  messages?: {
3926
3926
  text: string;
3927
- type: "error" | "success" | "info" | "warning";
3927
+ type: "success" | "error" | "info" | "warning";
3928
3928
  id?: number | undefined;
3929
3929
  }[] | undefined;
3930
3930
  required?: boolean | undefined;
@@ -3946,7 +3946,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3946
3946
  hint?: string | undefined;
3947
3947
  messages?: {
3948
3948
  text: string;
3949
- type: "error" | "success" | "info" | "warning";
3949
+ type: "success" | "error" | "info" | "warning";
3950
3950
  id?: number | undefined;
3951
3951
  }[] | undefined;
3952
3952
  required?: boolean | undefined;
@@ -3968,7 +3968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3968
3968
  hint?: string | undefined;
3969
3969
  messages?: {
3970
3970
  text: string;
3971
- type: "error" | "success" | "info" | "warning";
3971
+ type: "success" | "error" | "info" | "warning";
3972
3972
  id?: number | undefined;
3973
3973
  }[] | undefined;
3974
3974
  required?: boolean | undefined;
@@ -3987,7 +3987,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3987
3987
  hint?: string | undefined;
3988
3988
  messages?: {
3989
3989
  text: string;
3990
- type: "error" | "success" | "info" | "warning";
3990
+ type: "success" | "error" | "info" | "warning";
3991
3991
  id?: number | undefined;
3992
3992
  }[] | undefined;
3993
3993
  required?: boolean | undefined;
@@ -4012,7 +4012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4012
4012
  hint?: string | undefined;
4013
4013
  messages?: {
4014
4014
  text: string;
4015
- type: "error" | "success" | "info" | "warning";
4015
+ type: "success" | "error" | "info" | "warning";
4016
4016
  id?: number | undefined;
4017
4017
  }[] | undefined;
4018
4018
  required?: boolean | undefined;
@@ -4033,7 +4033,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4033
4033
  hint?: string | undefined;
4034
4034
  messages?: {
4035
4035
  text: string;
4036
- type: "error" | "success" | "info" | "warning";
4036
+ type: "success" | "error" | "info" | "warning";
4037
4037
  id?: number | undefined;
4038
4038
  }[] | undefined;
4039
4039
  required?: boolean | undefined;
@@ -4054,7 +4054,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4054
4054
  hint?: string | undefined;
4055
4055
  messages?: {
4056
4056
  text: string;
4057
- type: "error" | "success" | "info" | "warning";
4057
+ type: "success" | "error" | "info" | "warning";
4058
4058
  id?: number | undefined;
4059
4059
  }[] | undefined;
4060
4060
  required?: boolean | undefined;
@@ -4308,7 +4308,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4308
4308
  hint?: string | undefined;
4309
4309
  messages?: {
4310
4310
  text: string;
4311
- type: "error" | "success" | "info" | "warning";
4311
+ type: "success" | "error" | "info" | "warning";
4312
4312
  id?: number | undefined;
4313
4313
  }[] | undefined;
4314
4314
  required?: boolean | undefined;
@@ -4326,7 +4326,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4326
4326
  hint?: string | undefined;
4327
4327
  messages?: {
4328
4328
  text: string;
4329
- type: "error" | "success" | "info" | "warning";
4329
+ type: "success" | "error" | "info" | "warning";
4330
4330
  id?: number | undefined;
4331
4331
  }[] | undefined;
4332
4332
  required?: boolean | undefined;
@@ -4350,7 +4350,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4350
4350
  hint?: string | undefined;
4351
4351
  messages?: {
4352
4352
  text: string;
4353
- type: "error" | "success" | "info" | "warning";
4353
+ type: "success" | "error" | "info" | "warning";
4354
4354
  id?: number | undefined;
4355
4355
  }[] | undefined;
4356
4356
  required?: boolean | undefined;
@@ -4374,7 +4374,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4374
4374
  hint?: string | undefined;
4375
4375
  messages?: {
4376
4376
  text: string;
4377
- type: "error" | "success" | "info" | "warning";
4377
+ type: "success" | "error" | "info" | "warning";
4378
4378
  id?: number | undefined;
4379
4379
  }[] | undefined;
4380
4380
  required?: boolean | undefined;
@@ -4399,7 +4399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4399
4399
  hint?: string | undefined;
4400
4400
  messages?: {
4401
4401
  text: string;
4402
- type: "error" | "success" | "info" | "warning";
4402
+ type: "success" | "error" | "info" | "warning";
4403
4403
  id?: number | undefined;
4404
4404
  }[] | undefined;
4405
4405
  required?: boolean | undefined;
@@ -4414,7 +4414,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4414
4414
  hint?: string | undefined;
4415
4415
  messages?: {
4416
4416
  text: string;
4417
- type: "error" | "success" | "info" | "warning";
4417
+ type: "success" | "error" | "info" | "warning";
4418
4418
  id?: number | undefined;
4419
4419
  }[] | undefined;
4420
4420
  required?: boolean | undefined;
@@ -4435,7 +4435,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4435
4435
  hint?: string | undefined;
4436
4436
  messages?: {
4437
4437
  text: string;
4438
- type: "error" | "success" | "info" | "warning";
4438
+ type: "success" | "error" | "info" | "warning";
4439
4439
  id?: number | undefined;
4440
4440
  }[] | undefined;
4441
4441
  required?: boolean | undefined;
@@ -4460,7 +4460,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4460
4460
  hint?: string | undefined;
4461
4461
  messages?: {
4462
4462
  text: string;
4463
- type: "error" | "success" | "info" | "warning";
4463
+ type: "success" | "error" | "info" | "warning";
4464
4464
  id?: number | undefined;
4465
4465
  }[] | undefined;
4466
4466
  required?: boolean | undefined;
@@ -4479,7 +4479,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4479
4479
  hint?: string | undefined;
4480
4480
  messages?: {
4481
4481
  text: string;
4482
- type: "error" | "success" | "info" | "warning";
4482
+ type: "success" | "error" | "info" | "warning";
4483
4483
  id?: number | undefined;
4484
4484
  }[] | undefined;
4485
4485
  required?: boolean | undefined;
@@ -4499,7 +4499,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4499
4499
  hint?: string | undefined;
4500
4500
  messages?: {
4501
4501
  text: string;
4502
- type: "error" | "success" | "info" | "warning";
4502
+ type: "success" | "error" | "info" | "warning";
4503
4503
  id?: number | undefined;
4504
4504
  }[] | undefined;
4505
4505
  required?: boolean | undefined;
@@ -4518,7 +4518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4518
4518
  hint?: string | undefined;
4519
4519
  messages?: {
4520
4520
  text: string;
4521
- type: "error" | "success" | "info" | "warning";
4521
+ type: "success" | "error" | "info" | "warning";
4522
4522
  id?: number | undefined;
4523
4523
  }[] | undefined;
4524
4524
  required?: boolean | undefined;
@@ -4540,7 +4540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4540
4540
  hint?: string | undefined;
4541
4541
  messages?: {
4542
4542
  text: string;
4543
- type: "error" | "success" | "info" | "warning";
4543
+ type: "success" | "error" | "info" | "warning";
4544
4544
  id?: number | undefined;
4545
4545
  }[] | undefined;
4546
4546
  required?: boolean | undefined;
@@ -4562,7 +4562,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4562
4562
  hint?: string | undefined;
4563
4563
  messages?: {
4564
4564
  text: string;
4565
- type: "error" | "success" | "info" | "warning";
4565
+ type: "success" | "error" | "info" | "warning";
4566
4566
  id?: number | undefined;
4567
4567
  }[] | undefined;
4568
4568
  required?: boolean | undefined;
@@ -4581,7 +4581,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4581
4581
  hint?: string | undefined;
4582
4582
  messages?: {
4583
4583
  text: string;
4584
- type: "error" | "success" | "info" | "warning";
4584
+ type: "success" | "error" | "info" | "warning";
4585
4585
  id?: number | undefined;
4586
4586
  }[] | undefined;
4587
4587
  required?: boolean | undefined;
@@ -4606,7 +4606,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4606
4606
  hint?: string | undefined;
4607
4607
  messages?: {
4608
4608
  text: string;
4609
- type: "error" | "success" | "info" | "warning";
4609
+ type: "success" | "error" | "info" | "warning";
4610
4610
  id?: number | undefined;
4611
4611
  }[] | undefined;
4612
4612
  required?: boolean | undefined;
@@ -4627,7 +4627,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4627
4627
  hint?: string | undefined;
4628
4628
  messages?: {
4629
4629
  text: string;
4630
- type: "error" | "success" | "info" | "warning";
4630
+ type: "success" | "error" | "info" | "warning";
4631
4631
  id?: number | undefined;
4632
4632
  }[] | undefined;
4633
4633
  required?: boolean | undefined;
@@ -4648,7 +4648,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4648
4648
  hint?: string | undefined;
4649
4649
  messages?: {
4650
4650
  text: string;
4651
- type: "error" | "success" | "info" | "warning";
4651
+ type: "success" | "error" | "info" | "warning";
4652
4652
  id?: number | undefined;
4653
4653
  }[] | undefined;
4654
4654
  required?: boolean | undefined;
@@ -4879,7 +4879,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4879
4879
  hint?: string | undefined;
4880
4880
  messages?: {
4881
4881
  text: string;
4882
- type: "error" | "success" | "info" | "warning";
4882
+ type: "success" | "error" | "info" | "warning";
4883
4883
  id?: number | undefined;
4884
4884
  }[] | undefined;
4885
4885
  required?: boolean | undefined;
@@ -4897,7 +4897,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4897
4897
  hint?: string | undefined;
4898
4898
  messages?: {
4899
4899
  text: string;
4900
- type: "error" | "success" | "info" | "warning";
4900
+ type: "success" | "error" | "info" | "warning";
4901
4901
  id?: number | undefined;
4902
4902
  }[] | undefined;
4903
4903
  required?: boolean | undefined;
@@ -4921,7 +4921,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4921
4921
  hint?: string | undefined;
4922
4922
  messages?: {
4923
4923
  text: string;
4924
- type: "error" | "success" | "info" | "warning";
4924
+ type: "success" | "error" | "info" | "warning";
4925
4925
  id?: number | undefined;
4926
4926
  }[] | undefined;
4927
4927
  required?: boolean | undefined;
@@ -4945,7 +4945,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4945
4945
  hint?: string | undefined;
4946
4946
  messages?: {
4947
4947
  text: string;
4948
- type: "error" | "success" | "info" | "warning";
4948
+ type: "success" | "error" | "info" | "warning";
4949
4949
  id?: number | undefined;
4950
4950
  }[] | undefined;
4951
4951
  required?: boolean | undefined;
@@ -4974,7 +4974,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4974
4974
  hint?: string | undefined;
4975
4975
  messages?: {
4976
4976
  text: string;
4977
- type: "error" | "success" | "info" | "warning";
4977
+ type: "success" | "error" | "info" | "warning";
4978
4978
  id?: number | undefined;
4979
4979
  }[] | undefined;
4980
4980
  required?: boolean | undefined;
@@ -4989,7 +4989,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4989
4989
  hint?: string | undefined;
4990
4990
  messages?: {
4991
4991
  text: string;
4992
- type: "error" | "success" | "info" | "warning";
4992
+ type: "success" | "error" | "info" | "warning";
4993
4993
  id?: number | undefined;
4994
4994
  }[] | undefined;
4995
4995
  required?: boolean | undefined;
@@ -5010,7 +5010,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5010
5010
  hint?: string | undefined;
5011
5011
  messages?: {
5012
5012
  text: string;
5013
- type: "error" | "success" | "info" | "warning";
5013
+ type: "success" | "error" | "info" | "warning";
5014
5014
  id?: number | undefined;
5015
5015
  }[] | undefined;
5016
5016
  required?: boolean | undefined;
@@ -5035,7 +5035,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5035
5035
  hint?: string | undefined;
5036
5036
  messages?: {
5037
5037
  text: string;
5038
- type: "error" | "success" | "info" | "warning";
5038
+ type: "success" | "error" | "info" | "warning";
5039
5039
  id?: number | undefined;
5040
5040
  }[] | undefined;
5041
5041
  required?: boolean | undefined;
@@ -5054,7 +5054,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5054
5054
  hint?: string | undefined;
5055
5055
  messages?: {
5056
5056
  text: string;
5057
- type: "error" | "success" | "info" | "warning";
5057
+ type: "success" | "error" | "info" | "warning";
5058
5058
  id?: number | undefined;
5059
5059
  }[] | undefined;
5060
5060
  required?: boolean | undefined;
@@ -5074,7 +5074,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5074
5074
  hint?: string | undefined;
5075
5075
  messages?: {
5076
5076
  text: string;
5077
- type: "error" | "success" | "info" | "warning";
5077
+ type: "success" | "error" | "info" | "warning";
5078
5078
  id?: number | undefined;
5079
5079
  }[] | undefined;
5080
5080
  required?: boolean | undefined;
@@ -5093,7 +5093,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5093
5093
  hint?: string | undefined;
5094
5094
  messages?: {
5095
5095
  text: string;
5096
- type: "error" | "success" | "info" | "warning";
5096
+ type: "success" | "error" | "info" | "warning";
5097
5097
  id?: number | undefined;
5098
5098
  }[] | undefined;
5099
5099
  required?: boolean | undefined;
@@ -5115,7 +5115,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5115
5115
  hint?: string | undefined;
5116
5116
  messages?: {
5117
5117
  text: string;
5118
- type: "error" | "success" | "info" | "warning";
5118
+ type: "success" | "error" | "info" | "warning";
5119
5119
  id?: number | undefined;
5120
5120
  }[] | undefined;
5121
5121
  required?: boolean | undefined;
@@ -5137,7 +5137,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5137
5137
  hint?: string | undefined;
5138
5138
  messages?: {
5139
5139
  text: string;
5140
- type: "error" | "success" | "info" | "warning";
5140
+ type: "success" | "error" | "info" | "warning";
5141
5141
  id?: number | undefined;
5142
5142
  }[] | undefined;
5143
5143
  required?: boolean | undefined;
@@ -5156,7 +5156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5156
5156
  hint?: string | undefined;
5157
5157
  messages?: {
5158
5158
  text: string;
5159
- type: "error" | "success" | "info" | "warning";
5159
+ type: "success" | "error" | "info" | "warning";
5160
5160
  id?: number | undefined;
5161
5161
  }[] | undefined;
5162
5162
  required?: boolean | undefined;
@@ -5181,7 +5181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5181
5181
  hint?: string | undefined;
5182
5182
  messages?: {
5183
5183
  text: string;
5184
- type: "error" | "success" | "info" | "warning";
5184
+ type: "success" | "error" | "info" | "warning";
5185
5185
  id?: number | undefined;
5186
5186
  }[] | undefined;
5187
5187
  required?: boolean | undefined;
@@ -5202,7 +5202,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5202
5202
  hint?: string | undefined;
5203
5203
  messages?: {
5204
5204
  text: string;
5205
- type: "error" | "success" | "info" | "warning";
5205
+ type: "success" | "error" | "info" | "warning";
5206
5206
  id?: number | undefined;
5207
5207
  }[] | undefined;
5208
5208
  required?: boolean | undefined;
@@ -5223,7 +5223,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5223
5223
  hint?: string | undefined;
5224
5224
  messages?: {
5225
5225
  text: string;
5226
- type: "error" | "success" | "info" | "warning";
5226
+ type: "success" | "error" | "info" | "warning";
5227
5227
  id?: number | undefined;
5228
5228
  }[] | undefined;
5229
5229
  required?: boolean | undefined;
@@ -5456,7 +5456,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5456
5456
  hint?: string | undefined;
5457
5457
  messages?: {
5458
5458
  text: string;
5459
- type: "error" | "success" | "info" | "warning";
5459
+ type: "success" | "error" | "info" | "warning";
5460
5460
  id?: number | undefined;
5461
5461
  }[] | undefined;
5462
5462
  required?: boolean | undefined;
@@ -5474,7 +5474,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5474
5474
  hint?: string | undefined;
5475
5475
  messages?: {
5476
5476
  text: string;
5477
- type: "error" | "success" | "info" | "warning";
5477
+ type: "success" | "error" | "info" | "warning";
5478
5478
  id?: number | undefined;
5479
5479
  }[] | undefined;
5480
5480
  required?: boolean | undefined;
@@ -5498,7 +5498,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5498
5498
  hint?: string | undefined;
5499
5499
  messages?: {
5500
5500
  text: string;
5501
- type: "error" | "success" | "info" | "warning";
5501
+ type: "success" | "error" | "info" | "warning";
5502
5502
  id?: number | undefined;
5503
5503
  }[] | undefined;
5504
5504
  required?: boolean | undefined;
@@ -5522,7 +5522,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5522
5522
  hint?: string | undefined;
5523
5523
  messages?: {
5524
5524
  text: string;
5525
- type: "error" | "success" | "info" | "warning";
5525
+ type: "success" | "error" | "info" | "warning";
5526
5526
  id?: number | undefined;
5527
5527
  }[] | undefined;
5528
5528
  required?: boolean | undefined;
@@ -5547,7 +5547,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5547
5547
  hint?: string | undefined;
5548
5548
  messages?: {
5549
5549
  text: string;
5550
- type: "error" | "success" | "info" | "warning";
5550
+ type: "success" | "error" | "info" | "warning";
5551
5551
  id?: number | undefined;
5552
5552
  }[] | undefined;
5553
5553
  required?: boolean | undefined;
@@ -5562,7 +5562,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5562
5562
  hint?: string | undefined;
5563
5563
  messages?: {
5564
5564
  text: string;
5565
- type: "error" | "success" | "info" | "warning";
5565
+ type: "success" | "error" | "info" | "warning";
5566
5566
  id?: number | undefined;
5567
5567
  }[] | undefined;
5568
5568
  required?: boolean | undefined;
@@ -5583,7 +5583,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5583
5583
  hint?: string | undefined;
5584
5584
  messages?: {
5585
5585
  text: string;
5586
- type: "error" | "success" | "info" | "warning";
5586
+ type: "success" | "error" | "info" | "warning";
5587
5587
  id?: number | undefined;
5588
5588
  }[] | undefined;
5589
5589
  required?: boolean | undefined;
@@ -5608,7 +5608,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5608
5608
  hint?: string | undefined;
5609
5609
  messages?: {
5610
5610
  text: string;
5611
- type: "error" | "success" | "info" | "warning";
5611
+ type: "success" | "error" | "info" | "warning";
5612
5612
  id?: number | undefined;
5613
5613
  }[] | undefined;
5614
5614
  required?: boolean | undefined;
@@ -5627,7 +5627,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5627
5627
  hint?: string | undefined;
5628
5628
  messages?: {
5629
5629
  text: string;
5630
- type: "error" | "success" | "info" | "warning";
5630
+ type: "success" | "error" | "info" | "warning";
5631
5631
  id?: number | undefined;
5632
5632
  }[] | undefined;
5633
5633
  required?: boolean | undefined;
@@ -5647,7 +5647,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5647
5647
  hint?: string | undefined;
5648
5648
  messages?: {
5649
5649
  text: string;
5650
- type: "error" | "success" | "info" | "warning";
5650
+ type: "success" | "error" | "info" | "warning";
5651
5651
  id?: number | undefined;
5652
5652
  }[] | undefined;
5653
5653
  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;
@@ -5688,7 +5688,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5688
5688
  hint?: string | undefined;
5689
5689
  messages?: {
5690
5690
  text: string;
5691
- type: "error" | "success" | "info" | "warning";
5691
+ type: "success" | "error" | "info" | "warning";
5692
5692
  id?: number | undefined;
5693
5693
  }[] | undefined;
5694
5694
  required?: boolean | undefined;
@@ -5710,7 +5710,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5710
5710
  hint?: string | undefined;
5711
5711
  messages?: {
5712
5712
  text: string;
5713
- type: "error" | "success" | "info" | "warning";
5713
+ type: "success" | "error" | "info" | "warning";
5714
5714
  id?: number | undefined;
5715
5715
  }[] | undefined;
5716
5716
  required?: boolean | undefined;
@@ -5729,7 +5729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5729
5729
  hint?: string | undefined;
5730
5730
  messages?: {
5731
5731
  text: string;
5732
- type: "error" | "success" | "info" | "warning";
5732
+ type: "success" | "error" | "info" | "warning";
5733
5733
  id?: number | undefined;
5734
5734
  }[] | undefined;
5735
5735
  required?: boolean | undefined;
@@ -5754,7 +5754,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5754
5754
  hint?: string | undefined;
5755
5755
  messages?: {
5756
5756
  text: string;
5757
- type: "error" | "success" | "info" | "warning";
5757
+ type: "success" | "error" | "info" | "warning";
5758
5758
  id?: number | undefined;
5759
5759
  }[] | undefined;
5760
5760
  required?: boolean | undefined;
@@ -5775,7 +5775,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5775
5775
  hint?: string | undefined;
5776
5776
  messages?: {
5777
5777
  text: string;
5778
- type: "error" | "success" | "info" | "warning";
5778
+ type: "success" | "error" | "info" | "warning";
5779
5779
  id?: number | undefined;
5780
5780
  }[] | undefined;
5781
5781
  required?: boolean | undefined;
@@ -5796,7 +5796,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5796
5796
  hint?: string | undefined;
5797
5797
  messages?: {
5798
5798
  text: string;
5799
- type: "error" | "success" | "info" | "warning";
5799
+ type: "success" | "error" | "info" | "warning";
5800
5800
  id?: number | undefined;
5801
5801
  }[] | undefined;
5802
5802
  required?: boolean | undefined;
@@ -6027,7 +6027,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6027
6027
  hint?: string | undefined;
6028
6028
  messages?: {
6029
6029
  text: string;
6030
- type: "error" | "success" | "info" | "warning";
6030
+ type: "success" | "error" | "info" | "warning";
6031
6031
  id?: number | undefined;
6032
6032
  }[] | undefined;
6033
6033
  required?: boolean | undefined;
@@ -6045,7 +6045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6045
6045
  hint?: string | undefined;
6046
6046
  messages?: {
6047
6047
  text: string;
6048
- type: "error" | "success" | "info" | "warning";
6048
+ type: "success" | "error" | "info" | "warning";
6049
6049
  id?: number | undefined;
6050
6050
  }[] | undefined;
6051
6051
  required?: boolean | undefined;
@@ -6069,7 +6069,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6069
6069
  hint?: string | undefined;
6070
6070
  messages?: {
6071
6071
  text: string;
6072
- type: "error" | "success" | "info" | "warning";
6072
+ type: "success" | "error" | "info" | "warning";
6073
6073
  id?: number | undefined;
6074
6074
  }[] | undefined;
6075
6075
  required?: boolean | undefined;
@@ -6093,7 +6093,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6093
6093
  hint?: string | undefined;
6094
6094
  messages?: {
6095
6095
  text: string;
6096
- type: "error" | "success" | "info" | "warning";
6096
+ type: "success" | "error" | "info" | "warning";
6097
6097
  id?: number | undefined;
6098
6098
  }[] | undefined;
6099
6099
  required?: boolean | undefined;
@@ -6122,7 +6122,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6122
6122
  hint?: string | undefined;
6123
6123
  messages?: {
6124
6124
  text: string;
6125
- type: "error" | "success" | "info" | "warning";
6125
+ type: "success" | "error" | "info" | "warning";
6126
6126
  id?: number | undefined;
6127
6127
  }[] | undefined;
6128
6128
  required?: boolean | undefined;
@@ -6137,7 +6137,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6137
6137
  hint?: string | undefined;
6138
6138
  messages?: {
6139
6139
  text: string;
6140
- type: "error" | "success" | "info" | "warning";
6140
+ type: "success" | "error" | "info" | "warning";
6141
6141
  id?: number | undefined;
6142
6142
  }[] | undefined;
6143
6143
  required?: boolean | undefined;
@@ -6158,7 +6158,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6158
6158
  hint?: string | undefined;
6159
6159
  messages?: {
6160
6160
  text: string;
6161
- type: "error" | "success" | "info" | "warning";
6161
+ type: "success" | "error" | "info" | "warning";
6162
6162
  id?: number | undefined;
6163
6163
  }[] | undefined;
6164
6164
  required?: boolean | undefined;
@@ -6183,7 +6183,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6183
6183
  hint?: string | undefined;
6184
6184
  messages?: {
6185
6185
  text: string;
6186
- type: "error" | "success" | "info" | "warning";
6186
+ type: "success" | "error" | "info" | "warning";
6187
6187
  id?: number | undefined;
6188
6188
  }[] | undefined;
6189
6189
  required?: boolean | undefined;
@@ -6202,7 +6202,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6202
6202
  hint?: string | undefined;
6203
6203
  messages?: {
6204
6204
  text: string;
6205
- type: "error" | "success" | "info" | "warning";
6205
+ type: "success" | "error" | "info" | "warning";
6206
6206
  id?: number | undefined;
6207
6207
  }[] | undefined;
6208
6208
  required?: boolean | undefined;
@@ -6222,7 +6222,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6222
6222
  hint?: string | undefined;
6223
6223
  messages?: {
6224
6224
  text: string;
6225
- type: "error" | "success" | "info" | "warning";
6225
+ type: "success" | "error" | "info" | "warning";
6226
6226
  id?: number | undefined;
6227
6227
  }[] | undefined;
6228
6228
  required?: boolean | undefined;
@@ -6241,7 +6241,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6241
6241
  hint?: string | undefined;
6242
6242
  messages?: {
6243
6243
  text: string;
6244
- type: "error" | "success" | "info" | "warning";
6244
+ type: "success" | "error" | "info" | "warning";
6245
6245
  id?: number | undefined;
6246
6246
  }[] | undefined;
6247
6247
  required?: boolean | undefined;
@@ -6263,7 +6263,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6263
6263
  hint?: string | undefined;
6264
6264
  messages?: {
6265
6265
  text: string;
6266
- type: "error" | "success" | "info" | "warning";
6266
+ type: "success" | "error" | "info" | "warning";
6267
6267
  id?: number | undefined;
6268
6268
  }[] | undefined;
6269
6269
  required?: boolean | undefined;
@@ -6285,7 +6285,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6285
6285
  hint?: string | undefined;
6286
6286
  messages?: {
6287
6287
  text: string;
6288
- type: "error" | "success" | "info" | "warning";
6288
+ type: "success" | "error" | "info" | "warning";
6289
6289
  id?: number | undefined;
6290
6290
  }[] | undefined;
6291
6291
  required?: boolean | undefined;
@@ -6304,7 +6304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6304
6304
  hint?: string | undefined;
6305
6305
  messages?: {
6306
6306
  text: string;
6307
- type: "error" | "success" | "info" | "warning";
6307
+ type: "success" | "error" | "info" | "warning";
6308
6308
  id?: number | undefined;
6309
6309
  }[] | undefined;
6310
6310
  required?: boolean | undefined;
@@ -6329,7 +6329,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6329
6329
  hint?: string | undefined;
6330
6330
  messages?: {
6331
6331
  text: string;
6332
- type: "error" | "success" | "info" | "warning";
6332
+ type: "success" | "error" | "info" | "warning";
6333
6333
  id?: number | undefined;
6334
6334
  }[] | undefined;
6335
6335
  required?: boolean | undefined;
@@ -6350,7 +6350,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6350
6350
  hint?: string | undefined;
6351
6351
  messages?: {
6352
6352
  text: string;
6353
- type: "error" | "success" | "info" | "warning";
6353
+ type: "success" | "error" | "info" | "warning";
6354
6354
  id?: number | undefined;
6355
6355
  }[] | undefined;
6356
6356
  required?: boolean | undefined;
@@ -6371,7 +6371,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6371
6371
  hint?: string | undefined;
6372
6372
  messages?: {
6373
6373
  text: string;
6374
- type: "error" | "success" | "info" | "warning";
6374
+ type: "success" | "error" | "info" | "warning";
6375
6375
  id?: number | undefined;
6376
6376
  }[] | undefined;
6377
6377
  required?: boolean | undefined;
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6601
6601
  };
6602
6602
  };
6603
6603
  output: {
6604
- 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";
6604
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6605
6605
  language: string;
6606
6606
  }[];
6607
6607
  outputFormat: "json";
@@ -6639,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6639
6639
  $get: {
6640
6640
  input: {
6641
6641
  param: {
6642
- 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";
6642
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6643
6643
  language: string;
6644
6644
  };
6645
6645
  } & {
@@ -6661,7 +6661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6661
6661
  $put: {
6662
6662
  input: {
6663
6663
  param: {
6664
- 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";
6664
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6665
6665
  language: string;
6666
6666
  };
6667
6667
  } & {
@@ -6685,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6685
6685
  $delete: {
6686
6686
  input: {
6687
6687
  param: {
6688
- 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";
6688
+ prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6689
6689
  language: string;
6690
6690
  };
6691
6691
  } & {
@@ -7547,7 +7547,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7547
7547
  };
7548
7548
  } | {
7549
7549
  mode: "inline";
7550
- status: "error" | "success";
7550
+ status: "success" | "error";
7551
7551
  connection_id: string;
7552
7552
  connection_name: string;
7553
7553
  strategy: string;
@@ -8126,7 +8126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8126
8126
  log_type: string;
8127
8127
  category: "user_action" | "admin_action" | "system" | "api";
8128
8128
  actor: {
8129
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8129
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8130
8130
  id?: string | undefined;
8131
8131
  email?: string | undefined;
8132
8132
  org_id?: string | undefined;
@@ -8434,7 +8434,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8434
8434
  created_at: string;
8435
8435
  updated_at: string;
8436
8436
  name: string;
8437
- provider: "auth0" | "cognito" | "okta" | "oidc";
8437
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8438
8438
  connection: string;
8439
8439
  enabled: boolean;
8440
8440
  credentials: {
@@ -8466,7 +8466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8466
8466
  created_at: string;
8467
8467
  updated_at: string;
8468
8468
  name: string;
8469
- provider: "auth0" | "cognito" | "okta" | "oidc";
8469
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8470
8470
  connection: string;
8471
8471
  enabled: boolean;
8472
8472
  credentials: {
@@ -8492,7 +8492,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8492
8492
  } & {
8493
8493
  json: {
8494
8494
  name: string;
8495
- provider: "auth0" | "cognito" | "okta" | "oidc";
8495
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8496
8496
  connection: string;
8497
8497
  credentials: {
8498
8498
  domain: string;
@@ -8509,7 +8509,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8509
8509
  created_at: string;
8510
8510
  updated_at: string;
8511
8511
  name: string;
8512
- provider: "auth0" | "cognito" | "okta" | "oidc";
8512
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8513
8513
  connection: string;
8514
8514
  enabled: boolean;
8515
8515
  credentials: {
@@ -8540,7 +8540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8540
8540
  json: {
8541
8541
  id?: string | undefined;
8542
8542
  name?: string | undefined;
8543
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8543
+ provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
8544
8544
  connection?: string | undefined;
8545
8545
  enabled?: boolean | undefined;
8546
8546
  credentials?: {
@@ -8556,7 +8556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8556
8556
  created_at: string;
8557
8557
  updated_at: string;
8558
8558
  name: string;
8559
- provider: "auth0" | "cognito" | "okta" | "oidc";
8559
+ provider: "auth0" | "oidc" | "cognito" | "okta";
8560
8560
  connection: string;
8561
8561
  enabled: boolean;
8562
8562
  credentials: {
@@ -8774,7 +8774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8774
8774
  };
8775
8775
  };
8776
8776
  output: {
8777
- type: "fc" | "fd" | "i" | "fn" | "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" | "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" | "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";
8777
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
8778
8778
  date: string;
8779
8779
  isMobile: boolean;
8780
8780
  log_id: string;
@@ -8813,7 +8813,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8813
8813
  limit: number;
8814
8814
  length: number;
8815
8815
  logs: {
8816
- type: "fc" | "fd" | "i" | "fn" | "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" | "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" | "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";
8816
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
8817
8817
  date: string;
8818
8818
  isMobile: boolean;
8819
8819
  log_id: string;
@@ -8867,7 +8867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8867
8867
  };
8868
8868
  };
8869
8869
  output: {
8870
- type: "fc" | "fd" | "i" | "fn" | "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" | "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" | "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";
8870
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
8871
8871
  date: string;
8872
8872
  isMobile: boolean;
8873
8873
  log_id: string;
@@ -11011,7 +11011,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11011
11011
  };
11012
11012
  };
11013
11013
  output: {
11014
- type: "fc" | "fd" | "i" | "fn" | "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" | "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" | "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";
11014
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
11015
11015
  date: string;
11016
11016
  isMobile: boolean;
11017
11017
  log_id: string;
@@ -11050,7 +11050,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11050
11050
  limit: number;
11051
11051
  length: number;
11052
11052
  logs: {
11053
- type: "fc" | "fd" | "i" | "fn" | "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" | "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" | "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";
11053
+ type: "s" | "w" | "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" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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" | "wn" | "wum";
11054
11054
  date: string;
11055
11055
  isMobile: boolean;
11056
11056
  log_id: string;
@@ -11365,7 +11365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11365
11365
  };
11366
11366
  } & {
11367
11367
  json: {
11368
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11368
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11369
11369
  body: string;
11370
11370
  from: string;
11371
11371
  subject: string;
@@ -11386,7 +11386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11386
11386
  };
11387
11387
  } & {
11388
11388
  json: {
11389
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11389
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11390
11390
  body: string;
11391
11391
  from: string;
11392
11392
  subject: string;
@@ -11398,7 +11398,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11398
11398
  };
11399
11399
  };
11400
11400
  output: {
11401
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11401
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11402
11402
  body: string;
11403
11403
  from: string;
11404
11404
  subject: string;
@@ -11417,7 +11417,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11417
11417
  $get: {
11418
11418
  input: {
11419
11419
  param: {
11420
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11420
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11421
11421
  };
11422
11422
  } & {
11423
11423
  header: {
@@ -11430,7 +11430,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11430
11430
  } | {
11431
11431
  input: {
11432
11432
  param: {
11433
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11433
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11434
11434
  };
11435
11435
  } & {
11436
11436
  header: {
@@ -11438,7 +11438,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11438
11438
  };
11439
11439
  };
11440
11440
  output: {
11441
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11441
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11442
11442
  body: string;
11443
11443
  from: string;
11444
11444
  subject: string;
@@ -11457,7 +11457,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11457
11457
  $put: {
11458
11458
  input: {
11459
11459
  param: {
11460
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11460
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11461
11461
  };
11462
11462
  } & {
11463
11463
  header: {
@@ -11465,7 +11465,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11465
11465
  };
11466
11466
  } & {
11467
11467
  json: {
11468
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11468
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11469
11469
  body: string;
11470
11470
  from: string;
11471
11471
  subject: string;
@@ -11477,7 +11477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11477
11477
  };
11478
11478
  };
11479
11479
  output: {
11480
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11480
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11481
11481
  body: string;
11482
11482
  from: string;
11483
11483
  subject: string;
@@ -11496,7 +11496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11496
11496
  $patch: {
11497
11497
  input: {
11498
11498
  param: {
11499
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11499
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11500
11500
  };
11501
11501
  } & {
11502
11502
  header: {
@@ -11504,7 +11504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11504
11504
  };
11505
11505
  } & {
11506
11506
  json: {
11507
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11507
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11508
11508
  body?: string | undefined;
11509
11509
  from?: string | undefined;
11510
11510
  subject?: string | undefined;
@@ -11521,7 +11521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11521
11521
  } | {
11522
11522
  input: {
11523
11523
  param: {
11524
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11524
+ templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11525
11525
  };
11526
11526
  } & {
11527
11527
  header: {
@@ -11529,7 +11529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11529
11529
  };
11530
11530
  } & {
11531
11531
  json: {
11532
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11532
+ template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11533
11533
  body?: string | undefined;
11534
11534
  from?: string | undefined;
11535
11535
  subject?: string | undefined;
@@ -11541,7 +11541,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11541
11541
  };
11542
11542
  };
11543
11543
  output: {
11544
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11544
+ template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11545
11545
  body: string;
11546
11546
  from: string;
11547
11547
  subject: string;
@@ -12121,7 +12121,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12121
12121
  base_focus_color: string;
12122
12122
  base_hover_color: string;
12123
12123
  body_text: string;
12124
- captcha_widget_theme: "auto" | "light" | "dark";
12124
+ captcha_widget_theme: "dark" | "light" | "auto";
12125
12125
  error: string;
12126
12126
  header: string;
12127
12127
  icons: string;
@@ -12211,7 +12211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12211
12211
  base_focus_color: string;
12212
12212
  base_hover_color: string;
12213
12213
  body_text: string;
12214
- captcha_widget_theme: "auto" | "light" | "dark";
12214
+ captcha_widget_theme: "dark" | "light" | "auto";
12215
12215
  error: string;
12216
12216
  header: string;
12217
12217
  icons: string;
@@ -12290,7 +12290,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12290
12290
  base_focus_color: string;
12291
12291
  base_hover_color: string;
12292
12292
  body_text: string;
12293
- captcha_widget_theme: "auto" | "light" | "dark";
12293
+ captcha_widget_theme: "dark" | "light" | "auto";
12294
12294
  error: string;
12295
12295
  header: string;
12296
12296
  icons: string;
@@ -12380,7 +12380,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12380
12380
  font?: {
12381
12381
  url: string;
12382
12382
  } | undefined;
12383
- dark_mode?: "auto" | "light" | "dark" | undefined;
12383
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12384
12384
  };
12385
12385
  outputFormat: "json";
12386
12386
  status: 200;
@@ -12410,7 +12410,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12410
12410
  font?: {
12411
12411
  url: string;
12412
12412
  } | undefined;
12413
- dark_mode?: "auto" | "light" | "dark" | undefined;
12413
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12414
12414
  };
12415
12415
  };
12416
12416
  output: {
@@ -12429,7 +12429,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12429
12429
  font?: {
12430
12430
  url: string;
12431
12431
  } | undefined;
12432
- dark_mode?: "auto" | "light" | "dark" | undefined;
12432
+ dark_mode?: "dark" | "light" | "auto" | undefined;
12433
12433
  };
12434
12434
  outputFormat: "json";
12435
12435
  status: 200;
@@ -12464,7 +12464,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12464
12464
  };
12465
12465
  output: {};
12466
12466
  outputFormat: string;
12467
- status: 400;
12467
+ status: 204;
12468
12468
  } | {
12469
12469
  input: {
12470
12470
  header: {
@@ -12477,7 +12477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12477
12477
  };
12478
12478
  output: {};
12479
12479
  outputFormat: string;
12480
- status: 204;
12480
+ status: 400;
12481
12481
  };
12482
12482
  };
12483
12483
  } & {
@@ -12633,7 +12633,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12633
12633
  output: {
12634
12634
  id: string;
12635
12635
  trigger_id: string;
12636
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
12636
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
12637
12637
  results: {
12638
12638
  action_name: string;
12639
12639
  error: {
@@ -12680,7 +12680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12680
12680
  logs: {
12681
12681
  action_name: string;
12682
12682
  lines: {
12683
- level: "error" | "log" | "info" | "warn" | "debug";
12683
+ level: "log" | "error" | "info" | "warn" | "debug";
12684
12684
  message: string;
12685
12685
  }[];
12686
12686
  }[];
@@ -13347,7 +13347,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13347
13347
  args: import("hono/utils/types").JSONValue[];
13348
13348
  }[];
13349
13349
  logs: {
13350
- level: "error" | "log" | "info" | "warn" | "debug";
13350
+ level: "log" | "error" | "info" | "warn" | "debug";
13351
13351
  message: string;
13352
13352
  }[];
13353
13353
  error?: string | undefined;