authhero 8.18.0 → 8.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/authhero.cjs +112 -112
  2. package/dist/authhero.d.ts +316 -238
  3. package/dist/authhero.mjs +10529 -10428
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  6. package/dist/types/helpers/audit-target-types.d.ts +6 -0
  7. package/dist/types/helpers/default-destinations.d.ts +14 -4
  8. package/dist/types/helpers/outbox-destinations/code-hooks.d.ts +56 -0
  9. package/dist/types/helpers/password-connection.d.ts +16 -0
  10. package/dist/types/helpers/run-outbox-relay.d.ts +8 -1
  11. package/dist/types/hooks/codehooks.d.ts +78 -9
  12. package/dist/types/index.d.ts +235 -234
  13. package/dist/types/routes/auth-api/index.d.ts +22 -22
  14. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  15. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  16. package/dist/types/routes/auth-api/token.d.ts +10 -10
  17. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  18. package/dist/types/routes/management-api/clients.d.ts +9 -9
  19. package/dist/types/routes/management-api/connections.d.ts +6 -6
  20. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  21. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  22. package/dist/types/routes/management-api/forms.d.ts +126 -126
  23. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  24. package/dist/types/routes/management-api/hooks.d.ts +24 -24
  25. package/dist/types/routes/management-api/index.d.ts +211 -211
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/roles.d.ts +6 -6
  30. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  31. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  32. package/dist/types/routes/management-api/users.d.ts +2 -2
  33. package/dist/types/routes/universal-login/common.d.ts +4 -4
  34. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  35. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  36. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  37. package/package.json +5 -5
@@ -24,6 +24,7 @@ export { runOutboxRelay } from "./helpers/run-outbox-relay";
24
24
  export type { RunOutboxRelayConfig } from "./helpers/run-outbox-relay";
25
25
  export { LogsDestination } from "./helpers/outbox-destinations/logs";
26
26
  export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToken, } from "./helpers/outbox-destinations/webhooks";
27
+ export { CodeHookDestination } from "./helpers/outbox-destinations/code-hooks";
27
28
  export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/registration-finalizer";
28
29
  export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
29
30
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
@@ -1222,11 +1223,11 @@ export declare function init(config: AuthHeroConfig): {
1222
1223
  invitee: {
1223
1224
  email?: string | undefined;
1224
1225
  };
1226
+ roles?: string[] | undefined;
1225
1227
  id?: string | undefined;
1226
1228
  app_metadata?: Record<string, any> | undefined;
1227
1229
  user_metadata?: Record<string, any> | undefined;
1228
1230
  connection_id?: string | undefined;
1229
- roles?: string[] | undefined;
1230
1231
  ttl_sec?: number | undefined;
1231
1232
  send_invitation_email?: boolean | undefined;
1232
1233
  };
@@ -2653,7 +2654,7 @@ export declare function init(config: AuthHeroConfig): {
2653
2654
  hint?: string | undefined;
2654
2655
  messages?: {
2655
2656
  text: string;
2656
- type: "error" | "success" | "info" | "warning";
2657
+ type: "success" | "error" | "info" | "warning";
2657
2658
  id?: number | undefined;
2658
2659
  }[] | undefined;
2659
2660
  required?: boolean | undefined;
@@ -2671,7 +2672,7 @@ export declare function init(config: AuthHeroConfig): {
2671
2672
  hint?: string | undefined;
2672
2673
  messages?: {
2673
2674
  text: string;
2674
- type: "error" | "success" | "info" | "warning";
2675
+ type: "success" | "error" | "info" | "warning";
2675
2676
  id?: number | undefined;
2676
2677
  }[] | undefined;
2677
2678
  required?: boolean | undefined;
@@ -2695,7 +2696,7 @@ export declare function init(config: AuthHeroConfig): {
2695
2696
  hint?: string | undefined;
2696
2697
  messages?: {
2697
2698
  text: string;
2698
- type: "error" | "success" | "info" | "warning";
2699
+ type: "success" | "error" | "info" | "warning";
2699
2700
  id?: number | undefined;
2700
2701
  }[] | undefined;
2701
2702
  required?: boolean | undefined;
@@ -2719,7 +2720,7 @@ export declare function init(config: AuthHeroConfig): {
2719
2720
  hint?: string | undefined;
2720
2721
  messages?: {
2721
2722
  text: string;
2722
- type: "error" | "success" | "info" | "warning";
2723
+ type: "success" | "error" | "info" | "warning";
2723
2724
  id?: number | undefined;
2724
2725
  }[] | undefined;
2725
2726
  required?: boolean | undefined;
@@ -2743,7 +2744,7 @@ export declare function init(config: AuthHeroConfig): {
2743
2744
  hint?: string | undefined;
2744
2745
  messages?: {
2745
2746
  text: string;
2746
- type: "error" | "success" | "info" | "warning";
2747
+ type: "success" | "error" | "info" | "warning";
2747
2748
  id?: number | undefined;
2748
2749
  }[] | undefined;
2749
2750
  required?: boolean | undefined;
@@ -2772,7 +2773,7 @@ export declare function init(config: AuthHeroConfig): {
2772
2773
  hint?: string | undefined;
2773
2774
  messages?: {
2774
2775
  text: string;
2775
- type: "error" | "success" | "info" | "warning";
2776
+ type: "success" | "error" | "info" | "warning";
2776
2777
  id?: number | undefined;
2777
2778
  }[] | undefined;
2778
2779
  required?: boolean | undefined;
@@ -2787,7 +2788,7 @@ export declare function init(config: AuthHeroConfig): {
2787
2788
  hint?: string | undefined;
2788
2789
  messages?: {
2789
2790
  text: string;
2790
- type: "error" | "success" | "info" | "warning";
2791
+ type: "success" | "error" | "info" | "warning";
2791
2792
  id?: number | undefined;
2792
2793
  }[] | undefined;
2793
2794
  required?: boolean | undefined;
@@ -2808,7 +2809,7 @@ export declare function init(config: AuthHeroConfig): {
2808
2809
  hint?: string | undefined;
2809
2810
  messages?: {
2810
2811
  text: string;
2811
- type: "error" | "success" | "info" | "warning";
2812
+ type: "success" | "error" | "info" | "warning";
2812
2813
  id?: number | undefined;
2813
2814
  }[] | undefined;
2814
2815
  required?: boolean | undefined;
@@ -2833,7 +2834,7 @@ export declare function init(config: AuthHeroConfig): {
2833
2834
  hint?: string | undefined;
2834
2835
  messages?: {
2835
2836
  text: string;
2836
- type: "error" | "success" | "info" | "warning";
2837
+ type: "success" | "error" | "info" | "warning";
2837
2838
  id?: number | undefined;
2838
2839
  }[] | undefined;
2839
2840
  required?: boolean | undefined;
@@ -2852,7 +2853,7 @@ export declare function init(config: AuthHeroConfig): {
2852
2853
  hint?: string | undefined;
2853
2854
  messages?: {
2854
2855
  text: string;
2855
- type: "error" | "success" | "info" | "warning";
2856
+ type: "success" | "error" | "info" | "warning";
2856
2857
  id?: number | undefined;
2857
2858
  }[] | undefined;
2858
2859
  required?: boolean | undefined;
@@ -2872,7 +2873,7 @@ export declare function init(config: AuthHeroConfig): {
2872
2873
  hint?: string | undefined;
2873
2874
  messages?: {
2874
2875
  text: string;
2875
- type: "error" | "success" | "info" | "warning";
2876
+ type: "success" | "error" | "info" | "warning";
2876
2877
  id?: number | undefined;
2877
2878
  }[] | undefined;
2878
2879
  required?: boolean | undefined;
@@ -2891,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
2891
2892
  hint?: string | undefined;
2892
2893
  messages?: {
2893
2894
  text: string;
2894
- type: "error" | "success" | "info" | "warning";
2895
+ type: "success" | "error" | "info" | "warning";
2895
2896
  id?: number | undefined;
2896
2897
  }[] | undefined;
2897
2898
  required?: boolean | undefined;
@@ -2913,7 +2914,7 @@ export declare function init(config: AuthHeroConfig): {
2913
2914
  hint?: string | undefined;
2914
2915
  messages?: {
2915
2916
  text: string;
2916
- type: "error" | "success" | "info" | "warning";
2917
+ type: "success" | "error" | "info" | "warning";
2917
2918
  id?: number | undefined;
2918
2919
  }[] | undefined;
2919
2920
  required?: boolean | undefined;
@@ -2935,7 +2936,7 @@ export declare function init(config: AuthHeroConfig): {
2935
2936
  hint?: string | undefined;
2936
2937
  messages?: {
2937
2938
  text: string;
2938
- type: "error" | "success" | "info" | "warning";
2939
+ type: "success" | "error" | "info" | "warning";
2939
2940
  id?: number | undefined;
2940
2941
  }[] | undefined;
2941
2942
  required?: boolean | undefined;
@@ -2954,7 +2955,7 @@ export declare function init(config: AuthHeroConfig): {
2954
2955
  hint?: string | undefined;
2955
2956
  messages?: {
2956
2957
  text: string;
2957
- type: "error" | "success" | "info" | "warning";
2958
+ type: "success" | "error" | "info" | "warning";
2958
2959
  id?: number | undefined;
2959
2960
  }[] | undefined;
2960
2961
  required?: boolean | undefined;
@@ -2979,7 +2980,7 @@ export declare function init(config: AuthHeroConfig): {
2979
2980
  hint?: string | undefined;
2980
2981
  messages?: {
2981
2982
  text: string;
2982
- type: "error" | "success" | "info" | "warning";
2983
+ type: "success" | "error" | "info" | "warning";
2983
2984
  id?: number | undefined;
2984
2985
  }[] | undefined;
2985
2986
  required?: boolean | undefined;
@@ -3000,7 +3001,7 @@ export declare function init(config: AuthHeroConfig): {
3000
3001
  hint?: string | undefined;
3001
3002
  messages?: {
3002
3003
  text: string;
3003
- type: "error" | "success" | "info" | "warning";
3004
+ type: "success" | "error" | "info" | "warning";
3004
3005
  id?: number | undefined;
3005
3006
  }[] | undefined;
3006
3007
  required?: boolean | undefined;
@@ -3021,7 +3022,7 @@ export declare function init(config: AuthHeroConfig): {
3021
3022
  hint?: string | undefined;
3022
3023
  messages?: {
3023
3024
  text: string;
3024
- type: "error" | "success" | "info" | "warning";
3025
+ type: "success" | "error" | "info" | "warning";
3025
3026
  id?: number | undefined;
3026
3027
  }[] | undefined;
3027
3028
  required?: boolean | undefined;
@@ -3254,7 +3255,7 @@ export declare function init(config: AuthHeroConfig): {
3254
3255
  hint?: string | undefined;
3255
3256
  messages?: {
3256
3257
  text: string;
3257
- type: "error" | "success" | "info" | "warning";
3258
+ type: "success" | "error" | "info" | "warning";
3258
3259
  id?: number | undefined;
3259
3260
  }[] | undefined;
3260
3261
  required?: boolean | undefined;
@@ -3272,7 +3273,7 @@ export declare function init(config: AuthHeroConfig): {
3272
3273
  hint?: string | undefined;
3273
3274
  messages?: {
3274
3275
  text: string;
3275
- type: "error" | "success" | "info" | "warning";
3276
+ type: "success" | "error" | "info" | "warning";
3276
3277
  id?: number | undefined;
3277
3278
  }[] | undefined;
3278
3279
  required?: boolean | undefined;
@@ -3296,7 +3297,7 @@ export declare function init(config: AuthHeroConfig): {
3296
3297
  hint?: string | undefined;
3297
3298
  messages?: {
3298
3299
  text: string;
3299
- type: "error" | "success" | "info" | "warning";
3300
+ type: "success" | "error" | "info" | "warning";
3300
3301
  id?: number | undefined;
3301
3302
  }[] | undefined;
3302
3303
  required?: boolean | undefined;
@@ -3320,7 +3321,7 @@ export declare function init(config: AuthHeroConfig): {
3320
3321
  hint?: string | undefined;
3321
3322
  messages?: {
3322
3323
  text: string;
3323
- type: "error" | "success" | "info" | "warning";
3324
+ type: "success" | "error" | "info" | "warning";
3324
3325
  id?: number | undefined;
3325
3326
  }[] | undefined;
3326
3327
  required?: boolean | undefined;
@@ -3344,7 +3345,7 @@ export declare function init(config: AuthHeroConfig): {
3344
3345
  hint?: string | undefined;
3345
3346
  messages?: {
3346
3347
  text: string;
3347
- type: "error" | "success" | "info" | "warning";
3348
+ type: "success" | "error" | "info" | "warning";
3348
3349
  id?: number | undefined;
3349
3350
  }[] | undefined;
3350
3351
  required?: boolean | undefined;
@@ -3373,7 +3374,7 @@ export declare function init(config: AuthHeroConfig): {
3373
3374
  hint?: string | undefined;
3374
3375
  messages?: {
3375
3376
  text: string;
3376
- type: "error" | "success" | "info" | "warning";
3377
+ type: "success" | "error" | "info" | "warning";
3377
3378
  id?: number | undefined;
3378
3379
  }[] | undefined;
3379
3380
  required?: boolean | undefined;
@@ -3388,7 +3389,7 @@ export declare function init(config: AuthHeroConfig): {
3388
3389
  hint?: string | undefined;
3389
3390
  messages?: {
3390
3391
  text: string;
3391
- type: "error" | "success" | "info" | "warning";
3392
+ type: "success" | "error" | "info" | "warning";
3392
3393
  id?: number | undefined;
3393
3394
  }[] | undefined;
3394
3395
  required?: boolean | undefined;
@@ -3409,7 +3410,7 @@ export declare function init(config: AuthHeroConfig): {
3409
3410
  hint?: string | undefined;
3410
3411
  messages?: {
3411
3412
  text: string;
3412
- type: "error" | "success" | "info" | "warning";
3413
+ type: "success" | "error" | "info" | "warning";
3413
3414
  id?: number | undefined;
3414
3415
  }[] | undefined;
3415
3416
  required?: boolean | undefined;
@@ -3434,7 +3435,7 @@ export declare function init(config: AuthHeroConfig): {
3434
3435
  hint?: string | undefined;
3435
3436
  messages?: {
3436
3437
  text: string;
3437
- type: "error" | "success" | "info" | "warning";
3438
+ type: "success" | "error" | "info" | "warning";
3438
3439
  id?: number | undefined;
3439
3440
  }[] | undefined;
3440
3441
  required?: boolean | undefined;
@@ -3453,7 +3454,7 @@ export declare function init(config: AuthHeroConfig): {
3453
3454
  hint?: string | undefined;
3454
3455
  messages?: {
3455
3456
  text: string;
3456
- type: "error" | "success" | "info" | "warning";
3457
+ type: "success" | "error" | "info" | "warning";
3457
3458
  id?: number | undefined;
3458
3459
  }[] | undefined;
3459
3460
  required?: boolean | undefined;
@@ -3473,7 +3474,7 @@ export declare function init(config: AuthHeroConfig): {
3473
3474
  hint?: string | undefined;
3474
3475
  messages?: {
3475
3476
  text: string;
3476
- type: "error" | "success" | "info" | "warning";
3477
+ type: "success" | "error" | "info" | "warning";
3477
3478
  id?: number | undefined;
3478
3479
  }[] | undefined;
3479
3480
  required?: boolean | undefined;
@@ -3492,7 +3493,7 @@ export declare function init(config: AuthHeroConfig): {
3492
3493
  hint?: string | undefined;
3493
3494
  messages?: {
3494
3495
  text: string;
3495
- type: "error" | "success" | "info" | "warning";
3496
+ type: "success" | "error" | "info" | "warning";
3496
3497
  id?: number | undefined;
3497
3498
  }[] | undefined;
3498
3499
  required?: boolean | undefined;
@@ -3514,7 +3515,7 @@ export declare function init(config: AuthHeroConfig): {
3514
3515
  hint?: string | undefined;
3515
3516
  messages?: {
3516
3517
  text: string;
3517
- type: "error" | "success" | "info" | "warning";
3518
+ type: "success" | "error" | "info" | "warning";
3518
3519
  id?: number | undefined;
3519
3520
  }[] | undefined;
3520
3521
  required?: boolean | undefined;
@@ -3536,7 +3537,7 @@ export declare function init(config: AuthHeroConfig): {
3536
3537
  hint?: string | undefined;
3537
3538
  messages?: {
3538
3539
  text: string;
3539
- type: "error" | "success" | "info" | "warning";
3540
+ type: "success" | "error" | "info" | "warning";
3540
3541
  id?: number | undefined;
3541
3542
  }[] | undefined;
3542
3543
  required?: boolean | undefined;
@@ -3555,7 +3556,7 @@ export declare function init(config: AuthHeroConfig): {
3555
3556
  hint?: string | undefined;
3556
3557
  messages?: {
3557
3558
  text: string;
3558
- type: "error" | "success" | "info" | "warning";
3559
+ type: "success" | "error" | "info" | "warning";
3559
3560
  id?: number | undefined;
3560
3561
  }[] | undefined;
3561
3562
  required?: boolean | undefined;
@@ -3580,7 +3581,7 @@ export declare function init(config: AuthHeroConfig): {
3580
3581
  hint?: string | undefined;
3581
3582
  messages?: {
3582
3583
  text: string;
3583
- type: "error" | "success" | "info" | "warning";
3584
+ type: "success" | "error" | "info" | "warning";
3584
3585
  id?: number | undefined;
3585
3586
  }[] | undefined;
3586
3587
  required?: boolean | undefined;
@@ -3601,7 +3602,7 @@ export declare function init(config: AuthHeroConfig): {
3601
3602
  hint?: string | undefined;
3602
3603
  messages?: {
3603
3604
  text: string;
3604
- type: "error" | "success" | "info" | "warning";
3605
+ type: "success" | "error" | "info" | "warning";
3605
3606
  id?: number | undefined;
3606
3607
  }[] | undefined;
3607
3608
  required?: boolean | undefined;
@@ -3622,7 +3623,7 @@ export declare function init(config: AuthHeroConfig): {
3622
3623
  hint?: string | undefined;
3623
3624
  messages?: {
3624
3625
  text: string;
3625
- type: "error" | "success" | "info" | "warning";
3626
+ type: "success" | "error" | "info" | "warning";
3626
3627
  id?: number | undefined;
3627
3628
  }[] | undefined;
3628
3629
  required?: boolean | undefined;
@@ -3870,7 +3871,7 @@ export declare function init(config: AuthHeroConfig): {
3870
3871
  hint?: string | undefined;
3871
3872
  messages?: {
3872
3873
  text: string;
3873
- type: "error" | "success" | "info" | "warning";
3874
+ type: "success" | "error" | "info" | "warning";
3874
3875
  id?: number | undefined;
3875
3876
  }[] | undefined;
3876
3877
  required?: boolean | undefined;
@@ -3888,7 +3889,7 @@ export declare function init(config: AuthHeroConfig): {
3888
3889
  hint?: string | undefined;
3889
3890
  messages?: {
3890
3891
  text: string;
3891
- type: "error" | "success" | "info" | "warning";
3892
+ type: "success" | "error" | "info" | "warning";
3892
3893
  id?: number | undefined;
3893
3894
  }[] | undefined;
3894
3895
  required?: boolean | undefined;
@@ -3912,7 +3913,7 @@ export declare function init(config: AuthHeroConfig): {
3912
3913
  hint?: string | undefined;
3913
3914
  messages?: {
3914
3915
  text: string;
3915
- type: "error" | "success" | "info" | "warning";
3916
+ type: "success" | "error" | "info" | "warning";
3916
3917
  id?: number | undefined;
3917
3918
  }[] | undefined;
3918
3919
  required?: boolean | undefined;
@@ -3936,7 +3937,7 @@ export declare function init(config: AuthHeroConfig): {
3936
3937
  hint?: string | undefined;
3937
3938
  messages?: {
3938
3939
  text: string;
3939
- type: "error" | "success" | "info" | "warning";
3940
+ type: "success" | "error" | "info" | "warning";
3940
3941
  id?: number | undefined;
3941
3942
  }[] | undefined;
3942
3943
  required?: boolean | undefined;
@@ -3960,7 +3961,7 @@ export declare function init(config: AuthHeroConfig): {
3960
3961
  hint?: string | undefined;
3961
3962
  messages?: {
3962
3963
  text: string;
3963
- type: "error" | "success" | "info" | "warning";
3964
+ type: "success" | "error" | "info" | "warning";
3964
3965
  id?: number | undefined;
3965
3966
  }[] | undefined;
3966
3967
  required?: boolean | undefined;
@@ -3989,7 +3990,7 @@ export declare function init(config: AuthHeroConfig): {
3989
3990
  hint?: string | undefined;
3990
3991
  messages?: {
3991
3992
  text: string;
3992
- type: "error" | "success" | "info" | "warning";
3993
+ type: "success" | "error" | "info" | "warning";
3993
3994
  id?: number | undefined;
3994
3995
  }[] | undefined;
3995
3996
  required?: boolean | undefined;
@@ -4004,7 +4005,7 @@ export declare function init(config: AuthHeroConfig): {
4004
4005
  hint?: string | undefined;
4005
4006
  messages?: {
4006
4007
  text: string;
4007
- type: "error" | "success" | "info" | "warning";
4008
+ type: "success" | "error" | "info" | "warning";
4008
4009
  id?: number | undefined;
4009
4010
  }[] | undefined;
4010
4011
  required?: boolean | undefined;
@@ -4025,7 +4026,7 @@ export declare function init(config: AuthHeroConfig): {
4025
4026
  hint?: string | undefined;
4026
4027
  messages?: {
4027
4028
  text: string;
4028
- type: "error" | "success" | "info" | "warning";
4029
+ type: "success" | "error" | "info" | "warning";
4029
4030
  id?: number | undefined;
4030
4031
  }[] | undefined;
4031
4032
  required?: boolean | undefined;
@@ -4050,7 +4051,7 @@ export declare function init(config: AuthHeroConfig): {
4050
4051
  hint?: string | undefined;
4051
4052
  messages?: {
4052
4053
  text: string;
4053
- type: "error" | "success" | "info" | "warning";
4054
+ type: "success" | "error" | "info" | "warning";
4054
4055
  id?: number | undefined;
4055
4056
  }[] | undefined;
4056
4057
  required?: boolean | undefined;
@@ -4069,7 +4070,7 @@ export declare function init(config: AuthHeroConfig): {
4069
4070
  hint?: string | undefined;
4070
4071
  messages?: {
4071
4072
  text: string;
4072
- type: "error" | "success" | "info" | "warning";
4073
+ type: "success" | "error" | "info" | "warning";
4073
4074
  id?: number | undefined;
4074
4075
  }[] | undefined;
4075
4076
  required?: boolean | undefined;
@@ -4089,7 +4090,7 @@ export declare function init(config: AuthHeroConfig): {
4089
4090
  hint?: string | undefined;
4090
4091
  messages?: {
4091
4092
  text: string;
4092
- type: "error" | "success" | "info" | "warning";
4093
+ type: "success" | "error" | "info" | "warning";
4093
4094
  id?: number | undefined;
4094
4095
  }[] | undefined;
4095
4096
  required?: boolean | undefined;
@@ -4108,7 +4109,7 @@ export declare function init(config: AuthHeroConfig): {
4108
4109
  hint?: string | undefined;
4109
4110
  messages?: {
4110
4111
  text: string;
4111
- type: "error" | "success" | "info" | "warning";
4112
+ type: "success" | "error" | "info" | "warning";
4112
4113
  id?: number | undefined;
4113
4114
  }[] | undefined;
4114
4115
  required?: boolean | undefined;
@@ -4130,7 +4131,7 @@ export declare function init(config: AuthHeroConfig): {
4130
4131
  hint?: string | undefined;
4131
4132
  messages?: {
4132
4133
  text: string;
4133
- type: "error" | "success" | "info" | "warning";
4134
+ type: "success" | "error" | "info" | "warning";
4134
4135
  id?: number | undefined;
4135
4136
  }[] | undefined;
4136
4137
  required?: boolean | undefined;
@@ -4152,7 +4153,7 @@ export declare function init(config: AuthHeroConfig): {
4152
4153
  hint?: string | undefined;
4153
4154
  messages?: {
4154
4155
  text: string;
4155
- type: "error" | "success" | "info" | "warning";
4156
+ type: "success" | "error" | "info" | "warning";
4156
4157
  id?: number | undefined;
4157
4158
  }[] | undefined;
4158
4159
  required?: boolean | undefined;
@@ -4171,7 +4172,7 @@ export declare function init(config: AuthHeroConfig): {
4171
4172
  hint?: string | undefined;
4172
4173
  messages?: {
4173
4174
  text: string;
4174
- type: "error" | "success" | "info" | "warning";
4175
+ type: "success" | "error" | "info" | "warning";
4175
4176
  id?: number | undefined;
4176
4177
  }[] | undefined;
4177
4178
  required?: boolean | undefined;
@@ -4196,7 +4197,7 @@ export declare function init(config: AuthHeroConfig): {
4196
4197
  hint?: string | undefined;
4197
4198
  messages?: {
4198
4199
  text: string;
4199
- type: "error" | "success" | "info" | "warning";
4200
+ type: "success" | "error" | "info" | "warning";
4200
4201
  id?: number | undefined;
4201
4202
  }[] | undefined;
4202
4203
  required?: boolean | undefined;
@@ -4217,7 +4218,7 @@ export declare function init(config: AuthHeroConfig): {
4217
4218
  hint?: string | undefined;
4218
4219
  messages?: {
4219
4220
  text: string;
4220
- type: "error" | "success" | "info" | "warning";
4221
+ type: "success" | "error" | "info" | "warning";
4221
4222
  id?: number | undefined;
4222
4223
  }[] | undefined;
4223
4224
  required?: boolean | undefined;
@@ -4238,7 +4239,7 @@ export declare function init(config: AuthHeroConfig): {
4238
4239
  hint?: string | undefined;
4239
4240
  messages?: {
4240
4241
  text: string;
4241
- type: "error" | "success" | "info" | "warning";
4242
+ type: "success" | "error" | "info" | "warning";
4242
4243
  id?: number | undefined;
4243
4244
  }[] | undefined;
4244
4245
  required?: boolean | undefined;
@@ -4492,7 +4493,7 @@ export declare function init(config: AuthHeroConfig): {
4492
4493
  hint?: string | undefined;
4493
4494
  messages?: {
4494
4495
  text: string;
4495
- type: "error" | "success" | "info" | "warning";
4496
+ type: "success" | "error" | "info" | "warning";
4496
4497
  id?: number | undefined;
4497
4498
  }[] | undefined;
4498
4499
  required?: boolean | undefined;
@@ -4510,7 +4511,7 @@ export declare function init(config: AuthHeroConfig): {
4510
4511
  hint?: string | undefined;
4511
4512
  messages?: {
4512
4513
  text: string;
4513
- type: "error" | "success" | "info" | "warning";
4514
+ type: "success" | "error" | "info" | "warning";
4514
4515
  id?: number | undefined;
4515
4516
  }[] | undefined;
4516
4517
  required?: boolean | undefined;
@@ -4534,7 +4535,7 @@ export declare function init(config: AuthHeroConfig): {
4534
4535
  hint?: string | undefined;
4535
4536
  messages?: {
4536
4537
  text: string;
4537
- type: "error" | "success" | "info" | "warning";
4538
+ type: "success" | "error" | "info" | "warning";
4538
4539
  id?: number | undefined;
4539
4540
  }[] | undefined;
4540
4541
  required?: boolean | undefined;
@@ -4558,7 +4559,7 @@ export declare function init(config: AuthHeroConfig): {
4558
4559
  hint?: string | undefined;
4559
4560
  messages?: {
4560
4561
  text: string;
4561
- type: "error" | "success" | "info" | "warning";
4562
+ type: "success" | "error" | "info" | "warning";
4562
4563
  id?: number | undefined;
4563
4564
  }[] | undefined;
4564
4565
  required?: boolean | undefined;
@@ -4582,7 +4583,7 @@ export declare function init(config: AuthHeroConfig): {
4582
4583
  hint?: string | undefined;
4583
4584
  messages?: {
4584
4585
  text: string;
4585
- type: "error" | "success" | "info" | "warning";
4586
+ type: "success" | "error" | "info" | "warning";
4586
4587
  id?: number | undefined;
4587
4588
  }[] | undefined;
4588
4589
  required?: boolean | undefined;
@@ -4607,7 +4608,7 @@ export declare function init(config: AuthHeroConfig): {
4607
4608
  hint?: string | undefined;
4608
4609
  messages?: {
4609
4610
  text: string;
4610
- type: "error" | "success" | "info" | "warning";
4611
+ type: "success" | "error" | "info" | "warning";
4611
4612
  id?: number | undefined;
4612
4613
  }[] | undefined;
4613
4614
  required?: boolean | undefined;
@@ -4622,7 +4623,7 @@ export declare function init(config: AuthHeroConfig): {
4622
4623
  hint?: string | undefined;
4623
4624
  messages?: {
4624
4625
  text: string;
4625
- type: "error" | "success" | "info" | "warning";
4626
+ type: "success" | "error" | "info" | "warning";
4626
4627
  id?: number | undefined;
4627
4628
  }[] | undefined;
4628
4629
  required?: boolean | undefined;
@@ -4643,7 +4644,7 @@ export declare function init(config: AuthHeroConfig): {
4643
4644
  hint?: string | undefined;
4644
4645
  messages?: {
4645
4646
  text: string;
4646
- type: "error" | "success" | "info" | "warning";
4647
+ type: "success" | "error" | "info" | "warning";
4647
4648
  id?: number | undefined;
4648
4649
  }[] | undefined;
4649
4650
  required?: boolean | undefined;
@@ -4668,7 +4669,7 @@ export declare function init(config: AuthHeroConfig): {
4668
4669
  hint?: string | undefined;
4669
4670
  messages?: {
4670
4671
  text: string;
4671
- type: "error" | "success" | "info" | "warning";
4672
+ type: "success" | "error" | "info" | "warning";
4672
4673
  id?: number | undefined;
4673
4674
  }[] | undefined;
4674
4675
  required?: boolean | undefined;
@@ -4687,7 +4688,7 @@ export declare function init(config: AuthHeroConfig): {
4687
4688
  hint?: string | undefined;
4688
4689
  messages?: {
4689
4690
  text: string;
4690
- type: "error" | "success" | "info" | "warning";
4691
+ type: "success" | "error" | "info" | "warning";
4691
4692
  id?: number | undefined;
4692
4693
  }[] | undefined;
4693
4694
  required?: boolean | undefined;
@@ -4707,7 +4708,7 @@ export declare function init(config: AuthHeroConfig): {
4707
4708
  hint?: string | undefined;
4708
4709
  messages?: {
4709
4710
  text: string;
4710
- type: "error" | "success" | "info" | "warning";
4711
+ type: "success" | "error" | "info" | "warning";
4711
4712
  id?: number | undefined;
4712
4713
  }[] | undefined;
4713
4714
  required?: boolean | undefined;
@@ -4726,7 +4727,7 @@ export declare function init(config: AuthHeroConfig): {
4726
4727
  hint?: string | undefined;
4727
4728
  messages?: {
4728
4729
  text: string;
4729
- type: "error" | "success" | "info" | "warning";
4730
+ type: "success" | "error" | "info" | "warning";
4730
4731
  id?: number | undefined;
4731
4732
  }[] | undefined;
4732
4733
  required?: boolean | undefined;
@@ -4748,7 +4749,7 @@ export declare function init(config: AuthHeroConfig): {
4748
4749
  hint?: string | undefined;
4749
4750
  messages?: {
4750
4751
  text: string;
4751
- type: "error" | "success" | "info" | "warning";
4752
+ type: "success" | "error" | "info" | "warning";
4752
4753
  id?: number | undefined;
4753
4754
  }[] | undefined;
4754
4755
  required?: boolean | undefined;
@@ -4770,7 +4771,7 @@ export declare function init(config: AuthHeroConfig): {
4770
4771
  hint?: string | undefined;
4771
4772
  messages?: {
4772
4773
  text: string;
4773
- type: "error" | "success" | "info" | "warning";
4774
+ type: "success" | "error" | "info" | "warning";
4774
4775
  id?: number | undefined;
4775
4776
  }[] | undefined;
4776
4777
  required?: boolean | undefined;
@@ -4789,7 +4790,7 @@ export declare function init(config: AuthHeroConfig): {
4789
4790
  hint?: string | undefined;
4790
4791
  messages?: {
4791
4792
  text: string;
4792
- type: "error" | "success" | "info" | "warning";
4793
+ type: "success" | "error" | "info" | "warning";
4793
4794
  id?: number | undefined;
4794
4795
  }[] | undefined;
4795
4796
  required?: boolean | undefined;
@@ -4814,7 +4815,7 @@ export declare function init(config: AuthHeroConfig): {
4814
4815
  hint?: string | undefined;
4815
4816
  messages?: {
4816
4817
  text: string;
4817
- type: "error" | "success" | "info" | "warning";
4818
+ type: "success" | "error" | "info" | "warning";
4818
4819
  id?: number | undefined;
4819
4820
  }[] | undefined;
4820
4821
  required?: boolean | undefined;
@@ -4835,7 +4836,7 @@ export declare function init(config: AuthHeroConfig): {
4835
4836
  hint?: string | undefined;
4836
4837
  messages?: {
4837
4838
  text: string;
4838
- type: "error" | "success" | "info" | "warning";
4839
+ type: "success" | "error" | "info" | "warning";
4839
4840
  id?: number | undefined;
4840
4841
  }[] | undefined;
4841
4842
  required?: boolean | undefined;
@@ -4856,7 +4857,7 @@ export declare function init(config: AuthHeroConfig): {
4856
4857
  hint?: string | undefined;
4857
4858
  messages?: {
4858
4859
  text: string;
4859
- type: "error" | "success" | "info" | "warning";
4860
+ type: "success" | "error" | "info" | "warning";
4860
4861
  id?: number | undefined;
4861
4862
  }[] | undefined;
4862
4863
  required?: boolean | undefined;
@@ -5087,7 +5088,7 @@ export declare function init(config: AuthHeroConfig): {
5087
5088
  hint?: string | undefined;
5088
5089
  messages?: {
5089
5090
  text: string;
5090
- type: "error" | "success" | "info" | "warning";
5091
+ type: "success" | "error" | "info" | "warning";
5091
5092
  id?: number | undefined;
5092
5093
  }[] | undefined;
5093
5094
  required?: boolean | undefined;
@@ -5105,7 +5106,7 @@ export declare function init(config: AuthHeroConfig): {
5105
5106
  hint?: string | undefined;
5106
5107
  messages?: {
5107
5108
  text: string;
5108
- type: "error" | "success" | "info" | "warning";
5109
+ type: "success" | "error" | "info" | "warning";
5109
5110
  id?: number | undefined;
5110
5111
  }[] | undefined;
5111
5112
  required?: boolean | undefined;
@@ -5129,7 +5130,7 @@ export declare function init(config: AuthHeroConfig): {
5129
5130
  hint?: string | undefined;
5130
5131
  messages?: {
5131
5132
  text: string;
5132
- type: "error" | "success" | "info" | "warning";
5133
+ type: "success" | "error" | "info" | "warning";
5133
5134
  id?: number | undefined;
5134
5135
  }[] | undefined;
5135
5136
  required?: boolean | undefined;
@@ -5153,7 +5154,7 @@ export declare function init(config: AuthHeroConfig): {
5153
5154
  hint?: string | undefined;
5154
5155
  messages?: {
5155
5156
  text: string;
5156
- type: "error" | "success" | "info" | "warning";
5157
+ type: "success" | "error" | "info" | "warning";
5157
5158
  id?: number | undefined;
5158
5159
  }[] | undefined;
5159
5160
  required?: boolean | undefined;
@@ -5177,7 +5178,7 @@ export declare function init(config: AuthHeroConfig): {
5177
5178
  hint?: string | undefined;
5178
5179
  messages?: {
5179
5180
  text: string;
5180
- type: "error" | "success" | "info" | "warning";
5181
+ type: "success" | "error" | "info" | "warning";
5181
5182
  id?: number | undefined;
5182
5183
  }[] | undefined;
5183
5184
  required?: boolean | undefined;
@@ -5206,7 +5207,7 @@ export declare function init(config: AuthHeroConfig): {
5206
5207
  hint?: string | undefined;
5207
5208
  messages?: {
5208
5209
  text: string;
5209
- type: "error" | "success" | "info" | "warning";
5210
+ type: "success" | "error" | "info" | "warning";
5210
5211
  id?: number | undefined;
5211
5212
  }[] | undefined;
5212
5213
  required?: boolean | undefined;
@@ -5221,7 +5222,7 @@ export declare function init(config: AuthHeroConfig): {
5221
5222
  hint?: string | undefined;
5222
5223
  messages?: {
5223
5224
  text: string;
5224
- type: "error" | "success" | "info" | "warning";
5225
+ type: "success" | "error" | "info" | "warning";
5225
5226
  id?: number | undefined;
5226
5227
  }[] | undefined;
5227
5228
  required?: boolean | undefined;
@@ -5242,7 +5243,7 @@ export declare function init(config: AuthHeroConfig): {
5242
5243
  hint?: string | undefined;
5243
5244
  messages?: {
5244
5245
  text: string;
5245
- type: "error" | "success" | "info" | "warning";
5246
+ type: "success" | "error" | "info" | "warning";
5246
5247
  id?: number | undefined;
5247
5248
  }[] | undefined;
5248
5249
  required?: boolean | undefined;
@@ -5267,7 +5268,7 @@ export declare function init(config: AuthHeroConfig): {
5267
5268
  hint?: string | undefined;
5268
5269
  messages?: {
5269
5270
  text: string;
5270
- type: "error" | "success" | "info" | "warning";
5271
+ type: "success" | "error" | "info" | "warning";
5271
5272
  id?: number | undefined;
5272
5273
  }[] | undefined;
5273
5274
  required?: boolean | undefined;
@@ -5286,7 +5287,7 @@ export declare function init(config: AuthHeroConfig): {
5286
5287
  hint?: string | undefined;
5287
5288
  messages?: {
5288
5289
  text: string;
5289
- type: "error" | "success" | "info" | "warning";
5290
+ type: "success" | "error" | "info" | "warning";
5290
5291
  id?: number | undefined;
5291
5292
  }[] | undefined;
5292
5293
  required?: boolean | undefined;
@@ -5306,7 +5307,7 @@ export declare function init(config: AuthHeroConfig): {
5306
5307
  hint?: string | undefined;
5307
5308
  messages?: {
5308
5309
  text: string;
5309
- type: "error" | "success" | "info" | "warning";
5310
+ type: "success" | "error" | "info" | "warning";
5310
5311
  id?: number | undefined;
5311
5312
  }[] | undefined;
5312
5313
  required?: boolean | undefined;
@@ -5325,7 +5326,7 @@ export declare function init(config: AuthHeroConfig): {
5325
5326
  hint?: string | undefined;
5326
5327
  messages?: {
5327
5328
  text: string;
5328
- type: "error" | "success" | "info" | "warning";
5329
+ type: "success" | "error" | "info" | "warning";
5329
5330
  id?: number | undefined;
5330
5331
  }[] | undefined;
5331
5332
  required?: boolean | undefined;
@@ -5347,7 +5348,7 @@ export declare function init(config: AuthHeroConfig): {
5347
5348
  hint?: string | undefined;
5348
5349
  messages?: {
5349
5350
  text: string;
5350
- type: "error" | "success" | "info" | "warning";
5351
+ type: "success" | "error" | "info" | "warning";
5351
5352
  id?: number | undefined;
5352
5353
  }[] | undefined;
5353
5354
  required?: boolean | undefined;
@@ -5369,7 +5370,7 @@ export declare function init(config: AuthHeroConfig): {
5369
5370
  hint?: string | undefined;
5370
5371
  messages?: {
5371
5372
  text: string;
5372
- type: "error" | "success" | "info" | "warning";
5373
+ type: "success" | "error" | "info" | "warning";
5373
5374
  id?: number | undefined;
5374
5375
  }[] | undefined;
5375
5376
  required?: boolean | undefined;
@@ -5388,7 +5389,7 @@ export declare function init(config: AuthHeroConfig): {
5388
5389
  hint?: string | undefined;
5389
5390
  messages?: {
5390
5391
  text: string;
5391
- type: "error" | "success" | "info" | "warning";
5392
+ type: "success" | "error" | "info" | "warning";
5392
5393
  id?: number | undefined;
5393
5394
  }[] | undefined;
5394
5395
  required?: boolean | undefined;
@@ -5413,7 +5414,7 @@ export declare function init(config: AuthHeroConfig): {
5413
5414
  hint?: string | undefined;
5414
5415
  messages?: {
5415
5416
  text: string;
5416
- type: "error" | "success" | "info" | "warning";
5417
+ type: "success" | "error" | "info" | "warning";
5417
5418
  id?: number | undefined;
5418
5419
  }[] | undefined;
5419
5420
  required?: boolean | undefined;
@@ -5434,7 +5435,7 @@ export declare function init(config: AuthHeroConfig): {
5434
5435
  hint?: string | undefined;
5435
5436
  messages?: {
5436
5437
  text: string;
5437
- type: "error" | "success" | "info" | "warning";
5438
+ type: "success" | "error" | "info" | "warning";
5438
5439
  id?: number | undefined;
5439
5440
  }[] | undefined;
5440
5441
  required?: boolean | undefined;
@@ -5455,7 +5456,7 @@ export declare function init(config: AuthHeroConfig): {
5455
5456
  hint?: string | undefined;
5456
5457
  messages?: {
5457
5458
  text: string;
5458
- type: "error" | "success" | "info" | "warning";
5459
+ type: "success" | "error" | "info" | "warning";
5459
5460
  id?: number | undefined;
5460
5461
  }[] | undefined;
5461
5462
  required?: boolean | undefined;
@@ -5688,7 +5689,7 @@ export declare function init(config: AuthHeroConfig): {
5688
5689
  hint?: string | undefined;
5689
5690
  messages?: {
5690
5691
  text: string;
5691
- type: "error" | "success" | "info" | "warning";
5692
+ type: "success" | "error" | "info" | "warning";
5692
5693
  id?: number | undefined;
5693
5694
  }[] | undefined;
5694
5695
  required?: boolean | undefined;
@@ -5706,7 +5707,7 @@ export declare function init(config: AuthHeroConfig): {
5706
5707
  hint?: string | undefined;
5707
5708
  messages?: {
5708
5709
  text: string;
5709
- type: "error" | "success" | "info" | "warning";
5710
+ type: "success" | "error" | "info" | "warning";
5710
5711
  id?: number | undefined;
5711
5712
  }[] | undefined;
5712
5713
  required?: boolean | undefined;
@@ -5730,7 +5731,7 @@ export declare function init(config: AuthHeroConfig): {
5730
5731
  hint?: string | undefined;
5731
5732
  messages?: {
5732
5733
  text: string;
5733
- type: "error" | "success" | "info" | "warning";
5734
+ type: "success" | "error" | "info" | "warning";
5734
5735
  id?: number | undefined;
5735
5736
  }[] | undefined;
5736
5737
  required?: boolean | undefined;
@@ -5754,7 +5755,7 @@ export declare function init(config: AuthHeroConfig): {
5754
5755
  hint?: string | undefined;
5755
5756
  messages?: {
5756
5757
  text: string;
5757
- type: "error" | "success" | "info" | "warning";
5758
+ type: "success" | "error" | "info" | "warning";
5758
5759
  id?: number | undefined;
5759
5760
  }[] | undefined;
5760
5761
  required?: boolean | undefined;
@@ -5778,7 +5779,7 @@ export declare function init(config: AuthHeroConfig): {
5778
5779
  hint?: string | undefined;
5779
5780
  messages?: {
5780
5781
  text: string;
5781
- type: "error" | "success" | "info" | "warning";
5782
+ type: "success" | "error" | "info" | "warning";
5782
5783
  id?: number | undefined;
5783
5784
  }[] | undefined;
5784
5785
  required?: boolean | undefined;
@@ -5803,7 +5804,7 @@ export declare function init(config: AuthHeroConfig): {
5803
5804
  hint?: string | undefined;
5804
5805
  messages?: {
5805
5806
  text: string;
5806
- type: "error" | "success" | "info" | "warning";
5807
+ type: "success" | "error" | "info" | "warning";
5807
5808
  id?: number | undefined;
5808
5809
  }[] | undefined;
5809
5810
  required?: boolean | undefined;
@@ -5818,7 +5819,7 @@ export declare function init(config: AuthHeroConfig): {
5818
5819
  hint?: string | undefined;
5819
5820
  messages?: {
5820
5821
  text: string;
5821
- type: "error" | "success" | "info" | "warning";
5822
+ type: "success" | "error" | "info" | "warning";
5822
5823
  id?: number | undefined;
5823
5824
  }[] | undefined;
5824
5825
  required?: boolean | undefined;
@@ -5839,7 +5840,7 @@ export declare function init(config: AuthHeroConfig): {
5839
5840
  hint?: string | undefined;
5840
5841
  messages?: {
5841
5842
  text: string;
5842
- type: "error" | "success" | "info" | "warning";
5843
+ type: "success" | "error" | "info" | "warning";
5843
5844
  id?: number | undefined;
5844
5845
  }[] | undefined;
5845
5846
  required?: boolean | undefined;
@@ -5864,7 +5865,7 @@ export declare function init(config: AuthHeroConfig): {
5864
5865
  hint?: string | undefined;
5865
5866
  messages?: {
5866
5867
  text: string;
5867
- type: "error" | "success" | "info" | "warning";
5868
+ type: "success" | "error" | "info" | "warning";
5868
5869
  id?: number | undefined;
5869
5870
  }[] | undefined;
5870
5871
  required?: boolean | undefined;
@@ -5883,7 +5884,7 @@ export declare function init(config: AuthHeroConfig): {
5883
5884
  hint?: string | undefined;
5884
5885
  messages?: {
5885
5886
  text: string;
5886
- type: "error" | "success" | "info" | "warning";
5887
+ type: "success" | "error" | "info" | "warning";
5887
5888
  id?: number | undefined;
5888
5889
  }[] | undefined;
5889
5890
  required?: boolean | undefined;
@@ -5903,7 +5904,7 @@ export declare function init(config: AuthHeroConfig): {
5903
5904
  hint?: string | undefined;
5904
5905
  messages?: {
5905
5906
  text: string;
5906
- type: "error" | "success" | "info" | "warning";
5907
+ type: "success" | "error" | "info" | "warning";
5907
5908
  id?: number | undefined;
5908
5909
  }[] | undefined;
5909
5910
  required?: boolean | undefined;
@@ -5922,7 +5923,7 @@ export declare function init(config: AuthHeroConfig): {
5922
5923
  hint?: string | undefined;
5923
5924
  messages?: {
5924
5925
  text: string;
5925
- type: "error" | "success" | "info" | "warning";
5926
+ type: "success" | "error" | "info" | "warning";
5926
5927
  id?: number | undefined;
5927
5928
  }[] | undefined;
5928
5929
  required?: boolean | undefined;
@@ -5944,7 +5945,7 @@ export declare function init(config: AuthHeroConfig): {
5944
5945
  hint?: string | undefined;
5945
5946
  messages?: {
5946
5947
  text: string;
5947
- type: "error" | "success" | "info" | "warning";
5948
+ type: "success" | "error" | "info" | "warning";
5948
5949
  id?: number | undefined;
5949
5950
  }[] | undefined;
5950
5951
  required?: boolean | undefined;
@@ -5966,7 +5967,7 @@ export declare function init(config: AuthHeroConfig): {
5966
5967
  hint?: string | undefined;
5967
5968
  messages?: {
5968
5969
  text: string;
5969
- type: "error" | "success" | "info" | "warning";
5970
+ type: "success" | "error" | "info" | "warning";
5970
5971
  id?: number | undefined;
5971
5972
  }[] | undefined;
5972
5973
  required?: boolean | undefined;
@@ -5985,7 +5986,7 @@ export declare function init(config: AuthHeroConfig): {
5985
5986
  hint?: string | undefined;
5986
5987
  messages?: {
5987
5988
  text: string;
5988
- type: "error" | "success" | "info" | "warning";
5989
+ type: "success" | "error" | "info" | "warning";
5989
5990
  id?: number | undefined;
5990
5991
  }[] | undefined;
5991
5992
  required?: boolean | undefined;
@@ -6010,7 +6011,7 @@ export declare function init(config: AuthHeroConfig): {
6010
6011
  hint?: string | undefined;
6011
6012
  messages?: {
6012
6013
  text: string;
6013
- type: "error" | "success" | "info" | "warning";
6014
+ type: "success" | "error" | "info" | "warning";
6014
6015
  id?: number | undefined;
6015
6016
  }[] | undefined;
6016
6017
  required?: boolean | undefined;
@@ -6031,7 +6032,7 @@ export declare function init(config: AuthHeroConfig): {
6031
6032
  hint?: string | undefined;
6032
6033
  messages?: {
6033
6034
  text: string;
6034
- type: "error" | "success" | "info" | "warning";
6035
+ type: "success" | "error" | "info" | "warning";
6035
6036
  id?: number | undefined;
6036
6037
  }[] | undefined;
6037
6038
  required?: boolean | undefined;
@@ -6052,7 +6053,7 @@ export declare function init(config: AuthHeroConfig): {
6052
6053
  hint?: string | undefined;
6053
6054
  messages?: {
6054
6055
  text: string;
6055
- type: "error" | "success" | "info" | "warning";
6056
+ type: "success" | "error" | "info" | "warning";
6056
6057
  id?: number | undefined;
6057
6058
  }[] | undefined;
6058
6059
  required?: boolean | undefined;
@@ -6283,7 +6284,7 @@ export declare function init(config: AuthHeroConfig): {
6283
6284
  hint?: string | undefined;
6284
6285
  messages?: {
6285
6286
  text: string;
6286
- type: "error" | "success" | "info" | "warning";
6287
+ type: "success" | "error" | "info" | "warning";
6287
6288
  id?: number | undefined;
6288
6289
  }[] | undefined;
6289
6290
  required?: boolean | undefined;
@@ -6301,7 +6302,7 @@ export declare function init(config: AuthHeroConfig): {
6301
6302
  hint?: string | undefined;
6302
6303
  messages?: {
6303
6304
  text: string;
6304
- type: "error" | "success" | "info" | "warning";
6305
+ type: "success" | "error" | "info" | "warning";
6305
6306
  id?: number | undefined;
6306
6307
  }[] | undefined;
6307
6308
  required?: boolean | undefined;
@@ -6325,7 +6326,7 @@ export declare function init(config: AuthHeroConfig): {
6325
6326
  hint?: string | undefined;
6326
6327
  messages?: {
6327
6328
  text: string;
6328
- type: "error" | "success" | "info" | "warning";
6329
+ type: "success" | "error" | "info" | "warning";
6329
6330
  id?: number | undefined;
6330
6331
  }[] | undefined;
6331
6332
  required?: boolean | undefined;
@@ -6349,7 +6350,7 @@ export declare function init(config: AuthHeroConfig): {
6349
6350
  hint?: string | undefined;
6350
6351
  messages?: {
6351
6352
  text: string;
6352
- type: "error" | "success" | "info" | "warning";
6353
+ type: "success" | "error" | "info" | "warning";
6353
6354
  id?: number | undefined;
6354
6355
  }[] | undefined;
6355
6356
  required?: boolean | undefined;
@@ -6373,7 +6374,7 @@ export declare function init(config: AuthHeroConfig): {
6373
6374
  hint?: string | undefined;
6374
6375
  messages?: {
6375
6376
  text: string;
6376
- type: "error" | "success" | "info" | "warning";
6377
+ type: "success" | "error" | "info" | "warning";
6377
6378
  id?: number | undefined;
6378
6379
  }[] | undefined;
6379
6380
  required?: boolean | undefined;
@@ -6402,7 +6403,7 @@ export declare function init(config: AuthHeroConfig): {
6402
6403
  hint?: string | undefined;
6403
6404
  messages?: {
6404
6405
  text: string;
6405
- type: "error" | "success" | "info" | "warning";
6406
+ type: "success" | "error" | "info" | "warning";
6406
6407
  id?: number | undefined;
6407
6408
  }[] | undefined;
6408
6409
  required?: boolean | undefined;
@@ -6417,7 +6418,7 @@ export declare function init(config: AuthHeroConfig): {
6417
6418
  hint?: string | undefined;
6418
6419
  messages?: {
6419
6420
  text: string;
6420
- type: "error" | "success" | "info" | "warning";
6421
+ type: "success" | "error" | "info" | "warning";
6421
6422
  id?: number | undefined;
6422
6423
  }[] | undefined;
6423
6424
  required?: boolean | undefined;
@@ -6438,7 +6439,7 @@ export declare function init(config: AuthHeroConfig): {
6438
6439
  hint?: string | undefined;
6439
6440
  messages?: {
6440
6441
  text: string;
6441
- type: "error" | "success" | "info" | "warning";
6442
+ type: "success" | "error" | "info" | "warning";
6442
6443
  id?: number | undefined;
6443
6444
  }[] | undefined;
6444
6445
  required?: boolean | undefined;
@@ -6463,7 +6464,7 @@ export declare function init(config: AuthHeroConfig): {
6463
6464
  hint?: string | undefined;
6464
6465
  messages?: {
6465
6466
  text: string;
6466
- type: "error" | "success" | "info" | "warning";
6467
+ type: "success" | "error" | "info" | "warning";
6467
6468
  id?: number | undefined;
6468
6469
  }[] | undefined;
6469
6470
  required?: boolean | undefined;
@@ -6482,7 +6483,7 @@ export declare function init(config: AuthHeroConfig): {
6482
6483
  hint?: string | undefined;
6483
6484
  messages?: {
6484
6485
  text: string;
6485
- type: "error" | "success" | "info" | "warning";
6486
+ type: "success" | "error" | "info" | "warning";
6486
6487
  id?: number | undefined;
6487
6488
  }[] | undefined;
6488
6489
  required?: boolean | undefined;
@@ -6502,7 +6503,7 @@ export declare function init(config: AuthHeroConfig): {
6502
6503
  hint?: string | undefined;
6503
6504
  messages?: {
6504
6505
  text: string;
6505
- type: "error" | "success" | "info" | "warning";
6506
+ type: "success" | "error" | "info" | "warning";
6506
6507
  id?: number | undefined;
6507
6508
  }[] | undefined;
6508
6509
  required?: boolean | undefined;
@@ -6521,7 +6522,7 @@ export declare function init(config: AuthHeroConfig): {
6521
6522
  hint?: string | undefined;
6522
6523
  messages?: {
6523
6524
  text: string;
6524
- type: "error" | "success" | "info" | "warning";
6525
+ type: "success" | "error" | "info" | "warning";
6525
6526
  id?: number | undefined;
6526
6527
  }[] | undefined;
6527
6528
  required?: boolean | undefined;
@@ -6543,7 +6544,7 @@ export declare function init(config: AuthHeroConfig): {
6543
6544
  hint?: string | undefined;
6544
6545
  messages?: {
6545
6546
  text: string;
6546
- type: "error" | "success" | "info" | "warning";
6547
+ type: "success" | "error" | "info" | "warning";
6547
6548
  id?: number | undefined;
6548
6549
  }[] | undefined;
6549
6550
  required?: boolean | undefined;
@@ -6565,7 +6566,7 @@ export declare function init(config: AuthHeroConfig): {
6565
6566
  hint?: string | undefined;
6566
6567
  messages?: {
6567
6568
  text: string;
6568
- type: "error" | "success" | "info" | "warning";
6569
+ type: "success" | "error" | "info" | "warning";
6569
6570
  id?: number | undefined;
6570
6571
  }[] | undefined;
6571
6572
  required?: boolean | undefined;
@@ -6584,7 +6585,7 @@ export declare function init(config: AuthHeroConfig): {
6584
6585
  hint?: string | undefined;
6585
6586
  messages?: {
6586
6587
  text: string;
6587
- type: "error" | "success" | "info" | "warning";
6588
+ type: "success" | "error" | "info" | "warning";
6588
6589
  id?: number | undefined;
6589
6590
  }[] | undefined;
6590
6591
  required?: boolean | undefined;
@@ -6609,7 +6610,7 @@ export declare function init(config: AuthHeroConfig): {
6609
6610
  hint?: string | undefined;
6610
6611
  messages?: {
6611
6612
  text: string;
6612
- type: "error" | "success" | "info" | "warning";
6613
+ type: "success" | "error" | "info" | "warning";
6613
6614
  id?: number | undefined;
6614
6615
  }[] | undefined;
6615
6616
  required?: boolean | undefined;
@@ -6630,7 +6631,7 @@ export declare function init(config: AuthHeroConfig): {
6630
6631
  hint?: string | undefined;
6631
6632
  messages?: {
6632
6633
  text: string;
6633
- type: "error" | "success" | "info" | "warning";
6634
+ type: "success" | "error" | "info" | "warning";
6634
6635
  id?: number | undefined;
6635
6636
  }[] | undefined;
6636
6637
  required?: boolean | undefined;
@@ -6651,7 +6652,7 @@ export declare function init(config: AuthHeroConfig): {
6651
6652
  hint?: string | undefined;
6652
6653
  messages?: {
6653
6654
  text: string;
6654
- type: "error" | "success" | "info" | "warning";
6655
+ type: "success" | "error" | "info" | "warning";
6655
6656
  id?: number | undefined;
6656
6657
  }[] | undefined;
6657
6658
  required?: boolean | undefined;
@@ -6881,7 +6882,7 @@ export declare function init(config: AuthHeroConfig): {
6881
6882
  };
6882
6883
  };
6883
6884
  output: {
6884
- prompt: "status" | "organizations" | "signup" | "mfa" | "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";
6885
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6885
6886
  language: string;
6886
6887
  }[];
6887
6888
  outputFormat: "json";
@@ -6919,7 +6920,7 @@ export declare function init(config: AuthHeroConfig): {
6919
6920
  $get: {
6920
6921
  input: {
6921
6922
  param: {
6922
- prompt: "status" | "organizations" | "signup" | "mfa" | "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";
6923
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6923
6924
  language: string;
6924
6925
  };
6925
6926
  } & {
@@ -6941,7 +6942,7 @@ export declare function init(config: AuthHeroConfig): {
6941
6942
  $put: {
6942
6943
  input: {
6943
6944
  param: {
6944
- prompt: "status" | "organizations" | "signup" | "mfa" | "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";
6945
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6945
6946
  language: string;
6946
6947
  };
6947
6948
  } & {
@@ -6965,7 +6966,7 @@ export declare function init(config: AuthHeroConfig): {
6965
6966
  $delete: {
6966
6967
  input: {
6967
6968
  param: {
6968
- prompt: "status" | "organizations" | "signup" | "mfa" | "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";
6969
+ prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6969
6970
  language: string;
6970
6971
  };
6971
6972
  } & {
@@ -7057,7 +7058,7 @@ export declare function init(config: AuthHeroConfig): {
7057
7058
  active?: boolean | undefined;
7058
7059
  } | undefined;
7059
7060
  signup?: {
7060
- status?: "required" | "optional" | "disabled" | undefined;
7061
+ status?: "optional" | "required" | "disabled" | undefined;
7061
7062
  verification?: {
7062
7063
  active?: boolean | undefined;
7063
7064
  } | undefined;
@@ -7074,7 +7075,7 @@ export declare function init(config: AuthHeroConfig): {
7074
7075
  active?: boolean | undefined;
7075
7076
  } | undefined;
7076
7077
  signup?: {
7077
- status?: "required" | "optional" | "disabled" | undefined;
7078
+ status?: "optional" | "required" | "disabled" | undefined;
7078
7079
  } | undefined;
7079
7080
  validation?: {
7080
7081
  max_length?: number | undefined;
@@ -7091,7 +7092,7 @@ export declare function init(config: AuthHeroConfig): {
7091
7092
  active?: boolean | undefined;
7092
7093
  } | undefined;
7093
7094
  signup?: {
7094
- status?: "required" | "optional" | "disabled" | undefined;
7095
+ status?: "optional" | "required" | "disabled" | undefined;
7095
7096
  } | undefined;
7096
7097
  } | undefined;
7097
7098
  } | undefined;
@@ -7191,7 +7192,7 @@ export declare function init(config: AuthHeroConfig): {
7191
7192
  active?: boolean | undefined;
7192
7193
  } | undefined;
7193
7194
  signup?: {
7194
- status?: "required" | "optional" | "disabled" | undefined;
7195
+ status?: "optional" | "required" | "disabled" | undefined;
7195
7196
  verification?: {
7196
7197
  active?: boolean | undefined;
7197
7198
  } | undefined;
@@ -7208,7 +7209,7 @@ export declare function init(config: AuthHeroConfig): {
7208
7209
  active?: boolean | undefined;
7209
7210
  } | undefined;
7210
7211
  signup?: {
7211
- status?: "required" | "optional" | "disabled" | undefined;
7212
+ status?: "optional" | "required" | "disabled" | undefined;
7212
7213
  } | undefined;
7213
7214
  validation?: {
7214
7215
  max_length?: number | undefined;
@@ -7225,7 +7226,7 @@ export declare function init(config: AuthHeroConfig): {
7225
7226
  active?: boolean | undefined;
7226
7227
  } | undefined;
7227
7228
  signup?: {
7228
- status?: "required" | "optional" | "disabled" | undefined;
7229
+ status?: "optional" | "required" | "disabled" | undefined;
7229
7230
  } | undefined;
7230
7231
  } | undefined;
7231
7232
  } | undefined;
@@ -7340,7 +7341,7 @@ export declare function init(config: AuthHeroConfig): {
7340
7341
  active?: boolean | undefined;
7341
7342
  } | undefined;
7342
7343
  signup?: {
7343
- status?: "required" | "optional" | "disabled" | undefined;
7344
+ status?: "optional" | "required" | "disabled" | undefined;
7344
7345
  verification?: {
7345
7346
  active?: boolean | undefined;
7346
7347
  } | undefined;
@@ -7357,7 +7358,7 @@ export declare function init(config: AuthHeroConfig): {
7357
7358
  active?: boolean | undefined;
7358
7359
  } | undefined;
7359
7360
  signup?: {
7360
- status?: "required" | "optional" | "disabled" | undefined;
7361
+ status?: "optional" | "required" | "disabled" | undefined;
7361
7362
  } | undefined;
7362
7363
  validation?: {
7363
7364
  max_length?: number | undefined;
@@ -7374,7 +7375,7 @@ export declare function init(config: AuthHeroConfig): {
7374
7375
  active?: boolean | undefined;
7375
7376
  } | undefined;
7376
7377
  signup?: {
7377
- status?: "required" | "optional" | "disabled" | undefined;
7378
+ status?: "optional" | "required" | "disabled" | undefined;
7378
7379
  } | undefined;
7379
7380
  } | undefined;
7380
7381
  } | undefined;
@@ -7519,7 +7520,7 @@ export declare function init(config: AuthHeroConfig): {
7519
7520
  active?: boolean | undefined;
7520
7521
  } | undefined;
7521
7522
  signup?: {
7522
- status?: "required" | "optional" | "disabled" | undefined;
7523
+ status?: "optional" | "required" | "disabled" | undefined;
7523
7524
  verification?: {
7524
7525
  active?: boolean | undefined;
7525
7526
  } | undefined;
@@ -7536,7 +7537,7 @@ export declare function init(config: AuthHeroConfig): {
7536
7537
  active?: boolean | undefined;
7537
7538
  } | undefined;
7538
7539
  signup?: {
7539
- status?: "required" | "optional" | "disabled" | undefined;
7540
+ status?: "optional" | "required" | "disabled" | undefined;
7540
7541
  } | undefined;
7541
7542
  validation?: {
7542
7543
  max_length?: number | undefined;
@@ -7553,7 +7554,7 @@ export declare function init(config: AuthHeroConfig): {
7553
7554
  active?: boolean | undefined;
7554
7555
  } | undefined;
7555
7556
  signup?: {
7556
- status?: "required" | "optional" | "disabled" | undefined;
7557
+ status?: "optional" | "required" | "disabled" | undefined;
7557
7558
  } | undefined;
7558
7559
  } | undefined;
7559
7560
  } | undefined;
@@ -7677,7 +7678,7 @@ export declare function init(config: AuthHeroConfig): {
7677
7678
  active?: boolean | undefined;
7678
7679
  } | undefined;
7679
7680
  signup?: {
7680
- status?: "required" | "optional" | "disabled" | undefined;
7681
+ status?: "optional" | "required" | "disabled" | undefined;
7681
7682
  verification?: {
7682
7683
  active?: boolean | undefined;
7683
7684
  } | undefined;
@@ -7694,7 +7695,7 @@ export declare function init(config: AuthHeroConfig): {
7694
7695
  active?: boolean | undefined;
7695
7696
  } | undefined;
7696
7697
  signup?: {
7697
- status?: "required" | "optional" | "disabled" | undefined;
7698
+ status?: "optional" | "required" | "disabled" | undefined;
7698
7699
  } | undefined;
7699
7700
  validation?: {
7700
7701
  max_length?: number | undefined;
@@ -7711,7 +7712,7 @@ export declare function init(config: AuthHeroConfig): {
7711
7712
  active?: boolean | undefined;
7712
7713
  } | undefined;
7713
7714
  signup?: {
7714
- status?: "required" | "optional" | "disabled" | undefined;
7715
+ status?: "optional" | "required" | "disabled" | undefined;
7715
7716
  } | undefined;
7716
7717
  } | undefined;
7717
7718
  } | undefined;
@@ -7827,7 +7828,7 @@ export declare function init(config: AuthHeroConfig): {
7827
7828
  };
7828
7829
  } | {
7829
7830
  mode: "inline";
7830
- status: "error" | "success";
7831
+ status: "success" | "error";
7831
7832
  connection_id: string;
7832
7833
  connection_name: string;
7833
7834
  strategy: string;
@@ -7863,7 +7864,7 @@ export declare function init(config: AuthHeroConfig): {
7863
7864
  tenant_id: string;
7864
7865
  created_at: string;
7865
7866
  updated_at: string;
7866
- deploymentStatus: "failed" | "deployed" | "not_required";
7867
+ deploymentStatus: "deployed" | "failed" | "not_required";
7867
7868
  secrets?: {
7868
7869
  [x: string]: string;
7869
7870
  } | undefined;
@@ -7953,7 +7954,7 @@ export declare function init(config: AuthHeroConfig): {
7953
7954
  tenant_id: string;
7954
7955
  created_at: string;
7955
7956
  updated_at: string;
7956
- deploymentStatus: "failed" | "deployed" | "not_required";
7957
+ deploymentStatus: "deployed" | "failed" | "not_required";
7957
7958
  secrets?: {
7958
7959
  [x: string]: string;
7959
7960
  } | undefined;
@@ -8001,7 +8002,7 @@ export declare function init(config: AuthHeroConfig): {
8001
8002
  };
8002
8003
  };
8003
8004
  output: ({
8004
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8005
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8005
8006
  enabled: boolean;
8006
8007
  synchronous: boolean;
8007
8008
  created_at: string;
@@ -8013,7 +8014,7 @@ export declare function init(config: AuthHeroConfig): {
8013
8014
  [x: string]: import("hono/utils/types").JSONValue;
8014
8015
  } | undefined;
8015
8016
  } | {
8016
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8017
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8017
8018
  enabled: boolean;
8018
8019
  synchronous: boolean;
8019
8020
  created_at: string;
@@ -8025,7 +8026,7 @@ export declare function init(config: AuthHeroConfig): {
8025
8026
  [x: string]: import("hono/utils/types").JSONValue;
8026
8027
  } | undefined;
8027
8028
  } | {
8028
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8029
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8029
8030
  enabled: boolean;
8030
8031
  synchronous: boolean;
8031
8032
  created_at: string;
@@ -8037,7 +8038,7 @@ export declare function init(config: AuthHeroConfig): {
8037
8038
  [x: string]: import("hono/utils/types").JSONValue;
8038
8039
  } | undefined;
8039
8040
  } | {
8040
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8041
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8041
8042
  enabled: boolean;
8042
8043
  synchronous: boolean;
8043
8044
  created_at: string;
@@ -8053,7 +8054,7 @@ export declare function init(config: AuthHeroConfig): {
8053
8054
  limit: number;
8054
8055
  length: number;
8055
8056
  hooks: ({
8056
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8057
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8057
8058
  enabled: boolean;
8058
8059
  synchronous: boolean;
8059
8060
  created_at: string;
@@ -8065,7 +8066,7 @@ export declare function init(config: AuthHeroConfig): {
8065
8066
  [x: string]: import("hono/utils/types").JSONValue;
8066
8067
  } | undefined;
8067
8068
  } | {
8068
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8069
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8069
8070
  enabled: boolean;
8070
8071
  synchronous: boolean;
8071
8072
  created_at: string;
@@ -8077,7 +8078,7 @@ export declare function init(config: AuthHeroConfig): {
8077
8078
  [x: string]: import("hono/utils/types").JSONValue;
8078
8079
  } | undefined;
8079
8080
  } | {
8080
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8081
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8081
8082
  enabled: boolean;
8082
8083
  synchronous: boolean;
8083
8084
  created_at: string;
@@ -8089,7 +8090,7 @@ export declare function init(config: AuthHeroConfig): {
8089
8090
  [x: string]: import("hono/utils/types").JSONValue;
8090
8091
  } | undefined;
8091
8092
  } | {
8092
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8093
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8093
8094
  enabled: boolean;
8094
8095
  synchronous: boolean;
8095
8096
  created_at: string;
@@ -8116,7 +8117,7 @@ export declare function init(config: AuthHeroConfig): {
8116
8117
  };
8117
8118
  } & {
8118
8119
  json: {
8119
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8120
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8120
8121
  url: string;
8121
8122
  enabled?: boolean | undefined;
8122
8123
  synchronous?: boolean | undefined;
@@ -8124,7 +8125,7 @@ export declare function init(config: AuthHeroConfig): {
8124
8125
  hook_id?: string | undefined;
8125
8126
  metadata?: Record<string, unknown> | undefined;
8126
8127
  } | {
8127
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8128
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8128
8129
  form_id: string;
8129
8130
  enabled?: boolean | undefined;
8130
8131
  synchronous?: boolean | undefined;
@@ -8132,7 +8133,7 @@ export declare function init(config: AuthHeroConfig): {
8132
8133
  hook_id?: string | undefined;
8133
8134
  metadata?: Record<string, unknown> | undefined;
8134
8135
  } | {
8135
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8136
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8136
8137
  template_id: "ensure-username" | "set-preferred-username" | "account-linking";
8137
8138
  enabled?: boolean | undefined;
8138
8139
  synchronous?: boolean | undefined;
@@ -8140,7 +8141,7 @@ export declare function init(config: AuthHeroConfig): {
8140
8141
  hook_id?: string | undefined;
8141
8142
  metadata?: Record<string, unknown> | undefined;
8142
8143
  } | {
8143
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8144
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8144
8145
  code_id: string;
8145
8146
  enabled?: boolean | undefined;
8146
8147
  synchronous?: boolean | undefined;
@@ -8150,7 +8151,7 @@ export declare function init(config: AuthHeroConfig): {
8150
8151
  };
8151
8152
  };
8152
8153
  output: {
8153
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8154
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8154
8155
  enabled: boolean;
8155
8156
  synchronous: boolean;
8156
8157
  created_at: string;
@@ -8162,7 +8163,7 @@ export declare function init(config: AuthHeroConfig): {
8162
8163
  [x: string]: import("hono/utils/types").JSONValue;
8163
8164
  } | undefined;
8164
8165
  } | {
8165
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8166
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8166
8167
  enabled: boolean;
8167
8168
  synchronous: boolean;
8168
8169
  created_at: string;
@@ -8174,7 +8175,7 @@ export declare function init(config: AuthHeroConfig): {
8174
8175
  [x: string]: import("hono/utils/types").JSONValue;
8175
8176
  } | undefined;
8176
8177
  } | {
8177
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8178
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8178
8179
  enabled: boolean;
8179
8180
  synchronous: boolean;
8180
8181
  created_at: string;
@@ -8186,7 +8187,7 @@ export declare function init(config: AuthHeroConfig): {
8186
8187
  [x: string]: import("hono/utils/types").JSONValue;
8187
8188
  } | undefined;
8188
8189
  } | {
8189
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8190
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8190
8191
  enabled: boolean;
8191
8192
  synchronous: boolean;
8192
8193
  created_at: string;
@@ -8232,7 +8233,7 @@ export declare function init(config: AuthHeroConfig): {
8232
8233
  json: unknown;
8233
8234
  };
8234
8235
  output: {
8235
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8236
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8236
8237
  enabled: boolean;
8237
8238
  synchronous: boolean;
8238
8239
  created_at: string;
@@ -8244,7 +8245,7 @@ export declare function init(config: AuthHeroConfig): {
8244
8245
  [x: string]: import("hono/utils/types").JSONValue;
8245
8246
  } | undefined;
8246
8247
  } | {
8247
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8248
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8248
8249
  enabled: boolean;
8249
8250
  synchronous: boolean;
8250
8251
  created_at: string;
@@ -8256,7 +8257,7 @@ export declare function init(config: AuthHeroConfig): {
8256
8257
  [x: string]: import("hono/utils/types").JSONValue;
8257
8258
  } | undefined;
8258
8259
  } | {
8259
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8260
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8260
8261
  enabled: boolean;
8261
8262
  synchronous: boolean;
8262
8263
  created_at: string;
@@ -8268,7 +8269,7 @@ export declare function init(config: AuthHeroConfig): {
8268
8269
  [x: string]: import("hono/utils/types").JSONValue;
8269
8270
  } | undefined;
8270
8271
  } | {
8271
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8272
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8272
8273
  enabled: boolean;
8273
8274
  synchronous: boolean;
8274
8275
  created_at: string;
@@ -8310,7 +8311,7 @@ export declare function init(config: AuthHeroConfig): {
8310
8311
  };
8311
8312
  };
8312
8313
  output: {
8313
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8314
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8314
8315
  enabled: boolean;
8315
8316
  synchronous: boolean;
8316
8317
  created_at: string;
@@ -8322,7 +8323,7 @@ export declare function init(config: AuthHeroConfig): {
8322
8323
  [x: string]: import("hono/utils/types").JSONValue;
8323
8324
  } | undefined;
8324
8325
  } | {
8325
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8326
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
8326
8327
  enabled: boolean;
8327
8328
  synchronous: boolean;
8328
8329
  created_at: string;
@@ -8334,7 +8335,7 @@ export declare function init(config: AuthHeroConfig): {
8334
8335
  [x: string]: import("hono/utils/types").JSONValue;
8335
8336
  } | undefined;
8336
8337
  } | {
8337
- trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
8338
+ trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
8338
8339
  enabled: boolean;
8339
8340
  synchronous: boolean;
8340
8341
  created_at: string;
@@ -8346,7 +8347,7 @@ export declare function init(config: AuthHeroConfig): {
8346
8347
  [x: string]: import("hono/utils/types").JSONValue;
8347
8348
  } | undefined;
8348
8349
  } | {
8349
- trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
8350
+ trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
8350
8351
  enabled: boolean;
8351
8352
  synchronous: boolean;
8352
8353
  created_at: string;
@@ -8464,9 +8465,9 @@ export declare function init(config: AuthHeroConfig): {
8464
8465
  tenant_id: string;
8465
8466
  event_type: string;
8466
8467
  log_type: string;
8467
- category: "user_action" | "admin_action" | "system" | "api";
8468
+ category: "api" | "user_action" | "admin_action" | "system";
8468
8469
  actor: {
8469
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8470
+ type: "user" | "system" | "client_credentials" | "admin" | "api_key";
8470
8471
  id?: string | undefined;
8471
8472
  email?: string | undefined;
8472
8473
  org_id?: string | undefined;
@@ -8946,7 +8947,7 @@ export declare function init(config: AuthHeroConfig): {
8946
8947
  [x: string]: import("hono/utils/types").JSONValue;
8947
8948
  };
8948
8949
  id: string;
8949
- status: "active" | "suspended" | "paused";
8950
+ status: "suspended" | "active" | "paused";
8950
8951
  filters?: {
8951
8952
  type: string;
8952
8953
  name: string;
@@ -8978,7 +8979,7 @@ export declare function init(config: AuthHeroConfig): {
8978
8979
  [x: string]: import("hono/utils/types").JSONValue;
8979
8980
  };
8980
8981
  id: string;
8981
- status: "active" | "suspended" | "paused";
8982
+ status: "suspended" | "active" | "paused";
8982
8983
  filters?: {
8983
8984
  type: string;
8984
8985
  name: string;
@@ -9003,7 +9004,7 @@ export declare function init(config: AuthHeroConfig): {
9003
9004
  name: string;
9004
9005
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
9005
9006
  sink: Record<string, unknown>;
9006
- status?: "active" | "suspended" | "paused" | undefined;
9007
+ status?: "suspended" | "active" | "paused" | undefined;
9007
9008
  filters?: {
9008
9009
  type: string;
9009
9010
  name: string;
@@ -9018,7 +9019,7 @@ export declare function init(config: AuthHeroConfig): {
9018
9019
  [x: string]: import("hono/utils/types").JSONValue;
9019
9020
  };
9020
9021
  id: string;
9021
- status: "active" | "suspended" | "paused";
9022
+ status: "suspended" | "active" | "paused";
9022
9023
  filters?: {
9023
9024
  type: string;
9024
9025
  name: string;
@@ -9053,7 +9054,7 @@ export declare function init(config: AuthHeroConfig): {
9053
9054
  }[] | undefined;
9054
9055
  isPriority?: boolean | undefined;
9055
9056
  id?: string | undefined;
9056
- status?: "active" | "suspended" | "paused" | undefined;
9057
+ status?: "suspended" | "active" | "paused" | undefined;
9057
9058
  created_at?: string | undefined;
9058
9059
  updated_at?: string | undefined;
9059
9060
  };
@@ -9065,7 +9066,7 @@ export declare function init(config: AuthHeroConfig): {
9065
9066
  [x: string]: import("hono/utils/types").JSONValue;
9066
9067
  };
9067
9068
  id: string;
9068
- status: "active" | "suspended" | "paused";
9069
+ status: "suspended" | "active" | "paused";
9069
9070
  filters?: {
9070
9071
  type: string;
9071
9072
  name: string;
@@ -9116,7 +9117,7 @@ export declare function init(config: AuthHeroConfig): {
9116
9117
  };
9117
9118
  };
9118
9119
  output: {
9119
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9120
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9120
9121
  date: string;
9121
9122
  isMobile: boolean;
9122
9123
  log_id: string;
@@ -9155,7 +9156,7 @@ export declare function init(config: AuthHeroConfig): {
9155
9156
  limit: number;
9156
9157
  length: number;
9157
9158
  logs: {
9158
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9159
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9159
9160
  date: string;
9160
9161
  isMobile: boolean;
9161
9162
  log_id: string;
@@ -9209,7 +9210,7 @@ export declare function init(config: AuthHeroConfig): {
9209
9210
  };
9210
9211
  };
9211
9212
  output: {
9212
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9213
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9213
9214
  date: string;
9214
9215
  isMobile: boolean;
9215
9216
  log_id: string;
@@ -9364,7 +9365,7 @@ export declare function init(config: AuthHeroConfig): {
9364
9365
  audience?: string | undefined;
9365
9366
  client_id?: string | undefined;
9366
9367
  allow_any_organization?: string | undefined;
9367
- subject_type?: "user" | "client" | undefined;
9368
+ subject_type?: "client" | "user" | undefined;
9368
9369
  };
9369
9370
  } & {
9370
9371
  header: {
@@ -9379,7 +9380,7 @@ export declare function init(config: AuthHeroConfig): {
9379
9380
  organization_usage?: "deny" | "allow" | "require" | undefined;
9380
9381
  allow_any_organization?: boolean | undefined;
9381
9382
  is_system?: boolean | undefined;
9382
- subject_type?: "user" | "client" | undefined;
9383
+ subject_type?: "client" | "user" | undefined;
9383
9384
  authorization_details_types?: string[] | undefined;
9384
9385
  created_at?: string | undefined;
9385
9386
  updated_at?: string | undefined;
@@ -9395,7 +9396,7 @@ export declare function init(config: AuthHeroConfig): {
9395
9396
  organization_usage?: "deny" | "allow" | "require" | undefined;
9396
9397
  allow_any_organization?: boolean | undefined;
9397
9398
  is_system?: boolean | undefined;
9398
- subject_type?: "user" | "client" | undefined;
9399
+ subject_type?: "client" | "user" | undefined;
9399
9400
  authorization_details_types?: string[] | undefined;
9400
9401
  created_at?: string | undefined;
9401
9402
  updated_at?: string | undefined;
@@ -9426,7 +9427,7 @@ export declare function init(config: AuthHeroConfig): {
9426
9427
  organization_usage?: "deny" | "allow" | "require" | undefined;
9427
9428
  allow_any_organization?: boolean | undefined;
9428
9429
  is_system?: boolean | undefined;
9429
- subject_type?: "user" | "client" | undefined;
9430
+ subject_type?: "client" | "user" | undefined;
9430
9431
  authorization_details_types?: string[] | undefined;
9431
9432
  created_at?: string | undefined;
9432
9433
  updated_at?: string | undefined;
@@ -9471,7 +9472,7 @@ export declare function init(config: AuthHeroConfig): {
9471
9472
  organization_usage?: "deny" | "allow" | "require" | undefined;
9472
9473
  allow_any_organization?: boolean | undefined;
9473
9474
  is_system?: boolean | undefined;
9474
- subject_type?: "user" | "client" | undefined;
9475
+ subject_type?: "client" | "user" | undefined;
9475
9476
  authorization_details_types?: string[] | undefined;
9476
9477
  };
9477
9478
  };
@@ -9483,7 +9484,7 @@ export declare function init(config: AuthHeroConfig): {
9483
9484
  organization_usage?: "deny" | "allow" | "require" | undefined;
9484
9485
  allow_any_organization?: boolean | undefined;
9485
9486
  is_system?: boolean | undefined;
9486
- subject_type?: "user" | "client" | undefined;
9487
+ subject_type?: "client" | "user" | undefined;
9487
9488
  authorization_details_types?: string[] | undefined;
9488
9489
  created_at?: string | undefined;
9489
9490
  updated_at?: string | undefined;
@@ -9507,7 +9508,7 @@ export declare function init(config: AuthHeroConfig): {
9507
9508
  organization_usage?: "deny" | "allow" | "require" | undefined;
9508
9509
  allow_any_organization?: boolean | undefined;
9509
9510
  is_system?: boolean | undefined;
9510
- subject_type?: "user" | "client" | undefined;
9511
+ subject_type?: "client" | "user" | undefined;
9511
9512
  authorization_details_types?: string[] | undefined;
9512
9513
  };
9513
9514
  };
@@ -9519,7 +9520,7 @@ export declare function init(config: AuthHeroConfig): {
9519
9520
  organization_usage?: "deny" | "allow" | "require" | undefined;
9520
9521
  allow_any_organization?: boolean | undefined;
9521
9522
  is_system?: boolean | undefined;
9522
- subject_type?: "user" | "client" | undefined;
9523
+ subject_type?: "client" | "user" | undefined;
9523
9524
  authorization_details_types?: string[] | undefined;
9524
9525
  created_at?: string | undefined;
9525
9526
  updated_at?: string | undefined;
@@ -10285,7 +10286,7 @@ export declare function init(config: AuthHeroConfig): {
10285
10286
  active?: boolean | undefined;
10286
10287
  } | undefined;
10287
10288
  signup?: {
10288
- status?: "required" | "optional" | "disabled" | undefined;
10289
+ status?: "optional" | "required" | "disabled" | undefined;
10289
10290
  verification?: {
10290
10291
  active?: boolean | undefined;
10291
10292
  } | undefined;
@@ -10302,7 +10303,7 @@ export declare function init(config: AuthHeroConfig): {
10302
10303
  active?: boolean | undefined;
10303
10304
  } | undefined;
10304
10305
  signup?: {
10305
- status?: "required" | "optional" | "disabled" | undefined;
10306
+ status?: "optional" | "required" | "disabled" | undefined;
10306
10307
  } | undefined;
10307
10308
  validation?: {
10308
10309
  max_length?: number | undefined;
@@ -10319,7 +10320,7 @@ export declare function init(config: AuthHeroConfig): {
10319
10320
  active?: boolean | undefined;
10320
10321
  } | undefined;
10321
10322
  signup?: {
10322
- status?: "required" | "optional" | "disabled" | undefined;
10323
+ status?: "optional" | "required" | "disabled" | undefined;
10323
10324
  } | undefined;
10324
10325
  } | undefined;
10325
10326
  } | undefined;
@@ -10439,7 +10440,7 @@ export declare function init(config: AuthHeroConfig): {
10439
10440
  active?: boolean | undefined;
10440
10441
  } | undefined;
10441
10442
  signup?: {
10442
- status?: "required" | "optional" | "disabled" | undefined;
10443
+ status?: "optional" | "required" | "disabled" | undefined;
10443
10444
  verification?: {
10444
10445
  active?: boolean | undefined;
10445
10446
  } | undefined;
@@ -10456,7 +10457,7 @@ export declare function init(config: AuthHeroConfig): {
10456
10457
  active?: boolean | undefined;
10457
10458
  } | undefined;
10458
10459
  signup?: {
10459
- status?: "required" | "optional" | "disabled" | undefined;
10460
+ status?: "optional" | "required" | "disabled" | undefined;
10460
10461
  } | undefined;
10461
10462
  validation?: {
10462
10463
  max_length?: number | undefined;
@@ -10473,7 +10474,7 @@ export declare function init(config: AuthHeroConfig): {
10473
10474
  active?: boolean | undefined;
10474
10475
  } | undefined;
10475
10476
  signup?: {
10476
- status?: "required" | "optional" | "disabled" | undefined;
10477
+ status?: "optional" | "required" | "disabled" | undefined;
10477
10478
  } | undefined;
10478
10479
  } | undefined;
10479
10480
  } | undefined;
@@ -11427,7 +11428,7 @@ export declare function init(config: AuthHeroConfig): {
11427
11428
  };
11428
11429
  };
11429
11430
  output: {
11430
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11431
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11431
11432
  date: string;
11432
11433
  isMobile: boolean;
11433
11434
  log_id: string;
@@ -11466,7 +11467,7 @@ export declare function init(config: AuthHeroConfig): {
11466
11467
  limit: number;
11467
11468
  length: number;
11468
11469
  logs: {
11469
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11470
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11470
11471
  date: string;
11471
11472
  isMobile: boolean;
11472
11473
  log_id: string;
@@ -12308,7 +12309,7 @@ export declare function init(config: AuthHeroConfig): {
12308
12309
  type: "auth0_managed_certs" | "self_managed_certs";
12309
12310
  custom_domain_id: string;
12310
12311
  primary: boolean;
12311
- status: "disabled" | "pending" | "ready" | "pending_verification";
12312
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12312
12313
  verification_method?: "txt" | undefined;
12313
12314
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12314
12315
  domain_metadata?: {
@@ -12349,7 +12350,7 @@ export declare function init(config: AuthHeroConfig): {
12349
12350
  type: "auth0_managed_certs" | "self_managed_certs";
12350
12351
  custom_domain_id: string;
12351
12352
  primary: boolean;
12352
- status: "disabled" | "pending" | "ready" | "pending_verification";
12353
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12353
12354
  verification_method?: "txt" | undefined;
12354
12355
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12355
12356
  domain_metadata?: {
@@ -12413,7 +12414,7 @@ export declare function init(config: AuthHeroConfig): {
12413
12414
  type: "auth0_managed_certs" | "self_managed_certs";
12414
12415
  custom_domain_id: string;
12415
12416
  primary: boolean;
12416
- status: "disabled" | "pending" | "ready" | "pending_verification";
12417
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12417
12418
  verification_method?: "txt" | undefined;
12418
12419
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12419
12420
  domain_metadata?: {
@@ -12460,7 +12461,7 @@ export declare function init(config: AuthHeroConfig): {
12460
12461
  type: "auth0_managed_certs" | "self_managed_certs";
12461
12462
  custom_domain_id: string;
12462
12463
  primary: boolean;
12463
- status: "disabled" | "pending" | "ready" | "pending_verification";
12464
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12464
12465
  verification_method?: "txt" | undefined;
12465
12466
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12466
12467
  domain_metadata?: {
@@ -12506,7 +12507,7 @@ export declare function init(config: AuthHeroConfig): {
12506
12507
  type: "auth0_managed_certs" | "self_managed_certs";
12507
12508
  custom_domain_id: string;
12508
12509
  primary: boolean;
12509
- status: "disabled" | "pending" | "ready" | "pending_verification";
12510
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12510
12511
  verification_method?: "txt" | undefined;
12511
12512
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12512
12513
  domain_metadata?: {
@@ -12547,7 +12548,7 @@ export declare function init(config: AuthHeroConfig): {
12547
12548
  type: "auth0_managed_certs" | "self_managed_certs";
12548
12549
  custom_domain_id: string;
12549
12550
  primary: boolean;
12550
- status: "disabled" | "pending" | "ready" | "pending_verification";
12551
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12551
12552
  verification_method?: "txt" | undefined;
12552
12553
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12553
12554
  domain_metadata?: {
@@ -12977,7 +12978,7 @@ export declare function init(config: AuthHeroConfig): {
12977
12978
  } & {
12978
12979
  json: {
12979
12980
  body?: string | undefined;
12980
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
12981
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
12981
12982
  branding?: {
12982
12983
  colors?: {
12983
12984
  primary: string;
@@ -13146,7 +13147,7 @@ export declare function init(config: AuthHeroConfig): {
13146
13147
  json: {
13147
13148
  bindings: {
13148
13149
  ref: {
13149
- type?: "action_id" | "action_name" | undefined;
13150
+ type?: "action_name" | "action_id" | undefined;
13150
13151
  value?: string | undefined;
13151
13152
  id?: string | undefined;
13152
13153
  name?: string | undefined;
@@ -13221,7 +13222,7 @@ export declare function init(config: AuthHeroConfig): {
13221
13222
  output: {
13222
13223
  id: string;
13223
13224
  trigger_id: string;
13224
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13225
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
13225
13226
  results: {
13226
13227
  action_name: string;
13227
13228
  error: {
@@ -13268,7 +13269,7 @@ export declare function init(config: AuthHeroConfig): {
13268
13269
  logs: {
13269
13270
  action_name: string;
13270
13271
  lines: {
13271
- level: "error" | "log" | "debug" | "info" | "warn";
13272
+ level: "error" | "log" | "info" | "warn" | "debug";
13272
13273
  message: string;
13273
13274
  }[];
13274
13275
  }[];
@@ -13935,7 +13936,7 @@ export declare function init(config: AuthHeroConfig): {
13935
13936
  args: import("hono/utils/types").JSONValue[];
13936
13937
  }[];
13937
13938
  logs: {
13938
- level: "error" | "log" | "debug" | "info" | "warn";
13939
+ level: "error" | "log" | "info" | "warn" | "debug";
13939
13940
  message: string;
13940
13941
  }[];
13941
13942
  error?: string | undefined;
@@ -14682,19 +14683,19 @@ export declare function init(config: AuthHeroConfig): {
14682
14683
  send: "code" | "link";
14683
14684
  authParams: {
14684
14685
  username?: string | undefined;
14685
- audience?: string | undefined;
14686
14686
  scope?: string | undefined;
14687
+ audience?: string | undefined;
14688
+ organization?: string | undefined;
14687
14689
  state?: string | undefined;
14688
14690
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14689
14691
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14690
- act_as?: string | undefined;
14692
+ prompt?: string | undefined;
14693
+ ui_locales?: string | undefined;
14691
14694
  redirect_uri?: string | undefined;
14692
- organization?: string | undefined;
14695
+ act_as?: string | undefined;
14693
14696
  nonce?: string | undefined;
14694
- prompt?: string | undefined;
14695
14697
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14696
14698
  code_challenge?: string | undefined;
14697
- ui_locales?: string | undefined;
14698
14699
  max_age?: number | undefined;
14699
14700
  acr_values?: string | undefined;
14700
14701
  claims?: {
@@ -14718,19 +14719,19 @@ export declare function init(config: AuthHeroConfig): {
14718
14719
  send: "code" | "link";
14719
14720
  authParams: {
14720
14721
  username?: string | undefined;
14721
- audience?: string | undefined;
14722
14722
  scope?: string | undefined;
14723
+ audience?: string | undefined;
14724
+ organization?: string | undefined;
14723
14725
  state?: string | undefined;
14724
14726
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14725
14727
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14726
- act_as?: string | undefined;
14728
+ prompt?: string | undefined;
14729
+ ui_locales?: string | undefined;
14727
14730
  redirect_uri?: string | undefined;
14728
- organization?: string | undefined;
14731
+ act_as?: string | undefined;
14729
14732
  nonce?: string | undefined;
14730
- prompt?: string | undefined;
14731
14733
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14732
14734
  code_challenge?: string | undefined;
14733
- ui_locales?: string | undefined;
14734
14735
  max_age?: number | undefined;
14735
14736
  acr_values?: string | undefined;
14736
14737
  claims?: {
@@ -14861,14 +14862,14 @@ export declare function init(config: AuthHeroConfig): {
14861
14862
  input: {
14862
14863
  form: {
14863
14864
  token: string;
14864
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14865
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14865
14866
  client_id?: string | undefined;
14866
14867
  client_secret?: string | undefined;
14867
14868
  };
14868
14869
  } & {
14869
14870
  json: {
14870
14871
  token: string;
14871
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14872
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14872
14873
  client_id?: string | undefined;
14873
14874
  client_secret?: string | undefined;
14874
14875
  };
@@ -14880,14 +14881,14 @@ export declare function init(config: AuthHeroConfig): {
14880
14881
  input: {
14881
14882
  form: {
14882
14883
  token: string;
14883
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14884
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14884
14885
  client_id?: string | undefined;
14885
14886
  client_secret?: string | undefined;
14886
14887
  };
14887
14888
  } & {
14888
14889
  json: {
14889
14890
  token: string;
14890
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14891
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14891
14892
  client_id?: string | undefined;
14892
14893
  client_secret?: string | undefined;
14893
14894
  };
@@ -14902,14 +14903,14 @@ export declare function init(config: AuthHeroConfig): {
14902
14903
  input: {
14903
14904
  form: {
14904
14905
  token: string;
14905
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14906
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14906
14907
  client_id?: string | undefined;
14907
14908
  client_secret?: string | undefined;
14908
14909
  };
14909
14910
  } & {
14910
14911
  json: {
14911
14912
  token: string;
14912
- token_type_hint?: "access_token" | "refresh_token" | undefined;
14913
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14913
14914
  client_id?: string | undefined;
14914
14915
  client_secret?: string | undefined;
14915
14916
  };
@@ -16257,7 +16258,7 @@ export declare function init(config: AuthHeroConfig): {
16257
16258
  } & {
16258
16259
  form: {
16259
16260
  username: string;
16260
- login_selection?: "password" | "code" | undefined;
16261
+ login_selection?: "code" | "password" | undefined;
16261
16262
  };
16262
16263
  };
16263
16264
  output: {};
@@ -16271,7 +16272,7 @@ export declare function init(config: AuthHeroConfig): {
16271
16272
  } & {
16272
16273
  form: {
16273
16274
  username: string;
16274
- login_selection?: "password" | "code" | undefined;
16275
+ login_selection?: "code" | "password" | undefined;
16275
16276
  };
16276
16277
  };
16277
16278
  output: {};
@@ -16636,7 +16637,7 @@ export declare function init(config: AuthHeroConfig): {
16636
16637
  $get: {
16637
16638
  input: {
16638
16639
  param: {
16639
- 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";
16640
+ screen: "login" | "signup" | "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";
16640
16641
  };
16641
16642
  } & {
16642
16643
  query: {
@@ -16652,7 +16653,7 @@ export declare function init(config: AuthHeroConfig): {
16652
16653
  } | {
16653
16654
  input: {
16654
16655
  param: {
16655
- 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";
16656
+ screen: "login" | "signup" | "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";
16656
16657
  };
16657
16658
  } & {
16658
16659
  query: {
@@ -16668,7 +16669,7 @@ export declare function init(config: AuthHeroConfig): {
16668
16669
  } | {
16669
16670
  input: {
16670
16671
  param: {
16671
- 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";
16672
+ screen: "login" | "signup" | "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";
16672
16673
  };
16673
16674
  } & {
16674
16675
  query: {
@@ -16688,7 +16689,7 @@ export declare function init(config: AuthHeroConfig): {
16688
16689
  $post: {
16689
16690
  input: {
16690
16691
  param: {
16691
- 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";
16692
+ screen: "login" | "signup" | "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";
16692
16693
  };
16693
16694
  } & {
16694
16695
  query: {
@@ -16706,7 +16707,7 @@ export declare function init(config: AuthHeroConfig): {
16706
16707
  } | {
16707
16708
  input: {
16708
16709
  param: {
16709
- 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";
16710
+ screen: "login" | "signup" | "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";
16710
16711
  };
16711
16712
  } & {
16712
16713
  query: {