authhero 7.2.2 → 8.0.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 (31) hide show
  1. package/dist/authhero.cjs +105 -105
  2. package/dist/authhero.d.ts +156 -202
  3. package/dist/authhero.mjs +8867 -8551
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/helpers/bundle-write-purge.d.ts +16 -0
  8. package/dist/types/helpers/client-bundle.d.ts +51 -0
  9. package/dist/types/helpers/request-scoped-dedup.d.ts +8 -0
  10. package/dist/types/helpers/with-client-bundle.d.ts +31 -0
  11. package/dist/types/index.d.ts +153 -155
  12. package/dist/types/routes/auth-api/index.d.ts +9 -9
  13. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  14. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  15. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  16. package/dist/types/routes/management-api/clients.d.ts +7 -7
  17. package/dist/types/routes/management-api/connections.d.ts +1 -1
  18. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  19. package/dist/types/routes/management-api/forms.d.ts +119 -119
  20. package/dist/types/routes/management-api/index.d.ts +138 -138
  21. package/dist/types/routes/management-api/logs.d.ts +3 -3
  22. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/users.d.ts +2 -2
  25. package/dist/types/routes/universal-login/common.d.ts +2 -2
  26. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  27. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  28. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  29. package/dist/types/types/AuthHeroConfig.d.ts +0 -12
  30. package/dist/types/utils/jwks.d.ts +2 -2
  31. package/package.json +5 -4
@@ -29,8 +29,6 @@ export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, typ
29
29
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
30
30
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
31
31
  export type { SeedOptions, SeedResult } from "./seed";
32
- export { NoopTenantProvisioner } from "./provisioning";
33
- export type { TenantProvisioner, TenantProvisionerContext, } from "./provisioning";
34
32
  export { createAuthMiddleware, MANAGEMENT_API_AUDIENCE, } from "./middlewares/authentication";
35
33
  export type { ManagementAudienceResolver } from "./middlewares/authentication";
36
34
  export { tenantMiddleware } from "./middlewares/tenant";
@@ -1159,11 +1157,11 @@ export declare function init(config: AuthHeroConfig): {
1159
1157
  invitee: {
1160
1158
  email?: string | undefined;
1161
1159
  };
1162
- roles?: string[] | undefined;
1163
1160
  id?: string | undefined;
1164
1161
  app_metadata?: Record<string, any> | undefined;
1165
1162
  user_metadata?: Record<string, any> | undefined;
1166
1163
  connection_id?: string | undefined;
1164
+ roles?: string[] | undefined;
1167
1165
  ttl_sec?: number | undefined;
1168
1166
  send_invitation_email?: boolean | undefined;
1169
1167
  };
@@ -2590,7 +2588,7 @@ export declare function init(config: AuthHeroConfig): {
2590
2588
  hint?: string | undefined;
2591
2589
  messages?: {
2592
2590
  text: string;
2593
- type: "success" | "error" | "info" | "warning";
2591
+ type: "error" | "success" | "info" | "warning";
2594
2592
  id?: number | undefined;
2595
2593
  }[] | undefined;
2596
2594
  required?: boolean | undefined;
@@ -2608,7 +2606,7 @@ export declare function init(config: AuthHeroConfig): {
2608
2606
  hint?: string | undefined;
2609
2607
  messages?: {
2610
2608
  text: string;
2611
- type: "success" | "error" | "info" | "warning";
2609
+ type: "error" | "success" | "info" | "warning";
2612
2610
  id?: number | undefined;
2613
2611
  }[] | undefined;
2614
2612
  required?: boolean | undefined;
@@ -2632,7 +2630,7 @@ export declare function init(config: AuthHeroConfig): {
2632
2630
  hint?: string | undefined;
2633
2631
  messages?: {
2634
2632
  text: string;
2635
- type: "success" | "error" | "info" | "warning";
2633
+ type: "error" | "success" | "info" | "warning";
2636
2634
  id?: number | undefined;
2637
2635
  }[] | undefined;
2638
2636
  required?: boolean | undefined;
@@ -2656,7 +2654,7 @@ export declare function init(config: AuthHeroConfig): {
2656
2654
  hint?: string | undefined;
2657
2655
  messages?: {
2658
2656
  text: string;
2659
- type: "success" | "error" | "info" | "warning";
2657
+ type: "error" | "success" | "info" | "warning";
2660
2658
  id?: number | undefined;
2661
2659
  }[] | undefined;
2662
2660
  required?: boolean | undefined;
@@ -2685,7 +2683,7 @@ export declare function init(config: AuthHeroConfig): {
2685
2683
  hint?: string | undefined;
2686
2684
  messages?: {
2687
2685
  text: string;
2688
- type: "success" | "error" | "info" | "warning";
2686
+ type: "error" | "success" | "info" | "warning";
2689
2687
  id?: number | undefined;
2690
2688
  }[] | undefined;
2691
2689
  required?: boolean | undefined;
@@ -2700,7 +2698,7 @@ export declare function init(config: AuthHeroConfig): {
2700
2698
  hint?: string | undefined;
2701
2699
  messages?: {
2702
2700
  text: string;
2703
- type: "success" | "error" | "info" | "warning";
2701
+ type: "error" | "success" | "info" | "warning";
2704
2702
  id?: number | undefined;
2705
2703
  }[] | undefined;
2706
2704
  required?: boolean | undefined;
@@ -2721,7 +2719,7 @@ export declare function init(config: AuthHeroConfig): {
2721
2719
  hint?: string | undefined;
2722
2720
  messages?: {
2723
2721
  text: string;
2724
- type: "success" | "error" | "info" | "warning";
2722
+ type: "error" | "success" | "info" | "warning";
2725
2723
  id?: number | undefined;
2726
2724
  }[] | undefined;
2727
2725
  required?: boolean | undefined;
@@ -2746,7 +2744,7 @@ export declare function init(config: AuthHeroConfig): {
2746
2744
  hint?: string | undefined;
2747
2745
  messages?: {
2748
2746
  text: string;
2749
- type: "success" | "error" | "info" | "warning";
2747
+ type: "error" | "success" | "info" | "warning";
2750
2748
  id?: number | undefined;
2751
2749
  }[] | undefined;
2752
2750
  required?: boolean | undefined;
@@ -2765,7 +2763,7 @@ export declare function init(config: AuthHeroConfig): {
2765
2763
  hint?: string | undefined;
2766
2764
  messages?: {
2767
2765
  text: string;
2768
- type: "success" | "error" | "info" | "warning";
2766
+ type: "error" | "success" | "info" | "warning";
2769
2767
  id?: number | undefined;
2770
2768
  }[] | undefined;
2771
2769
  required?: boolean | undefined;
@@ -2785,7 +2783,7 @@ export declare function init(config: AuthHeroConfig): {
2785
2783
  hint?: string | undefined;
2786
2784
  messages?: {
2787
2785
  text: string;
2788
- type: "success" | "error" | "info" | "warning";
2786
+ type: "error" | "success" | "info" | "warning";
2789
2787
  id?: number | undefined;
2790
2788
  }[] | undefined;
2791
2789
  required?: boolean | undefined;
@@ -2804,7 +2802,7 @@ export declare function init(config: AuthHeroConfig): {
2804
2802
  hint?: string | undefined;
2805
2803
  messages?: {
2806
2804
  text: string;
2807
- type: "success" | "error" | "info" | "warning";
2805
+ type: "error" | "success" | "info" | "warning";
2808
2806
  id?: number | undefined;
2809
2807
  }[] | undefined;
2810
2808
  required?: boolean | undefined;
@@ -2826,7 +2824,7 @@ export declare function init(config: AuthHeroConfig): {
2826
2824
  hint?: string | undefined;
2827
2825
  messages?: {
2828
2826
  text: string;
2829
- type: "success" | "error" | "info" | "warning";
2827
+ type: "error" | "success" | "info" | "warning";
2830
2828
  id?: number | undefined;
2831
2829
  }[] | undefined;
2832
2830
  required?: boolean | undefined;
@@ -2848,7 +2846,7 @@ export declare function init(config: AuthHeroConfig): {
2848
2846
  hint?: string | undefined;
2849
2847
  messages?: {
2850
2848
  text: string;
2851
- type: "success" | "error" | "info" | "warning";
2849
+ type: "error" | "success" | "info" | "warning";
2852
2850
  id?: number | undefined;
2853
2851
  }[] | undefined;
2854
2852
  required?: boolean | undefined;
@@ -2867,7 +2865,7 @@ export declare function init(config: AuthHeroConfig): {
2867
2865
  hint?: string | undefined;
2868
2866
  messages?: {
2869
2867
  text: string;
2870
- type: "success" | "error" | "info" | "warning";
2868
+ type: "error" | "success" | "info" | "warning";
2871
2869
  id?: number | undefined;
2872
2870
  }[] | undefined;
2873
2871
  required?: boolean | undefined;
@@ -2892,7 +2890,7 @@ export declare function init(config: AuthHeroConfig): {
2892
2890
  hint?: string | undefined;
2893
2891
  messages?: {
2894
2892
  text: string;
2895
- type: "success" | "error" | "info" | "warning";
2893
+ type: "error" | "success" | "info" | "warning";
2896
2894
  id?: number | undefined;
2897
2895
  }[] | undefined;
2898
2896
  required?: boolean | undefined;
@@ -2913,7 +2911,7 @@ export declare function init(config: AuthHeroConfig): {
2913
2911
  hint?: string | undefined;
2914
2912
  messages?: {
2915
2913
  text: string;
2916
- type: "success" | "error" | "info" | "warning";
2914
+ type: "error" | "success" | "info" | "warning";
2917
2915
  id?: number | undefined;
2918
2916
  }[] | undefined;
2919
2917
  required?: boolean | undefined;
@@ -2934,7 +2932,7 @@ export declare function init(config: AuthHeroConfig): {
2934
2932
  hint?: string | undefined;
2935
2933
  messages?: {
2936
2934
  text: string;
2937
- type: "success" | "error" | "info" | "warning";
2935
+ type: "error" | "success" | "info" | "warning";
2938
2936
  id?: number | undefined;
2939
2937
  }[] | undefined;
2940
2938
  required?: boolean | undefined;
@@ -3167,7 +3165,7 @@ export declare function init(config: AuthHeroConfig): {
3167
3165
  hint?: string | undefined;
3168
3166
  messages?: {
3169
3167
  text: string;
3170
- type: "success" | "error" | "info" | "warning";
3168
+ type: "error" | "success" | "info" | "warning";
3171
3169
  id?: number | undefined;
3172
3170
  }[] | undefined;
3173
3171
  required?: boolean | undefined;
@@ -3185,7 +3183,7 @@ export declare function init(config: AuthHeroConfig): {
3185
3183
  hint?: string | undefined;
3186
3184
  messages?: {
3187
3185
  text: string;
3188
- type: "success" | "error" | "info" | "warning";
3186
+ type: "error" | "success" | "info" | "warning";
3189
3187
  id?: number | undefined;
3190
3188
  }[] | undefined;
3191
3189
  required?: boolean | undefined;
@@ -3209,7 +3207,7 @@ export declare function init(config: AuthHeroConfig): {
3209
3207
  hint?: string | undefined;
3210
3208
  messages?: {
3211
3209
  text: string;
3212
- type: "success" | "error" | "info" | "warning";
3210
+ type: "error" | "success" | "info" | "warning";
3213
3211
  id?: number | undefined;
3214
3212
  }[] | undefined;
3215
3213
  required?: boolean | undefined;
@@ -3233,7 +3231,7 @@ export declare function init(config: AuthHeroConfig): {
3233
3231
  hint?: string | undefined;
3234
3232
  messages?: {
3235
3233
  text: string;
3236
- type: "success" | "error" | "info" | "warning";
3234
+ type: "error" | "success" | "info" | "warning";
3237
3235
  id?: number | undefined;
3238
3236
  }[] | undefined;
3239
3237
  required?: boolean | undefined;
@@ -3262,7 +3260,7 @@ export declare function init(config: AuthHeroConfig): {
3262
3260
  hint?: string | undefined;
3263
3261
  messages?: {
3264
3262
  text: string;
3265
- type: "success" | "error" | "info" | "warning";
3263
+ type: "error" | "success" | "info" | "warning";
3266
3264
  id?: number | undefined;
3267
3265
  }[] | undefined;
3268
3266
  required?: boolean | undefined;
@@ -3277,7 +3275,7 @@ export declare function init(config: AuthHeroConfig): {
3277
3275
  hint?: string | undefined;
3278
3276
  messages?: {
3279
3277
  text: string;
3280
- type: "success" | "error" | "info" | "warning";
3278
+ type: "error" | "success" | "info" | "warning";
3281
3279
  id?: number | undefined;
3282
3280
  }[] | undefined;
3283
3281
  required?: boolean | undefined;
@@ -3298,7 +3296,7 @@ export declare function init(config: AuthHeroConfig): {
3298
3296
  hint?: string | undefined;
3299
3297
  messages?: {
3300
3298
  text: string;
3301
- type: "success" | "error" | "info" | "warning";
3299
+ type: "error" | "success" | "info" | "warning";
3302
3300
  id?: number | undefined;
3303
3301
  }[] | undefined;
3304
3302
  required?: boolean | undefined;
@@ -3323,7 +3321,7 @@ export declare function init(config: AuthHeroConfig): {
3323
3321
  hint?: string | undefined;
3324
3322
  messages?: {
3325
3323
  text: string;
3326
- type: "success" | "error" | "info" | "warning";
3324
+ type: "error" | "success" | "info" | "warning";
3327
3325
  id?: number | undefined;
3328
3326
  }[] | undefined;
3329
3327
  required?: boolean | undefined;
@@ -3342,7 +3340,7 @@ export declare function init(config: AuthHeroConfig): {
3342
3340
  hint?: string | undefined;
3343
3341
  messages?: {
3344
3342
  text: string;
3345
- type: "success" | "error" | "info" | "warning";
3343
+ type: "error" | "success" | "info" | "warning";
3346
3344
  id?: number | undefined;
3347
3345
  }[] | undefined;
3348
3346
  required?: boolean | undefined;
@@ -3362,7 +3360,7 @@ export declare function init(config: AuthHeroConfig): {
3362
3360
  hint?: string | undefined;
3363
3361
  messages?: {
3364
3362
  text: string;
3365
- type: "success" | "error" | "info" | "warning";
3363
+ type: "error" | "success" | "info" | "warning";
3366
3364
  id?: number | undefined;
3367
3365
  }[] | undefined;
3368
3366
  required?: boolean | undefined;
@@ -3381,7 +3379,7 @@ export declare function init(config: AuthHeroConfig): {
3381
3379
  hint?: string | undefined;
3382
3380
  messages?: {
3383
3381
  text: string;
3384
- type: "success" | "error" | "info" | "warning";
3382
+ type: "error" | "success" | "info" | "warning";
3385
3383
  id?: number | undefined;
3386
3384
  }[] | undefined;
3387
3385
  required?: boolean | undefined;
@@ -3403,7 +3401,7 @@ export declare function init(config: AuthHeroConfig): {
3403
3401
  hint?: string | undefined;
3404
3402
  messages?: {
3405
3403
  text: string;
3406
- type: "success" | "error" | "info" | "warning";
3404
+ type: "error" | "success" | "info" | "warning";
3407
3405
  id?: number | undefined;
3408
3406
  }[] | undefined;
3409
3407
  required?: boolean | undefined;
@@ -3425,7 +3423,7 @@ export declare function init(config: AuthHeroConfig): {
3425
3423
  hint?: string | undefined;
3426
3424
  messages?: {
3427
3425
  text: string;
3428
- type: "success" | "error" | "info" | "warning";
3426
+ type: "error" | "success" | "info" | "warning";
3429
3427
  id?: number | undefined;
3430
3428
  }[] | undefined;
3431
3429
  required?: boolean | undefined;
@@ -3444,7 +3442,7 @@ export declare function init(config: AuthHeroConfig): {
3444
3442
  hint?: string | undefined;
3445
3443
  messages?: {
3446
3444
  text: string;
3447
- type: "success" | "error" | "info" | "warning";
3445
+ type: "error" | "success" | "info" | "warning";
3448
3446
  id?: number | undefined;
3449
3447
  }[] | undefined;
3450
3448
  required?: boolean | undefined;
@@ -3469,7 +3467,7 @@ export declare function init(config: AuthHeroConfig): {
3469
3467
  hint?: string | undefined;
3470
3468
  messages?: {
3471
3469
  text: string;
3472
- type: "success" | "error" | "info" | "warning";
3470
+ type: "error" | "success" | "info" | "warning";
3473
3471
  id?: number | undefined;
3474
3472
  }[] | undefined;
3475
3473
  required?: boolean | undefined;
@@ -3490,7 +3488,7 @@ export declare function init(config: AuthHeroConfig): {
3490
3488
  hint?: string | undefined;
3491
3489
  messages?: {
3492
3490
  text: string;
3493
- type: "success" | "error" | "info" | "warning";
3491
+ type: "error" | "success" | "info" | "warning";
3494
3492
  id?: number | undefined;
3495
3493
  }[] | undefined;
3496
3494
  required?: boolean | undefined;
@@ -3511,7 +3509,7 @@ export declare function init(config: AuthHeroConfig): {
3511
3509
  hint?: string | undefined;
3512
3510
  messages?: {
3513
3511
  text: string;
3514
- type: "success" | "error" | "info" | "warning";
3512
+ type: "error" | "success" | "info" | "warning";
3515
3513
  id?: number | undefined;
3516
3514
  }[] | undefined;
3517
3515
  required?: boolean | undefined;
@@ -3759,7 +3757,7 @@ export declare function init(config: AuthHeroConfig): {
3759
3757
  hint?: string | undefined;
3760
3758
  messages?: {
3761
3759
  text: string;
3762
- type: "success" | "error" | "info" | "warning";
3760
+ type: "error" | "success" | "info" | "warning";
3763
3761
  id?: number | undefined;
3764
3762
  }[] | undefined;
3765
3763
  required?: boolean | undefined;
@@ -3777,7 +3775,7 @@ export declare function init(config: AuthHeroConfig): {
3777
3775
  hint?: string | undefined;
3778
3776
  messages?: {
3779
3777
  text: string;
3780
- type: "success" | "error" | "info" | "warning";
3778
+ type: "error" | "success" | "info" | "warning";
3781
3779
  id?: number | undefined;
3782
3780
  }[] | undefined;
3783
3781
  required?: boolean | undefined;
@@ -3801,7 +3799,7 @@ export declare function init(config: AuthHeroConfig): {
3801
3799
  hint?: string | undefined;
3802
3800
  messages?: {
3803
3801
  text: string;
3804
- type: "success" | "error" | "info" | "warning";
3802
+ type: "error" | "success" | "info" | "warning";
3805
3803
  id?: number | undefined;
3806
3804
  }[] | undefined;
3807
3805
  required?: boolean | undefined;
@@ -3825,7 +3823,7 @@ export declare function init(config: AuthHeroConfig): {
3825
3823
  hint?: string | undefined;
3826
3824
  messages?: {
3827
3825
  text: string;
3828
- type: "success" | "error" | "info" | "warning";
3826
+ type: "error" | "success" | "info" | "warning";
3829
3827
  id?: number | undefined;
3830
3828
  }[] | undefined;
3831
3829
  required?: boolean | undefined;
@@ -3854,7 +3852,7 @@ export declare function init(config: AuthHeroConfig): {
3854
3852
  hint?: string | undefined;
3855
3853
  messages?: {
3856
3854
  text: string;
3857
- type: "success" | "error" | "info" | "warning";
3855
+ type: "error" | "success" | "info" | "warning";
3858
3856
  id?: number | undefined;
3859
3857
  }[] | undefined;
3860
3858
  required?: boolean | undefined;
@@ -3869,7 +3867,7 @@ export declare function init(config: AuthHeroConfig): {
3869
3867
  hint?: string | undefined;
3870
3868
  messages?: {
3871
3869
  text: string;
3872
- type: "success" | "error" | "info" | "warning";
3870
+ type: "error" | "success" | "info" | "warning";
3873
3871
  id?: number | undefined;
3874
3872
  }[] | undefined;
3875
3873
  required?: boolean | undefined;
@@ -3890,7 +3888,7 @@ export declare function init(config: AuthHeroConfig): {
3890
3888
  hint?: string | undefined;
3891
3889
  messages?: {
3892
3890
  text: string;
3893
- type: "success" | "error" | "info" | "warning";
3891
+ type: "error" | "success" | "info" | "warning";
3894
3892
  id?: number | undefined;
3895
3893
  }[] | undefined;
3896
3894
  required?: boolean | undefined;
@@ -3915,7 +3913,7 @@ export declare function init(config: AuthHeroConfig): {
3915
3913
  hint?: string | undefined;
3916
3914
  messages?: {
3917
3915
  text: string;
3918
- type: "success" | "error" | "info" | "warning";
3916
+ type: "error" | "success" | "info" | "warning";
3919
3917
  id?: number | undefined;
3920
3918
  }[] | undefined;
3921
3919
  required?: boolean | undefined;
@@ -3934,7 +3932,7 @@ export declare function init(config: AuthHeroConfig): {
3934
3932
  hint?: string | undefined;
3935
3933
  messages?: {
3936
3934
  text: string;
3937
- type: "success" | "error" | "info" | "warning";
3935
+ type: "error" | "success" | "info" | "warning";
3938
3936
  id?: number | undefined;
3939
3937
  }[] | undefined;
3940
3938
  required?: boolean | undefined;
@@ -3954,7 +3952,7 @@ export declare function init(config: AuthHeroConfig): {
3954
3952
  hint?: string | undefined;
3955
3953
  messages?: {
3956
3954
  text: string;
3957
- type: "success" | "error" | "info" | "warning";
3955
+ type: "error" | "success" | "info" | "warning";
3958
3956
  id?: number | undefined;
3959
3957
  }[] | undefined;
3960
3958
  required?: boolean | undefined;
@@ -3973,7 +3971,7 @@ export declare function init(config: AuthHeroConfig): {
3973
3971
  hint?: string | undefined;
3974
3972
  messages?: {
3975
3973
  text: string;
3976
- type: "success" | "error" | "info" | "warning";
3974
+ type: "error" | "success" | "info" | "warning";
3977
3975
  id?: number | undefined;
3978
3976
  }[] | undefined;
3979
3977
  required?: boolean | undefined;
@@ -3995,7 +3993,7 @@ export declare function init(config: AuthHeroConfig): {
3995
3993
  hint?: string | undefined;
3996
3994
  messages?: {
3997
3995
  text: string;
3998
- type: "success" | "error" | "info" | "warning";
3996
+ type: "error" | "success" | "info" | "warning";
3999
3997
  id?: number | undefined;
4000
3998
  }[] | undefined;
4001
3999
  required?: boolean | undefined;
@@ -4017,7 +4015,7 @@ export declare function init(config: AuthHeroConfig): {
4017
4015
  hint?: string | undefined;
4018
4016
  messages?: {
4019
4017
  text: string;
4020
- type: "success" | "error" | "info" | "warning";
4018
+ type: "error" | "success" | "info" | "warning";
4021
4019
  id?: number | undefined;
4022
4020
  }[] | undefined;
4023
4021
  required?: boolean | undefined;
@@ -4036,7 +4034,7 @@ export declare function init(config: AuthHeroConfig): {
4036
4034
  hint?: string | undefined;
4037
4035
  messages?: {
4038
4036
  text: string;
4039
- type: "success" | "error" | "info" | "warning";
4037
+ type: "error" | "success" | "info" | "warning";
4040
4038
  id?: number | undefined;
4041
4039
  }[] | undefined;
4042
4040
  required?: boolean | undefined;
@@ -4061,7 +4059,7 @@ export declare function init(config: AuthHeroConfig): {
4061
4059
  hint?: string | undefined;
4062
4060
  messages?: {
4063
4061
  text: string;
4064
- type: "success" | "error" | "info" | "warning";
4062
+ type: "error" | "success" | "info" | "warning";
4065
4063
  id?: number | undefined;
4066
4064
  }[] | undefined;
4067
4065
  required?: boolean | undefined;
@@ -4082,7 +4080,7 @@ export declare function init(config: AuthHeroConfig): {
4082
4080
  hint?: string | undefined;
4083
4081
  messages?: {
4084
4082
  text: string;
4085
- type: "success" | "error" | "info" | "warning";
4083
+ type: "error" | "success" | "info" | "warning";
4086
4084
  id?: number | undefined;
4087
4085
  }[] | undefined;
4088
4086
  required?: boolean | undefined;
@@ -4103,7 +4101,7 @@ export declare function init(config: AuthHeroConfig): {
4103
4101
  hint?: string | undefined;
4104
4102
  messages?: {
4105
4103
  text: string;
4106
- type: "success" | "error" | "info" | "warning";
4104
+ type: "error" | "success" | "info" | "warning";
4107
4105
  id?: number | undefined;
4108
4106
  }[] | undefined;
4109
4107
  required?: boolean | undefined;
@@ -4357,7 +4355,7 @@ export declare function init(config: AuthHeroConfig): {
4357
4355
  hint?: string | undefined;
4358
4356
  messages?: {
4359
4357
  text: string;
4360
- type: "success" | "error" | "info" | "warning";
4358
+ type: "error" | "success" | "info" | "warning";
4361
4359
  id?: number | undefined;
4362
4360
  }[] | undefined;
4363
4361
  required?: boolean | undefined;
@@ -4375,7 +4373,7 @@ export declare function init(config: AuthHeroConfig): {
4375
4373
  hint?: string | undefined;
4376
4374
  messages?: {
4377
4375
  text: string;
4378
- type: "success" | "error" | "info" | "warning";
4376
+ type: "error" | "success" | "info" | "warning";
4379
4377
  id?: number | undefined;
4380
4378
  }[] | undefined;
4381
4379
  required?: boolean | undefined;
@@ -4399,7 +4397,7 @@ export declare function init(config: AuthHeroConfig): {
4399
4397
  hint?: string | undefined;
4400
4398
  messages?: {
4401
4399
  text: string;
4402
- type: "success" | "error" | "info" | "warning";
4400
+ type: "error" | "success" | "info" | "warning";
4403
4401
  id?: number | undefined;
4404
4402
  }[] | undefined;
4405
4403
  required?: boolean | undefined;
@@ -4423,7 +4421,7 @@ export declare function init(config: AuthHeroConfig): {
4423
4421
  hint?: string | undefined;
4424
4422
  messages?: {
4425
4423
  text: string;
4426
- type: "success" | "error" | "info" | "warning";
4424
+ type: "error" | "success" | "info" | "warning";
4427
4425
  id?: number | undefined;
4428
4426
  }[] | undefined;
4429
4427
  required?: boolean | undefined;
@@ -4448,7 +4446,7 @@ export declare function init(config: AuthHeroConfig): {
4448
4446
  hint?: string | undefined;
4449
4447
  messages?: {
4450
4448
  text: string;
4451
- type: "success" | "error" | "info" | "warning";
4449
+ type: "error" | "success" | "info" | "warning";
4452
4450
  id?: number | undefined;
4453
4451
  }[] | undefined;
4454
4452
  required?: boolean | undefined;
@@ -4463,7 +4461,7 @@ export declare function init(config: AuthHeroConfig): {
4463
4461
  hint?: string | undefined;
4464
4462
  messages?: {
4465
4463
  text: string;
4466
- type: "success" | "error" | "info" | "warning";
4464
+ type: "error" | "success" | "info" | "warning";
4467
4465
  id?: number | undefined;
4468
4466
  }[] | undefined;
4469
4467
  required?: boolean | undefined;
@@ -4484,7 +4482,7 @@ export declare function init(config: AuthHeroConfig): {
4484
4482
  hint?: string | undefined;
4485
4483
  messages?: {
4486
4484
  text: string;
4487
- type: "success" | "error" | "info" | "warning";
4485
+ type: "error" | "success" | "info" | "warning";
4488
4486
  id?: number | undefined;
4489
4487
  }[] | undefined;
4490
4488
  required?: boolean | undefined;
@@ -4509,7 +4507,7 @@ export declare function init(config: AuthHeroConfig): {
4509
4507
  hint?: string | undefined;
4510
4508
  messages?: {
4511
4509
  text: string;
4512
- type: "success" | "error" | "info" | "warning";
4510
+ type: "error" | "success" | "info" | "warning";
4513
4511
  id?: number | undefined;
4514
4512
  }[] | undefined;
4515
4513
  required?: boolean | undefined;
@@ -4528,7 +4526,7 @@ export declare function init(config: AuthHeroConfig): {
4528
4526
  hint?: string | undefined;
4529
4527
  messages?: {
4530
4528
  text: string;
4531
- type: "success" | "error" | "info" | "warning";
4529
+ type: "error" | "success" | "info" | "warning";
4532
4530
  id?: number | undefined;
4533
4531
  }[] | undefined;
4534
4532
  required?: boolean | undefined;
@@ -4548,7 +4546,7 @@ export declare function init(config: AuthHeroConfig): {
4548
4546
  hint?: string | undefined;
4549
4547
  messages?: {
4550
4548
  text: string;
4551
- type: "success" | "error" | "info" | "warning";
4549
+ type: "error" | "success" | "info" | "warning";
4552
4550
  id?: number | undefined;
4553
4551
  }[] | undefined;
4554
4552
  required?: boolean | undefined;
@@ -4567,7 +4565,7 @@ export declare function init(config: AuthHeroConfig): {
4567
4565
  hint?: string | undefined;
4568
4566
  messages?: {
4569
4567
  text: string;
4570
- type: "success" | "error" | "info" | "warning";
4568
+ type: "error" | "success" | "info" | "warning";
4571
4569
  id?: number | undefined;
4572
4570
  }[] | undefined;
4573
4571
  required?: boolean | undefined;
@@ -4589,7 +4587,7 @@ export declare function init(config: AuthHeroConfig): {
4589
4587
  hint?: string | undefined;
4590
4588
  messages?: {
4591
4589
  text: string;
4592
- type: "success" | "error" | "info" | "warning";
4590
+ type: "error" | "success" | "info" | "warning";
4593
4591
  id?: number | undefined;
4594
4592
  }[] | undefined;
4595
4593
  required?: boolean | undefined;
@@ -4611,7 +4609,7 @@ export declare function init(config: AuthHeroConfig): {
4611
4609
  hint?: string | undefined;
4612
4610
  messages?: {
4613
4611
  text: string;
4614
- type: "success" | "error" | "info" | "warning";
4612
+ type: "error" | "success" | "info" | "warning";
4615
4613
  id?: number | undefined;
4616
4614
  }[] | undefined;
4617
4615
  required?: boolean | undefined;
@@ -4630,7 +4628,7 @@ export declare function init(config: AuthHeroConfig): {
4630
4628
  hint?: string | undefined;
4631
4629
  messages?: {
4632
4630
  text: string;
4633
- type: "success" | "error" | "info" | "warning";
4631
+ type: "error" | "success" | "info" | "warning";
4634
4632
  id?: number | undefined;
4635
4633
  }[] | undefined;
4636
4634
  required?: boolean | undefined;
@@ -4655,7 +4653,7 @@ export declare function init(config: AuthHeroConfig): {
4655
4653
  hint?: string | undefined;
4656
4654
  messages?: {
4657
4655
  text: string;
4658
- type: "success" | "error" | "info" | "warning";
4656
+ type: "error" | "success" | "info" | "warning";
4659
4657
  id?: number | undefined;
4660
4658
  }[] | undefined;
4661
4659
  required?: boolean | undefined;
@@ -4676,7 +4674,7 @@ export declare function init(config: AuthHeroConfig): {
4676
4674
  hint?: string | undefined;
4677
4675
  messages?: {
4678
4676
  text: string;
4679
- type: "success" | "error" | "info" | "warning";
4677
+ type: "error" | "success" | "info" | "warning";
4680
4678
  id?: number | undefined;
4681
4679
  }[] | undefined;
4682
4680
  required?: boolean | undefined;
@@ -4697,7 +4695,7 @@ export declare function init(config: AuthHeroConfig): {
4697
4695
  hint?: string | undefined;
4698
4696
  messages?: {
4699
4697
  text: string;
4700
- type: "success" | "error" | "info" | "warning";
4698
+ type: "error" | "success" | "info" | "warning";
4701
4699
  id?: number | undefined;
4702
4700
  }[] | undefined;
4703
4701
  required?: boolean | undefined;
@@ -4928,7 +4926,7 @@ export declare function init(config: AuthHeroConfig): {
4928
4926
  hint?: string | undefined;
4929
4927
  messages?: {
4930
4928
  text: string;
4931
- type: "success" | "error" | "info" | "warning";
4929
+ type: "error" | "success" | "info" | "warning";
4932
4930
  id?: number | undefined;
4933
4931
  }[] | undefined;
4934
4932
  required?: boolean | undefined;
@@ -4946,7 +4944,7 @@ export declare function init(config: AuthHeroConfig): {
4946
4944
  hint?: string | undefined;
4947
4945
  messages?: {
4948
4946
  text: string;
4949
- type: "success" | "error" | "info" | "warning";
4947
+ type: "error" | "success" | "info" | "warning";
4950
4948
  id?: number | undefined;
4951
4949
  }[] | undefined;
4952
4950
  required?: boolean | undefined;
@@ -4970,7 +4968,7 @@ export declare function init(config: AuthHeroConfig): {
4970
4968
  hint?: string | undefined;
4971
4969
  messages?: {
4972
4970
  text: string;
4973
- type: "success" | "error" | "info" | "warning";
4971
+ type: "error" | "success" | "info" | "warning";
4974
4972
  id?: number | undefined;
4975
4973
  }[] | undefined;
4976
4974
  required?: boolean | undefined;
@@ -4994,7 +4992,7 @@ export declare function init(config: AuthHeroConfig): {
4994
4992
  hint?: string | undefined;
4995
4993
  messages?: {
4996
4994
  text: string;
4997
- type: "success" | "error" | "info" | "warning";
4995
+ type: "error" | "success" | "info" | "warning";
4998
4996
  id?: number | undefined;
4999
4997
  }[] | undefined;
5000
4998
  required?: boolean | undefined;
@@ -5023,7 +5021,7 @@ export declare function init(config: AuthHeroConfig): {
5023
5021
  hint?: string | undefined;
5024
5022
  messages?: {
5025
5023
  text: string;
5026
- type: "success" | "error" | "info" | "warning";
5024
+ type: "error" | "success" | "info" | "warning";
5027
5025
  id?: number | undefined;
5028
5026
  }[] | undefined;
5029
5027
  required?: boolean | undefined;
@@ -5038,7 +5036,7 @@ export declare function init(config: AuthHeroConfig): {
5038
5036
  hint?: string | undefined;
5039
5037
  messages?: {
5040
5038
  text: string;
5041
- type: "success" | "error" | "info" | "warning";
5039
+ type: "error" | "success" | "info" | "warning";
5042
5040
  id?: number | undefined;
5043
5041
  }[] | undefined;
5044
5042
  required?: boolean | undefined;
@@ -5059,7 +5057,7 @@ export declare function init(config: AuthHeroConfig): {
5059
5057
  hint?: string | undefined;
5060
5058
  messages?: {
5061
5059
  text: string;
5062
- type: "success" | "error" | "info" | "warning";
5060
+ type: "error" | "success" | "info" | "warning";
5063
5061
  id?: number | undefined;
5064
5062
  }[] | undefined;
5065
5063
  required?: boolean | undefined;
@@ -5084,7 +5082,7 @@ export declare function init(config: AuthHeroConfig): {
5084
5082
  hint?: string | undefined;
5085
5083
  messages?: {
5086
5084
  text: string;
5087
- type: "success" | "error" | "info" | "warning";
5085
+ type: "error" | "success" | "info" | "warning";
5088
5086
  id?: number | undefined;
5089
5087
  }[] | undefined;
5090
5088
  required?: boolean | undefined;
@@ -5103,7 +5101,7 @@ export declare function init(config: AuthHeroConfig): {
5103
5101
  hint?: string | undefined;
5104
5102
  messages?: {
5105
5103
  text: string;
5106
- type: "success" | "error" | "info" | "warning";
5104
+ type: "error" | "success" | "info" | "warning";
5107
5105
  id?: number | undefined;
5108
5106
  }[] | undefined;
5109
5107
  required?: boolean | undefined;
@@ -5123,7 +5121,7 @@ export declare function init(config: AuthHeroConfig): {
5123
5121
  hint?: string | undefined;
5124
5122
  messages?: {
5125
5123
  text: string;
5126
- type: "success" | "error" | "info" | "warning";
5124
+ type: "error" | "success" | "info" | "warning";
5127
5125
  id?: number | undefined;
5128
5126
  }[] | undefined;
5129
5127
  required?: boolean | undefined;
@@ -5142,7 +5140,7 @@ export declare function init(config: AuthHeroConfig): {
5142
5140
  hint?: string | undefined;
5143
5141
  messages?: {
5144
5142
  text: string;
5145
- type: "success" | "error" | "info" | "warning";
5143
+ type: "error" | "success" | "info" | "warning";
5146
5144
  id?: number | undefined;
5147
5145
  }[] | undefined;
5148
5146
  required?: boolean | undefined;
@@ -5164,7 +5162,7 @@ export declare function init(config: AuthHeroConfig): {
5164
5162
  hint?: string | undefined;
5165
5163
  messages?: {
5166
5164
  text: string;
5167
- type: "success" | "error" | "info" | "warning";
5165
+ type: "error" | "success" | "info" | "warning";
5168
5166
  id?: number | undefined;
5169
5167
  }[] | undefined;
5170
5168
  required?: boolean | undefined;
@@ -5186,7 +5184,7 @@ export declare function init(config: AuthHeroConfig): {
5186
5184
  hint?: string | undefined;
5187
5185
  messages?: {
5188
5186
  text: string;
5189
- type: "success" | "error" | "info" | "warning";
5187
+ type: "error" | "success" | "info" | "warning";
5190
5188
  id?: number | undefined;
5191
5189
  }[] | undefined;
5192
5190
  required?: boolean | undefined;
@@ -5205,7 +5203,7 @@ export declare function init(config: AuthHeroConfig): {
5205
5203
  hint?: string | undefined;
5206
5204
  messages?: {
5207
5205
  text: string;
5208
- type: "success" | "error" | "info" | "warning";
5206
+ type: "error" | "success" | "info" | "warning";
5209
5207
  id?: number | undefined;
5210
5208
  }[] | undefined;
5211
5209
  required?: boolean | undefined;
@@ -5230,7 +5228,7 @@ export declare function init(config: AuthHeroConfig): {
5230
5228
  hint?: string | undefined;
5231
5229
  messages?: {
5232
5230
  text: string;
5233
- type: "success" | "error" | "info" | "warning";
5231
+ type: "error" | "success" | "info" | "warning";
5234
5232
  id?: number | undefined;
5235
5233
  }[] | undefined;
5236
5234
  required?: boolean | undefined;
@@ -5251,7 +5249,7 @@ export declare function init(config: AuthHeroConfig): {
5251
5249
  hint?: string | undefined;
5252
5250
  messages?: {
5253
5251
  text: string;
5254
- type: "success" | "error" | "info" | "warning";
5252
+ type: "error" | "success" | "info" | "warning";
5255
5253
  id?: number | undefined;
5256
5254
  }[] | undefined;
5257
5255
  required?: boolean | undefined;
@@ -5272,7 +5270,7 @@ export declare function init(config: AuthHeroConfig): {
5272
5270
  hint?: string | undefined;
5273
5271
  messages?: {
5274
5272
  text: string;
5275
- type: "success" | "error" | "info" | "warning";
5273
+ type: "error" | "success" | "info" | "warning";
5276
5274
  id?: number | undefined;
5277
5275
  }[] | undefined;
5278
5276
  required?: boolean | undefined;
@@ -5505,7 +5503,7 @@ export declare function init(config: AuthHeroConfig): {
5505
5503
  hint?: string | undefined;
5506
5504
  messages?: {
5507
5505
  text: string;
5508
- type: "success" | "error" | "info" | "warning";
5506
+ type: "error" | "success" | "info" | "warning";
5509
5507
  id?: number | undefined;
5510
5508
  }[] | undefined;
5511
5509
  required?: boolean | undefined;
@@ -5523,7 +5521,7 @@ export declare function init(config: AuthHeroConfig): {
5523
5521
  hint?: string | undefined;
5524
5522
  messages?: {
5525
5523
  text: string;
5526
- type: "success" | "error" | "info" | "warning";
5524
+ type: "error" | "success" | "info" | "warning";
5527
5525
  id?: number | undefined;
5528
5526
  }[] | undefined;
5529
5527
  required?: boolean | undefined;
@@ -5547,7 +5545,7 @@ export declare function init(config: AuthHeroConfig): {
5547
5545
  hint?: string | undefined;
5548
5546
  messages?: {
5549
5547
  text: string;
5550
- type: "success" | "error" | "info" | "warning";
5548
+ type: "error" | "success" | "info" | "warning";
5551
5549
  id?: number | undefined;
5552
5550
  }[] | undefined;
5553
5551
  required?: boolean | undefined;
@@ -5571,7 +5569,7 @@ export declare function init(config: AuthHeroConfig): {
5571
5569
  hint?: string | undefined;
5572
5570
  messages?: {
5573
5571
  text: string;
5574
- type: "success" | "error" | "info" | "warning";
5572
+ type: "error" | "success" | "info" | "warning";
5575
5573
  id?: number | undefined;
5576
5574
  }[] | undefined;
5577
5575
  required?: boolean | undefined;
@@ -5596,7 +5594,7 @@ export declare function init(config: AuthHeroConfig): {
5596
5594
  hint?: string | undefined;
5597
5595
  messages?: {
5598
5596
  text: string;
5599
- type: "success" | "error" | "info" | "warning";
5597
+ type: "error" | "success" | "info" | "warning";
5600
5598
  id?: number | undefined;
5601
5599
  }[] | undefined;
5602
5600
  required?: boolean | undefined;
@@ -5611,7 +5609,7 @@ export declare function init(config: AuthHeroConfig): {
5611
5609
  hint?: string | undefined;
5612
5610
  messages?: {
5613
5611
  text: string;
5614
- type: "success" | "error" | "info" | "warning";
5612
+ type: "error" | "success" | "info" | "warning";
5615
5613
  id?: number | undefined;
5616
5614
  }[] | undefined;
5617
5615
  required?: boolean | undefined;
@@ -5632,7 +5630,7 @@ export declare function init(config: AuthHeroConfig): {
5632
5630
  hint?: string | undefined;
5633
5631
  messages?: {
5634
5632
  text: string;
5635
- type: "success" | "error" | "info" | "warning";
5633
+ type: "error" | "success" | "info" | "warning";
5636
5634
  id?: number | undefined;
5637
5635
  }[] | undefined;
5638
5636
  required?: boolean | undefined;
@@ -5657,7 +5655,7 @@ export declare function init(config: AuthHeroConfig): {
5657
5655
  hint?: string | undefined;
5658
5656
  messages?: {
5659
5657
  text: string;
5660
- type: "success" | "error" | "info" | "warning";
5658
+ type: "error" | "success" | "info" | "warning";
5661
5659
  id?: number | undefined;
5662
5660
  }[] | undefined;
5663
5661
  required?: boolean | undefined;
@@ -5676,7 +5674,7 @@ export declare function init(config: AuthHeroConfig): {
5676
5674
  hint?: string | undefined;
5677
5675
  messages?: {
5678
5676
  text: string;
5679
- type: "success" | "error" | "info" | "warning";
5677
+ type: "error" | "success" | "info" | "warning";
5680
5678
  id?: number | undefined;
5681
5679
  }[] | undefined;
5682
5680
  required?: boolean | undefined;
@@ -5696,7 +5694,7 @@ export declare function init(config: AuthHeroConfig): {
5696
5694
  hint?: string | undefined;
5697
5695
  messages?: {
5698
5696
  text: string;
5699
- type: "success" | "error" | "info" | "warning";
5697
+ type: "error" | "success" | "info" | "warning";
5700
5698
  id?: number | undefined;
5701
5699
  }[] | undefined;
5702
5700
  required?: boolean | undefined;
@@ -5715,7 +5713,7 @@ export declare function init(config: AuthHeroConfig): {
5715
5713
  hint?: string | undefined;
5716
5714
  messages?: {
5717
5715
  text: string;
5718
- type: "success" | "error" | "info" | "warning";
5716
+ type: "error" | "success" | "info" | "warning";
5719
5717
  id?: number | undefined;
5720
5718
  }[] | undefined;
5721
5719
  required?: boolean | undefined;
@@ -5737,7 +5735,7 @@ export declare function init(config: AuthHeroConfig): {
5737
5735
  hint?: string | undefined;
5738
5736
  messages?: {
5739
5737
  text: string;
5740
- type: "success" | "error" | "info" | "warning";
5738
+ type: "error" | "success" | "info" | "warning";
5741
5739
  id?: number | undefined;
5742
5740
  }[] | undefined;
5743
5741
  required?: boolean | undefined;
@@ -5759,7 +5757,7 @@ export declare function init(config: AuthHeroConfig): {
5759
5757
  hint?: string | undefined;
5760
5758
  messages?: {
5761
5759
  text: string;
5762
- type: "success" | "error" | "info" | "warning";
5760
+ type: "error" | "success" | "info" | "warning";
5763
5761
  id?: number | undefined;
5764
5762
  }[] | undefined;
5765
5763
  required?: boolean | undefined;
@@ -5778,7 +5776,7 @@ export declare function init(config: AuthHeroConfig): {
5778
5776
  hint?: string | undefined;
5779
5777
  messages?: {
5780
5778
  text: string;
5781
- type: "success" | "error" | "info" | "warning";
5779
+ type: "error" | "success" | "info" | "warning";
5782
5780
  id?: number | undefined;
5783
5781
  }[] | undefined;
5784
5782
  required?: boolean | undefined;
@@ -5803,7 +5801,7 @@ export declare function init(config: AuthHeroConfig): {
5803
5801
  hint?: string | undefined;
5804
5802
  messages?: {
5805
5803
  text: string;
5806
- type: "success" | "error" | "info" | "warning";
5804
+ type: "error" | "success" | "info" | "warning";
5807
5805
  id?: number | undefined;
5808
5806
  }[] | undefined;
5809
5807
  required?: boolean | undefined;
@@ -5824,7 +5822,7 @@ export declare function init(config: AuthHeroConfig): {
5824
5822
  hint?: string | undefined;
5825
5823
  messages?: {
5826
5824
  text: string;
5827
- type: "success" | "error" | "info" | "warning";
5825
+ type: "error" | "success" | "info" | "warning";
5828
5826
  id?: number | undefined;
5829
5827
  }[] | undefined;
5830
5828
  required?: boolean | undefined;
@@ -5845,7 +5843,7 @@ export declare function init(config: AuthHeroConfig): {
5845
5843
  hint?: string | undefined;
5846
5844
  messages?: {
5847
5845
  text: string;
5848
- type: "success" | "error" | "info" | "warning";
5846
+ type: "error" | "success" | "info" | "warning";
5849
5847
  id?: number | undefined;
5850
5848
  }[] | undefined;
5851
5849
  required?: boolean | undefined;
@@ -6076,7 +6074,7 @@ export declare function init(config: AuthHeroConfig): {
6076
6074
  hint?: string | undefined;
6077
6075
  messages?: {
6078
6076
  text: string;
6079
- type: "success" | "error" | "info" | "warning";
6077
+ type: "error" | "success" | "info" | "warning";
6080
6078
  id?: number | undefined;
6081
6079
  }[] | undefined;
6082
6080
  required?: boolean | undefined;
@@ -6094,7 +6092,7 @@ export declare function init(config: AuthHeroConfig): {
6094
6092
  hint?: string | undefined;
6095
6093
  messages?: {
6096
6094
  text: string;
6097
- type: "success" | "error" | "info" | "warning";
6095
+ type: "error" | "success" | "info" | "warning";
6098
6096
  id?: number | undefined;
6099
6097
  }[] | undefined;
6100
6098
  required?: boolean | undefined;
@@ -6118,7 +6116,7 @@ export declare function init(config: AuthHeroConfig): {
6118
6116
  hint?: string | undefined;
6119
6117
  messages?: {
6120
6118
  text: string;
6121
- type: "success" | "error" | "info" | "warning";
6119
+ type: "error" | "success" | "info" | "warning";
6122
6120
  id?: number | undefined;
6123
6121
  }[] | undefined;
6124
6122
  required?: boolean | undefined;
@@ -6142,7 +6140,7 @@ export declare function init(config: AuthHeroConfig): {
6142
6140
  hint?: string | undefined;
6143
6141
  messages?: {
6144
6142
  text: string;
6145
- type: "success" | "error" | "info" | "warning";
6143
+ type: "error" | "success" | "info" | "warning";
6146
6144
  id?: number | undefined;
6147
6145
  }[] | undefined;
6148
6146
  required?: boolean | undefined;
@@ -6171,7 +6169,7 @@ export declare function init(config: AuthHeroConfig): {
6171
6169
  hint?: string | undefined;
6172
6170
  messages?: {
6173
6171
  text: string;
6174
- type: "success" | "error" | "info" | "warning";
6172
+ type: "error" | "success" | "info" | "warning";
6175
6173
  id?: number | undefined;
6176
6174
  }[] | undefined;
6177
6175
  required?: boolean | undefined;
@@ -6186,7 +6184,7 @@ export declare function init(config: AuthHeroConfig): {
6186
6184
  hint?: string | undefined;
6187
6185
  messages?: {
6188
6186
  text: string;
6189
- type: "success" | "error" | "info" | "warning";
6187
+ type: "error" | "success" | "info" | "warning";
6190
6188
  id?: number | undefined;
6191
6189
  }[] | undefined;
6192
6190
  required?: boolean | undefined;
@@ -6207,7 +6205,7 @@ export declare function init(config: AuthHeroConfig): {
6207
6205
  hint?: string | undefined;
6208
6206
  messages?: {
6209
6207
  text: string;
6210
- type: "success" | "error" | "info" | "warning";
6208
+ type: "error" | "success" | "info" | "warning";
6211
6209
  id?: number | undefined;
6212
6210
  }[] | undefined;
6213
6211
  required?: boolean | undefined;
@@ -6232,7 +6230,7 @@ export declare function init(config: AuthHeroConfig): {
6232
6230
  hint?: string | undefined;
6233
6231
  messages?: {
6234
6232
  text: string;
6235
- type: "success" | "error" | "info" | "warning";
6233
+ type: "error" | "success" | "info" | "warning";
6236
6234
  id?: number | undefined;
6237
6235
  }[] | undefined;
6238
6236
  required?: boolean | undefined;
@@ -6251,7 +6249,7 @@ export declare function init(config: AuthHeroConfig): {
6251
6249
  hint?: string | undefined;
6252
6250
  messages?: {
6253
6251
  text: string;
6254
- type: "success" | "error" | "info" | "warning";
6252
+ type: "error" | "success" | "info" | "warning";
6255
6253
  id?: number | undefined;
6256
6254
  }[] | undefined;
6257
6255
  required?: boolean | undefined;
@@ -6271,7 +6269,7 @@ export declare function init(config: AuthHeroConfig): {
6271
6269
  hint?: string | undefined;
6272
6270
  messages?: {
6273
6271
  text: string;
6274
- type: "success" | "error" | "info" | "warning";
6272
+ type: "error" | "success" | "info" | "warning";
6275
6273
  id?: number | undefined;
6276
6274
  }[] | undefined;
6277
6275
  required?: boolean | undefined;
@@ -6290,7 +6288,7 @@ export declare function init(config: AuthHeroConfig): {
6290
6288
  hint?: string | undefined;
6291
6289
  messages?: {
6292
6290
  text: string;
6293
- type: "success" | "error" | "info" | "warning";
6291
+ type: "error" | "success" | "info" | "warning";
6294
6292
  id?: number | undefined;
6295
6293
  }[] | undefined;
6296
6294
  required?: boolean | undefined;
@@ -6312,7 +6310,7 @@ export declare function init(config: AuthHeroConfig): {
6312
6310
  hint?: string | undefined;
6313
6311
  messages?: {
6314
6312
  text: string;
6315
- type: "success" | "error" | "info" | "warning";
6313
+ type: "error" | "success" | "info" | "warning";
6316
6314
  id?: number | undefined;
6317
6315
  }[] | undefined;
6318
6316
  required?: boolean | undefined;
@@ -6334,7 +6332,7 @@ export declare function init(config: AuthHeroConfig): {
6334
6332
  hint?: string | undefined;
6335
6333
  messages?: {
6336
6334
  text: string;
6337
- type: "success" | "error" | "info" | "warning";
6335
+ type: "error" | "success" | "info" | "warning";
6338
6336
  id?: number | undefined;
6339
6337
  }[] | undefined;
6340
6338
  required?: boolean | undefined;
@@ -6353,7 +6351,7 @@ export declare function init(config: AuthHeroConfig): {
6353
6351
  hint?: string | undefined;
6354
6352
  messages?: {
6355
6353
  text: string;
6356
- type: "success" | "error" | "info" | "warning";
6354
+ type: "error" | "success" | "info" | "warning";
6357
6355
  id?: number | undefined;
6358
6356
  }[] | undefined;
6359
6357
  required?: boolean | undefined;
@@ -6378,7 +6376,7 @@ export declare function init(config: AuthHeroConfig): {
6378
6376
  hint?: string | undefined;
6379
6377
  messages?: {
6380
6378
  text: string;
6381
- type: "success" | "error" | "info" | "warning";
6379
+ type: "error" | "success" | "info" | "warning";
6382
6380
  id?: number | undefined;
6383
6381
  }[] | undefined;
6384
6382
  required?: boolean | undefined;
@@ -6399,7 +6397,7 @@ export declare function init(config: AuthHeroConfig): {
6399
6397
  hint?: string | undefined;
6400
6398
  messages?: {
6401
6399
  text: string;
6402
- type: "success" | "error" | "info" | "warning";
6400
+ type: "error" | "success" | "info" | "warning";
6403
6401
  id?: number | undefined;
6404
6402
  }[] | undefined;
6405
6403
  required?: boolean | undefined;
@@ -6420,7 +6418,7 @@ export declare function init(config: AuthHeroConfig): {
6420
6418
  hint?: string | undefined;
6421
6419
  messages?: {
6422
6420
  text: string;
6423
- type: "success" | "error" | "info" | "warning";
6421
+ type: "error" | "success" | "info" | "warning";
6424
6422
  id?: number | undefined;
6425
6423
  }[] | undefined;
6426
6424
  required?: boolean | undefined;
@@ -6650,7 +6648,7 @@ export declare function init(config: AuthHeroConfig): {
6650
6648
  };
6651
6649
  };
6652
6650
  output: {
6653
- prompt: "organizations" | "mfa" | "signup" | "status" | "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";
6651
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6654
6652
  language: string;
6655
6653
  }[];
6656
6654
  outputFormat: "json";
@@ -6688,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
6688
6686
  $get: {
6689
6687
  input: {
6690
6688
  param: {
6691
- prompt: "organizations" | "mfa" | "signup" | "status" | "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";
6689
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6692
6690
  language: string;
6693
6691
  };
6694
6692
  } & {
@@ -6710,7 +6708,7 @@ export declare function init(config: AuthHeroConfig): {
6710
6708
  $put: {
6711
6709
  input: {
6712
6710
  param: {
6713
- prompt: "organizations" | "mfa" | "signup" | "status" | "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";
6711
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6714
6712
  language: string;
6715
6713
  };
6716
6714
  } & {
@@ -6734,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
6734
6732
  $delete: {
6735
6733
  input: {
6736
6734
  param: {
6737
- prompt: "organizations" | "mfa" | "signup" | "status" | "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";
6735
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6738
6736
  language: string;
6739
6737
  };
6740
6738
  } & {
@@ -7596,7 +7594,7 @@ export declare function init(config: AuthHeroConfig): {
7596
7594
  };
7597
7595
  } | {
7598
7596
  mode: "inline";
7599
- status: "success" | "error";
7597
+ status: "error" | "success";
7600
7598
  connection_id: string;
7601
7599
  connection_name: string;
7602
7600
  strategy: string;
@@ -8175,7 +8173,7 @@ export declare function init(config: AuthHeroConfig): {
8175
8173
  log_type: string;
8176
8174
  category: "user_action" | "admin_action" | "system" | "api";
8177
8175
  actor: {
8178
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8176
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8179
8177
  id?: string | undefined;
8180
8178
  email?: string | undefined;
8181
8179
  org_id?: string | undefined;
@@ -8823,7 +8821,7 @@ export declare function init(config: AuthHeroConfig): {
8823
8821
  };
8824
8822
  };
8825
8823
  output: {
8826
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8824
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8827
8825
  date: string;
8828
8826
  isMobile: boolean;
8829
8827
  log_id: string;
@@ -8862,7 +8860,7 @@ export declare function init(config: AuthHeroConfig): {
8862
8860
  limit: number;
8863
8861
  length: number;
8864
8862
  logs: {
8865
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8863
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8866
8864
  date: string;
8867
8865
  isMobile: boolean;
8868
8866
  log_id: string;
@@ -8916,7 +8914,7 @@ export declare function init(config: AuthHeroConfig): {
8916
8914
  };
8917
8915
  };
8918
8916
  output: {
8919
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8917
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8920
8918
  date: string;
8921
8919
  isMobile: boolean;
8922
8920
  log_id: string;
@@ -9304,7 +9302,7 @@ export declare function init(config: AuthHeroConfig): {
9304
9302
  addons?: {
9305
9303
  [x: string]: any;
9306
9304
  } | undefined;
9307
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9305
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9308
9306
  client_metadata?: {
9309
9307
  [x: string]: string;
9310
9308
  } | undefined;
@@ -9400,7 +9398,7 @@ export declare function init(config: AuthHeroConfig): {
9400
9398
  addons?: {
9401
9399
  [x: string]: any;
9402
9400
  } | undefined;
9403
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9401
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9404
9402
  client_metadata?: {
9405
9403
  [x: string]: string;
9406
9404
  } | undefined;
@@ -9511,7 +9509,7 @@ export declare function init(config: AuthHeroConfig): {
9511
9509
  addons?: {
9512
9510
  [x: string]: any;
9513
9511
  } | undefined;
9514
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9512
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9515
9513
  client_metadata?: {
9516
9514
  [x: string]: string;
9517
9515
  } | undefined;
@@ -9621,7 +9619,7 @@ export declare function init(config: AuthHeroConfig): {
9621
9619
  custom_login_page_preview?: string | undefined;
9622
9620
  form_template?: string | undefined;
9623
9621
  addons?: Record<string, any> | undefined;
9624
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9622
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9625
9623
  client_metadata?: Record<string, string> | undefined;
9626
9624
  hide_sign_up_disabled_error?: boolean | undefined;
9627
9625
  mobile?: Record<string, any> | undefined;
@@ -9701,7 +9699,7 @@ export declare function init(config: AuthHeroConfig): {
9701
9699
  addons?: {
9702
9700
  [x: string]: any;
9703
9701
  } | undefined;
9704
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9702
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9705
9703
  client_metadata?: {
9706
9704
  [x: string]: string;
9707
9705
  } | undefined;
@@ -9790,7 +9788,7 @@ export declare function init(config: AuthHeroConfig): {
9790
9788
  custom_login_page_preview?: string | undefined;
9791
9789
  form_template?: string | undefined;
9792
9790
  addons?: Record<string, any> | undefined;
9793
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9791
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9794
9792
  client_metadata?: Record<string, string> | undefined;
9795
9793
  hide_sign_up_disabled_error?: boolean | undefined;
9796
9794
  mobile?: Record<string, any> | undefined;
@@ -9870,7 +9868,7 @@ export declare function init(config: AuthHeroConfig): {
9870
9868
  addons?: {
9871
9869
  [x: string]: any;
9872
9870
  } | undefined;
9873
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9871
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9874
9872
  client_metadata?: {
9875
9873
  [x: string]: string;
9876
9874
  } | undefined;
@@ -11134,7 +11132,7 @@ export declare function init(config: AuthHeroConfig): {
11134
11132
  };
11135
11133
  };
11136
11134
  output: {
11137
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11135
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11138
11136
  date: string;
11139
11137
  isMobile: boolean;
11140
11138
  log_id: string;
@@ -11173,7 +11171,7 @@ export declare function init(config: AuthHeroConfig): {
11173
11171
  limit: number;
11174
11172
  length: number;
11175
11173
  logs: {
11176
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11174
+ type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11177
11175
  date: string;
11178
11176
  isMobile: boolean;
11179
11177
  log_id: string;
@@ -13824,7 +13822,7 @@ export declare function init(config: AuthHeroConfig): {
13824
13822
  scope?: string | undefined;
13825
13823
  grant_types?: string[] | undefined;
13826
13824
  response_types?: string[] | undefined;
13827
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13825
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13828
13826
  jwks_uri?: string | undefined;
13829
13827
  jwks?: Record<string, unknown> | undefined;
13830
13828
  software_id?: string | undefined;
@@ -13913,7 +13911,7 @@ export declare function init(config: AuthHeroConfig): {
13913
13911
  scope?: string | undefined;
13914
13912
  grant_types?: string[] | undefined;
13915
13913
  response_types?: string[] | undefined;
13916
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13914
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13917
13915
  jwks_uri?: string | undefined;
13918
13916
  jwks?: Record<string, unknown> | undefined;
13919
13917
  software_id?: string | undefined;
@@ -14259,16 +14257,16 @@ export declare function init(config: AuthHeroConfig): {
14259
14257
  email: string;
14260
14258
  send: "code" | "link";
14261
14259
  authParams: {
14260
+ username?: string | undefined;
14261
+ state?: string | undefined;
14262
14262
  audience?: string | undefined;
14263
14263
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14264
14264
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14265
14265
  scope?: string | undefined;
14266
- username?: string | undefined;
14267
14266
  organization?: string | undefined;
14268
- state?: string | undefined;
14269
14267
  nonce?: string | undefined;
14270
- act_as?: string | undefined;
14271
14268
  redirect_uri?: string | undefined;
14269
+ act_as?: string | undefined;
14272
14270
  prompt?: string | undefined;
14273
14271
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14274
14272
  code_challenge?: string | undefined;
@@ -14295,16 +14293,16 @@ export declare function init(config: AuthHeroConfig): {
14295
14293
  phone_number: string;
14296
14294
  send: "code" | "link";
14297
14295
  authParams: {
14296
+ username?: string | undefined;
14297
+ state?: string | undefined;
14298
14298
  audience?: string | undefined;
14299
14299
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14300
14300
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14301
14301
  scope?: string | undefined;
14302
- username?: string | undefined;
14303
14302
  organization?: string | undefined;
14304
- state?: string | undefined;
14305
14303
  nonce?: string | undefined;
14306
- act_as?: string | undefined;
14307
14304
  redirect_uri?: string | undefined;
14305
+ act_as?: string | undefined;
14308
14306
  prompt?: string | undefined;
14309
14307
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14310
14308
  code_challenge?: string | undefined;
@@ -15023,7 +15021,7 @@ export declare function init(config: AuthHeroConfig): {
15023
15021
  output: {
15024
15022
  keys: {
15025
15023
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
15026
- kty: "RSA" | "EC" | "oct";
15024
+ kty: "EC" | "RSA" | "oct";
15027
15025
  kid?: string | undefined;
15028
15026
  use?: "sig" | "enc" | undefined;
15029
15027
  n?: string | undefined;
@@ -16214,7 +16212,7 @@ export declare function init(config: AuthHeroConfig): {
16214
16212
  $get: {
16215
16213
  input: {
16216
16214
  param: {
16217
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16215
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16218
16216
  };
16219
16217
  } & {
16220
16218
  query: {
@@ -16230,7 +16228,7 @@ export declare function init(config: AuthHeroConfig): {
16230
16228
  } | {
16231
16229
  input: {
16232
16230
  param: {
16233
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16231
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16234
16232
  };
16235
16233
  } & {
16236
16234
  query: {
@@ -16246,7 +16244,7 @@ export declare function init(config: AuthHeroConfig): {
16246
16244
  } | {
16247
16245
  input: {
16248
16246
  param: {
16249
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16247
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16250
16248
  };
16251
16249
  } & {
16252
16250
  query: {
@@ -16266,7 +16264,7 @@ export declare function init(config: AuthHeroConfig): {
16266
16264
  $post: {
16267
16265
  input: {
16268
16266
  param: {
16269
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16267
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16270
16268
  };
16271
16269
  } & {
16272
16270
  query: {
@@ -16284,7 +16282,7 @@ export declare function init(config: AuthHeroConfig): {
16284
16282
  } | {
16285
16283
  input: {
16286
16284
  param: {
16287
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16285
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16288
16286
  };
16289
16287
  } & {
16290
16288
  query: {
@@ -16302,7 +16300,7 @@ export declare function init(config: AuthHeroConfig): {
16302
16300
  } | {
16303
16301
  input: {
16304
16302
  param: {
16305
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16303
+ screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16306
16304
  };
16307
16305
  } & {
16308
16306
  query: {