authhero 6.0.0 → 7.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 (37) hide show
  1. package/dist/authhero.cjs +105 -105
  2. package/dist/authhero.d.ts +261 -210
  3. package/dist/authhero.mjs +12607 -9956
  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/index.d.ts +204 -203
  8. package/dist/types/routes/auth-api/index.d.ts +31 -31
  9. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  10. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  11. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  12. package/dist/types/routes/auth-api/token.d.ts +10 -10
  13. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/actions.d.ts +1 -1
  16. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  17. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  18. package/dist/types/routes/management-api/clients.d.ts +7 -7
  19. package/dist/types/routes/management-api/connections.d.ts +1 -1
  20. package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
  21. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  22. package/dist/types/routes/management-api/forms.d.ts +119 -119
  23. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  24. package/dist/types/routes/management-api/index.d.ts +166 -166
  25. package/dist/types/routes/management-api/logs.d.ts +3 -3
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  28. package/dist/types/routes/management-api/users.d.ts +2 -2
  29. package/dist/types/routes/proxy-control-plane/index.d.ts +21 -7
  30. package/dist/types/routes/proxy-control-plane/verify.d.ts +39 -0
  31. package/dist/types/routes/universal-login/common.d.ts +2 -2
  32. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  33. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  34. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  35. package/dist/types/types/AuthHeroConfig.d.ts +17 -5
  36. package/dist/types/utils/jwks.d.ts +2 -2
  37. package/package.json +3 -3
@@ -25,6 +25,7 @@ export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/
25
25
  export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
26
26
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
27
27
  export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
28
+ export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
28
29
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
29
30
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
30
31
  export type { SeedOptions, SeedResult } from "./seed";
@@ -85,7 +86,7 @@ export declare function init(config: AuthHeroConfig): {
85
86
  };
86
87
  } & {
87
88
  json: {
88
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
89
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
89
90
  phone_number?: string | undefined;
90
91
  totp_secret?: string | undefined;
91
92
  credential_id?: string | undefined;
@@ -225,7 +226,7 @@ export declare function init(config: AuthHeroConfig): {
225
226
  };
226
227
  };
227
228
  output: {
228
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
229
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
229
230
  enabled: boolean;
230
231
  trial_expired?: boolean | undefined;
231
232
  }[];
@@ -380,7 +381,7 @@ export declare function init(config: AuthHeroConfig): {
380
381
  $get: {
381
382
  input: {
382
383
  param: {
383
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
384
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
384
385
  };
385
386
  } & {
386
387
  header: {
@@ -388,7 +389,7 @@ export declare function init(config: AuthHeroConfig): {
388
389
  };
389
390
  };
390
391
  output: {
391
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
392
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
392
393
  enabled: boolean;
393
394
  trial_expired?: boolean | undefined;
394
395
  };
@@ -401,7 +402,7 @@ export declare function init(config: AuthHeroConfig): {
401
402
  $put: {
402
403
  input: {
403
404
  param: {
404
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
405
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
405
406
  };
406
407
  } & {
407
408
  header: {
@@ -413,7 +414,7 @@ export declare function init(config: AuthHeroConfig): {
413
414
  };
414
415
  };
415
416
  output: {
416
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
417
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
417
418
  enabled: boolean;
418
419
  trial_expired?: boolean | undefined;
419
420
  };
@@ -2589,7 +2590,7 @@ export declare function init(config: AuthHeroConfig): {
2589
2590
  hint?: string | undefined;
2590
2591
  messages?: {
2591
2592
  text: string;
2592
- type: "error" | "success" | "info" | "warning";
2593
+ type: "success" | "error" | "info" | "warning";
2593
2594
  id?: number | undefined;
2594
2595
  }[] | undefined;
2595
2596
  required?: boolean | undefined;
@@ -2607,7 +2608,7 @@ export declare function init(config: AuthHeroConfig): {
2607
2608
  hint?: string | undefined;
2608
2609
  messages?: {
2609
2610
  text: string;
2610
- type: "error" | "success" | "info" | "warning";
2611
+ type: "success" | "error" | "info" | "warning";
2611
2612
  id?: number | undefined;
2612
2613
  }[] | undefined;
2613
2614
  required?: boolean | undefined;
@@ -2631,7 +2632,7 @@ export declare function init(config: AuthHeroConfig): {
2631
2632
  hint?: string | undefined;
2632
2633
  messages?: {
2633
2634
  text: string;
2634
- type: "error" | "success" | "info" | "warning";
2635
+ type: "success" | "error" | "info" | "warning";
2635
2636
  id?: number | undefined;
2636
2637
  }[] | undefined;
2637
2638
  required?: boolean | undefined;
@@ -2655,7 +2656,7 @@ export declare function init(config: AuthHeroConfig): {
2655
2656
  hint?: string | undefined;
2656
2657
  messages?: {
2657
2658
  text: string;
2658
- type: "error" | "success" | "info" | "warning";
2659
+ type: "success" | "error" | "info" | "warning";
2659
2660
  id?: number | undefined;
2660
2661
  }[] | undefined;
2661
2662
  required?: boolean | undefined;
@@ -2684,7 +2685,7 @@ export declare function init(config: AuthHeroConfig): {
2684
2685
  hint?: string | undefined;
2685
2686
  messages?: {
2686
2687
  text: string;
2687
- type: "error" | "success" | "info" | "warning";
2688
+ type: "success" | "error" | "info" | "warning";
2688
2689
  id?: number | undefined;
2689
2690
  }[] | undefined;
2690
2691
  required?: boolean | undefined;
@@ -2699,7 +2700,7 @@ export declare function init(config: AuthHeroConfig): {
2699
2700
  hint?: string | undefined;
2700
2701
  messages?: {
2701
2702
  text: string;
2702
- type: "error" | "success" | "info" | "warning";
2703
+ type: "success" | "error" | "info" | "warning";
2703
2704
  id?: number | undefined;
2704
2705
  }[] | undefined;
2705
2706
  required?: boolean | undefined;
@@ -2720,7 +2721,7 @@ export declare function init(config: AuthHeroConfig): {
2720
2721
  hint?: string | undefined;
2721
2722
  messages?: {
2722
2723
  text: string;
2723
- type: "error" | "success" | "info" | "warning";
2724
+ type: "success" | "error" | "info" | "warning";
2724
2725
  id?: number | undefined;
2725
2726
  }[] | undefined;
2726
2727
  required?: boolean | undefined;
@@ -2745,7 +2746,7 @@ export declare function init(config: AuthHeroConfig): {
2745
2746
  hint?: string | undefined;
2746
2747
  messages?: {
2747
2748
  text: string;
2748
- type: "error" | "success" | "info" | "warning";
2749
+ type: "success" | "error" | "info" | "warning";
2749
2750
  id?: number | undefined;
2750
2751
  }[] | undefined;
2751
2752
  required?: boolean | undefined;
@@ -2764,7 +2765,7 @@ export declare function init(config: AuthHeroConfig): {
2764
2765
  hint?: string | undefined;
2765
2766
  messages?: {
2766
2767
  text: string;
2767
- type: "error" | "success" | "info" | "warning";
2768
+ type: "success" | "error" | "info" | "warning";
2768
2769
  id?: number | undefined;
2769
2770
  }[] | undefined;
2770
2771
  required?: boolean | undefined;
@@ -2784,7 +2785,7 @@ export declare function init(config: AuthHeroConfig): {
2784
2785
  hint?: string | undefined;
2785
2786
  messages?: {
2786
2787
  text: string;
2787
- type: "error" | "success" | "info" | "warning";
2788
+ type: "success" | "error" | "info" | "warning";
2788
2789
  id?: number | undefined;
2789
2790
  }[] | undefined;
2790
2791
  required?: boolean | undefined;
@@ -2803,7 +2804,7 @@ export declare function init(config: AuthHeroConfig): {
2803
2804
  hint?: string | undefined;
2804
2805
  messages?: {
2805
2806
  text: string;
2806
- type: "error" | "success" | "info" | "warning";
2807
+ type: "success" | "error" | "info" | "warning";
2807
2808
  id?: number | undefined;
2808
2809
  }[] | undefined;
2809
2810
  required?: boolean | undefined;
@@ -2825,7 +2826,7 @@ export declare function init(config: AuthHeroConfig): {
2825
2826
  hint?: string | undefined;
2826
2827
  messages?: {
2827
2828
  text: string;
2828
- type: "error" | "success" | "info" | "warning";
2829
+ type: "success" | "error" | "info" | "warning";
2829
2830
  id?: number | undefined;
2830
2831
  }[] | undefined;
2831
2832
  required?: boolean | undefined;
@@ -2847,7 +2848,7 @@ export declare function init(config: AuthHeroConfig): {
2847
2848
  hint?: string | undefined;
2848
2849
  messages?: {
2849
2850
  text: string;
2850
- type: "error" | "success" | "info" | "warning";
2851
+ type: "success" | "error" | "info" | "warning";
2851
2852
  id?: number | undefined;
2852
2853
  }[] | undefined;
2853
2854
  required?: boolean | undefined;
@@ -2866,7 +2867,7 @@ export declare function init(config: AuthHeroConfig): {
2866
2867
  hint?: string | undefined;
2867
2868
  messages?: {
2868
2869
  text: string;
2869
- type: "error" | "success" | "info" | "warning";
2870
+ type: "success" | "error" | "info" | "warning";
2870
2871
  id?: number | undefined;
2871
2872
  }[] | undefined;
2872
2873
  required?: boolean | undefined;
@@ -2891,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
2891
2892
  hint?: string | undefined;
2892
2893
  messages?: {
2893
2894
  text: string;
2894
- type: "error" | "success" | "info" | "warning";
2895
+ type: "success" | "error" | "info" | "warning";
2895
2896
  id?: number | undefined;
2896
2897
  }[] | undefined;
2897
2898
  required?: boolean | undefined;
@@ -2912,7 +2913,7 @@ export declare function init(config: AuthHeroConfig): {
2912
2913
  hint?: string | undefined;
2913
2914
  messages?: {
2914
2915
  text: string;
2915
- type: "error" | "success" | "info" | "warning";
2916
+ type: "success" | "error" | "info" | "warning";
2916
2917
  id?: number | undefined;
2917
2918
  }[] | undefined;
2918
2919
  required?: boolean | undefined;
@@ -2933,7 +2934,7 @@ export declare function init(config: AuthHeroConfig): {
2933
2934
  hint?: string | undefined;
2934
2935
  messages?: {
2935
2936
  text: string;
2936
- type: "error" | "success" | "info" | "warning";
2937
+ type: "success" | "error" | "info" | "warning";
2937
2938
  id?: number | undefined;
2938
2939
  }[] | undefined;
2939
2940
  required?: boolean | undefined;
@@ -3166,7 +3167,7 @@ export declare function init(config: AuthHeroConfig): {
3166
3167
  hint?: string | undefined;
3167
3168
  messages?: {
3168
3169
  text: string;
3169
- type: "error" | "success" | "info" | "warning";
3170
+ type: "success" | "error" | "info" | "warning";
3170
3171
  id?: number | undefined;
3171
3172
  }[] | undefined;
3172
3173
  required?: boolean | undefined;
@@ -3184,7 +3185,7 @@ export declare function init(config: AuthHeroConfig): {
3184
3185
  hint?: string | undefined;
3185
3186
  messages?: {
3186
3187
  text: string;
3187
- type: "error" | "success" | "info" | "warning";
3188
+ type: "success" | "error" | "info" | "warning";
3188
3189
  id?: number | undefined;
3189
3190
  }[] | undefined;
3190
3191
  required?: boolean | undefined;
@@ -3208,7 +3209,7 @@ export declare function init(config: AuthHeroConfig): {
3208
3209
  hint?: string | undefined;
3209
3210
  messages?: {
3210
3211
  text: string;
3211
- type: "error" | "success" | "info" | "warning";
3212
+ type: "success" | "error" | "info" | "warning";
3212
3213
  id?: number | undefined;
3213
3214
  }[] | undefined;
3214
3215
  required?: boolean | undefined;
@@ -3232,7 +3233,7 @@ export declare function init(config: AuthHeroConfig): {
3232
3233
  hint?: string | undefined;
3233
3234
  messages?: {
3234
3235
  text: string;
3235
- type: "error" | "success" | "info" | "warning";
3236
+ type: "success" | "error" | "info" | "warning";
3236
3237
  id?: number | undefined;
3237
3238
  }[] | undefined;
3238
3239
  required?: boolean | undefined;
@@ -3261,7 +3262,7 @@ export declare function init(config: AuthHeroConfig): {
3261
3262
  hint?: string | undefined;
3262
3263
  messages?: {
3263
3264
  text: string;
3264
- type: "error" | "success" | "info" | "warning";
3265
+ type: "success" | "error" | "info" | "warning";
3265
3266
  id?: number | undefined;
3266
3267
  }[] | undefined;
3267
3268
  required?: boolean | undefined;
@@ -3276,7 +3277,7 @@ export declare function init(config: AuthHeroConfig): {
3276
3277
  hint?: string | undefined;
3277
3278
  messages?: {
3278
3279
  text: string;
3279
- type: "error" | "success" | "info" | "warning";
3280
+ type: "success" | "error" | "info" | "warning";
3280
3281
  id?: number | undefined;
3281
3282
  }[] | undefined;
3282
3283
  required?: boolean | undefined;
@@ -3297,7 +3298,7 @@ export declare function init(config: AuthHeroConfig): {
3297
3298
  hint?: string | undefined;
3298
3299
  messages?: {
3299
3300
  text: string;
3300
- type: "error" | "success" | "info" | "warning";
3301
+ type: "success" | "error" | "info" | "warning";
3301
3302
  id?: number | undefined;
3302
3303
  }[] | undefined;
3303
3304
  required?: boolean | undefined;
@@ -3322,7 +3323,7 @@ export declare function init(config: AuthHeroConfig): {
3322
3323
  hint?: string | undefined;
3323
3324
  messages?: {
3324
3325
  text: string;
3325
- type: "error" | "success" | "info" | "warning";
3326
+ type: "success" | "error" | "info" | "warning";
3326
3327
  id?: number | undefined;
3327
3328
  }[] | undefined;
3328
3329
  required?: boolean | undefined;
@@ -3341,7 +3342,7 @@ export declare function init(config: AuthHeroConfig): {
3341
3342
  hint?: string | undefined;
3342
3343
  messages?: {
3343
3344
  text: string;
3344
- type: "error" | "success" | "info" | "warning";
3345
+ type: "success" | "error" | "info" | "warning";
3345
3346
  id?: number | undefined;
3346
3347
  }[] | undefined;
3347
3348
  required?: boolean | undefined;
@@ -3361,7 +3362,7 @@ export declare function init(config: AuthHeroConfig): {
3361
3362
  hint?: string | undefined;
3362
3363
  messages?: {
3363
3364
  text: string;
3364
- type: "error" | "success" | "info" | "warning";
3365
+ type: "success" | "error" | "info" | "warning";
3365
3366
  id?: number | undefined;
3366
3367
  }[] | undefined;
3367
3368
  required?: boolean | undefined;
@@ -3380,7 +3381,7 @@ export declare function init(config: AuthHeroConfig): {
3380
3381
  hint?: string | undefined;
3381
3382
  messages?: {
3382
3383
  text: string;
3383
- type: "error" | "success" | "info" | "warning";
3384
+ type: "success" | "error" | "info" | "warning";
3384
3385
  id?: number | undefined;
3385
3386
  }[] | undefined;
3386
3387
  required?: boolean | undefined;
@@ -3402,7 +3403,7 @@ export declare function init(config: AuthHeroConfig): {
3402
3403
  hint?: string | undefined;
3403
3404
  messages?: {
3404
3405
  text: string;
3405
- type: "error" | "success" | "info" | "warning";
3406
+ type: "success" | "error" | "info" | "warning";
3406
3407
  id?: number | undefined;
3407
3408
  }[] | undefined;
3408
3409
  required?: boolean | undefined;
@@ -3424,7 +3425,7 @@ export declare function init(config: AuthHeroConfig): {
3424
3425
  hint?: string | undefined;
3425
3426
  messages?: {
3426
3427
  text: string;
3427
- type: "error" | "success" | "info" | "warning";
3428
+ type: "success" | "error" | "info" | "warning";
3428
3429
  id?: number | undefined;
3429
3430
  }[] | undefined;
3430
3431
  required?: boolean | undefined;
@@ -3443,7 +3444,7 @@ export declare function init(config: AuthHeroConfig): {
3443
3444
  hint?: string | undefined;
3444
3445
  messages?: {
3445
3446
  text: string;
3446
- type: "error" | "success" | "info" | "warning";
3447
+ type: "success" | "error" | "info" | "warning";
3447
3448
  id?: number | undefined;
3448
3449
  }[] | undefined;
3449
3450
  required?: boolean | undefined;
@@ -3468,7 +3469,7 @@ export declare function init(config: AuthHeroConfig): {
3468
3469
  hint?: string | undefined;
3469
3470
  messages?: {
3470
3471
  text: string;
3471
- type: "error" | "success" | "info" | "warning";
3472
+ type: "success" | "error" | "info" | "warning";
3472
3473
  id?: number | undefined;
3473
3474
  }[] | undefined;
3474
3475
  required?: boolean | undefined;
@@ -3489,7 +3490,7 @@ export declare function init(config: AuthHeroConfig): {
3489
3490
  hint?: string | undefined;
3490
3491
  messages?: {
3491
3492
  text: string;
3492
- type: "error" | "success" | "info" | "warning";
3493
+ type: "success" | "error" | "info" | "warning";
3493
3494
  id?: number | undefined;
3494
3495
  }[] | undefined;
3495
3496
  required?: boolean | undefined;
@@ -3510,7 +3511,7 @@ export declare function init(config: AuthHeroConfig): {
3510
3511
  hint?: string | undefined;
3511
3512
  messages?: {
3512
3513
  text: string;
3513
- type: "error" | "success" | "info" | "warning";
3514
+ type: "success" | "error" | "info" | "warning";
3514
3515
  id?: number | undefined;
3515
3516
  }[] | undefined;
3516
3517
  required?: boolean | undefined;
@@ -3758,7 +3759,7 @@ export declare function init(config: AuthHeroConfig): {
3758
3759
  hint?: string | undefined;
3759
3760
  messages?: {
3760
3761
  text: string;
3761
- type: "error" | "success" | "info" | "warning";
3762
+ type: "success" | "error" | "info" | "warning";
3762
3763
  id?: number | undefined;
3763
3764
  }[] | undefined;
3764
3765
  required?: boolean | undefined;
@@ -3776,7 +3777,7 @@ export declare function init(config: AuthHeroConfig): {
3776
3777
  hint?: string | undefined;
3777
3778
  messages?: {
3778
3779
  text: string;
3779
- type: "error" | "success" | "info" | "warning";
3780
+ type: "success" | "error" | "info" | "warning";
3780
3781
  id?: number | undefined;
3781
3782
  }[] | undefined;
3782
3783
  required?: boolean | undefined;
@@ -3800,7 +3801,7 @@ export declare function init(config: AuthHeroConfig): {
3800
3801
  hint?: string | undefined;
3801
3802
  messages?: {
3802
3803
  text: string;
3803
- type: "error" | "success" | "info" | "warning";
3804
+ type: "success" | "error" | "info" | "warning";
3804
3805
  id?: number | undefined;
3805
3806
  }[] | undefined;
3806
3807
  required?: boolean | undefined;
@@ -3824,7 +3825,7 @@ export declare function init(config: AuthHeroConfig): {
3824
3825
  hint?: string | undefined;
3825
3826
  messages?: {
3826
3827
  text: string;
3827
- type: "error" | "success" | "info" | "warning";
3828
+ type: "success" | "error" | "info" | "warning";
3828
3829
  id?: number | undefined;
3829
3830
  }[] | undefined;
3830
3831
  required?: boolean | undefined;
@@ -3853,7 +3854,7 @@ export declare function init(config: AuthHeroConfig): {
3853
3854
  hint?: string | undefined;
3854
3855
  messages?: {
3855
3856
  text: string;
3856
- type: "error" | "success" | "info" | "warning";
3857
+ type: "success" | "error" | "info" | "warning";
3857
3858
  id?: number | undefined;
3858
3859
  }[] | undefined;
3859
3860
  required?: boolean | undefined;
@@ -3868,7 +3869,7 @@ export declare function init(config: AuthHeroConfig): {
3868
3869
  hint?: string | undefined;
3869
3870
  messages?: {
3870
3871
  text: string;
3871
- type: "error" | "success" | "info" | "warning";
3872
+ type: "success" | "error" | "info" | "warning";
3872
3873
  id?: number | undefined;
3873
3874
  }[] | undefined;
3874
3875
  required?: boolean | undefined;
@@ -3889,7 +3890,7 @@ export declare function init(config: AuthHeroConfig): {
3889
3890
  hint?: string | undefined;
3890
3891
  messages?: {
3891
3892
  text: string;
3892
- type: "error" | "success" | "info" | "warning";
3893
+ type: "success" | "error" | "info" | "warning";
3893
3894
  id?: number | undefined;
3894
3895
  }[] | undefined;
3895
3896
  required?: boolean | undefined;
@@ -3914,7 +3915,7 @@ export declare function init(config: AuthHeroConfig): {
3914
3915
  hint?: string | undefined;
3915
3916
  messages?: {
3916
3917
  text: string;
3917
- type: "error" | "success" | "info" | "warning";
3918
+ type: "success" | "error" | "info" | "warning";
3918
3919
  id?: number | undefined;
3919
3920
  }[] | undefined;
3920
3921
  required?: boolean | undefined;
@@ -3933,7 +3934,7 @@ export declare function init(config: AuthHeroConfig): {
3933
3934
  hint?: string | undefined;
3934
3935
  messages?: {
3935
3936
  text: string;
3936
- type: "error" | "success" | "info" | "warning";
3937
+ type: "success" | "error" | "info" | "warning";
3937
3938
  id?: number | undefined;
3938
3939
  }[] | undefined;
3939
3940
  required?: boolean | undefined;
@@ -3953,7 +3954,7 @@ export declare function init(config: AuthHeroConfig): {
3953
3954
  hint?: string | undefined;
3954
3955
  messages?: {
3955
3956
  text: string;
3956
- type: "error" | "success" | "info" | "warning";
3957
+ type: "success" | "error" | "info" | "warning";
3957
3958
  id?: number | undefined;
3958
3959
  }[] | undefined;
3959
3960
  required?: boolean | undefined;
@@ -3972,7 +3973,7 @@ export declare function init(config: AuthHeroConfig): {
3972
3973
  hint?: string | undefined;
3973
3974
  messages?: {
3974
3975
  text: string;
3975
- type: "error" | "success" | "info" | "warning";
3976
+ type: "success" | "error" | "info" | "warning";
3976
3977
  id?: number | undefined;
3977
3978
  }[] | undefined;
3978
3979
  required?: boolean | undefined;
@@ -3994,7 +3995,7 @@ export declare function init(config: AuthHeroConfig): {
3994
3995
  hint?: string | undefined;
3995
3996
  messages?: {
3996
3997
  text: string;
3997
- type: "error" | "success" | "info" | "warning";
3998
+ type: "success" | "error" | "info" | "warning";
3998
3999
  id?: number | undefined;
3999
4000
  }[] | undefined;
4000
4001
  required?: boolean | undefined;
@@ -4016,7 +4017,7 @@ export declare function init(config: AuthHeroConfig): {
4016
4017
  hint?: string | undefined;
4017
4018
  messages?: {
4018
4019
  text: string;
4019
- type: "error" | "success" | "info" | "warning";
4020
+ type: "success" | "error" | "info" | "warning";
4020
4021
  id?: number | undefined;
4021
4022
  }[] | undefined;
4022
4023
  required?: boolean | undefined;
@@ -4035,7 +4036,7 @@ export declare function init(config: AuthHeroConfig): {
4035
4036
  hint?: string | undefined;
4036
4037
  messages?: {
4037
4038
  text: string;
4038
- type: "error" | "success" | "info" | "warning";
4039
+ type: "success" | "error" | "info" | "warning";
4039
4040
  id?: number | undefined;
4040
4041
  }[] | undefined;
4041
4042
  required?: boolean | undefined;
@@ -4060,7 +4061,7 @@ export declare function init(config: AuthHeroConfig): {
4060
4061
  hint?: string | undefined;
4061
4062
  messages?: {
4062
4063
  text: string;
4063
- type: "error" | "success" | "info" | "warning";
4064
+ type: "success" | "error" | "info" | "warning";
4064
4065
  id?: number | undefined;
4065
4066
  }[] | undefined;
4066
4067
  required?: boolean | undefined;
@@ -4081,7 +4082,7 @@ export declare function init(config: AuthHeroConfig): {
4081
4082
  hint?: string | undefined;
4082
4083
  messages?: {
4083
4084
  text: string;
4084
- type: "error" | "success" | "info" | "warning";
4085
+ type: "success" | "error" | "info" | "warning";
4085
4086
  id?: number | undefined;
4086
4087
  }[] | undefined;
4087
4088
  required?: boolean | undefined;
@@ -4102,7 +4103,7 @@ export declare function init(config: AuthHeroConfig): {
4102
4103
  hint?: string | undefined;
4103
4104
  messages?: {
4104
4105
  text: string;
4105
- type: "error" | "success" | "info" | "warning";
4106
+ type: "success" | "error" | "info" | "warning";
4106
4107
  id?: number | undefined;
4107
4108
  }[] | undefined;
4108
4109
  required?: boolean | undefined;
@@ -4356,7 +4357,7 @@ export declare function init(config: AuthHeroConfig): {
4356
4357
  hint?: string | undefined;
4357
4358
  messages?: {
4358
4359
  text: string;
4359
- type: "error" | "success" | "info" | "warning";
4360
+ type: "success" | "error" | "info" | "warning";
4360
4361
  id?: number | undefined;
4361
4362
  }[] | undefined;
4362
4363
  required?: boolean | undefined;
@@ -4374,7 +4375,7 @@ export declare function init(config: AuthHeroConfig): {
4374
4375
  hint?: string | undefined;
4375
4376
  messages?: {
4376
4377
  text: string;
4377
- type: "error" | "success" | "info" | "warning";
4378
+ type: "success" | "error" | "info" | "warning";
4378
4379
  id?: number | undefined;
4379
4380
  }[] | undefined;
4380
4381
  required?: boolean | undefined;
@@ -4398,7 +4399,7 @@ export declare function init(config: AuthHeroConfig): {
4398
4399
  hint?: string | undefined;
4399
4400
  messages?: {
4400
4401
  text: string;
4401
- type: "error" | "success" | "info" | "warning";
4402
+ type: "success" | "error" | "info" | "warning";
4402
4403
  id?: number | undefined;
4403
4404
  }[] | undefined;
4404
4405
  required?: boolean | undefined;
@@ -4422,7 +4423,7 @@ export declare function init(config: AuthHeroConfig): {
4422
4423
  hint?: string | undefined;
4423
4424
  messages?: {
4424
4425
  text: string;
4425
- type: "error" | "success" | "info" | "warning";
4426
+ type: "success" | "error" | "info" | "warning";
4426
4427
  id?: number | undefined;
4427
4428
  }[] | undefined;
4428
4429
  required?: boolean | undefined;
@@ -4447,7 +4448,7 @@ export declare function init(config: AuthHeroConfig): {
4447
4448
  hint?: string | undefined;
4448
4449
  messages?: {
4449
4450
  text: string;
4450
- type: "error" | "success" | "info" | "warning";
4451
+ type: "success" | "error" | "info" | "warning";
4451
4452
  id?: number | undefined;
4452
4453
  }[] | undefined;
4453
4454
  required?: boolean | undefined;
@@ -4462,7 +4463,7 @@ export declare function init(config: AuthHeroConfig): {
4462
4463
  hint?: string | undefined;
4463
4464
  messages?: {
4464
4465
  text: string;
4465
- type: "error" | "success" | "info" | "warning";
4466
+ type: "success" | "error" | "info" | "warning";
4466
4467
  id?: number | undefined;
4467
4468
  }[] | undefined;
4468
4469
  required?: boolean | undefined;
@@ -4483,7 +4484,7 @@ export declare function init(config: AuthHeroConfig): {
4483
4484
  hint?: string | undefined;
4484
4485
  messages?: {
4485
4486
  text: string;
4486
- type: "error" | "success" | "info" | "warning";
4487
+ type: "success" | "error" | "info" | "warning";
4487
4488
  id?: number | undefined;
4488
4489
  }[] | undefined;
4489
4490
  required?: boolean | undefined;
@@ -4508,7 +4509,7 @@ export declare function init(config: AuthHeroConfig): {
4508
4509
  hint?: string | undefined;
4509
4510
  messages?: {
4510
4511
  text: string;
4511
- type: "error" | "success" | "info" | "warning";
4512
+ type: "success" | "error" | "info" | "warning";
4512
4513
  id?: number | undefined;
4513
4514
  }[] | undefined;
4514
4515
  required?: boolean | undefined;
@@ -4527,7 +4528,7 @@ export declare function init(config: AuthHeroConfig): {
4527
4528
  hint?: string | undefined;
4528
4529
  messages?: {
4529
4530
  text: string;
4530
- type: "error" | "success" | "info" | "warning";
4531
+ type: "success" | "error" | "info" | "warning";
4531
4532
  id?: number | undefined;
4532
4533
  }[] | undefined;
4533
4534
  required?: boolean | undefined;
@@ -4547,7 +4548,7 @@ export declare function init(config: AuthHeroConfig): {
4547
4548
  hint?: string | undefined;
4548
4549
  messages?: {
4549
4550
  text: string;
4550
- type: "error" | "success" | "info" | "warning";
4551
+ type: "success" | "error" | "info" | "warning";
4551
4552
  id?: number | undefined;
4552
4553
  }[] | undefined;
4553
4554
  required?: boolean | undefined;
@@ -4566,7 +4567,7 @@ export declare function init(config: AuthHeroConfig): {
4566
4567
  hint?: string | undefined;
4567
4568
  messages?: {
4568
4569
  text: string;
4569
- type: "error" | "success" | "info" | "warning";
4570
+ type: "success" | "error" | "info" | "warning";
4570
4571
  id?: number | undefined;
4571
4572
  }[] | undefined;
4572
4573
  required?: boolean | undefined;
@@ -4588,7 +4589,7 @@ export declare function init(config: AuthHeroConfig): {
4588
4589
  hint?: string | undefined;
4589
4590
  messages?: {
4590
4591
  text: string;
4591
- type: "error" | "success" | "info" | "warning";
4592
+ type: "success" | "error" | "info" | "warning";
4592
4593
  id?: number | undefined;
4593
4594
  }[] | undefined;
4594
4595
  required?: boolean | undefined;
@@ -4610,7 +4611,7 @@ export declare function init(config: AuthHeroConfig): {
4610
4611
  hint?: string | undefined;
4611
4612
  messages?: {
4612
4613
  text: string;
4613
- type: "error" | "success" | "info" | "warning";
4614
+ type: "success" | "error" | "info" | "warning";
4614
4615
  id?: number | undefined;
4615
4616
  }[] | undefined;
4616
4617
  required?: boolean | undefined;
@@ -4629,7 +4630,7 @@ export declare function init(config: AuthHeroConfig): {
4629
4630
  hint?: string | undefined;
4630
4631
  messages?: {
4631
4632
  text: string;
4632
- type: "error" | "success" | "info" | "warning";
4633
+ type: "success" | "error" | "info" | "warning";
4633
4634
  id?: number | undefined;
4634
4635
  }[] | undefined;
4635
4636
  required?: boolean | undefined;
@@ -4654,7 +4655,7 @@ export declare function init(config: AuthHeroConfig): {
4654
4655
  hint?: string | undefined;
4655
4656
  messages?: {
4656
4657
  text: string;
4657
- type: "error" | "success" | "info" | "warning";
4658
+ type: "success" | "error" | "info" | "warning";
4658
4659
  id?: number | undefined;
4659
4660
  }[] | undefined;
4660
4661
  required?: boolean | undefined;
@@ -4675,7 +4676,7 @@ export declare function init(config: AuthHeroConfig): {
4675
4676
  hint?: string | undefined;
4676
4677
  messages?: {
4677
4678
  text: string;
4678
- type: "error" | "success" | "info" | "warning";
4679
+ type: "success" | "error" | "info" | "warning";
4679
4680
  id?: number | undefined;
4680
4681
  }[] | undefined;
4681
4682
  required?: boolean | undefined;
@@ -4696,7 +4697,7 @@ export declare function init(config: AuthHeroConfig): {
4696
4697
  hint?: string | undefined;
4697
4698
  messages?: {
4698
4699
  text: string;
4699
- type: "error" | "success" | "info" | "warning";
4700
+ type: "success" | "error" | "info" | "warning";
4700
4701
  id?: number | undefined;
4701
4702
  }[] | undefined;
4702
4703
  required?: boolean | undefined;
@@ -4927,7 +4928,7 @@ export declare function init(config: AuthHeroConfig): {
4927
4928
  hint?: string | undefined;
4928
4929
  messages?: {
4929
4930
  text: string;
4930
- type: "error" | "success" | "info" | "warning";
4931
+ type: "success" | "error" | "info" | "warning";
4931
4932
  id?: number | undefined;
4932
4933
  }[] | undefined;
4933
4934
  required?: boolean | undefined;
@@ -4945,7 +4946,7 @@ export declare function init(config: AuthHeroConfig): {
4945
4946
  hint?: string | undefined;
4946
4947
  messages?: {
4947
4948
  text: string;
4948
- type: "error" | "success" | "info" | "warning";
4949
+ type: "success" | "error" | "info" | "warning";
4949
4950
  id?: number | undefined;
4950
4951
  }[] | undefined;
4951
4952
  required?: boolean | undefined;
@@ -4969,7 +4970,7 @@ export declare function init(config: AuthHeroConfig): {
4969
4970
  hint?: string | undefined;
4970
4971
  messages?: {
4971
4972
  text: string;
4972
- type: "error" | "success" | "info" | "warning";
4973
+ type: "success" | "error" | "info" | "warning";
4973
4974
  id?: number | undefined;
4974
4975
  }[] | undefined;
4975
4976
  required?: boolean | undefined;
@@ -4993,7 +4994,7 @@ export declare function init(config: AuthHeroConfig): {
4993
4994
  hint?: string | undefined;
4994
4995
  messages?: {
4995
4996
  text: string;
4996
- type: "error" | "success" | "info" | "warning";
4997
+ type: "success" | "error" | "info" | "warning";
4997
4998
  id?: number | undefined;
4998
4999
  }[] | undefined;
4999
5000
  required?: boolean | undefined;
@@ -5022,7 +5023,7 @@ export declare function init(config: AuthHeroConfig): {
5022
5023
  hint?: string | undefined;
5023
5024
  messages?: {
5024
5025
  text: string;
5025
- type: "error" | "success" | "info" | "warning";
5026
+ type: "success" | "error" | "info" | "warning";
5026
5027
  id?: number | undefined;
5027
5028
  }[] | undefined;
5028
5029
  required?: boolean | undefined;
@@ -5037,7 +5038,7 @@ export declare function init(config: AuthHeroConfig): {
5037
5038
  hint?: string | undefined;
5038
5039
  messages?: {
5039
5040
  text: string;
5040
- type: "error" | "success" | "info" | "warning";
5041
+ type: "success" | "error" | "info" | "warning";
5041
5042
  id?: number | undefined;
5042
5043
  }[] | undefined;
5043
5044
  required?: boolean | undefined;
@@ -5058,7 +5059,7 @@ export declare function init(config: AuthHeroConfig): {
5058
5059
  hint?: string | undefined;
5059
5060
  messages?: {
5060
5061
  text: string;
5061
- type: "error" | "success" | "info" | "warning";
5062
+ type: "success" | "error" | "info" | "warning";
5062
5063
  id?: number | undefined;
5063
5064
  }[] | undefined;
5064
5065
  required?: boolean | undefined;
@@ -5083,7 +5084,7 @@ export declare function init(config: AuthHeroConfig): {
5083
5084
  hint?: string | undefined;
5084
5085
  messages?: {
5085
5086
  text: string;
5086
- type: "error" | "success" | "info" | "warning";
5087
+ type: "success" | "error" | "info" | "warning";
5087
5088
  id?: number | undefined;
5088
5089
  }[] | undefined;
5089
5090
  required?: boolean | undefined;
@@ -5102,7 +5103,7 @@ export declare function init(config: AuthHeroConfig): {
5102
5103
  hint?: string | undefined;
5103
5104
  messages?: {
5104
5105
  text: string;
5105
- type: "error" | "success" | "info" | "warning";
5106
+ type: "success" | "error" | "info" | "warning";
5106
5107
  id?: number | undefined;
5107
5108
  }[] | undefined;
5108
5109
  required?: boolean | undefined;
@@ -5122,7 +5123,7 @@ export declare function init(config: AuthHeroConfig): {
5122
5123
  hint?: string | undefined;
5123
5124
  messages?: {
5124
5125
  text: string;
5125
- type: "error" | "success" | "info" | "warning";
5126
+ type: "success" | "error" | "info" | "warning";
5126
5127
  id?: number | undefined;
5127
5128
  }[] | undefined;
5128
5129
  required?: boolean | undefined;
@@ -5141,7 +5142,7 @@ export declare function init(config: AuthHeroConfig): {
5141
5142
  hint?: string | undefined;
5142
5143
  messages?: {
5143
5144
  text: string;
5144
- type: "error" | "success" | "info" | "warning";
5145
+ type: "success" | "error" | "info" | "warning";
5145
5146
  id?: number | undefined;
5146
5147
  }[] | undefined;
5147
5148
  required?: boolean | undefined;
@@ -5163,7 +5164,7 @@ export declare function init(config: AuthHeroConfig): {
5163
5164
  hint?: string | undefined;
5164
5165
  messages?: {
5165
5166
  text: string;
5166
- type: "error" | "success" | "info" | "warning";
5167
+ type: "success" | "error" | "info" | "warning";
5167
5168
  id?: number | undefined;
5168
5169
  }[] | undefined;
5169
5170
  required?: boolean | undefined;
@@ -5185,7 +5186,7 @@ export declare function init(config: AuthHeroConfig): {
5185
5186
  hint?: string | undefined;
5186
5187
  messages?: {
5187
5188
  text: string;
5188
- type: "error" | "success" | "info" | "warning";
5189
+ type: "success" | "error" | "info" | "warning";
5189
5190
  id?: number | undefined;
5190
5191
  }[] | undefined;
5191
5192
  required?: boolean | undefined;
@@ -5204,7 +5205,7 @@ export declare function init(config: AuthHeroConfig): {
5204
5205
  hint?: string | undefined;
5205
5206
  messages?: {
5206
5207
  text: string;
5207
- type: "error" | "success" | "info" | "warning";
5208
+ type: "success" | "error" | "info" | "warning";
5208
5209
  id?: number | undefined;
5209
5210
  }[] | undefined;
5210
5211
  required?: boolean | undefined;
@@ -5229,7 +5230,7 @@ export declare function init(config: AuthHeroConfig): {
5229
5230
  hint?: string | undefined;
5230
5231
  messages?: {
5231
5232
  text: string;
5232
- type: "error" | "success" | "info" | "warning";
5233
+ type: "success" | "error" | "info" | "warning";
5233
5234
  id?: number | undefined;
5234
5235
  }[] | undefined;
5235
5236
  required?: boolean | undefined;
@@ -5250,7 +5251,7 @@ export declare function init(config: AuthHeroConfig): {
5250
5251
  hint?: string | undefined;
5251
5252
  messages?: {
5252
5253
  text: string;
5253
- type: "error" | "success" | "info" | "warning";
5254
+ type: "success" | "error" | "info" | "warning";
5254
5255
  id?: number | undefined;
5255
5256
  }[] | undefined;
5256
5257
  required?: boolean | undefined;
@@ -5271,7 +5272,7 @@ export declare function init(config: AuthHeroConfig): {
5271
5272
  hint?: string | undefined;
5272
5273
  messages?: {
5273
5274
  text: string;
5274
- type: "error" | "success" | "info" | "warning";
5275
+ type: "success" | "error" | "info" | "warning";
5275
5276
  id?: number | undefined;
5276
5277
  }[] | undefined;
5277
5278
  required?: boolean | undefined;
@@ -5504,7 +5505,7 @@ export declare function init(config: AuthHeroConfig): {
5504
5505
  hint?: string | undefined;
5505
5506
  messages?: {
5506
5507
  text: string;
5507
- type: "error" | "success" | "info" | "warning";
5508
+ type: "success" | "error" | "info" | "warning";
5508
5509
  id?: number | undefined;
5509
5510
  }[] | undefined;
5510
5511
  required?: boolean | undefined;
@@ -5522,7 +5523,7 @@ export declare function init(config: AuthHeroConfig): {
5522
5523
  hint?: string | undefined;
5523
5524
  messages?: {
5524
5525
  text: string;
5525
- type: "error" | "success" | "info" | "warning";
5526
+ type: "success" | "error" | "info" | "warning";
5526
5527
  id?: number | undefined;
5527
5528
  }[] | undefined;
5528
5529
  required?: boolean | undefined;
@@ -5546,7 +5547,7 @@ export declare function init(config: AuthHeroConfig): {
5546
5547
  hint?: string | undefined;
5547
5548
  messages?: {
5548
5549
  text: string;
5549
- type: "error" | "success" | "info" | "warning";
5550
+ type: "success" | "error" | "info" | "warning";
5550
5551
  id?: number | undefined;
5551
5552
  }[] | undefined;
5552
5553
  required?: boolean | undefined;
@@ -5570,7 +5571,7 @@ export declare function init(config: AuthHeroConfig): {
5570
5571
  hint?: string | undefined;
5571
5572
  messages?: {
5572
5573
  text: string;
5573
- type: "error" | "success" | "info" | "warning";
5574
+ type: "success" | "error" | "info" | "warning";
5574
5575
  id?: number | undefined;
5575
5576
  }[] | undefined;
5576
5577
  required?: boolean | undefined;
@@ -5595,7 +5596,7 @@ export declare function init(config: AuthHeroConfig): {
5595
5596
  hint?: string | undefined;
5596
5597
  messages?: {
5597
5598
  text: string;
5598
- type: "error" | "success" | "info" | "warning";
5599
+ type: "success" | "error" | "info" | "warning";
5599
5600
  id?: number | undefined;
5600
5601
  }[] | undefined;
5601
5602
  required?: boolean | undefined;
@@ -5610,7 +5611,7 @@ export declare function init(config: AuthHeroConfig): {
5610
5611
  hint?: string | undefined;
5611
5612
  messages?: {
5612
5613
  text: string;
5613
- type: "error" | "success" | "info" | "warning";
5614
+ type: "success" | "error" | "info" | "warning";
5614
5615
  id?: number | undefined;
5615
5616
  }[] | undefined;
5616
5617
  required?: boolean | undefined;
@@ -5631,7 +5632,7 @@ export declare function init(config: AuthHeroConfig): {
5631
5632
  hint?: string | undefined;
5632
5633
  messages?: {
5633
5634
  text: string;
5634
- type: "error" | "success" | "info" | "warning";
5635
+ type: "success" | "error" | "info" | "warning";
5635
5636
  id?: number | undefined;
5636
5637
  }[] | undefined;
5637
5638
  required?: boolean | undefined;
@@ -5656,7 +5657,7 @@ export declare function init(config: AuthHeroConfig): {
5656
5657
  hint?: string | undefined;
5657
5658
  messages?: {
5658
5659
  text: string;
5659
- type: "error" | "success" | "info" | "warning";
5660
+ type: "success" | "error" | "info" | "warning";
5660
5661
  id?: number | undefined;
5661
5662
  }[] | undefined;
5662
5663
  required?: boolean | undefined;
@@ -5675,7 +5676,7 @@ export declare function init(config: AuthHeroConfig): {
5675
5676
  hint?: string | undefined;
5676
5677
  messages?: {
5677
5678
  text: string;
5678
- type: "error" | "success" | "info" | "warning";
5679
+ type: "success" | "error" | "info" | "warning";
5679
5680
  id?: number | undefined;
5680
5681
  }[] | undefined;
5681
5682
  required?: boolean | undefined;
@@ -5695,7 +5696,7 @@ export declare function init(config: AuthHeroConfig): {
5695
5696
  hint?: string | undefined;
5696
5697
  messages?: {
5697
5698
  text: string;
5698
- type: "error" | "success" | "info" | "warning";
5699
+ type: "success" | "error" | "info" | "warning";
5699
5700
  id?: number | undefined;
5700
5701
  }[] | undefined;
5701
5702
  required?: boolean | undefined;
@@ -5714,7 +5715,7 @@ export declare function init(config: AuthHeroConfig): {
5714
5715
  hint?: string | undefined;
5715
5716
  messages?: {
5716
5717
  text: string;
5717
- type: "error" | "success" | "info" | "warning";
5718
+ type: "success" | "error" | "info" | "warning";
5718
5719
  id?: number | undefined;
5719
5720
  }[] | undefined;
5720
5721
  required?: boolean | undefined;
@@ -5736,7 +5737,7 @@ export declare function init(config: AuthHeroConfig): {
5736
5737
  hint?: string | undefined;
5737
5738
  messages?: {
5738
5739
  text: string;
5739
- type: "error" | "success" | "info" | "warning";
5740
+ type: "success" | "error" | "info" | "warning";
5740
5741
  id?: number | undefined;
5741
5742
  }[] | undefined;
5742
5743
  required?: boolean | undefined;
@@ -5758,7 +5759,7 @@ export declare function init(config: AuthHeroConfig): {
5758
5759
  hint?: string | undefined;
5759
5760
  messages?: {
5760
5761
  text: string;
5761
- type: "error" | "success" | "info" | "warning";
5762
+ type: "success" | "error" | "info" | "warning";
5762
5763
  id?: number | undefined;
5763
5764
  }[] | undefined;
5764
5765
  required?: boolean | undefined;
@@ -5777,7 +5778,7 @@ export declare function init(config: AuthHeroConfig): {
5777
5778
  hint?: string | undefined;
5778
5779
  messages?: {
5779
5780
  text: string;
5780
- type: "error" | "success" | "info" | "warning";
5781
+ type: "success" | "error" | "info" | "warning";
5781
5782
  id?: number | undefined;
5782
5783
  }[] | undefined;
5783
5784
  required?: boolean | undefined;
@@ -5802,7 +5803,7 @@ export declare function init(config: AuthHeroConfig): {
5802
5803
  hint?: string | undefined;
5803
5804
  messages?: {
5804
5805
  text: string;
5805
- type: "error" | "success" | "info" | "warning";
5806
+ type: "success" | "error" | "info" | "warning";
5806
5807
  id?: number | undefined;
5807
5808
  }[] | undefined;
5808
5809
  required?: boolean | undefined;
@@ -5823,7 +5824,7 @@ export declare function init(config: AuthHeroConfig): {
5823
5824
  hint?: string | undefined;
5824
5825
  messages?: {
5825
5826
  text: string;
5826
- type: "error" | "success" | "info" | "warning";
5827
+ type: "success" | "error" | "info" | "warning";
5827
5828
  id?: number | undefined;
5828
5829
  }[] | undefined;
5829
5830
  required?: boolean | undefined;
@@ -5844,7 +5845,7 @@ export declare function init(config: AuthHeroConfig): {
5844
5845
  hint?: string | undefined;
5845
5846
  messages?: {
5846
5847
  text: string;
5847
- type: "error" | "success" | "info" | "warning";
5848
+ type: "success" | "error" | "info" | "warning";
5848
5849
  id?: number | undefined;
5849
5850
  }[] | undefined;
5850
5851
  required?: boolean | undefined;
@@ -6075,7 +6076,7 @@ export declare function init(config: AuthHeroConfig): {
6075
6076
  hint?: string | undefined;
6076
6077
  messages?: {
6077
6078
  text: string;
6078
- type: "error" | "success" | "info" | "warning";
6079
+ type: "success" | "error" | "info" | "warning";
6079
6080
  id?: number | undefined;
6080
6081
  }[] | undefined;
6081
6082
  required?: boolean | undefined;
@@ -6093,7 +6094,7 @@ export declare function init(config: AuthHeroConfig): {
6093
6094
  hint?: string | undefined;
6094
6095
  messages?: {
6095
6096
  text: string;
6096
- type: "error" | "success" | "info" | "warning";
6097
+ type: "success" | "error" | "info" | "warning";
6097
6098
  id?: number | undefined;
6098
6099
  }[] | undefined;
6099
6100
  required?: boolean | undefined;
@@ -6117,7 +6118,7 @@ export declare function init(config: AuthHeroConfig): {
6117
6118
  hint?: string | undefined;
6118
6119
  messages?: {
6119
6120
  text: string;
6120
- type: "error" | "success" | "info" | "warning";
6121
+ type: "success" | "error" | "info" | "warning";
6121
6122
  id?: number | undefined;
6122
6123
  }[] | undefined;
6123
6124
  required?: boolean | undefined;
@@ -6141,7 +6142,7 @@ export declare function init(config: AuthHeroConfig): {
6141
6142
  hint?: string | undefined;
6142
6143
  messages?: {
6143
6144
  text: string;
6144
- type: "error" | "success" | "info" | "warning";
6145
+ type: "success" | "error" | "info" | "warning";
6145
6146
  id?: number | undefined;
6146
6147
  }[] | undefined;
6147
6148
  required?: boolean | undefined;
@@ -6170,7 +6171,7 @@ export declare function init(config: AuthHeroConfig): {
6170
6171
  hint?: string | undefined;
6171
6172
  messages?: {
6172
6173
  text: string;
6173
- type: "error" | "success" | "info" | "warning";
6174
+ type: "success" | "error" | "info" | "warning";
6174
6175
  id?: number | undefined;
6175
6176
  }[] | undefined;
6176
6177
  required?: boolean | undefined;
@@ -6185,7 +6186,7 @@ export declare function init(config: AuthHeroConfig): {
6185
6186
  hint?: string | undefined;
6186
6187
  messages?: {
6187
6188
  text: string;
6188
- type: "error" | "success" | "info" | "warning";
6189
+ type: "success" | "error" | "info" | "warning";
6189
6190
  id?: number | undefined;
6190
6191
  }[] | undefined;
6191
6192
  required?: boolean | undefined;
@@ -6206,7 +6207,7 @@ export declare function init(config: AuthHeroConfig): {
6206
6207
  hint?: string | undefined;
6207
6208
  messages?: {
6208
6209
  text: string;
6209
- type: "error" | "success" | "info" | "warning";
6210
+ type: "success" | "error" | "info" | "warning";
6210
6211
  id?: number | undefined;
6211
6212
  }[] | undefined;
6212
6213
  required?: boolean | undefined;
@@ -6231,7 +6232,7 @@ export declare function init(config: AuthHeroConfig): {
6231
6232
  hint?: string | undefined;
6232
6233
  messages?: {
6233
6234
  text: string;
6234
- type: "error" | "success" | "info" | "warning";
6235
+ type: "success" | "error" | "info" | "warning";
6235
6236
  id?: number | undefined;
6236
6237
  }[] | undefined;
6237
6238
  required?: boolean | undefined;
@@ -6250,7 +6251,7 @@ export declare function init(config: AuthHeroConfig): {
6250
6251
  hint?: string | undefined;
6251
6252
  messages?: {
6252
6253
  text: string;
6253
- type: "error" | "success" | "info" | "warning";
6254
+ type: "success" | "error" | "info" | "warning";
6254
6255
  id?: number | undefined;
6255
6256
  }[] | undefined;
6256
6257
  required?: boolean | undefined;
@@ -6270,7 +6271,7 @@ export declare function init(config: AuthHeroConfig): {
6270
6271
  hint?: string | undefined;
6271
6272
  messages?: {
6272
6273
  text: string;
6273
- type: "error" | "success" | "info" | "warning";
6274
+ type: "success" | "error" | "info" | "warning";
6274
6275
  id?: number | undefined;
6275
6276
  }[] | undefined;
6276
6277
  required?: boolean | undefined;
@@ -6289,7 +6290,7 @@ export declare function init(config: AuthHeroConfig): {
6289
6290
  hint?: string | undefined;
6290
6291
  messages?: {
6291
6292
  text: string;
6292
- type: "error" | "success" | "info" | "warning";
6293
+ type: "success" | "error" | "info" | "warning";
6293
6294
  id?: number | undefined;
6294
6295
  }[] | undefined;
6295
6296
  required?: boolean | undefined;
@@ -6311,7 +6312,7 @@ export declare function init(config: AuthHeroConfig): {
6311
6312
  hint?: string | undefined;
6312
6313
  messages?: {
6313
6314
  text: string;
6314
- type: "error" | "success" | "info" | "warning";
6315
+ type: "success" | "error" | "info" | "warning";
6315
6316
  id?: number | undefined;
6316
6317
  }[] | undefined;
6317
6318
  required?: boolean | undefined;
@@ -6333,7 +6334,7 @@ export declare function init(config: AuthHeroConfig): {
6333
6334
  hint?: string | undefined;
6334
6335
  messages?: {
6335
6336
  text: string;
6336
- type: "error" | "success" | "info" | "warning";
6337
+ type: "success" | "error" | "info" | "warning";
6337
6338
  id?: number | undefined;
6338
6339
  }[] | undefined;
6339
6340
  required?: boolean | undefined;
@@ -6352,7 +6353,7 @@ export declare function init(config: AuthHeroConfig): {
6352
6353
  hint?: string | undefined;
6353
6354
  messages?: {
6354
6355
  text: string;
6355
- type: "error" | "success" | "info" | "warning";
6356
+ type: "success" | "error" | "info" | "warning";
6356
6357
  id?: number | undefined;
6357
6358
  }[] | undefined;
6358
6359
  required?: boolean | undefined;
@@ -6377,7 +6378,7 @@ export declare function init(config: AuthHeroConfig): {
6377
6378
  hint?: string | undefined;
6378
6379
  messages?: {
6379
6380
  text: string;
6380
- type: "error" | "success" | "info" | "warning";
6381
+ type: "success" | "error" | "info" | "warning";
6381
6382
  id?: number | undefined;
6382
6383
  }[] | undefined;
6383
6384
  required?: boolean | undefined;
@@ -6398,7 +6399,7 @@ export declare function init(config: AuthHeroConfig): {
6398
6399
  hint?: string | undefined;
6399
6400
  messages?: {
6400
6401
  text: string;
6401
- type: "error" | "success" | "info" | "warning";
6402
+ type: "success" | "error" | "info" | "warning";
6402
6403
  id?: number | undefined;
6403
6404
  }[] | undefined;
6404
6405
  required?: boolean | undefined;
@@ -6419,7 +6420,7 @@ export declare function init(config: AuthHeroConfig): {
6419
6420
  hint?: string | undefined;
6420
6421
  messages?: {
6421
6422
  text: string;
6422
- type: "error" | "success" | "info" | "warning";
6423
+ type: "success" | "error" | "info" | "warning";
6423
6424
  id?: number | undefined;
6424
6425
  }[] | undefined;
6425
6426
  required?: boolean | undefined;
@@ -6649,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
6649
6650
  };
6650
6651
  };
6651
6652
  output: {
6652
- 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";
6653
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6653
6654
  language: string;
6654
6655
  }[];
6655
6656
  outputFormat: "json";
@@ -6687,7 +6688,7 @@ export declare function init(config: AuthHeroConfig): {
6687
6688
  $get: {
6688
6689
  input: {
6689
6690
  param: {
6690
- 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";
6691
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6691
6692
  language: string;
6692
6693
  };
6693
6694
  } & {
@@ -6709,7 +6710,7 @@ export declare function init(config: AuthHeroConfig): {
6709
6710
  $put: {
6710
6711
  input: {
6711
6712
  param: {
6712
- 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";
6713
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6713
6714
  language: string;
6714
6715
  };
6715
6716
  } & {
@@ -6733,7 +6734,7 @@ export declare function init(config: AuthHeroConfig): {
6733
6734
  $delete: {
6734
6735
  input: {
6735
6736
  param: {
6736
- 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";
6737
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6737
6738
  language: string;
6738
6739
  };
6739
6740
  } & {
@@ -7595,7 +7596,7 @@ export declare function init(config: AuthHeroConfig): {
7595
7596
  };
7596
7597
  } | {
7597
7598
  mode: "inline";
7598
- status: "error" | "success";
7599
+ status: "success" | "error";
7599
7600
  connection_id: string;
7600
7601
  connection_name: string;
7601
7602
  strategy: string;
@@ -8174,7 +8175,7 @@ export declare function init(config: AuthHeroConfig): {
8174
8175
  log_type: string;
8175
8176
  category: "user_action" | "admin_action" | "system" | "api";
8176
8177
  actor: {
8177
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8178
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8178
8179
  id?: string | undefined;
8179
8180
  email?: string | undefined;
8180
8181
  org_id?: string | undefined;
@@ -8482,7 +8483,7 @@ export declare function init(config: AuthHeroConfig): {
8482
8483
  created_at: string;
8483
8484
  updated_at: string;
8484
8485
  name: string;
8485
- provider: "auth0" | "oidc" | "okta" | "cognito";
8486
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8486
8487
  connection: string;
8487
8488
  enabled: boolean;
8488
8489
  credentials: {
@@ -8514,7 +8515,7 @@ export declare function init(config: AuthHeroConfig): {
8514
8515
  created_at: string;
8515
8516
  updated_at: string;
8516
8517
  name: string;
8517
- provider: "auth0" | "oidc" | "okta" | "cognito";
8518
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8518
8519
  connection: string;
8519
8520
  enabled: boolean;
8520
8521
  credentials: {
@@ -8540,7 +8541,7 @@ export declare function init(config: AuthHeroConfig): {
8540
8541
  } & {
8541
8542
  json: {
8542
8543
  name: string;
8543
- provider: "auth0" | "oidc" | "okta" | "cognito";
8544
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8544
8545
  connection: string;
8545
8546
  credentials: {
8546
8547
  domain: string;
@@ -8557,7 +8558,7 @@ export declare function init(config: AuthHeroConfig): {
8557
8558
  created_at: string;
8558
8559
  updated_at: string;
8559
8560
  name: string;
8560
- provider: "auth0" | "oidc" | "okta" | "cognito";
8561
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8561
8562
  connection: string;
8562
8563
  enabled: boolean;
8563
8564
  credentials: {
@@ -8588,7 +8589,7 @@ export declare function init(config: AuthHeroConfig): {
8588
8589
  json: {
8589
8590
  id?: string | undefined;
8590
8591
  name?: string | undefined;
8591
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8592
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8592
8593
  connection?: string | undefined;
8593
8594
  enabled?: boolean | undefined;
8594
8595
  credentials?: {
@@ -8604,7 +8605,7 @@ export declare function init(config: AuthHeroConfig): {
8604
8605
  created_at: string;
8605
8606
  updated_at: string;
8606
8607
  name: string;
8607
- provider: "auth0" | "oidc" | "okta" | "cognito";
8608
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8608
8609
  connection: string;
8609
8610
  enabled: boolean;
8610
8611
  credentials: {
@@ -8822,7 +8823,7 @@ export declare function init(config: AuthHeroConfig): {
8822
8823
  };
8823
8824
  };
8824
8825
  output: {
8825
- 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";
8826
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8826
8827
  date: string;
8827
8828
  isMobile: boolean;
8828
8829
  log_id: string;
@@ -8861,7 +8862,7 @@ export declare function init(config: AuthHeroConfig): {
8861
8862
  limit: number;
8862
8863
  length: number;
8863
8864
  logs: {
8864
- 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";
8865
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8865
8866
  date: string;
8866
8867
  isMobile: boolean;
8867
8868
  log_id: string;
@@ -8915,7 +8916,7 @@ export declare function init(config: AuthHeroConfig): {
8915
8916
  };
8916
8917
  };
8917
8918
  output: {
8918
- 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";
8919
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8919
8920
  date: string;
8920
8921
  isMobile: boolean;
8921
8922
  log_id: string;
@@ -9070,7 +9071,7 @@ export declare function init(config: AuthHeroConfig): {
9070
9071
  audience?: string | undefined;
9071
9072
  client_id?: string | undefined;
9072
9073
  allow_any_organization?: string | undefined;
9073
- subject_type?: "user" | "client" | undefined;
9074
+ subject_type?: "client" | "user" | undefined;
9074
9075
  };
9075
9076
  } & {
9076
9077
  header: {
@@ -9085,7 +9086,7 @@ export declare function init(config: AuthHeroConfig): {
9085
9086
  organization_usage?: "deny" | "allow" | "require" | undefined;
9086
9087
  allow_any_organization?: boolean | undefined;
9087
9088
  is_system?: boolean | undefined;
9088
- subject_type?: "user" | "client" | undefined;
9089
+ subject_type?: "client" | "user" | undefined;
9089
9090
  authorization_details_types?: string[] | undefined;
9090
9091
  created_at?: string | undefined;
9091
9092
  updated_at?: string | undefined;
@@ -9101,7 +9102,7 @@ export declare function init(config: AuthHeroConfig): {
9101
9102
  organization_usage?: "deny" | "allow" | "require" | undefined;
9102
9103
  allow_any_organization?: boolean | undefined;
9103
9104
  is_system?: boolean | undefined;
9104
- subject_type?: "user" | "client" | undefined;
9105
+ subject_type?: "client" | "user" | undefined;
9105
9106
  authorization_details_types?: string[] | undefined;
9106
9107
  created_at?: string | undefined;
9107
9108
  updated_at?: string | undefined;
@@ -9132,7 +9133,7 @@ export declare function init(config: AuthHeroConfig): {
9132
9133
  organization_usage?: "deny" | "allow" | "require" | undefined;
9133
9134
  allow_any_organization?: boolean | undefined;
9134
9135
  is_system?: boolean | undefined;
9135
- subject_type?: "user" | "client" | undefined;
9136
+ subject_type?: "client" | "user" | undefined;
9136
9137
  authorization_details_types?: string[] | undefined;
9137
9138
  created_at?: string | undefined;
9138
9139
  updated_at?: string | undefined;
@@ -9177,7 +9178,7 @@ export declare function init(config: AuthHeroConfig): {
9177
9178
  organization_usage?: "deny" | "allow" | "require" | undefined;
9178
9179
  allow_any_organization?: boolean | undefined;
9179
9180
  is_system?: boolean | undefined;
9180
- subject_type?: "user" | "client" | undefined;
9181
+ subject_type?: "client" | "user" | undefined;
9181
9182
  authorization_details_types?: string[] | undefined;
9182
9183
  };
9183
9184
  };
@@ -9189,7 +9190,7 @@ export declare function init(config: AuthHeroConfig): {
9189
9190
  organization_usage?: "deny" | "allow" | "require" | undefined;
9190
9191
  allow_any_organization?: boolean | undefined;
9191
9192
  is_system?: boolean | undefined;
9192
- subject_type?: "user" | "client" | undefined;
9193
+ subject_type?: "client" | "user" | undefined;
9193
9194
  authorization_details_types?: string[] | undefined;
9194
9195
  created_at?: string | undefined;
9195
9196
  updated_at?: string | undefined;
@@ -9213,7 +9214,7 @@ export declare function init(config: AuthHeroConfig): {
9213
9214
  organization_usage?: "deny" | "allow" | "require" | undefined;
9214
9215
  allow_any_organization?: boolean | undefined;
9215
9216
  is_system?: boolean | undefined;
9216
- subject_type?: "user" | "client" | undefined;
9217
+ subject_type?: "client" | "user" | undefined;
9217
9218
  authorization_details_types?: string[] | undefined;
9218
9219
  };
9219
9220
  };
@@ -9225,7 +9226,7 @@ export declare function init(config: AuthHeroConfig): {
9225
9226
  organization_usage?: "deny" | "allow" | "require" | undefined;
9226
9227
  allow_any_organization?: boolean | undefined;
9227
9228
  is_system?: boolean | undefined;
9228
- subject_type?: "user" | "client" | undefined;
9229
+ subject_type?: "client" | "user" | undefined;
9229
9230
  authorization_details_types?: string[] | undefined;
9230
9231
  created_at?: string | undefined;
9231
9232
  updated_at?: string | undefined;
@@ -9303,7 +9304,7 @@ export declare function init(config: AuthHeroConfig): {
9303
9304
  addons?: {
9304
9305
  [x: string]: any;
9305
9306
  } | undefined;
9306
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9307
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9307
9308
  client_metadata?: {
9308
9309
  [x: string]: string;
9309
9310
  } | undefined;
@@ -9399,7 +9400,7 @@ export declare function init(config: AuthHeroConfig): {
9399
9400
  addons?: {
9400
9401
  [x: string]: any;
9401
9402
  } | undefined;
9402
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9403
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9403
9404
  client_metadata?: {
9404
9405
  [x: string]: string;
9405
9406
  } | undefined;
@@ -9510,7 +9511,7 @@ export declare function init(config: AuthHeroConfig): {
9510
9511
  addons?: {
9511
9512
  [x: string]: any;
9512
9513
  } | undefined;
9513
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9514
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9514
9515
  client_metadata?: {
9515
9516
  [x: string]: string;
9516
9517
  } | undefined;
@@ -9620,7 +9621,7 @@ export declare function init(config: AuthHeroConfig): {
9620
9621
  custom_login_page_preview?: string | undefined;
9621
9622
  form_template?: string | undefined;
9622
9623
  addons?: Record<string, any> | undefined;
9623
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9624
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9624
9625
  client_metadata?: Record<string, string> | undefined;
9625
9626
  hide_sign_up_disabled_error?: boolean | undefined;
9626
9627
  mobile?: Record<string, any> | undefined;
@@ -9700,7 +9701,7 @@ export declare function init(config: AuthHeroConfig): {
9700
9701
  addons?: {
9701
9702
  [x: string]: any;
9702
9703
  } | undefined;
9703
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9704
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9704
9705
  client_metadata?: {
9705
9706
  [x: string]: string;
9706
9707
  } | undefined;
@@ -9789,7 +9790,7 @@ export declare function init(config: AuthHeroConfig): {
9789
9790
  custom_login_page_preview?: string | undefined;
9790
9791
  form_template?: string | undefined;
9791
9792
  addons?: Record<string, any> | undefined;
9792
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9793
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9793
9794
  client_metadata?: Record<string, string> | undefined;
9794
9795
  hide_sign_up_disabled_error?: boolean | undefined;
9795
9796
  mobile?: Record<string, any> | undefined;
@@ -9869,7 +9870,7 @@ export declare function init(config: AuthHeroConfig): {
9869
9870
  addons?: {
9870
9871
  [x: string]: any;
9871
9872
  } | undefined;
9872
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9873
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9873
9874
  client_metadata?: {
9874
9875
  [x: string]: string;
9875
9876
  } | undefined;
@@ -11133,7 +11134,7 @@ export declare function init(config: AuthHeroConfig): {
11133
11134
  };
11134
11135
  };
11135
11136
  output: {
11136
- 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";
11137
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11137
11138
  date: string;
11138
11139
  isMobile: boolean;
11139
11140
  log_id: string;
@@ -11172,7 +11173,7 @@ export declare function init(config: AuthHeroConfig): {
11172
11173
  limit: number;
11173
11174
  length: number;
11174
11175
  logs: {
11175
- 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";
11176
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11176
11177
  date: string;
11177
11178
  isMobile: boolean;
11178
11179
  log_id: string;
@@ -12012,7 +12013,7 @@ export declare function init(config: AuthHeroConfig): {
12012
12013
  type: "auth0_managed_certs" | "self_managed_certs";
12013
12014
  custom_domain_id: string;
12014
12015
  primary: boolean;
12015
- status: "pending" | "ready" | "disabled" | "pending_verification";
12016
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12016
12017
  verification_method?: "txt" | undefined;
12017
12018
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12018
12019
  domain_metadata?: {
@@ -12053,7 +12054,7 @@ export declare function init(config: AuthHeroConfig): {
12053
12054
  type: "auth0_managed_certs" | "self_managed_certs";
12054
12055
  custom_domain_id: string;
12055
12056
  primary: boolean;
12056
- status: "pending" | "ready" | "disabled" | "pending_verification";
12057
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12057
12058
  verification_method?: "txt" | undefined;
12058
12059
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12059
12060
  domain_metadata?: {
@@ -12114,7 +12115,7 @@ export declare function init(config: AuthHeroConfig): {
12114
12115
  domain_metadata?: Record<string, string> | undefined;
12115
12116
  custom_domain_id?: string | undefined;
12116
12117
  primary?: boolean | undefined;
12117
- status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
12118
+ status?: "disabled" | "pending" | "ready" | "pending_verification" | undefined;
12118
12119
  origin_domain_name?: string | undefined;
12119
12120
  verification?: {
12120
12121
  methods: ({
@@ -12135,7 +12136,7 @@ export declare function init(config: AuthHeroConfig): {
12135
12136
  type: "auth0_managed_certs" | "self_managed_certs";
12136
12137
  custom_domain_id: string;
12137
12138
  primary: boolean;
12138
- status: "pending" | "ready" | "disabled" | "pending_verification";
12139
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12139
12140
  verification_method?: "txt" | undefined;
12140
12141
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12141
12142
  domain_metadata?: {
@@ -12182,7 +12183,7 @@ export declare function init(config: AuthHeroConfig): {
12182
12183
  type: "auth0_managed_certs" | "self_managed_certs";
12183
12184
  custom_domain_id: string;
12184
12185
  primary: boolean;
12185
- status: "pending" | "ready" | "disabled" | "pending_verification";
12186
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12186
12187
  verification_method?: "txt" | undefined;
12187
12188
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12188
12189
  domain_metadata?: {
@@ -12228,7 +12229,7 @@ export declare function init(config: AuthHeroConfig): {
12228
12229
  type: "auth0_managed_certs" | "self_managed_certs";
12229
12230
  custom_domain_id: string;
12230
12231
  primary: boolean;
12231
- status: "pending" | "ready" | "disabled" | "pending_verification";
12232
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12232
12233
  verification_method?: "txt" | undefined;
12233
12234
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12234
12235
  domain_metadata?: {
@@ -12269,7 +12270,7 @@ export declare function init(config: AuthHeroConfig): {
12269
12270
  type: "auth0_managed_certs" | "self_managed_certs";
12270
12271
  custom_domain_id: string;
12271
12272
  primary: boolean;
12272
- status: "pending" | "ready" | "disabled" | "pending_verification";
12273
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12273
12274
  verification_method?: "txt" | undefined;
12274
12275
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12275
12276
  domain_metadata?: {
@@ -12876,7 +12877,7 @@ export declare function init(config: AuthHeroConfig): {
12876
12877
  logs: {
12877
12878
  action_name: string;
12878
12879
  lines: {
12879
- level: "log" | "error" | "info" | "warn" | "debug";
12880
+ level: "error" | "log" | "info" | "warn" | "debug";
12880
12881
  message: string;
12881
12882
  }[];
12882
12883
  }[];
@@ -13543,7 +13544,7 @@ export declare function init(config: AuthHeroConfig): {
13543
13544
  args: import("hono/utils/types").JSONValue[];
13544
13545
  }[];
13545
13546
  logs: {
13546
- level: "log" | "error" | "info" | "warn" | "debug";
13547
+ level: "error" | "log" | "info" | "warn" | "debug";
13547
13548
  message: string;
13548
13549
  }[];
13549
13550
  error?: string | undefined;
@@ -13841,7 +13842,7 @@ export declare function init(config: AuthHeroConfig): {
13841
13842
  scope?: string | undefined;
13842
13843
  grant_types?: string[] | undefined;
13843
13844
  response_types?: string[] | undefined;
13844
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13845
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13845
13846
  jwks_uri?: string | undefined;
13846
13847
  jwks?: Record<string, unknown> | undefined;
13847
13848
  software_id?: string | undefined;
@@ -13930,7 +13931,7 @@ export declare function init(config: AuthHeroConfig): {
13930
13931
  scope?: string | undefined;
13931
13932
  grant_types?: string[] | undefined;
13932
13933
  response_types?: string[] | undefined;
13933
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13934
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13934
13935
  jwks_uri?: string | undefined;
13935
13936
  jwks?: Record<string, unknown> | undefined;
13936
13937
  software_id?: string | undefined;
@@ -14276,20 +14277,20 @@ export declare function init(config: AuthHeroConfig): {
14276
14277
  email: string;
14277
14278
  send: "code" | "link";
14278
14279
  authParams: {
14279
- username?: string | undefined;
14280
- state?: string | undefined;
14281
- audience?: string | undefined;
14282
14280
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14283
14281
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14284
14282
  scope?: string | undefined;
14283
+ username?: string | undefined;
14284
+ audience?: string | undefined;
14285
+ state?: string | undefined;
14286
+ prompt?: string | undefined;
14287
+ ui_locales?: string | undefined;
14285
14288
  organization?: string | undefined;
14286
- nonce?: string | undefined;
14287
14289
  redirect_uri?: string | undefined;
14288
14290
  act_as?: string | undefined;
14289
- prompt?: string | undefined;
14291
+ nonce?: string | undefined;
14290
14292
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14291
14293
  code_challenge?: string | undefined;
14292
- ui_locales?: string | undefined;
14293
14294
  max_age?: number | undefined;
14294
14295
  acr_values?: string | undefined;
14295
14296
  claims?: {
@@ -14312,20 +14313,20 @@ export declare function init(config: AuthHeroConfig): {
14312
14313
  phone_number: string;
14313
14314
  send: "code" | "link";
14314
14315
  authParams: {
14315
- username?: string | undefined;
14316
- state?: string | undefined;
14317
- audience?: string | undefined;
14318
14316
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14319
14317
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14320
14318
  scope?: string | undefined;
14319
+ username?: string | undefined;
14320
+ audience?: string | undefined;
14321
+ state?: string | undefined;
14322
+ prompt?: string | undefined;
14323
+ ui_locales?: string | undefined;
14321
14324
  organization?: string | undefined;
14322
- nonce?: string | undefined;
14323
14325
  redirect_uri?: string | undefined;
14324
14326
  act_as?: string | undefined;
14325
- prompt?: string | undefined;
14327
+ nonce?: string | undefined;
14326
14328
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14327
14329
  code_challenge?: string | undefined;
14328
- ui_locales?: string | undefined;
14329
14330
  max_age?: number | undefined;
14330
14331
  acr_values?: string | undefined;
14331
14332
  claims?: {
@@ -14456,14 +14457,14 @@ export declare function init(config: AuthHeroConfig): {
14456
14457
  input: {
14457
14458
  form: {
14458
14459
  token: string;
14459
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14460
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14460
14461
  client_id?: string | undefined;
14461
14462
  client_secret?: string | undefined;
14462
14463
  };
14463
14464
  } & {
14464
14465
  json: {
14465
14466
  token: string;
14466
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14467
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14467
14468
  client_id?: string | undefined;
14468
14469
  client_secret?: string | undefined;
14469
14470
  };
@@ -14475,14 +14476,14 @@ export declare function init(config: AuthHeroConfig): {
14475
14476
  input: {
14476
14477
  form: {
14477
14478
  token: string;
14478
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14479
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14479
14480
  client_id?: string | undefined;
14480
14481
  client_secret?: string | undefined;
14481
14482
  };
14482
14483
  } & {
14483
14484
  json: {
14484
14485
  token: string;
14485
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14486
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14486
14487
  client_id?: string | undefined;
14487
14488
  client_secret?: string | undefined;
14488
14489
  };
@@ -14497,14 +14498,14 @@ export declare function init(config: AuthHeroConfig): {
14497
14498
  input: {
14498
14499
  form: {
14499
14500
  token: string;
14500
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14501
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14501
14502
  client_id?: string | undefined;
14502
14503
  client_secret?: string | undefined;
14503
14504
  };
14504
14505
  } & {
14505
14506
  json: {
14506
14507
  token: string;
14507
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14508
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14508
14509
  client_id?: string | undefined;
14509
14510
  client_secret?: string | undefined;
14510
14511
  };
@@ -14554,7 +14555,7 @@ export declare function init(config: AuthHeroConfig): {
14554
14555
  client_id: string;
14555
14556
  username: string;
14556
14557
  otp: string;
14557
- realm: "sms" | "email";
14558
+ realm: "email" | "sms";
14558
14559
  } | {
14559
14560
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14560
14561
  subject_token: string;
@@ -14601,7 +14602,7 @@ export declare function init(config: AuthHeroConfig): {
14601
14602
  client_id: string;
14602
14603
  username: string;
14603
14604
  otp: string;
14604
- realm: "sms" | "email";
14605
+ realm: "email" | "sms";
14605
14606
  } | {
14606
14607
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14607
14608
  subject_token: string;
@@ -14653,7 +14654,7 @@ export declare function init(config: AuthHeroConfig): {
14653
14654
  client_id: string;
14654
14655
  username: string;
14655
14656
  otp: string;
14656
- realm: "sms" | "email";
14657
+ realm: "email" | "sms";
14657
14658
  } | {
14658
14659
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14659
14660
  subject_token: string;
@@ -14700,7 +14701,7 @@ export declare function init(config: AuthHeroConfig): {
14700
14701
  client_id: string;
14701
14702
  username: string;
14702
14703
  otp: string;
14703
- realm: "sms" | "email";
14704
+ realm: "email" | "sms";
14704
14705
  } | {
14705
14706
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14706
14707
  subject_token: string;
@@ -14760,7 +14761,7 @@ export declare function init(config: AuthHeroConfig): {
14760
14761
  client_id: string;
14761
14762
  username: string;
14762
14763
  otp: string;
14763
- realm: "sms" | "email";
14764
+ realm: "email" | "sms";
14764
14765
  } | {
14765
14766
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14766
14767
  subject_token: string;
@@ -14807,7 +14808,7 @@ export declare function init(config: AuthHeroConfig): {
14807
14808
  client_id: string;
14808
14809
  username: string;
14809
14810
  otp: string;
14810
- realm: "sms" | "email";
14811
+ realm: "email" | "sms";
14811
14812
  } | {
14812
14813
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14813
14814
  subject_token: string;
@@ -14862,7 +14863,7 @@ export declare function init(config: AuthHeroConfig): {
14862
14863
  client_id: string;
14863
14864
  username: string;
14864
14865
  otp: string;
14865
- realm: "sms" | "email";
14866
+ realm: "email" | "sms";
14866
14867
  } | {
14867
14868
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14868
14869
  subject_token: string;
@@ -14909,7 +14910,7 @@ export declare function init(config: AuthHeroConfig): {
14909
14910
  client_id: string;
14910
14911
  username: string;
14911
14912
  otp: string;
14912
- realm: "sms" | "email";
14913
+ realm: "email" | "sms";
14913
14914
  } | {
14914
14915
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14915
14916
  subject_token: string;
@@ -14964,7 +14965,7 @@ export declare function init(config: AuthHeroConfig): {
14964
14965
  client_id: string;
14965
14966
  username: string;
14966
14967
  otp: string;
14967
- realm: "sms" | "email";
14968
+ realm: "email" | "sms";
14968
14969
  } | {
14969
14970
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14970
14971
  subject_token: string;
@@ -15011,7 +15012,7 @@ export declare function init(config: AuthHeroConfig): {
15011
15012
  client_id: string;
15012
15013
  username: string;
15013
15014
  otp: string;
15014
- realm: "sms" | "email";
15015
+ realm: "email" | "sms";
15015
15016
  } | {
15016
15017
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15017
15018
  subject_token: string;
@@ -15040,7 +15041,7 @@ export declare function init(config: AuthHeroConfig): {
15040
15041
  output: {
15041
15042
  keys: {
15042
15043
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
15043
- kty: "EC" | "RSA" | "oct";
15044
+ kty: "RSA" | "EC" | "oct";
15044
15045
  kid?: string | undefined;
15045
15046
  use?: "sig" | "enc" | undefined;
15046
15047
  n?: string | undefined;
@@ -16231,7 +16232,7 @@ export declare function init(config: AuthHeroConfig): {
16231
16232
  $get: {
16232
16233
  input: {
16233
16234
  param: {
16234
- 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";
16235
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16235
16236
  };
16236
16237
  } & {
16237
16238
  query: {
@@ -16247,7 +16248,7 @@ export declare function init(config: AuthHeroConfig): {
16247
16248
  } | {
16248
16249
  input: {
16249
16250
  param: {
16250
- 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";
16251
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16251
16252
  };
16252
16253
  } & {
16253
16254
  query: {
@@ -16263,7 +16264,7 @@ export declare function init(config: AuthHeroConfig): {
16263
16264
  } | {
16264
16265
  input: {
16265
16266
  param: {
16266
- 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";
16267
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16267
16268
  };
16268
16269
  } & {
16269
16270
  query: {
@@ -16283,7 +16284,7 @@ export declare function init(config: AuthHeroConfig): {
16283
16284
  $post: {
16284
16285
  input: {
16285
16286
  param: {
16286
- 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";
16287
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16287
16288
  };
16288
16289
  } & {
16289
16290
  query: {
@@ -16301,7 +16302,7 @@ export declare function init(config: AuthHeroConfig): {
16301
16302
  } | {
16302
16303
  input: {
16303
16304
  param: {
16304
- 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";
16305
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16305
16306
  };
16306
16307
  } & {
16307
16308
  query: {
@@ -16319,7 +16320,7 @@ export declare function init(config: AuthHeroConfig): {
16319
16320
  } | {
16320
16321
  input: {
16321
16322
  param: {
16322
- 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";
16323
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16323
16324
  };
16324
16325
  } & {
16325
16326
  query: {