authhero 8.8.0 → 8.8.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 (33) hide show
  1. package/dist/authhero.cjs +83 -83
  2. package/dist/authhero.d.ts +196 -211
  3. package/dist/authhero.mjs +4221 -4217
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  8. package/dist/types/helpers/mutable-response.d.ts +15 -3
  9. package/dist/types/index.d.ts +193 -193
  10. package/dist/types/routes/auth-api/index.d.ts +26 -26
  11. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  14. package/dist/types/routes/auth-api/token.d.ts +10 -10
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/clients.d.ts +7 -7
  17. package/dist/types/routes/management-api/connections.d.ts +1 -1
  18. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  19. package/dist/types/routes/management-api/forms.d.ts +126 -126
  20. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  21. package/dist/types/routes/management-api/index.d.ts +162 -162
  22. package/dist/types/routes/management-api/logs.d.ts +3 -3
  23. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  24. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  25. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  26. package/dist/types/routes/management-api/tenants.d.ts +8 -8
  27. package/dist/types/routes/management-api/users.d.ts +2 -2
  28. package/dist/types/routes/universal-login/common.d.ts +2 -2
  29. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  30. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  31. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  32. package/dist/types/types/IdToken.d.ts +2 -2
  33. package/package.json +4 -4
@@ -87,7 +87,7 @@ export declare function init(config: AuthHeroConfig): {
87
87
  };
88
88
  } & {
89
89
  json: {
90
- type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
90
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
91
91
  phone_number?: string | undefined;
92
92
  totp_secret?: string | undefined;
93
93
  credential_id?: string | undefined;
@@ -227,7 +227,7 @@ export declare function init(config: AuthHeroConfig): {
227
227
  };
228
228
  };
229
229
  output: {
230
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
230
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
231
231
  enabled: boolean;
232
232
  trial_expired?: boolean | undefined;
233
233
  }[];
@@ -382,7 +382,7 @@ export declare function init(config: AuthHeroConfig): {
382
382
  $get: {
383
383
  input: {
384
384
  param: {
385
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
385
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
386
386
  };
387
387
  } & {
388
388
  header: {
@@ -390,7 +390,7 @@ export declare function init(config: AuthHeroConfig): {
390
390
  };
391
391
  };
392
392
  output: {
393
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
393
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
394
394
  enabled: boolean;
395
395
  trial_expired?: boolean | undefined;
396
396
  };
@@ -403,7 +403,7 @@ export declare function init(config: AuthHeroConfig): {
403
403
  $put: {
404
404
  input: {
405
405
  param: {
406
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
406
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
407
407
  };
408
408
  } & {
409
409
  header: {
@@ -415,7 +415,7 @@ export declare function init(config: AuthHeroConfig): {
415
415
  };
416
416
  };
417
417
  output: {
418
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
418
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
419
419
  enabled: boolean;
420
420
  trial_expired?: boolean | undefined;
421
421
  };
@@ -1161,10 +1161,10 @@ export declare function init(config: AuthHeroConfig): {
1161
1161
  email?: string | undefined;
1162
1162
  };
1163
1163
  id?: string | undefined;
1164
- roles?: string[] | undefined;
1165
1164
  app_metadata?: Record<string, any> | undefined;
1166
1165
  user_metadata?: Record<string, any> | undefined;
1167
1166
  connection_id?: string | undefined;
1167
+ roles?: string[] | undefined;
1168
1168
  ttl_sec?: number | undefined;
1169
1169
  send_invitation_email?: boolean | undefined;
1170
1170
  };
@@ -2591,7 +2591,7 @@ export declare function init(config: AuthHeroConfig): {
2591
2591
  hint?: string | undefined;
2592
2592
  messages?: {
2593
2593
  text: string;
2594
- type: "success" | "error" | "info" | "warning";
2594
+ type: "error" | "success" | "info" | "warning";
2595
2595
  id?: number | undefined;
2596
2596
  }[] | undefined;
2597
2597
  required?: boolean | undefined;
@@ -2609,7 +2609,7 @@ export declare function init(config: AuthHeroConfig): {
2609
2609
  hint?: string | undefined;
2610
2610
  messages?: {
2611
2611
  text: string;
2612
- type: "success" | "error" | "info" | "warning";
2612
+ type: "error" | "success" | "info" | "warning";
2613
2613
  id?: number | undefined;
2614
2614
  }[] | undefined;
2615
2615
  required?: boolean | undefined;
@@ -2633,7 +2633,7 @@ export declare function init(config: AuthHeroConfig): {
2633
2633
  hint?: string | undefined;
2634
2634
  messages?: {
2635
2635
  text: string;
2636
- type: "success" | "error" | "info" | "warning";
2636
+ type: "error" | "success" | "info" | "warning";
2637
2637
  id?: number | undefined;
2638
2638
  }[] | undefined;
2639
2639
  required?: boolean | undefined;
@@ -2657,7 +2657,7 @@ export declare function init(config: AuthHeroConfig): {
2657
2657
  hint?: string | undefined;
2658
2658
  messages?: {
2659
2659
  text: string;
2660
- type: "success" | "error" | "info" | "warning";
2660
+ type: "error" | "success" | "info" | "warning";
2661
2661
  id?: number | undefined;
2662
2662
  }[] | undefined;
2663
2663
  required?: boolean | undefined;
@@ -2681,7 +2681,7 @@ export declare function init(config: AuthHeroConfig): {
2681
2681
  hint?: string | undefined;
2682
2682
  messages?: {
2683
2683
  text: string;
2684
- type: "success" | "error" | "info" | "warning";
2684
+ type: "error" | "success" | "info" | "warning";
2685
2685
  id?: number | undefined;
2686
2686
  }[] | undefined;
2687
2687
  required?: boolean | undefined;
@@ -2710,7 +2710,7 @@ export declare function init(config: AuthHeroConfig): {
2710
2710
  hint?: string | undefined;
2711
2711
  messages?: {
2712
2712
  text: string;
2713
- type: "success" | "error" | "info" | "warning";
2713
+ type: "error" | "success" | "info" | "warning";
2714
2714
  id?: number | undefined;
2715
2715
  }[] | undefined;
2716
2716
  required?: boolean | undefined;
@@ -2725,7 +2725,7 @@ export declare function init(config: AuthHeroConfig): {
2725
2725
  hint?: string | undefined;
2726
2726
  messages?: {
2727
2727
  text: string;
2728
- type: "success" | "error" | "info" | "warning";
2728
+ type: "error" | "success" | "info" | "warning";
2729
2729
  id?: number | undefined;
2730
2730
  }[] | undefined;
2731
2731
  required?: boolean | undefined;
@@ -2746,7 +2746,7 @@ export declare function init(config: AuthHeroConfig): {
2746
2746
  hint?: string | undefined;
2747
2747
  messages?: {
2748
2748
  text: string;
2749
- type: "success" | "error" | "info" | "warning";
2749
+ type: "error" | "success" | "info" | "warning";
2750
2750
  id?: number | undefined;
2751
2751
  }[] | undefined;
2752
2752
  required?: boolean | undefined;
@@ -2771,7 +2771,7 @@ export declare function init(config: AuthHeroConfig): {
2771
2771
  hint?: string | undefined;
2772
2772
  messages?: {
2773
2773
  text: string;
2774
- type: "success" | "error" | "info" | "warning";
2774
+ type: "error" | "success" | "info" | "warning";
2775
2775
  id?: number | undefined;
2776
2776
  }[] | undefined;
2777
2777
  required?: boolean | undefined;
@@ -2790,7 +2790,7 @@ export declare function init(config: AuthHeroConfig): {
2790
2790
  hint?: string | undefined;
2791
2791
  messages?: {
2792
2792
  text: string;
2793
- type: "success" | "error" | "info" | "warning";
2793
+ type: "error" | "success" | "info" | "warning";
2794
2794
  id?: number | undefined;
2795
2795
  }[] | undefined;
2796
2796
  required?: boolean | undefined;
@@ -2810,7 +2810,7 @@ export declare function init(config: AuthHeroConfig): {
2810
2810
  hint?: string | undefined;
2811
2811
  messages?: {
2812
2812
  text: string;
2813
- type: "success" | "error" | "info" | "warning";
2813
+ type: "error" | "success" | "info" | "warning";
2814
2814
  id?: number | undefined;
2815
2815
  }[] | undefined;
2816
2816
  required?: boolean | undefined;
@@ -2829,7 +2829,7 @@ export declare function init(config: AuthHeroConfig): {
2829
2829
  hint?: string | undefined;
2830
2830
  messages?: {
2831
2831
  text: string;
2832
- type: "success" | "error" | "info" | "warning";
2832
+ type: "error" | "success" | "info" | "warning";
2833
2833
  id?: number | undefined;
2834
2834
  }[] | undefined;
2835
2835
  required?: boolean | undefined;
@@ -2851,7 +2851,7 @@ export declare function init(config: AuthHeroConfig): {
2851
2851
  hint?: string | undefined;
2852
2852
  messages?: {
2853
2853
  text: string;
2854
- type: "success" | "error" | "info" | "warning";
2854
+ type: "error" | "success" | "info" | "warning";
2855
2855
  id?: number | undefined;
2856
2856
  }[] | undefined;
2857
2857
  required?: boolean | undefined;
@@ -2873,7 +2873,7 @@ export declare function init(config: AuthHeroConfig): {
2873
2873
  hint?: string | undefined;
2874
2874
  messages?: {
2875
2875
  text: string;
2876
- type: "success" | "error" | "info" | "warning";
2876
+ type: "error" | "success" | "info" | "warning";
2877
2877
  id?: number | undefined;
2878
2878
  }[] | undefined;
2879
2879
  required?: boolean | undefined;
@@ -2892,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
2892
2892
  hint?: string | undefined;
2893
2893
  messages?: {
2894
2894
  text: string;
2895
- type: "success" | "error" | "info" | "warning";
2895
+ type: "error" | "success" | "info" | "warning";
2896
2896
  id?: number | undefined;
2897
2897
  }[] | undefined;
2898
2898
  required?: boolean | undefined;
@@ -2917,7 +2917,7 @@ export declare function init(config: AuthHeroConfig): {
2917
2917
  hint?: string | undefined;
2918
2918
  messages?: {
2919
2919
  text: string;
2920
- type: "success" | "error" | "info" | "warning";
2920
+ type: "error" | "success" | "info" | "warning";
2921
2921
  id?: number | undefined;
2922
2922
  }[] | undefined;
2923
2923
  required?: boolean | undefined;
@@ -2938,7 +2938,7 @@ export declare function init(config: AuthHeroConfig): {
2938
2938
  hint?: string | undefined;
2939
2939
  messages?: {
2940
2940
  text: string;
2941
- type: "success" | "error" | "info" | "warning";
2941
+ type: "error" | "success" | "info" | "warning";
2942
2942
  id?: number | undefined;
2943
2943
  }[] | undefined;
2944
2944
  required?: boolean | undefined;
@@ -2959,7 +2959,7 @@ export declare function init(config: AuthHeroConfig): {
2959
2959
  hint?: string | undefined;
2960
2960
  messages?: {
2961
2961
  text: string;
2962
- type: "success" | "error" | "info" | "warning";
2962
+ type: "error" | "success" | "info" | "warning";
2963
2963
  id?: number | undefined;
2964
2964
  }[] | undefined;
2965
2965
  required?: boolean | undefined;
@@ -3192,7 +3192,7 @@ export declare function init(config: AuthHeroConfig): {
3192
3192
  hint?: string | undefined;
3193
3193
  messages?: {
3194
3194
  text: string;
3195
- type: "success" | "error" | "info" | "warning";
3195
+ type: "error" | "success" | "info" | "warning";
3196
3196
  id?: number | undefined;
3197
3197
  }[] | undefined;
3198
3198
  required?: boolean | undefined;
@@ -3210,7 +3210,7 @@ export declare function init(config: AuthHeroConfig): {
3210
3210
  hint?: string | undefined;
3211
3211
  messages?: {
3212
3212
  text: string;
3213
- type: "success" | "error" | "info" | "warning";
3213
+ type: "error" | "success" | "info" | "warning";
3214
3214
  id?: number | undefined;
3215
3215
  }[] | undefined;
3216
3216
  required?: boolean | undefined;
@@ -3234,7 +3234,7 @@ export declare function init(config: AuthHeroConfig): {
3234
3234
  hint?: string | undefined;
3235
3235
  messages?: {
3236
3236
  text: string;
3237
- type: "success" | "error" | "info" | "warning";
3237
+ type: "error" | "success" | "info" | "warning";
3238
3238
  id?: number | undefined;
3239
3239
  }[] | undefined;
3240
3240
  required?: boolean | undefined;
@@ -3258,7 +3258,7 @@ export declare function init(config: AuthHeroConfig): {
3258
3258
  hint?: string | undefined;
3259
3259
  messages?: {
3260
3260
  text: string;
3261
- type: "success" | "error" | "info" | "warning";
3261
+ type: "error" | "success" | "info" | "warning";
3262
3262
  id?: number | undefined;
3263
3263
  }[] | undefined;
3264
3264
  required?: boolean | undefined;
@@ -3282,7 +3282,7 @@ export declare function init(config: AuthHeroConfig): {
3282
3282
  hint?: string | undefined;
3283
3283
  messages?: {
3284
3284
  text: string;
3285
- type: "success" | "error" | "info" | "warning";
3285
+ type: "error" | "success" | "info" | "warning";
3286
3286
  id?: number | undefined;
3287
3287
  }[] | undefined;
3288
3288
  required?: boolean | undefined;
@@ -3311,7 +3311,7 @@ export declare function init(config: AuthHeroConfig): {
3311
3311
  hint?: string | undefined;
3312
3312
  messages?: {
3313
3313
  text: string;
3314
- type: "success" | "error" | "info" | "warning";
3314
+ type: "error" | "success" | "info" | "warning";
3315
3315
  id?: number | undefined;
3316
3316
  }[] | undefined;
3317
3317
  required?: boolean | undefined;
@@ -3326,7 +3326,7 @@ export declare function init(config: AuthHeroConfig): {
3326
3326
  hint?: string | undefined;
3327
3327
  messages?: {
3328
3328
  text: string;
3329
- type: "success" | "error" | "info" | "warning";
3329
+ type: "error" | "success" | "info" | "warning";
3330
3330
  id?: number | undefined;
3331
3331
  }[] | undefined;
3332
3332
  required?: boolean | undefined;
@@ -3347,7 +3347,7 @@ export declare function init(config: AuthHeroConfig): {
3347
3347
  hint?: string | undefined;
3348
3348
  messages?: {
3349
3349
  text: string;
3350
- type: "success" | "error" | "info" | "warning";
3350
+ type: "error" | "success" | "info" | "warning";
3351
3351
  id?: number | undefined;
3352
3352
  }[] | undefined;
3353
3353
  required?: boolean | undefined;
@@ -3372,7 +3372,7 @@ export declare function init(config: AuthHeroConfig): {
3372
3372
  hint?: string | undefined;
3373
3373
  messages?: {
3374
3374
  text: string;
3375
- type: "success" | "error" | "info" | "warning";
3375
+ type: "error" | "success" | "info" | "warning";
3376
3376
  id?: number | undefined;
3377
3377
  }[] | undefined;
3378
3378
  required?: boolean | undefined;
@@ -3391,7 +3391,7 @@ export declare function init(config: AuthHeroConfig): {
3391
3391
  hint?: string | undefined;
3392
3392
  messages?: {
3393
3393
  text: string;
3394
- type: "success" | "error" | "info" | "warning";
3394
+ type: "error" | "success" | "info" | "warning";
3395
3395
  id?: number | undefined;
3396
3396
  }[] | undefined;
3397
3397
  required?: boolean | undefined;
@@ -3411,7 +3411,7 @@ export declare function init(config: AuthHeroConfig): {
3411
3411
  hint?: string | undefined;
3412
3412
  messages?: {
3413
3413
  text: string;
3414
- type: "success" | "error" | "info" | "warning";
3414
+ type: "error" | "success" | "info" | "warning";
3415
3415
  id?: number | undefined;
3416
3416
  }[] | undefined;
3417
3417
  required?: boolean | undefined;
@@ -3430,7 +3430,7 @@ export declare function init(config: AuthHeroConfig): {
3430
3430
  hint?: string | undefined;
3431
3431
  messages?: {
3432
3432
  text: string;
3433
- type: "success" | "error" | "info" | "warning";
3433
+ type: "error" | "success" | "info" | "warning";
3434
3434
  id?: number | undefined;
3435
3435
  }[] | undefined;
3436
3436
  required?: boolean | undefined;
@@ -3452,7 +3452,7 @@ export declare function init(config: AuthHeroConfig): {
3452
3452
  hint?: string | undefined;
3453
3453
  messages?: {
3454
3454
  text: string;
3455
- type: "success" | "error" | "info" | "warning";
3455
+ type: "error" | "success" | "info" | "warning";
3456
3456
  id?: number | undefined;
3457
3457
  }[] | undefined;
3458
3458
  required?: boolean | undefined;
@@ -3474,7 +3474,7 @@ export declare function init(config: AuthHeroConfig): {
3474
3474
  hint?: string | undefined;
3475
3475
  messages?: {
3476
3476
  text: string;
3477
- type: "success" | "error" | "info" | "warning";
3477
+ type: "error" | "success" | "info" | "warning";
3478
3478
  id?: number | undefined;
3479
3479
  }[] | undefined;
3480
3480
  required?: boolean | undefined;
@@ -3493,7 +3493,7 @@ export declare function init(config: AuthHeroConfig): {
3493
3493
  hint?: string | undefined;
3494
3494
  messages?: {
3495
3495
  text: string;
3496
- type: "success" | "error" | "info" | "warning";
3496
+ type: "error" | "success" | "info" | "warning";
3497
3497
  id?: number | undefined;
3498
3498
  }[] | undefined;
3499
3499
  required?: boolean | undefined;
@@ -3518,7 +3518,7 @@ export declare function init(config: AuthHeroConfig): {
3518
3518
  hint?: string | undefined;
3519
3519
  messages?: {
3520
3520
  text: string;
3521
- type: "success" | "error" | "info" | "warning";
3521
+ type: "error" | "success" | "info" | "warning";
3522
3522
  id?: number | undefined;
3523
3523
  }[] | undefined;
3524
3524
  required?: boolean | undefined;
@@ -3539,7 +3539,7 @@ export declare function init(config: AuthHeroConfig): {
3539
3539
  hint?: string | undefined;
3540
3540
  messages?: {
3541
3541
  text: string;
3542
- type: "success" | "error" | "info" | "warning";
3542
+ type: "error" | "success" | "info" | "warning";
3543
3543
  id?: number | undefined;
3544
3544
  }[] | undefined;
3545
3545
  required?: boolean | undefined;
@@ -3560,7 +3560,7 @@ export declare function init(config: AuthHeroConfig): {
3560
3560
  hint?: string | undefined;
3561
3561
  messages?: {
3562
3562
  text: string;
3563
- type: "success" | "error" | "info" | "warning";
3563
+ type: "error" | "success" | "info" | "warning";
3564
3564
  id?: number | undefined;
3565
3565
  }[] | undefined;
3566
3566
  required?: boolean | undefined;
@@ -3808,7 +3808,7 @@ export declare function init(config: AuthHeroConfig): {
3808
3808
  hint?: string | undefined;
3809
3809
  messages?: {
3810
3810
  text: string;
3811
- type: "success" | "error" | "info" | "warning";
3811
+ type: "error" | "success" | "info" | "warning";
3812
3812
  id?: number | undefined;
3813
3813
  }[] | undefined;
3814
3814
  required?: boolean | undefined;
@@ -3826,7 +3826,7 @@ export declare function init(config: AuthHeroConfig): {
3826
3826
  hint?: string | undefined;
3827
3827
  messages?: {
3828
3828
  text: string;
3829
- type: "success" | "error" | "info" | "warning";
3829
+ type: "error" | "success" | "info" | "warning";
3830
3830
  id?: number | undefined;
3831
3831
  }[] | undefined;
3832
3832
  required?: boolean | undefined;
@@ -3850,7 +3850,7 @@ export declare function init(config: AuthHeroConfig): {
3850
3850
  hint?: string | undefined;
3851
3851
  messages?: {
3852
3852
  text: string;
3853
- type: "success" | "error" | "info" | "warning";
3853
+ type: "error" | "success" | "info" | "warning";
3854
3854
  id?: number | undefined;
3855
3855
  }[] | undefined;
3856
3856
  required?: boolean | undefined;
@@ -3874,7 +3874,7 @@ export declare function init(config: AuthHeroConfig): {
3874
3874
  hint?: string | undefined;
3875
3875
  messages?: {
3876
3876
  text: string;
3877
- type: "success" | "error" | "info" | "warning";
3877
+ type: "error" | "success" | "info" | "warning";
3878
3878
  id?: number | undefined;
3879
3879
  }[] | undefined;
3880
3880
  required?: boolean | undefined;
@@ -3898,7 +3898,7 @@ export declare function init(config: AuthHeroConfig): {
3898
3898
  hint?: string | undefined;
3899
3899
  messages?: {
3900
3900
  text: string;
3901
- type: "success" | "error" | "info" | "warning";
3901
+ type: "error" | "success" | "info" | "warning";
3902
3902
  id?: number | undefined;
3903
3903
  }[] | undefined;
3904
3904
  required?: boolean | undefined;
@@ -3927,7 +3927,7 @@ export declare function init(config: AuthHeroConfig): {
3927
3927
  hint?: string | undefined;
3928
3928
  messages?: {
3929
3929
  text: string;
3930
- type: "success" | "error" | "info" | "warning";
3930
+ type: "error" | "success" | "info" | "warning";
3931
3931
  id?: number | undefined;
3932
3932
  }[] | undefined;
3933
3933
  required?: boolean | undefined;
@@ -3942,7 +3942,7 @@ export declare function init(config: AuthHeroConfig): {
3942
3942
  hint?: string | undefined;
3943
3943
  messages?: {
3944
3944
  text: string;
3945
- type: "success" | "error" | "info" | "warning";
3945
+ type: "error" | "success" | "info" | "warning";
3946
3946
  id?: number | undefined;
3947
3947
  }[] | undefined;
3948
3948
  required?: boolean | undefined;
@@ -3963,7 +3963,7 @@ export declare function init(config: AuthHeroConfig): {
3963
3963
  hint?: string | undefined;
3964
3964
  messages?: {
3965
3965
  text: string;
3966
- type: "success" | "error" | "info" | "warning";
3966
+ type: "error" | "success" | "info" | "warning";
3967
3967
  id?: number | undefined;
3968
3968
  }[] | undefined;
3969
3969
  required?: boolean | undefined;
@@ -3988,7 +3988,7 @@ export declare function init(config: AuthHeroConfig): {
3988
3988
  hint?: string | undefined;
3989
3989
  messages?: {
3990
3990
  text: string;
3991
- type: "success" | "error" | "info" | "warning";
3991
+ type: "error" | "success" | "info" | "warning";
3992
3992
  id?: number | undefined;
3993
3993
  }[] | undefined;
3994
3994
  required?: boolean | undefined;
@@ -4007,7 +4007,7 @@ export declare function init(config: AuthHeroConfig): {
4007
4007
  hint?: string | undefined;
4008
4008
  messages?: {
4009
4009
  text: string;
4010
- type: "success" | "error" | "info" | "warning";
4010
+ type: "error" | "success" | "info" | "warning";
4011
4011
  id?: number | undefined;
4012
4012
  }[] | undefined;
4013
4013
  required?: boolean | undefined;
@@ -4027,7 +4027,7 @@ export declare function init(config: AuthHeroConfig): {
4027
4027
  hint?: string | undefined;
4028
4028
  messages?: {
4029
4029
  text: string;
4030
- type: "success" | "error" | "info" | "warning";
4030
+ type: "error" | "success" | "info" | "warning";
4031
4031
  id?: number | undefined;
4032
4032
  }[] | undefined;
4033
4033
  required?: boolean | undefined;
@@ -4046,7 +4046,7 @@ export declare function init(config: AuthHeroConfig): {
4046
4046
  hint?: string | undefined;
4047
4047
  messages?: {
4048
4048
  text: string;
4049
- type: "success" | "error" | "info" | "warning";
4049
+ type: "error" | "success" | "info" | "warning";
4050
4050
  id?: number | undefined;
4051
4051
  }[] | undefined;
4052
4052
  required?: boolean | undefined;
@@ -4068,7 +4068,7 @@ export declare function init(config: AuthHeroConfig): {
4068
4068
  hint?: string | undefined;
4069
4069
  messages?: {
4070
4070
  text: string;
4071
- type: "success" | "error" | "info" | "warning";
4071
+ type: "error" | "success" | "info" | "warning";
4072
4072
  id?: number | undefined;
4073
4073
  }[] | undefined;
4074
4074
  required?: boolean | undefined;
@@ -4090,7 +4090,7 @@ export declare function init(config: AuthHeroConfig): {
4090
4090
  hint?: string | undefined;
4091
4091
  messages?: {
4092
4092
  text: string;
4093
- type: "success" | "error" | "info" | "warning";
4093
+ type: "error" | "success" | "info" | "warning";
4094
4094
  id?: number | undefined;
4095
4095
  }[] | undefined;
4096
4096
  required?: boolean | undefined;
@@ -4109,7 +4109,7 @@ export declare function init(config: AuthHeroConfig): {
4109
4109
  hint?: string | undefined;
4110
4110
  messages?: {
4111
4111
  text: string;
4112
- type: "success" | "error" | "info" | "warning";
4112
+ type: "error" | "success" | "info" | "warning";
4113
4113
  id?: number | undefined;
4114
4114
  }[] | undefined;
4115
4115
  required?: boolean | undefined;
@@ -4134,7 +4134,7 @@ export declare function init(config: AuthHeroConfig): {
4134
4134
  hint?: string | undefined;
4135
4135
  messages?: {
4136
4136
  text: string;
4137
- type: "success" | "error" | "info" | "warning";
4137
+ type: "error" | "success" | "info" | "warning";
4138
4138
  id?: number | undefined;
4139
4139
  }[] | undefined;
4140
4140
  required?: boolean | undefined;
@@ -4155,7 +4155,7 @@ export declare function init(config: AuthHeroConfig): {
4155
4155
  hint?: string | undefined;
4156
4156
  messages?: {
4157
4157
  text: string;
4158
- type: "success" | "error" | "info" | "warning";
4158
+ type: "error" | "success" | "info" | "warning";
4159
4159
  id?: number | undefined;
4160
4160
  }[] | undefined;
4161
4161
  required?: boolean | undefined;
@@ -4176,7 +4176,7 @@ export declare function init(config: AuthHeroConfig): {
4176
4176
  hint?: string | undefined;
4177
4177
  messages?: {
4178
4178
  text: string;
4179
- type: "success" | "error" | "info" | "warning";
4179
+ type: "error" | "success" | "info" | "warning";
4180
4180
  id?: number | undefined;
4181
4181
  }[] | undefined;
4182
4182
  required?: boolean | undefined;
@@ -4430,7 +4430,7 @@ export declare function init(config: AuthHeroConfig): {
4430
4430
  hint?: string | undefined;
4431
4431
  messages?: {
4432
4432
  text: string;
4433
- type: "success" | "error" | "info" | "warning";
4433
+ type: "error" | "success" | "info" | "warning";
4434
4434
  id?: number | undefined;
4435
4435
  }[] | undefined;
4436
4436
  required?: boolean | undefined;
@@ -4448,7 +4448,7 @@ export declare function init(config: AuthHeroConfig): {
4448
4448
  hint?: string | undefined;
4449
4449
  messages?: {
4450
4450
  text: string;
4451
- type: "success" | "error" | "info" | "warning";
4451
+ type: "error" | "success" | "info" | "warning";
4452
4452
  id?: number | undefined;
4453
4453
  }[] | undefined;
4454
4454
  required?: boolean | undefined;
@@ -4472,7 +4472,7 @@ export declare function init(config: AuthHeroConfig): {
4472
4472
  hint?: string | undefined;
4473
4473
  messages?: {
4474
4474
  text: string;
4475
- type: "success" | "error" | "info" | "warning";
4475
+ type: "error" | "success" | "info" | "warning";
4476
4476
  id?: number | undefined;
4477
4477
  }[] | undefined;
4478
4478
  required?: boolean | undefined;
@@ -4496,7 +4496,7 @@ export declare function init(config: AuthHeroConfig): {
4496
4496
  hint?: string | undefined;
4497
4497
  messages?: {
4498
4498
  text: string;
4499
- type: "success" | "error" | "info" | "warning";
4499
+ type: "error" | "success" | "info" | "warning";
4500
4500
  id?: number | undefined;
4501
4501
  }[] | undefined;
4502
4502
  required?: boolean | undefined;
@@ -4520,7 +4520,7 @@ export declare function init(config: AuthHeroConfig): {
4520
4520
  hint?: string | undefined;
4521
4521
  messages?: {
4522
4522
  text: string;
4523
- type: "success" | "error" | "info" | "warning";
4523
+ type: "error" | "success" | "info" | "warning";
4524
4524
  id?: number | undefined;
4525
4525
  }[] | undefined;
4526
4526
  required?: boolean | undefined;
@@ -4545,7 +4545,7 @@ export declare function init(config: AuthHeroConfig): {
4545
4545
  hint?: string | undefined;
4546
4546
  messages?: {
4547
4547
  text: string;
4548
- type: "success" | "error" | "info" | "warning";
4548
+ type: "error" | "success" | "info" | "warning";
4549
4549
  id?: number | undefined;
4550
4550
  }[] | undefined;
4551
4551
  required?: boolean | undefined;
@@ -4560,7 +4560,7 @@ export declare function init(config: AuthHeroConfig): {
4560
4560
  hint?: string | undefined;
4561
4561
  messages?: {
4562
4562
  text: string;
4563
- type: "success" | "error" | "info" | "warning";
4563
+ type: "error" | "success" | "info" | "warning";
4564
4564
  id?: number | undefined;
4565
4565
  }[] | undefined;
4566
4566
  required?: boolean | undefined;
@@ -4581,7 +4581,7 @@ export declare function init(config: AuthHeroConfig): {
4581
4581
  hint?: string | undefined;
4582
4582
  messages?: {
4583
4583
  text: string;
4584
- type: "success" | "error" | "info" | "warning";
4584
+ type: "error" | "success" | "info" | "warning";
4585
4585
  id?: number | undefined;
4586
4586
  }[] | undefined;
4587
4587
  required?: boolean | undefined;
@@ -4606,7 +4606,7 @@ export declare function init(config: AuthHeroConfig): {
4606
4606
  hint?: string | undefined;
4607
4607
  messages?: {
4608
4608
  text: string;
4609
- type: "success" | "error" | "info" | "warning";
4609
+ type: "error" | "success" | "info" | "warning";
4610
4610
  id?: number | undefined;
4611
4611
  }[] | undefined;
4612
4612
  required?: boolean | undefined;
@@ -4625,7 +4625,7 @@ export declare function init(config: AuthHeroConfig): {
4625
4625
  hint?: string | undefined;
4626
4626
  messages?: {
4627
4627
  text: string;
4628
- type: "success" | "error" | "info" | "warning";
4628
+ type: "error" | "success" | "info" | "warning";
4629
4629
  id?: number | undefined;
4630
4630
  }[] | undefined;
4631
4631
  required?: boolean | undefined;
@@ -4645,7 +4645,7 @@ export declare function init(config: AuthHeroConfig): {
4645
4645
  hint?: string | undefined;
4646
4646
  messages?: {
4647
4647
  text: string;
4648
- type: "success" | "error" | "info" | "warning";
4648
+ type: "error" | "success" | "info" | "warning";
4649
4649
  id?: number | undefined;
4650
4650
  }[] | undefined;
4651
4651
  required?: boolean | undefined;
@@ -4664,7 +4664,7 @@ export declare function init(config: AuthHeroConfig): {
4664
4664
  hint?: string | undefined;
4665
4665
  messages?: {
4666
4666
  text: string;
4667
- type: "success" | "error" | "info" | "warning";
4667
+ type: "error" | "success" | "info" | "warning";
4668
4668
  id?: number | undefined;
4669
4669
  }[] | undefined;
4670
4670
  required?: boolean | undefined;
@@ -4686,7 +4686,7 @@ export declare function init(config: AuthHeroConfig): {
4686
4686
  hint?: string | undefined;
4687
4687
  messages?: {
4688
4688
  text: string;
4689
- type: "success" | "error" | "info" | "warning";
4689
+ type: "error" | "success" | "info" | "warning";
4690
4690
  id?: number | undefined;
4691
4691
  }[] | undefined;
4692
4692
  required?: boolean | undefined;
@@ -4708,7 +4708,7 @@ export declare function init(config: AuthHeroConfig): {
4708
4708
  hint?: string | undefined;
4709
4709
  messages?: {
4710
4710
  text: string;
4711
- type: "success" | "error" | "info" | "warning";
4711
+ type: "error" | "success" | "info" | "warning";
4712
4712
  id?: number | undefined;
4713
4713
  }[] | undefined;
4714
4714
  required?: boolean | undefined;
@@ -4727,7 +4727,7 @@ export declare function init(config: AuthHeroConfig): {
4727
4727
  hint?: string | undefined;
4728
4728
  messages?: {
4729
4729
  text: string;
4730
- type: "success" | "error" | "info" | "warning";
4730
+ type: "error" | "success" | "info" | "warning";
4731
4731
  id?: number | undefined;
4732
4732
  }[] | undefined;
4733
4733
  required?: boolean | undefined;
@@ -4752,7 +4752,7 @@ export declare function init(config: AuthHeroConfig): {
4752
4752
  hint?: string | undefined;
4753
4753
  messages?: {
4754
4754
  text: string;
4755
- type: "success" | "error" | "info" | "warning";
4755
+ type: "error" | "success" | "info" | "warning";
4756
4756
  id?: number | undefined;
4757
4757
  }[] | undefined;
4758
4758
  required?: boolean | undefined;
@@ -4773,7 +4773,7 @@ export declare function init(config: AuthHeroConfig): {
4773
4773
  hint?: string | undefined;
4774
4774
  messages?: {
4775
4775
  text: string;
4776
- type: "success" | "error" | "info" | "warning";
4776
+ type: "error" | "success" | "info" | "warning";
4777
4777
  id?: number | undefined;
4778
4778
  }[] | undefined;
4779
4779
  required?: boolean | undefined;
@@ -4794,7 +4794,7 @@ export declare function init(config: AuthHeroConfig): {
4794
4794
  hint?: string | undefined;
4795
4795
  messages?: {
4796
4796
  text: string;
4797
- type: "success" | "error" | "info" | "warning";
4797
+ type: "error" | "success" | "info" | "warning";
4798
4798
  id?: number | undefined;
4799
4799
  }[] | undefined;
4800
4800
  required?: boolean | undefined;
@@ -5025,7 +5025,7 @@ export declare function init(config: AuthHeroConfig): {
5025
5025
  hint?: string | undefined;
5026
5026
  messages?: {
5027
5027
  text: string;
5028
- type: "success" | "error" | "info" | "warning";
5028
+ type: "error" | "success" | "info" | "warning";
5029
5029
  id?: number | undefined;
5030
5030
  }[] | undefined;
5031
5031
  required?: boolean | undefined;
@@ -5043,7 +5043,7 @@ export declare function init(config: AuthHeroConfig): {
5043
5043
  hint?: string | undefined;
5044
5044
  messages?: {
5045
5045
  text: string;
5046
- type: "success" | "error" | "info" | "warning";
5046
+ type: "error" | "success" | "info" | "warning";
5047
5047
  id?: number | undefined;
5048
5048
  }[] | undefined;
5049
5049
  required?: boolean | undefined;
@@ -5067,7 +5067,7 @@ export declare function init(config: AuthHeroConfig): {
5067
5067
  hint?: string | undefined;
5068
5068
  messages?: {
5069
5069
  text: string;
5070
- type: "success" | "error" | "info" | "warning";
5070
+ type: "error" | "success" | "info" | "warning";
5071
5071
  id?: number | undefined;
5072
5072
  }[] | undefined;
5073
5073
  required?: boolean | undefined;
@@ -5091,7 +5091,7 @@ export declare function init(config: AuthHeroConfig): {
5091
5091
  hint?: string | undefined;
5092
5092
  messages?: {
5093
5093
  text: string;
5094
- type: "success" | "error" | "info" | "warning";
5094
+ type: "error" | "success" | "info" | "warning";
5095
5095
  id?: number | undefined;
5096
5096
  }[] | undefined;
5097
5097
  required?: boolean | undefined;
@@ -5115,7 +5115,7 @@ export declare function init(config: AuthHeroConfig): {
5115
5115
  hint?: string | undefined;
5116
5116
  messages?: {
5117
5117
  text: string;
5118
- type: "success" | "error" | "info" | "warning";
5118
+ type: "error" | "success" | "info" | "warning";
5119
5119
  id?: number | undefined;
5120
5120
  }[] | undefined;
5121
5121
  required?: boolean | undefined;
@@ -5144,7 +5144,7 @@ export declare function init(config: AuthHeroConfig): {
5144
5144
  hint?: string | undefined;
5145
5145
  messages?: {
5146
5146
  text: string;
5147
- type: "success" | "error" | "info" | "warning";
5147
+ type: "error" | "success" | "info" | "warning";
5148
5148
  id?: number | undefined;
5149
5149
  }[] | undefined;
5150
5150
  required?: boolean | undefined;
@@ -5159,7 +5159,7 @@ export declare function init(config: AuthHeroConfig): {
5159
5159
  hint?: string | undefined;
5160
5160
  messages?: {
5161
5161
  text: string;
5162
- type: "success" | "error" | "info" | "warning";
5162
+ type: "error" | "success" | "info" | "warning";
5163
5163
  id?: number | undefined;
5164
5164
  }[] | undefined;
5165
5165
  required?: boolean | undefined;
@@ -5180,7 +5180,7 @@ export declare function init(config: AuthHeroConfig): {
5180
5180
  hint?: string | undefined;
5181
5181
  messages?: {
5182
5182
  text: string;
5183
- type: "success" | "error" | "info" | "warning";
5183
+ type: "error" | "success" | "info" | "warning";
5184
5184
  id?: number | undefined;
5185
5185
  }[] | undefined;
5186
5186
  required?: boolean | undefined;
@@ -5205,7 +5205,7 @@ export declare function init(config: AuthHeroConfig): {
5205
5205
  hint?: string | undefined;
5206
5206
  messages?: {
5207
5207
  text: string;
5208
- type: "success" | "error" | "info" | "warning";
5208
+ type: "error" | "success" | "info" | "warning";
5209
5209
  id?: number | undefined;
5210
5210
  }[] | undefined;
5211
5211
  required?: boolean | undefined;
@@ -5224,7 +5224,7 @@ export declare function init(config: AuthHeroConfig): {
5224
5224
  hint?: string | undefined;
5225
5225
  messages?: {
5226
5226
  text: string;
5227
- type: "success" | "error" | "info" | "warning";
5227
+ type: "error" | "success" | "info" | "warning";
5228
5228
  id?: number | undefined;
5229
5229
  }[] | undefined;
5230
5230
  required?: boolean | undefined;
@@ -5244,7 +5244,7 @@ export declare function init(config: AuthHeroConfig): {
5244
5244
  hint?: string | undefined;
5245
5245
  messages?: {
5246
5246
  text: string;
5247
- type: "success" | "error" | "info" | "warning";
5247
+ type: "error" | "success" | "info" | "warning";
5248
5248
  id?: number | undefined;
5249
5249
  }[] | undefined;
5250
5250
  required?: boolean | undefined;
@@ -5263,7 +5263,7 @@ export declare function init(config: AuthHeroConfig): {
5263
5263
  hint?: string | undefined;
5264
5264
  messages?: {
5265
5265
  text: string;
5266
- type: "success" | "error" | "info" | "warning";
5266
+ type: "error" | "success" | "info" | "warning";
5267
5267
  id?: number | undefined;
5268
5268
  }[] | undefined;
5269
5269
  required?: boolean | undefined;
@@ -5285,7 +5285,7 @@ export declare function init(config: AuthHeroConfig): {
5285
5285
  hint?: string | undefined;
5286
5286
  messages?: {
5287
5287
  text: string;
5288
- type: "success" | "error" | "info" | "warning";
5288
+ type: "error" | "success" | "info" | "warning";
5289
5289
  id?: number | undefined;
5290
5290
  }[] | undefined;
5291
5291
  required?: boolean | undefined;
@@ -5307,7 +5307,7 @@ export declare function init(config: AuthHeroConfig): {
5307
5307
  hint?: string | undefined;
5308
5308
  messages?: {
5309
5309
  text: string;
5310
- type: "success" | "error" | "info" | "warning";
5310
+ type: "error" | "success" | "info" | "warning";
5311
5311
  id?: number | undefined;
5312
5312
  }[] | undefined;
5313
5313
  required?: boolean | undefined;
@@ -5326,7 +5326,7 @@ export declare function init(config: AuthHeroConfig): {
5326
5326
  hint?: string | undefined;
5327
5327
  messages?: {
5328
5328
  text: string;
5329
- type: "success" | "error" | "info" | "warning";
5329
+ type: "error" | "success" | "info" | "warning";
5330
5330
  id?: number | undefined;
5331
5331
  }[] | undefined;
5332
5332
  required?: boolean | undefined;
@@ -5351,7 +5351,7 @@ export declare function init(config: AuthHeroConfig): {
5351
5351
  hint?: string | undefined;
5352
5352
  messages?: {
5353
5353
  text: string;
5354
- type: "success" | "error" | "info" | "warning";
5354
+ type: "error" | "success" | "info" | "warning";
5355
5355
  id?: number | undefined;
5356
5356
  }[] | undefined;
5357
5357
  required?: boolean | undefined;
@@ -5372,7 +5372,7 @@ export declare function init(config: AuthHeroConfig): {
5372
5372
  hint?: string | undefined;
5373
5373
  messages?: {
5374
5374
  text: string;
5375
- type: "success" | "error" | "info" | "warning";
5375
+ type: "error" | "success" | "info" | "warning";
5376
5376
  id?: number | undefined;
5377
5377
  }[] | undefined;
5378
5378
  required?: boolean | undefined;
@@ -5393,7 +5393,7 @@ export declare function init(config: AuthHeroConfig): {
5393
5393
  hint?: string | undefined;
5394
5394
  messages?: {
5395
5395
  text: string;
5396
- type: "success" | "error" | "info" | "warning";
5396
+ type: "error" | "success" | "info" | "warning";
5397
5397
  id?: number | undefined;
5398
5398
  }[] | undefined;
5399
5399
  required?: boolean | undefined;
@@ -5626,7 +5626,7 @@ export declare function init(config: AuthHeroConfig): {
5626
5626
  hint?: string | undefined;
5627
5627
  messages?: {
5628
5628
  text: string;
5629
- type: "success" | "error" | "info" | "warning";
5629
+ type: "error" | "success" | "info" | "warning";
5630
5630
  id?: number | undefined;
5631
5631
  }[] | undefined;
5632
5632
  required?: boolean | undefined;
@@ -5644,7 +5644,7 @@ export declare function init(config: AuthHeroConfig): {
5644
5644
  hint?: string | undefined;
5645
5645
  messages?: {
5646
5646
  text: string;
5647
- type: "success" | "error" | "info" | "warning";
5647
+ type: "error" | "success" | "info" | "warning";
5648
5648
  id?: number | undefined;
5649
5649
  }[] | undefined;
5650
5650
  required?: boolean | undefined;
@@ -5668,7 +5668,7 @@ export declare function init(config: AuthHeroConfig): {
5668
5668
  hint?: string | undefined;
5669
5669
  messages?: {
5670
5670
  text: string;
5671
- type: "success" | "error" | "info" | "warning";
5671
+ type: "error" | "success" | "info" | "warning";
5672
5672
  id?: number | undefined;
5673
5673
  }[] | undefined;
5674
5674
  required?: boolean | undefined;
@@ -5692,7 +5692,7 @@ export declare function init(config: AuthHeroConfig): {
5692
5692
  hint?: string | undefined;
5693
5693
  messages?: {
5694
5694
  text: string;
5695
- type: "success" | "error" | "info" | "warning";
5695
+ type: "error" | "success" | "info" | "warning";
5696
5696
  id?: number | undefined;
5697
5697
  }[] | undefined;
5698
5698
  required?: boolean | undefined;
@@ -5716,7 +5716,7 @@ export declare function init(config: AuthHeroConfig): {
5716
5716
  hint?: string | undefined;
5717
5717
  messages?: {
5718
5718
  text: string;
5719
- type: "success" | "error" | "info" | "warning";
5719
+ type: "error" | "success" | "info" | "warning";
5720
5720
  id?: number | undefined;
5721
5721
  }[] | undefined;
5722
5722
  required?: boolean | undefined;
@@ -5741,7 +5741,7 @@ export declare function init(config: AuthHeroConfig): {
5741
5741
  hint?: string | undefined;
5742
5742
  messages?: {
5743
5743
  text: string;
5744
- type: "success" | "error" | "info" | "warning";
5744
+ type: "error" | "success" | "info" | "warning";
5745
5745
  id?: number | undefined;
5746
5746
  }[] | undefined;
5747
5747
  required?: boolean | undefined;
@@ -5756,7 +5756,7 @@ export declare function init(config: AuthHeroConfig): {
5756
5756
  hint?: string | undefined;
5757
5757
  messages?: {
5758
5758
  text: string;
5759
- type: "success" | "error" | "info" | "warning";
5759
+ type: "error" | "success" | "info" | "warning";
5760
5760
  id?: number | undefined;
5761
5761
  }[] | undefined;
5762
5762
  required?: boolean | undefined;
@@ -5777,7 +5777,7 @@ export declare function init(config: AuthHeroConfig): {
5777
5777
  hint?: string | undefined;
5778
5778
  messages?: {
5779
5779
  text: string;
5780
- type: "success" | "error" | "info" | "warning";
5780
+ type: "error" | "success" | "info" | "warning";
5781
5781
  id?: number | undefined;
5782
5782
  }[] | undefined;
5783
5783
  required?: boolean | undefined;
@@ -5802,7 +5802,7 @@ export declare function init(config: AuthHeroConfig): {
5802
5802
  hint?: string | undefined;
5803
5803
  messages?: {
5804
5804
  text: string;
5805
- type: "success" | "error" | "info" | "warning";
5805
+ type: "error" | "success" | "info" | "warning";
5806
5806
  id?: number | undefined;
5807
5807
  }[] | undefined;
5808
5808
  required?: boolean | undefined;
@@ -5821,7 +5821,7 @@ export declare function init(config: AuthHeroConfig): {
5821
5821
  hint?: string | undefined;
5822
5822
  messages?: {
5823
5823
  text: string;
5824
- type: "success" | "error" | "info" | "warning";
5824
+ type: "error" | "success" | "info" | "warning";
5825
5825
  id?: number | undefined;
5826
5826
  }[] | undefined;
5827
5827
  required?: boolean | undefined;
@@ -5841,7 +5841,7 @@ export declare function init(config: AuthHeroConfig): {
5841
5841
  hint?: string | undefined;
5842
5842
  messages?: {
5843
5843
  text: string;
5844
- type: "success" | "error" | "info" | "warning";
5844
+ type: "error" | "success" | "info" | "warning";
5845
5845
  id?: number | undefined;
5846
5846
  }[] | undefined;
5847
5847
  required?: boolean | undefined;
@@ -5860,7 +5860,7 @@ export declare function init(config: AuthHeroConfig): {
5860
5860
  hint?: string | undefined;
5861
5861
  messages?: {
5862
5862
  text: string;
5863
- type: "success" | "error" | "info" | "warning";
5863
+ type: "error" | "success" | "info" | "warning";
5864
5864
  id?: number | undefined;
5865
5865
  }[] | undefined;
5866
5866
  required?: boolean | undefined;
@@ -5882,7 +5882,7 @@ export declare function init(config: AuthHeroConfig): {
5882
5882
  hint?: string | undefined;
5883
5883
  messages?: {
5884
5884
  text: string;
5885
- type: "success" | "error" | "info" | "warning";
5885
+ type: "error" | "success" | "info" | "warning";
5886
5886
  id?: number | undefined;
5887
5887
  }[] | undefined;
5888
5888
  required?: boolean | undefined;
@@ -5904,7 +5904,7 @@ export declare function init(config: AuthHeroConfig): {
5904
5904
  hint?: string | undefined;
5905
5905
  messages?: {
5906
5906
  text: string;
5907
- type: "success" | "error" | "info" | "warning";
5907
+ type: "error" | "success" | "info" | "warning";
5908
5908
  id?: number | undefined;
5909
5909
  }[] | undefined;
5910
5910
  required?: boolean | undefined;
@@ -5923,7 +5923,7 @@ export declare function init(config: AuthHeroConfig): {
5923
5923
  hint?: string | undefined;
5924
5924
  messages?: {
5925
5925
  text: string;
5926
- type: "success" | "error" | "info" | "warning";
5926
+ type: "error" | "success" | "info" | "warning";
5927
5927
  id?: number | undefined;
5928
5928
  }[] | undefined;
5929
5929
  required?: boolean | undefined;
@@ -5948,7 +5948,7 @@ export declare function init(config: AuthHeroConfig): {
5948
5948
  hint?: string | undefined;
5949
5949
  messages?: {
5950
5950
  text: string;
5951
- type: "success" | "error" | "info" | "warning";
5951
+ type: "error" | "success" | "info" | "warning";
5952
5952
  id?: number | undefined;
5953
5953
  }[] | undefined;
5954
5954
  required?: boolean | undefined;
@@ -5969,7 +5969,7 @@ export declare function init(config: AuthHeroConfig): {
5969
5969
  hint?: string | undefined;
5970
5970
  messages?: {
5971
5971
  text: string;
5972
- type: "success" | "error" | "info" | "warning";
5972
+ type: "error" | "success" | "info" | "warning";
5973
5973
  id?: number | undefined;
5974
5974
  }[] | undefined;
5975
5975
  required?: boolean | undefined;
@@ -5990,7 +5990,7 @@ export declare function init(config: AuthHeroConfig): {
5990
5990
  hint?: string | undefined;
5991
5991
  messages?: {
5992
5992
  text: string;
5993
- type: "success" | "error" | "info" | "warning";
5993
+ type: "error" | "success" | "info" | "warning";
5994
5994
  id?: number | undefined;
5995
5995
  }[] | undefined;
5996
5996
  required?: boolean | undefined;
@@ -6221,7 +6221,7 @@ export declare function init(config: AuthHeroConfig): {
6221
6221
  hint?: string | undefined;
6222
6222
  messages?: {
6223
6223
  text: string;
6224
- type: "success" | "error" | "info" | "warning";
6224
+ type: "error" | "success" | "info" | "warning";
6225
6225
  id?: number | undefined;
6226
6226
  }[] | undefined;
6227
6227
  required?: boolean | undefined;
@@ -6239,7 +6239,7 @@ export declare function init(config: AuthHeroConfig): {
6239
6239
  hint?: string | undefined;
6240
6240
  messages?: {
6241
6241
  text: string;
6242
- type: "success" | "error" | "info" | "warning";
6242
+ type: "error" | "success" | "info" | "warning";
6243
6243
  id?: number | undefined;
6244
6244
  }[] | undefined;
6245
6245
  required?: boolean | undefined;
@@ -6263,7 +6263,7 @@ export declare function init(config: AuthHeroConfig): {
6263
6263
  hint?: string | undefined;
6264
6264
  messages?: {
6265
6265
  text: string;
6266
- type: "success" | "error" | "info" | "warning";
6266
+ type: "error" | "success" | "info" | "warning";
6267
6267
  id?: number | undefined;
6268
6268
  }[] | undefined;
6269
6269
  required?: boolean | undefined;
@@ -6287,7 +6287,7 @@ export declare function init(config: AuthHeroConfig): {
6287
6287
  hint?: string | undefined;
6288
6288
  messages?: {
6289
6289
  text: string;
6290
- type: "success" | "error" | "info" | "warning";
6290
+ type: "error" | "success" | "info" | "warning";
6291
6291
  id?: number | undefined;
6292
6292
  }[] | undefined;
6293
6293
  required?: boolean | undefined;
@@ -6311,7 +6311,7 @@ export declare function init(config: AuthHeroConfig): {
6311
6311
  hint?: string | undefined;
6312
6312
  messages?: {
6313
6313
  text: string;
6314
- type: "success" | "error" | "info" | "warning";
6314
+ type: "error" | "success" | "info" | "warning";
6315
6315
  id?: number | undefined;
6316
6316
  }[] | undefined;
6317
6317
  required?: boolean | undefined;
@@ -6340,7 +6340,7 @@ export declare function init(config: AuthHeroConfig): {
6340
6340
  hint?: string | undefined;
6341
6341
  messages?: {
6342
6342
  text: string;
6343
- type: "success" | "error" | "info" | "warning";
6343
+ type: "error" | "success" | "info" | "warning";
6344
6344
  id?: number | undefined;
6345
6345
  }[] | undefined;
6346
6346
  required?: boolean | undefined;
@@ -6355,7 +6355,7 @@ export declare function init(config: AuthHeroConfig): {
6355
6355
  hint?: string | undefined;
6356
6356
  messages?: {
6357
6357
  text: string;
6358
- type: "success" | "error" | "info" | "warning";
6358
+ type: "error" | "success" | "info" | "warning";
6359
6359
  id?: number | undefined;
6360
6360
  }[] | undefined;
6361
6361
  required?: boolean | undefined;
@@ -6376,7 +6376,7 @@ export declare function init(config: AuthHeroConfig): {
6376
6376
  hint?: string | undefined;
6377
6377
  messages?: {
6378
6378
  text: string;
6379
- type: "success" | "error" | "info" | "warning";
6379
+ type: "error" | "success" | "info" | "warning";
6380
6380
  id?: number | undefined;
6381
6381
  }[] | undefined;
6382
6382
  required?: boolean | undefined;
@@ -6401,7 +6401,7 @@ export declare function init(config: AuthHeroConfig): {
6401
6401
  hint?: string | undefined;
6402
6402
  messages?: {
6403
6403
  text: string;
6404
- type: "success" | "error" | "info" | "warning";
6404
+ type: "error" | "success" | "info" | "warning";
6405
6405
  id?: number | undefined;
6406
6406
  }[] | undefined;
6407
6407
  required?: boolean | undefined;
@@ -6420,7 +6420,7 @@ export declare function init(config: AuthHeroConfig): {
6420
6420
  hint?: string | undefined;
6421
6421
  messages?: {
6422
6422
  text: string;
6423
- type: "success" | "error" | "info" | "warning";
6423
+ type: "error" | "success" | "info" | "warning";
6424
6424
  id?: number | undefined;
6425
6425
  }[] | undefined;
6426
6426
  required?: boolean | undefined;
@@ -6440,7 +6440,7 @@ export declare function init(config: AuthHeroConfig): {
6440
6440
  hint?: string | undefined;
6441
6441
  messages?: {
6442
6442
  text: string;
6443
- type: "success" | "error" | "info" | "warning";
6443
+ type: "error" | "success" | "info" | "warning";
6444
6444
  id?: number | undefined;
6445
6445
  }[] | undefined;
6446
6446
  required?: boolean | undefined;
@@ -6459,7 +6459,7 @@ export declare function init(config: AuthHeroConfig): {
6459
6459
  hint?: string | undefined;
6460
6460
  messages?: {
6461
6461
  text: string;
6462
- type: "success" | "error" | "info" | "warning";
6462
+ type: "error" | "success" | "info" | "warning";
6463
6463
  id?: number | undefined;
6464
6464
  }[] | undefined;
6465
6465
  required?: boolean | undefined;
@@ -6481,7 +6481,7 @@ export declare function init(config: AuthHeroConfig): {
6481
6481
  hint?: string | undefined;
6482
6482
  messages?: {
6483
6483
  text: string;
6484
- type: "success" | "error" | "info" | "warning";
6484
+ type: "error" | "success" | "info" | "warning";
6485
6485
  id?: number | undefined;
6486
6486
  }[] | undefined;
6487
6487
  required?: boolean | undefined;
@@ -6503,7 +6503,7 @@ export declare function init(config: AuthHeroConfig): {
6503
6503
  hint?: string | undefined;
6504
6504
  messages?: {
6505
6505
  text: string;
6506
- type: "success" | "error" | "info" | "warning";
6506
+ type: "error" | "success" | "info" | "warning";
6507
6507
  id?: number | undefined;
6508
6508
  }[] | undefined;
6509
6509
  required?: boolean | undefined;
@@ -6522,7 +6522,7 @@ export declare function init(config: AuthHeroConfig): {
6522
6522
  hint?: string | undefined;
6523
6523
  messages?: {
6524
6524
  text: string;
6525
- type: "success" | "error" | "info" | "warning";
6525
+ type: "error" | "success" | "info" | "warning";
6526
6526
  id?: number | undefined;
6527
6527
  }[] | undefined;
6528
6528
  required?: boolean | undefined;
@@ -6547,7 +6547,7 @@ export declare function init(config: AuthHeroConfig): {
6547
6547
  hint?: string | undefined;
6548
6548
  messages?: {
6549
6549
  text: string;
6550
- type: "success" | "error" | "info" | "warning";
6550
+ type: "error" | "success" | "info" | "warning";
6551
6551
  id?: number | undefined;
6552
6552
  }[] | undefined;
6553
6553
  required?: boolean | undefined;
@@ -6568,7 +6568,7 @@ export declare function init(config: AuthHeroConfig): {
6568
6568
  hint?: string | undefined;
6569
6569
  messages?: {
6570
6570
  text: string;
6571
- type: "success" | "error" | "info" | "warning";
6571
+ type: "error" | "success" | "info" | "warning";
6572
6572
  id?: number | undefined;
6573
6573
  }[] | undefined;
6574
6574
  required?: boolean | undefined;
@@ -6589,7 +6589,7 @@ export declare function init(config: AuthHeroConfig): {
6589
6589
  hint?: string | undefined;
6590
6590
  messages?: {
6591
6591
  text: string;
6592
- type: "success" | "error" | "info" | "warning";
6592
+ type: "error" | "success" | "info" | "warning";
6593
6593
  id?: number | undefined;
6594
6594
  }[] | undefined;
6595
6595
  required?: boolean | undefined;
@@ -6819,7 +6819,7 @@ export declare function init(config: AuthHeroConfig): {
6819
6819
  };
6820
6820
  };
6821
6821
  output: {
6822
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6822
+ 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";
6823
6823
  language: string;
6824
6824
  }[];
6825
6825
  outputFormat: "json";
@@ -6857,7 +6857,7 @@ export declare function init(config: AuthHeroConfig): {
6857
6857
  $get: {
6858
6858
  input: {
6859
6859
  param: {
6860
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6860
+ 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";
6861
6861
  language: string;
6862
6862
  };
6863
6863
  } & {
@@ -6879,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
6879
6879
  $put: {
6880
6880
  input: {
6881
6881
  param: {
6882
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6882
+ 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";
6883
6883
  language: string;
6884
6884
  };
6885
6885
  } & {
@@ -6903,7 +6903,7 @@ export declare function init(config: AuthHeroConfig): {
6903
6903
  $delete: {
6904
6904
  input: {
6905
6905
  param: {
6906
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6906
+ 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";
6907
6907
  language: string;
6908
6908
  };
6909
6909
  } & {
@@ -7765,7 +7765,7 @@ export declare function init(config: AuthHeroConfig): {
7765
7765
  };
7766
7766
  } | {
7767
7767
  mode: "inline";
7768
- status: "success" | "error";
7768
+ status: "error" | "success";
7769
7769
  connection_id: string;
7770
7770
  connection_name: string;
7771
7771
  strategy: string;
@@ -8712,7 +8712,7 @@ export declare function init(config: AuthHeroConfig): {
8712
8712
  created_at: string;
8713
8713
  updated_at: string;
8714
8714
  name: string;
8715
- provider: "auth0" | "cognito" | "okta" | "oidc";
8715
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8716
8716
  connection: string;
8717
8717
  enabled: boolean;
8718
8718
  credentials: {
@@ -8744,7 +8744,7 @@ export declare function init(config: AuthHeroConfig): {
8744
8744
  created_at: string;
8745
8745
  updated_at: string;
8746
8746
  name: string;
8747
- provider: "auth0" | "cognito" | "okta" | "oidc";
8747
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8748
8748
  connection: string;
8749
8749
  enabled: boolean;
8750
8750
  credentials: {
@@ -8770,7 +8770,7 @@ export declare function init(config: AuthHeroConfig): {
8770
8770
  } & {
8771
8771
  json: {
8772
8772
  name: string;
8773
- provider: "auth0" | "cognito" | "okta" | "oidc";
8773
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8774
8774
  connection: string;
8775
8775
  credentials: {
8776
8776
  domain: string;
@@ -8787,7 +8787,7 @@ export declare function init(config: AuthHeroConfig): {
8787
8787
  created_at: string;
8788
8788
  updated_at: string;
8789
8789
  name: string;
8790
- provider: "auth0" | "cognito" | "okta" | "oidc";
8790
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8791
8791
  connection: string;
8792
8792
  enabled: boolean;
8793
8793
  credentials: {
@@ -8818,7 +8818,7 @@ export declare function init(config: AuthHeroConfig): {
8818
8818
  json: {
8819
8819
  id?: string | undefined;
8820
8820
  name?: string | undefined;
8821
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8821
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8822
8822
  connection?: string | undefined;
8823
8823
  enabled?: boolean | undefined;
8824
8824
  credentials?: {
@@ -8834,7 +8834,7 @@ export declare function init(config: AuthHeroConfig): {
8834
8834
  created_at: string;
8835
8835
  updated_at: string;
8836
8836
  name: string;
8837
- provider: "auth0" | "cognito" | "okta" | "oidc";
8837
+ provider: "auth0" | "oidc" | "okta" | "cognito";
8838
8838
  connection: string;
8839
8839
  enabled: boolean;
8840
8840
  credentials: {
@@ -9052,7 +9052,7 @@ export declare function init(config: AuthHeroConfig): {
9052
9052
  };
9053
9053
  };
9054
9054
  output: {
9055
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9055
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9056
9056
  date: string;
9057
9057
  isMobile: boolean;
9058
9058
  log_id: string;
@@ -9091,7 +9091,7 @@ export declare function init(config: AuthHeroConfig): {
9091
9091
  limit: number;
9092
9092
  length: number;
9093
9093
  logs: {
9094
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9094
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9095
9095
  date: string;
9096
9096
  isMobile: boolean;
9097
9097
  log_id: string;
@@ -9145,7 +9145,7 @@ export declare function init(config: AuthHeroConfig): {
9145
9145
  };
9146
9146
  };
9147
9147
  output: {
9148
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9148
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9149
9149
  date: string;
9150
9150
  isMobile: boolean;
9151
9151
  log_id: string;
@@ -9533,7 +9533,7 @@ export declare function init(config: AuthHeroConfig): {
9533
9533
  addons?: {
9534
9534
  [x: string]: any;
9535
9535
  } | undefined;
9536
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9536
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9537
9537
  client_metadata?: {
9538
9538
  [x: string]: string;
9539
9539
  } | undefined;
@@ -9629,7 +9629,7 @@ export declare function init(config: AuthHeroConfig): {
9629
9629
  addons?: {
9630
9630
  [x: string]: any;
9631
9631
  } | undefined;
9632
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9632
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9633
9633
  client_metadata?: {
9634
9634
  [x: string]: string;
9635
9635
  } | undefined;
@@ -9740,7 +9740,7 @@ export declare function init(config: AuthHeroConfig): {
9740
9740
  addons?: {
9741
9741
  [x: string]: any;
9742
9742
  } | undefined;
9743
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9743
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9744
9744
  client_metadata?: {
9745
9745
  [x: string]: string;
9746
9746
  } | undefined;
@@ -9850,7 +9850,7 @@ export declare function init(config: AuthHeroConfig): {
9850
9850
  custom_login_page_preview?: string | undefined;
9851
9851
  form_template?: string | undefined;
9852
9852
  addons?: Record<string, any> | undefined;
9853
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9853
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9854
9854
  client_metadata?: Record<string, string> | undefined;
9855
9855
  hide_sign_up_disabled_error?: boolean | undefined;
9856
9856
  mobile?: Record<string, any> | undefined;
@@ -9930,7 +9930,7 @@ export declare function init(config: AuthHeroConfig): {
9930
9930
  addons?: {
9931
9931
  [x: string]: any;
9932
9932
  } | undefined;
9933
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9933
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9934
9934
  client_metadata?: {
9935
9935
  [x: string]: string;
9936
9936
  } | undefined;
@@ -10019,7 +10019,7 @@ export declare function init(config: AuthHeroConfig): {
10019
10019
  custom_login_page_preview?: string | undefined;
10020
10020
  form_template?: string | undefined;
10021
10021
  addons?: Record<string, any> | undefined;
10022
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10022
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10023
10023
  client_metadata?: Record<string, string> | undefined;
10024
10024
  hide_sign_up_disabled_error?: boolean | undefined;
10025
10025
  mobile?: Record<string, any> | undefined;
@@ -10099,7 +10099,7 @@ export declare function init(config: AuthHeroConfig): {
10099
10099
  addons?: {
10100
10100
  [x: string]: any;
10101
10101
  } | undefined;
10102
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10102
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10103
10103
  client_metadata?: {
10104
10104
  [x: string]: string;
10105
10105
  } | undefined;
@@ -11363,7 +11363,7 @@ export declare function init(config: AuthHeroConfig): {
11363
11363
  };
11364
11364
  };
11365
11365
  output: {
11366
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11366
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11367
11367
  date: string;
11368
11368
  isMobile: boolean;
11369
11369
  log_id: string;
@@ -11402,7 +11402,7 @@ export declare function init(config: AuthHeroConfig): {
11402
11402
  limit: number;
11403
11403
  length: number;
11404
11404
  logs: {
11405
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11405
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11406
11406
  date: string;
11407
11407
  isMobile: boolean;
11408
11408
  log_id: string;
@@ -12242,7 +12242,7 @@ export declare function init(config: AuthHeroConfig): {
12242
12242
  type: "auth0_managed_certs" | "self_managed_certs";
12243
12243
  custom_domain_id: string;
12244
12244
  primary: boolean;
12245
- status: "disabled" | "pending" | "ready" | "pending_verification";
12245
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12246
12246
  verification_method?: "txt" | undefined;
12247
12247
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12248
12248
  domain_metadata?: {
@@ -12283,7 +12283,7 @@ export declare function init(config: AuthHeroConfig): {
12283
12283
  type: "auth0_managed_certs" | "self_managed_certs";
12284
12284
  custom_domain_id: string;
12285
12285
  primary: boolean;
12286
- status: "disabled" | "pending" | "ready" | "pending_verification";
12286
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12287
12287
  verification_method?: "txt" | undefined;
12288
12288
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12289
12289
  domain_metadata?: {
@@ -12347,7 +12347,7 @@ export declare function init(config: AuthHeroConfig): {
12347
12347
  type: "auth0_managed_certs" | "self_managed_certs";
12348
12348
  custom_domain_id: string;
12349
12349
  primary: boolean;
12350
- status: "disabled" | "pending" | "ready" | "pending_verification";
12350
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12351
12351
  verification_method?: "txt" | undefined;
12352
12352
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12353
12353
  domain_metadata?: {
@@ -12394,7 +12394,7 @@ export declare function init(config: AuthHeroConfig): {
12394
12394
  type: "auth0_managed_certs" | "self_managed_certs";
12395
12395
  custom_domain_id: string;
12396
12396
  primary: boolean;
12397
- status: "disabled" | "pending" | "ready" | "pending_verification";
12397
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12398
12398
  verification_method?: "txt" | undefined;
12399
12399
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12400
12400
  domain_metadata?: {
@@ -12440,7 +12440,7 @@ export declare function init(config: AuthHeroConfig): {
12440
12440
  type: "auth0_managed_certs" | "self_managed_certs";
12441
12441
  custom_domain_id: string;
12442
12442
  primary: boolean;
12443
- status: "disabled" | "pending" | "ready" | "pending_verification";
12443
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12444
12444
  verification_method?: "txt" | undefined;
12445
12445
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12446
12446
  domain_metadata?: {
@@ -12481,7 +12481,7 @@ export declare function init(config: AuthHeroConfig): {
12481
12481
  type: "auth0_managed_certs" | "self_managed_certs";
12482
12482
  custom_domain_id: string;
12483
12483
  primary: boolean;
12484
- status: "disabled" | "pending" | "ready" | "pending_verification";
12484
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12485
12485
  verification_method?: "txt" | undefined;
12486
12486
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12487
12487
  domain_metadata?: {
@@ -14167,7 +14167,7 @@ export declare function init(config: AuthHeroConfig): {
14167
14167
  scope?: string | undefined;
14168
14168
  grant_types?: string[] | undefined;
14169
14169
  response_types?: string[] | undefined;
14170
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14170
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14171
14171
  jwks_uri?: string | undefined;
14172
14172
  jwks?: Record<string, unknown> | undefined;
14173
14173
  software_id?: string | undefined;
@@ -14256,7 +14256,7 @@ export declare function init(config: AuthHeroConfig): {
14256
14256
  scope?: string | undefined;
14257
14257
  grant_types?: string[] | undefined;
14258
14258
  response_types?: string[] | undefined;
14259
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14259
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14260
14260
  jwks_uri?: string | undefined;
14261
14261
  jwks?: Record<string, unknown> | undefined;
14262
14262
  software_id?: string | undefined;
@@ -14604,18 +14604,18 @@ export declare function init(config: AuthHeroConfig): {
14604
14604
  authParams: {
14605
14605
  username?: string | undefined;
14606
14606
  state?: string | undefined;
14607
+ audience?: string | undefined;
14607
14608
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14608
14609
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14609
14610
  scope?: string | undefined;
14610
- audience?: string | undefined;
14611
- prompt?: string | undefined;
14612
- ui_locales?: string | undefined;
14613
14611
  organization?: string | undefined;
14612
+ nonce?: string | undefined;
14614
14613
  redirect_uri?: string | undefined;
14615
14614
  act_as?: string | undefined;
14616
- nonce?: string | undefined;
14615
+ prompt?: string | undefined;
14617
14616
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14618
14617
  code_challenge?: string | undefined;
14618
+ ui_locales?: string | undefined;
14619
14619
  max_age?: number | undefined;
14620
14620
  acr_values?: string | undefined;
14621
14621
  claims?: {
@@ -14640,18 +14640,18 @@ export declare function init(config: AuthHeroConfig): {
14640
14640
  authParams: {
14641
14641
  username?: string | undefined;
14642
14642
  state?: string | undefined;
14643
+ audience?: string | undefined;
14643
14644
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14644
14645
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14645
14646
  scope?: string | undefined;
14646
- audience?: string | undefined;
14647
- prompt?: string | undefined;
14648
- ui_locales?: string | undefined;
14649
14647
  organization?: string | undefined;
14648
+ nonce?: string | undefined;
14650
14649
  redirect_uri?: string | undefined;
14651
14650
  act_as?: string | undefined;
14652
- nonce?: string | undefined;
14651
+ prompt?: string | undefined;
14653
14652
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14654
14653
  code_challenge?: string | undefined;
14654
+ ui_locales?: string | undefined;
14655
14655
  max_age?: number | undefined;
14656
14656
  acr_values?: string | undefined;
14657
14657
  claims?: {
@@ -14782,14 +14782,14 @@ export declare function init(config: AuthHeroConfig): {
14782
14782
  input: {
14783
14783
  form: {
14784
14784
  token: string;
14785
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14785
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14786
14786
  client_id?: string | undefined;
14787
14787
  client_secret?: string | undefined;
14788
14788
  };
14789
14789
  } & {
14790
14790
  json: {
14791
14791
  token: string;
14792
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14792
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14793
14793
  client_id?: string | undefined;
14794
14794
  client_secret?: string | undefined;
14795
14795
  };
@@ -14801,14 +14801,14 @@ export declare function init(config: AuthHeroConfig): {
14801
14801
  input: {
14802
14802
  form: {
14803
14803
  token: string;
14804
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14804
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14805
14805
  client_id?: string | undefined;
14806
14806
  client_secret?: string | undefined;
14807
14807
  };
14808
14808
  } & {
14809
14809
  json: {
14810
14810
  token: string;
14811
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14811
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14812
14812
  client_id?: string | undefined;
14813
14813
  client_secret?: string | undefined;
14814
14814
  };
@@ -14823,14 +14823,14 @@ export declare function init(config: AuthHeroConfig): {
14823
14823
  input: {
14824
14824
  form: {
14825
14825
  token: string;
14826
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14826
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14827
14827
  client_id?: string | undefined;
14828
14828
  client_secret?: string | undefined;
14829
14829
  };
14830
14830
  } & {
14831
14831
  json: {
14832
14832
  token: string;
14833
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14833
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14834
14834
  client_id?: string | undefined;
14835
14835
  client_secret?: string | undefined;
14836
14836
  };
@@ -14880,7 +14880,7 @@ export declare function init(config: AuthHeroConfig): {
14880
14880
  client_id: string;
14881
14881
  username: string;
14882
14882
  otp: string;
14883
- realm: "email" | "sms";
14883
+ realm: "sms" | "email";
14884
14884
  } | {
14885
14885
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14886
14886
  subject_token: string;
@@ -14927,7 +14927,7 @@ export declare function init(config: AuthHeroConfig): {
14927
14927
  client_id: string;
14928
14928
  username: string;
14929
14929
  otp: string;
14930
- realm: "email" | "sms";
14930
+ realm: "sms" | "email";
14931
14931
  } | {
14932
14932
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14933
14933
  subject_token: string;
@@ -14979,7 +14979,7 @@ export declare function init(config: AuthHeroConfig): {
14979
14979
  client_id: string;
14980
14980
  username: string;
14981
14981
  otp: string;
14982
- realm: "email" | "sms";
14982
+ realm: "sms" | "email";
14983
14983
  } | {
14984
14984
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14985
14985
  subject_token: string;
@@ -15026,7 +15026,7 @@ export declare function init(config: AuthHeroConfig): {
15026
15026
  client_id: string;
15027
15027
  username: string;
15028
15028
  otp: string;
15029
- realm: "email" | "sms";
15029
+ realm: "sms" | "email";
15030
15030
  } | {
15031
15031
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15032
15032
  subject_token: string;
@@ -15086,7 +15086,7 @@ export declare function init(config: AuthHeroConfig): {
15086
15086
  client_id: string;
15087
15087
  username: string;
15088
15088
  otp: string;
15089
- realm: "email" | "sms";
15089
+ realm: "sms" | "email";
15090
15090
  } | {
15091
15091
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15092
15092
  subject_token: string;
@@ -15133,7 +15133,7 @@ export declare function init(config: AuthHeroConfig): {
15133
15133
  client_id: string;
15134
15134
  username: string;
15135
15135
  otp: string;
15136
- realm: "email" | "sms";
15136
+ realm: "sms" | "email";
15137
15137
  } | {
15138
15138
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15139
15139
  subject_token: string;
@@ -15188,7 +15188,7 @@ export declare function init(config: AuthHeroConfig): {
15188
15188
  client_id: string;
15189
15189
  username: string;
15190
15190
  otp: string;
15191
- realm: "email" | "sms";
15191
+ realm: "sms" | "email";
15192
15192
  } | {
15193
15193
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15194
15194
  subject_token: string;
@@ -15235,7 +15235,7 @@ export declare function init(config: AuthHeroConfig): {
15235
15235
  client_id: string;
15236
15236
  username: string;
15237
15237
  otp: string;
15238
- realm: "email" | "sms";
15238
+ realm: "sms" | "email";
15239
15239
  } | {
15240
15240
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15241
15241
  subject_token: string;
@@ -15290,7 +15290,7 @@ export declare function init(config: AuthHeroConfig): {
15290
15290
  client_id: string;
15291
15291
  username: string;
15292
15292
  otp: string;
15293
- realm: "email" | "sms";
15293
+ realm: "sms" | "email";
15294
15294
  } | {
15295
15295
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15296
15296
  subject_token: string;
@@ -15337,7 +15337,7 @@ export declare function init(config: AuthHeroConfig): {
15337
15337
  client_id: string;
15338
15338
  username: string;
15339
15339
  otp: string;
15340
- realm: "email" | "sms";
15340
+ realm: "sms" | "email";
15341
15341
  } | {
15342
15342
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15343
15343
  subject_token: string;
@@ -16557,7 +16557,7 @@ export declare function init(config: AuthHeroConfig): {
16557
16557
  $get: {
16558
16558
  input: {
16559
16559
  param: {
16560
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16560
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16561
16561
  };
16562
16562
  } & {
16563
16563
  query: {
@@ -16573,7 +16573,7 @@ export declare function init(config: AuthHeroConfig): {
16573
16573
  } | {
16574
16574
  input: {
16575
16575
  param: {
16576
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16576
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16577
16577
  };
16578
16578
  } & {
16579
16579
  query: {
@@ -16589,7 +16589,7 @@ export declare function init(config: AuthHeroConfig): {
16589
16589
  } | {
16590
16590
  input: {
16591
16591
  param: {
16592
- screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16592
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16593
16593
  };
16594
16594
  } & {
16595
16595
  query: {
@@ -16609,7 +16609,7 @@ export declare function init(config: AuthHeroConfig): {
16609
16609
  $post: {
16610
16610
  input: {
16611
16611
  param: {
16612
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16612
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16613
16613
  };
16614
16614
  } & {
16615
16615
  query: {
@@ -16627,7 +16627,7 @@ export declare function init(config: AuthHeroConfig): {
16627
16627
  } | {
16628
16628
  input: {
16629
16629
  param: {
16630
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16630
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16631
16631
  };
16632
16632
  } & {
16633
16633
  query: {