authhero 8.24.0 → 8.25.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 (46) hide show
  1. package/dist/authhero.cjs +138 -138
  2. package/dist/authhero.d.ts +802 -225
  3. package/dist/authhero.mjs +12109 -11443
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  6. package/dist/types/index.d.ts +228 -222
  7. package/dist/types/routes/auth-api/index.d.ts +44 -44
  8. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  9. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  10. package/dist/types/routes/auth-api/revoke.d.ts +8 -8
  11. package/dist/types/routes/auth-api/token.d.ts +22 -22
  12. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  13. package/dist/types/routes/management-api/branding.d.ts +1 -1
  14. package/dist/types/routes/management-api/clients.d.ts +8 -8
  15. package/dist/types/routes/management-api/connections.d.ts +1 -1
  16. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  17. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  18. package/dist/types/routes/management-api/forms.d.ts +126 -126
  19. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  20. package/dist/types/routes/management-api/index.d.ts +172 -172
  21. package/dist/types/routes/management-api/logs.d.ts +4 -4
  22. package/dist/types/routes/management-api/organizations.d.ts +7 -7
  23. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  24. package/dist/types/routes/management-api/roles.d.ts +1 -1
  25. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  26. package/dist/types/routes/management-api/tenant-members.d.ts +304 -0
  27. package/dist/types/routes/management-api/tenant-members.test.d.ts +1 -0
  28. package/dist/types/routes/management-api/tenants.d.ts +9 -9
  29. package/dist/types/routes/management-api/users.d.ts +2 -2
  30. package/dist/types/routes/proxy-control-plane/index.d.ts +23 -0
  31. package/dist/types/routes/proxy-control-plane/scopes.d.ts +7 -0
  32. package/dist/types/routes/proxy-control-plane/tenant-members.d.ts +37 -0
  33. package/dist/types/routes/proxy-control-plane/verify.d.ts +14 -0
  34. package/dist/types/routes/proxy-control-plane/verify.test.d.ts +1 -0
  35. package/dist/types/routes/universal-login/common.d.ts +2 -2
  36. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  37. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  39. package/dist/types/tenant-members/control-plane-roundtrip.test.d.ts +1 -0
  40. package/dist/types/tenant-members/local-backend.d.ts +43 -0
  41. package/dist/types/tenant-members/local-backend.test.d.ts +1 -0
  42. package/dist/types/tenant-members/remote-backend.d.ts +17 -0
  43. package/dist/types/tenant-members/types.d.ts +112 -0
  44. package/dist/types/tenant-members/wire.d.ts +28 -0
  45. package/dist/types/types/AuthHeroConfig.d.ts +32 -0
  46. package/package.json +3 -3
@@ -29,8 +29,14 @@ export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/
29
29
  export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
30
30
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
31
31
  export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
32
- export { CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, } from "./routes/proxy-control-plane/scopes";
32
+ export { CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, } from "./routes/proxy-control-plane/scopes";
33
33
  export { createControlPlaneCustomDomainsAdapter, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, type ControlPlaneCustomDomainsOptions, } from "./adapters/control-plane-custom-domains";
34
+ export { createTenantMembersControlPlaneApp, type TenantMembersControlPlaneOptions, } from "./routes/proxy-control-plane/tenant-members";
35
+ export { createTenantMembersRoutes, type GetTenantMembersBackend, } from "./routes/management-api/tenant-members";
36
+ export { createLocalTenantMembersBackend, type LocalTenantMembersBackendOptions, } from "./tenant-members/local-backend";
37
+ export { createControlPlaneTenantMembersAdapter, type ControlPlaneTenantMembersOptions, } from "./tenant-members/remote-backend";
38
+ export { CONTROL_PLANE_TENANT_MEMBERS_PATH } from "./tenant-members/wire";
39
+ export { type TenantMembersBackend, type TenantMember, type TenantMembersListResult, type TenantInvitation, type TenantInvitationInput, type TenantRole, type TenantMembersPageParams, TenantMembersNotFoundError, TenantOrganizationNotFoundError, TenantInvitationNotFoundError, } from "./tenant-members/types";
34
40
  export { createServiceTokenCore, type CreateServiceTokenCoreParams, type ServiceTokenResponse, } from "./helpers/service-token";
35
41
  export { createServiceBindingFetch, type ServiceBindingFetcher, } from "@authhero/proxy";
36
42
  export { createControlPlaneClient, type ControlPlaneClient, type ControlPlaneClientOptions, type ControlPlaneRequest, type ControlPlaneResponse, type GetControlPlaneToken, } from "./helpers/control-plane-client";
@@ -68,8 +74,8 @@ export declare function init(config: AuthHeroConfig): {
68
74
  $get: {
69
75
  input: {
70
76
  query: {
71
- include_password_hashes?: "true" | "false" | undefined;
72
- gzip?: "true" | "false" | undefined;
77
+ include_password_hashes?: "false" | "true" | undefined;
78
+ gzip?: "false" | "true" | undefined;
73
79
  };
74
80
  } & {
75
81
  header: {
@@ -82,8 +88,8 @@ export declare function init(config: AuthHeroConfig): {
82
88
  } | {
83
89
  input: {
84
90
  query: {
85
- include_password_hashes?: "true" | "false" | undefined;
86
- gzip?: "true" | "false" | undefined;
91
+ include_password_hashes?: "false" | "true" | undefined;
92
+ gzip?: "false" | "true" | undefined;
87
93
  };
88
94
  } & {
89
95
  header: {
@@ -102,7 +108,7 @@ export declare function init(config: AuthHeroConfig): {
102
108
  $post: {
103
109
  input: {
104
110
  query: {
105
- include_password_hashes?: "true" | "false" | undefined;
111
+ include_password_hashes?: "false" | "true" | undefined;
106
112
  };
107
113
  } & {
108
114
  header: {
@@ -156,7 +162,7 @@ export declare function init(config: AuthHeroConfig): {
156
162
  };
157
163
  } & {
158
164
  json: {
159
- type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
165
+ type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
160
166
  phone_number?: string | undefined;
161
167
  totp_secret?: string | undefined;
162
168
  credential_id?: string | undefined;
@@ -296,7 +302,7 @@ export declare function init(config: AuthHeroConfig): {
296
302
  };
297
303
  };
298
304
  output: {
299
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
305
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
300
306
  enabled: boolean;
301
307
  trial_expired?: boolean | undefined;
302
308
  }[];
@@ -451,7 +457,7 @@ export declare function init(config: AuthHeroConfig): {
451
457
  $get: {
452
458
  input: {
453
459
  param: {
454
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
460
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
455
461
  };
456
462
  } & {
457
463
  header: {
@@ -459,7 +465,7 @@ export declare function init(config: AuthHeroConfig): {
459
465
  };
460
466
  };
461
467
  output: {
462
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
468
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
463
469
  enabled: boolean;
464
470
  trial_expired?: boolean | undefined;
465
471
  };
@@ -472,7 +478,7 @@ export declare function init(config: AuthHeroConfig): {
472
478
  $put: {
473
479
  input: {
474
480
  param: {
475
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
481
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
476
482
  };
477
483
  } & {
478
484
  header: {
@@ -484,7 +490,7 @@ export declare function init(config: AuthHeroConfig): {
484
490
  };
485
491
  };
486
492
  output: {
487
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
493
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
488
494
  enabled: boolean;
489
495
  trial_expired?: boolean | undefined;
490
496
  };
@@ -1255,20 +1261,20 @@ export declare function init(config: AuthHeroConfig): {
1255
1261
  };
1256
1262
  } & {
1257
1263
  json: {
1258
- client_id: string;
1259
- inviter: {
1260
- name?: string | undefined;
1261
- };
1262
1264
  invitee: {
1263
1265
  email?: string | undefined;
1264
1266
  };
1267
+ inviter: {
1268
+ name?: string | undefined;
1269
+ };
1270
+ client_id: string;
1265
1271
  id?: string | undefined;
1272
+ roles?: string[] | undefined;
1273
+ send_invitation_email?: boolean | undefined;
1274
+ ttl_sec?: number | undefined;
1266
1275
  connection_id?: string | undefined;
1267
1276
  app_metadata?: Record<string, any> | undefined;
1268
1277
  user_metadata?: Record<string, any> | undefined;
1269
- roles?: string[] | undefined;
1270
- ttl_sec?: number | undefined;
1271
- send_invitation_email?: boolean | undefined;
1272
1278
  };
1273
1279
  };
1274
1280
  output: {
@@ -2023,8 +2029,8 @@ export declare function init(config: AuthHeroConfig): {
2023
2029
  };
2024
2030
  } & {
2025
2031
  query: {
2026
- from?: string | undefined;
2027
2032
  page?: string | undefined;
2033
+ from?: string | undefined;
2028
2034
  include_totals?: string | undefined;
2029
2035
  per_page?: string | undefined;
2030
2036
  take?: string | undefined;
@@ -2748,7 +2754,7 @@ export declare function init(config: AuthHeroConfig): {
2748
2754
  hint?: string | undefined;
2749
2755
  messages?: {
2750
2756
  text: string;
2751
- type: "error" | "success" | "info" | "warning";
2757
+ type: "success" | "error" | "info" | "warning";
2752
2758
  id?: number | undefined;
2753
2759
  }[] | undefined;
2754
2760
  required?: boolean | undefined;
@@ -2766,7 +2772,7 @@ export declare function init(config: AuthHeroConfig): {
2766
2772
  hint?: string | undefined;
2767
2773
  messages?: {
2768
2774
  text: string;
2769
- type: "error" | "success" | "info" | "warning";
2775
+ type: "success" | "error" | "info" | "warning";
2770
2776
  id?: number | undefined;
2771
2777
  }[] | undefined;
2772
2778
  required?: boolean | undefined;
@@ -2790,7 +2796,7 @@ export declare function init(config: AuthHeroConfig): {
2790
2796
  hint?: string | undefined;
2791
2797
  messages?: {
2792
2798
  text: string;
2793
- type: "error" | "success" | "info" | "warning";
2799
+ type: "success" | "error" | "info" | "warning";
2794
2800
  id?: number | undefined;
2795
2801
  }[] | undefined;
2796
2802
  required?: boolean | undefined;
@@ -2814,7 +2820,7 @@ export declare function init(config: AuthHeroConfig): {
2814
2820
  hint?: string | undefined;
2815
2821
  messages?: {
2816
2822
  text: string;
2817
- type: "error" | "success" | "info" | "warning";
2823
+ type: "success" | "error" | "info" | "warning";
2818
2824
  id?: number | undefined;
2819
2825
  }[] | undefined;
2820
2826
  required?: boolean | undefined;
@@ -2838,7 +2844,7 @@ export declare function init(config: AuthHeroConfig): {
2838
2844
  hint?: string | undefined;
2839
2845
  messages?: {
2840
2846
  text: string;
2841
- type: "error" | "success" | "info" | "warning";
2847
+ type: "success" | "error" | "info" | "warning";
2842
2848
  id?: number | undefined;
2843
2849
  }[] | undefined;
2844
2850
  required?: boolean | undefined;
@@ -2867,7 +2873,7 @@ export declare function init(config: AuthHeroConfig): {
2867
2873
  hint?: string | undefined;
2868
2874
  messages?: {
2869
2875
  text: string;
2870
- type: "error" | "success" | "info" | "warning";
2876
+ type: "success" | "error" | "info" | "warning";
2871
2877
  id?: number | undefined;
2872
2878
  }[] | undefined;
2873
2879
  required?: boolean | undefined;
@@ -2882,7 +2888,7 @@ export declare function init(config: AuthHeroConfig): {
2882
2888
  hint?: string | undefined;
2883
2889
  messages?: {
2884
2890
  text: string;
2885
- type: "error" | "success" | "info" | "warning";
2891
+ type: "success" | "error" | "info" | "warning";
2886
2892
  id?: number | undefined;
2887
2893
  }[] | undefined;
2888
2894
  required?: boolean | undefined;
@@ -2903,7 +2909,7 @@ export declare function init(config: AuthHeroConfig): {
2903
2909
  hint?: string | undefined;
2904
2910
  messages?: {
2905
2911
  text: string;
2906
- type: "error" | "success" | "info" | "warning";
2912
+ type: "success" | "error" | "info" | "warning";
2907
2913
  id?: number | undefined;
2908
2914
  }[] | undefined;
2909
2915
  required?: boolean | undefined;
@@ -2928,7 +2934,7 @@ export declare function init(config: AuthHeroConfig): {
2928
2934
  hint?: string | undefined;
2929
2935
  messages?: {
2930
2936
  text: string;
2931
- type: "error" | "success" | "info" | "warning";
2937
+ type: "success" | "error" | "info" | "warning";
2932
2938
  id?: number | undefined;
2933
2939
  }[] | undefined;
2934
2940
  required?: boolean | undefined;
@@ -2947,7 +2953,7 @@ export declare function init(config: AuthHeroConfig): {
2947
2953
  hint?: string | undefined;
2948
2954
  messages?: {
2949
2955
  text: string;
2950
- type: "error" | "success" | "info" | "warning";
2956
+ type: "success" | "error" | "info" | "warning";
2951
2957
  id?: number | undefined;
2952
2958
  }[] | undefined;
2953
2959
  required?: boolean | undefined;
@@ -2967,7 +2973,7 @@ export declare function init(config: AuthHeroConfig): {
2967
2973
  hint?: string | undefined;
2968
2974
  messages?: {
2969
2975
  text: string;
2970
- type: "error" | "success" | "info" | "warning";
2976
+ type: "success" | "error" | "info" | "warning";
2971
2977
  id?: number | undefined;
2972
2978
  }[] | undefined;
2973
2979
  required?: boolean | undefined;
@@ -2986,7 +2992,7 @@ export declare function init(config: AuthHeroConfig): {
2986
2992
  hint?: string | undefined;
2987
2993
  messages?: {
2988
2994
  text: string;
2989
- type: "error" | "success" | "info" | "warning";
2995
+ type: "success" | "error" | "info" | "warning";
2990
2996
  id?: number | undefined;
2991
2997
  }[] | undefined;
2992
2998
  required?: boolean | undefined;
@@ -3008,7 +3014,7 @@ export declare function init(config: AuthHeroConfig): {
3008
3014
  hint?: string | undefined;
3009
3015
  messages?: {
3010
3016
  text: string;
3011
- type: "error" | "success" | "info" | "warning";
3017
+ type: "success" | "error" | "info" | "warning";
3012
3018
  id?: number | undefined;
3013
3019
  }[] | undefined;
3014
3020
  required?: boolean | undefined;
@@ -3030,7 +3036,7 @@ export declare function init(config: AuthHeroConfig): {
3030
3036
  hint?: string | undefined;
3031
3037
  messages?: {
3032
3038
  text: string;
3033
- type: "error" | "success" | "info" | "warning";
3039
+ type: "success" | "error" | "info" | "warning";
3034
3040
  id?: number | undefined;
3035
3041
  }[] | undefined;
3036
3042
  required?: boolean | undefined;
@@ -3049,7 +3055,7 @@ export declare function init(config: AuthHeroConfig): {
3049
3055
  hint?: string | undefined;
3050
3056
  messages?: {
3051
3057
  text: string;
3052
- type: "error" | "success" | "info" | "warning";
3058
+ type: "success" | "error" | "info" | "warning";
3053
3059
  id?: number | undefined;
3054
3060
  }[] | undefined;
3055
3061
  required?: boolean | undefined;
@@ -3074,7 +3080,7 @@ export declare function init(config: AuthHeroConfig): {
3074
3080
  hint?: string | undefined;
3075
3081
  messages?: {
3076
3082
  text: string;
3077
- type: "error" | "success" | "info" | "warning";
3083
+ type: "success" | "error" | "info" | "warning";
3078
3084
  id?: number | undefined;
3079
3085
  }[] | undefined;
3080
3086
  required?: boolean | undefined;
@@ -3095,7 +3101,7 @@ export declare function init(config: AuthHeroConfig): {
3095
3101
  hint?: string | undefined;
3096
3102
  messages?: {
3097
3103
  text: string;
3098
- type: "error" | "success" | "info" | "warning";
3104
+ type: "success" | "error" | "info" | "warning";
3099
3105
  id?: number | undefined;
3100
3106
  }[] | undefined;
3101
3107
  required?: boolean | undefined;
@@ -3116,7 +3122,7 @@ export declare function init(config: AuthHeroConfig): {
3116
3122
  hint?: string | undefined;
3117
3123
  messages?: {
3118
3124
  text: string;
3119
- type: "error" | "success" | "info" | "warning";
3125
+ type: "success" | "error" | "info" | "warning";
3120
3126
  id?: number | undefined;
3121
3127
  }[] | undefined;
3122
3128
  required?: boolean | undefined;
@@ -3349,7 +3355,7 @@ export declare function init(config: AuthHeroConfig): {
3349
3355
  hint?: string | undefined;
3350
3356
  messages?: {
3351
3357
  text: string;
3352
- type: "error" | "success" | "info" | "warning";
3358
+ type: "success" | "error" | "info" | "warning";
3353
3359
  id?: number | undefined;
3354
3360
  }[] | undefined;
3355
3361
  required?: boolean | undefined;
@@ -3367,7 +3373,7 @@ export declare function init(config: AuthHeroConfig): {
3367
3373
  hint?: string | undefined;
3368
3374
  messages?: {
3369
3375
  text: string;
3370
- type: "error" | "success" | "info" | "warning";
3376
+ type: "success" | "error" | "info" | "warning";
3371
3377
  id?: number | undefined;
3372
3378
  }[] | undefined;
3373
3379
  required?: boolean | undefined;
@@ -3391,7 +3397,7 @@ export declare function init(config: AuthHeroConfig): {
3391
3397
  hint?: string | undefined;
3392
3398
  messages?: {
3393
3399
  text: string;
3394
- type: "error" | "success" | "info" | "warning";
3400
+ type: "success" | "error" | "info" | "warning";
3395
3401
  id?: number | undefined;
3396
3402
  }[] | undefined;
3397
3403
  required?: boolean | undefined;
@@ -3415,7 +3421,7 @@ export declare function init(config: AuthHeroConfig): {
3415
3421
  hint?: string | undefined;
3416
3422
  messages?: {
3417
3423
  text: string;
3418
- type: "error" | "success" | "info" | "warning";
3424
+ type: "success" | "error" | "info" | "warning";
3419
3425
  id?: number | undefined;
3420
3426
  }[] | undefined;
3421
3427
  required?: boolean | undefined;
@@ -3439,7 +3445,7 @@ export declare function init(config: AuthHeroConfig): {
3439
3445
  hint?: string | undefined;
3440
3446
  messages?: {
3441
3447
  text: string;
3442
- type: "error" | "success" | "info" | "warning";
3448
+ type: "success" | "error" | "info" | "warning";
3443
3449
  id?: number | undefined;
3444
3450
  }[] | undefined;
3445
3451
  required?: boolean | undefined;
@@ -3468,7 +3474,7 @@ export declare function init(config: AuthHeroConfig): {
3468
3474
  hint?: string | undefined;
3469
3475
  messages?: {
3470
3476
  text: string;
3471
- type: "error" | "success" | "info" | "warning";
3477
+ type: "success" | "error" | "info" | "warning";
3472
3478
  id?: number | undefined;
3473
3479
  }[] | undefined;
3474
3480
  required?: boolean | undefined;
@@ -3483,7 +3489,7 @@ export declare function init(config: AuthHeroConfig): {
3483
3489
  hint?: string | undefined;
3484
3490
  messages?: {
3485
3491
  text: string;
3486
- type: "error" | "success" | "info" | "warning";
3492
+ type: "success" | "error" | "info" | "warning";
3487
3493
  id?: number | undefined;
3488
3494
  }[] | undefined;
3489
3495
  required?: boolean | undefined;
@@ -3504,7 +3510,7 @@ export declare function init(config: AuthHeroConfig): {
3504
3510
  hint?: string | undefined;
3505
3511
  messages?: {
3506
3512
  text: string;
3507
- type: "error" | "success" | "info" | "warning";
3513
+ type: "success" | "error" | "info" | "warning";
3508
3514
  id?: number | undefined;
3509
3515
  }[] | undefined;
3510
3516
  required?: boolean | undefined;
@@ -3529,7 +3535,7 @@ export declare function init(config: AuthHeroConfig): {
3529
3535
  hint?: string | undefined;
3530
3536
  messages?: {
3531
3537
  text: string;
3532
- type: "error" | "success" | "info" | "warning";
3538
+ type: "success" | "error" | "info" | "warning";
3533
3539
  id?: number | undefined;
3534
3540
  }[] | undefined;
3535
3541
  required?: boolean | undefined;
@@ -3548,7 +3554,7 @@ export declare function init(config: AuthHeroConfig): {
3548
3554
  hint?: string | undefined;
3549
3555
  messages?: {
3550
3556
  text: string;
3551
- type: "error" | "success" | "info" | "warning";
3557
+ type: "success" | "error" | "info" | "warning";
3552
3558
  id?: number | undefined;
3553
3559
  }[] | undefined;
3554
3560
  required?: boolean | undefined;
@@ -3568,7 +3574,7 @@ export declare function init(config: AuthHeroConfig): {
3568
3574
  hint?: string | undefined;
3569
3575
  messages?: {
3570
3576
  text: string;
3571
- type: "error" | "success" | "info" | "warning";
3577
+ type: "success" | "error" | "info" | "warning";
3572
3578
  id?: number | undefined;
3573
3579
  }[] | undefined;
3574
3580
  required?: boolean | undefined;
@@ -3587,7 +3593,7 @@ export declare function init(config: AuthHeroConfig): {
3587
3593
  hint?: string | undefined;
3588
3594
  messages?: {
3589
3595
  text: string;
3590
- type: "error" | "success" | "info" | "warning";
3596
+ type: "success" | "error" | "info" | "warning";
3591
3597
  id?: number | undefined;
3592
3598
  }[] | undefined;
3593
3599
  required?: boolean | undefined;
@@ -3609,7 +3615,7 @@ export declare function init(config: AuthHeroConfig): {
3609
3615
  hint?: string | undefined;
3610
3616
  messages?: {
3611
3617
  text: string;
3612
- type: "error" | "success" | "info" | "warning";
3618
+ type: "success" | "error" | "info" | "warning";
3613
3619
  id?: number | undefined;
3614
3620
  }[] | undefined;
3615
3621
  required?: boolean | undefined;
@@ -3631,7 +3637,7 @@ export declare function init(config: AuthHeroConfig): {
3631
3637
  hint?: string | undefined;
3632
3638
  messages?: {
3633
3639
  text: string;
3634
- type: "error" | "success" | "info" | "warning";
3640
+ type: "success" | "error" | "info" | "warning";
3635
3641
  id?: number | undefined;
3636
3642
  }[] | undefined;
3637
3643
  required?: boolean | undefined;
@@ -3650,7 +3656,7 @@ export declare function init(config: AuthHeroConfig): {
3650
3656
  hint?: string | undefined;
3651
3657
  messages?: {
3652
3658
  text: string;
3653
- type: "error" | "success" | "info" | "warning";
3659
+ type: "success" | "error" | "info" | "warning";
3654
3660
  id?: number | undefined;
3655
3661
  }[] | undefined;
3656
3662
  required?: boolean | undefined;
@@ -3675,7 +3681,7 @@ export declare function init(config: AuthHeroConfig): {
3675
3681
  hint?: string | undefined;
3676
3682
  messages?: {
3677
3683
  text: string;
3678
- type: "error" | "success" | "info" | "warning";
3684
+ type: "success" | "error" | "info" | "warning";
3679
3685
  id?: number | undefined;
3680
3686
  }[] | undefined;
3681
3687
  required?: boolean | undefined;
@@ -3696,7 +3702,7 @@ export declare function init(config: AuthHeroConfig): {
3696
3702
  hint?: string | undefined;
3697
3703
  messages?: {
3698
3704
  text: string;
3699
- type: "error" | "success" | "info" | "warning";
3705
+ type: "success" | "error" | "info" | "warning";
3700
3706
  id?: number | undefined;
3701
3707
  }[] | undefined;
3702
3708
  required?: boolean | undefined;
@@ -3717,7 +3723,7 @@ export declare function init(config: AuthHeroConfig): {
3717
3723
  hint?: string | undefined;
3718
3724
  messages?: {
3719
3725
  text: string;
3720
- type: "error" | "success" | "info" | "warning";
3726
+ type: "success" | "error" | "info" | "warning";
3721
3727
  id?: number | undefined;
3722
3728
  }[] | undefined;
3723
3729
  required?: boolean | undefined;
@@ -3966,7 +3972,7 @@ export declare function init(config: AuthHeroConfig): {
3966
3972
  hint?: string | undefined;
3967
3973
  messages?: {
3968
3974
  text: string;
3969
- type: "error" | "success" | "info" | "warning";
3975
+ type: "success" | "error" | "info" | "warning";
3970
3976
  id?: number | undefined;
3971
3977
  }[] | undefined;
3972
3978
  required?: boolean | undefined;
@@ -3984,7 +3990,7 @@ export declare function init(config: AuthHeroConfig): {
3984
3990
  hint?: string | undefined;
3985
3991
  messages?: {
3986
3992
  text: string;
3987
- type: "error" | "success" | "info" | "warning";
3993
+ type: "success" | "error" | "info" | "warning";
3988
3994
  id?: number | undefined;
3989
3995
  }[] | undefined;
3990
3996
  required?: boolean | undefined;
@@ -4008,7 +4014,7 @@ export declare function init(config: AuthHeroConfig): {
4008
4014
  hint?: string | undefined;
4009
4015
  messages?: {
4010
4016
  text: string;
4011
- type: "error" | "success" | "info" | "warning";
4017
+ type: "success" | "error" | "info" | "warning";
4012
4018
  id?: number | undefined;
4013
4019
  }[] | undefined;
4014
4020
  required?: boolean | undefined;
@@ -4032,7 +4038,7 @@ export declare function init(config: AuthHeroConfig): {
4032
4038
  hint?: string | undefined;
4033
4039
  messages?: {
4034
4040
  text: string;
4035
- type: "error" | "success" | "info" | "warning";
4041
+ type: "success" | "error" | "info" | "warning";
4036
4042
  id?: number | undefined;
4037
4043
  }[] | undefined;
4038
4044
  required?: boolean | undefined;
@@ -4056,7 +4062,7 @@ export declare function init(config: AuthHeroConfig): {
4056
4062
  hint?: string | undefined;
4057
4063
  messages?: {
4058
4064
  text: string;
4059
- type: "error" | "success" | "info" | "warning";
4065
+ type: "success" | "error" | "info" | "warning";
4060
4066
  id?: number | undefined;
4061
4067
  }[] | undefined;
4062
4068
  required?: boolean | undefined;
@@ -4085,7 +4091,7 @@ export declare function init(config: AuthHeroConfig): {
4085
4091
  hint?: string | undefined;
4086
4092
  messages?: {
4087
4093
  text: string;
4088
- type: "error" | "success" | "info" | "warning";
4094
+ type: "success" | "error" | "info" | "warning";
4089
4095
  id?: number | undefined;
4090
4096
  }[] | undefined;
4091
4097
  required?: boolean | undefined;
@@ -4100,7 +4106,7 @@ export declare function init(config: AuthHeroConfig): {
4100
4106
  hint?: string | undefined;
4101
4107
  messages?: {
4102
4108
  text: string;
4103
- type: "error" | "success" | "info" | "warning";
4109
+ type: "success" | "error" | "info" | "warning";
4104
4110
  id?: number | undefined;
4105
4111
  }[] | undefined;
4106
4112
  required?: boolean | undefined;
@@ -4121,7 +4127,7 @@ export declare function init(config: AuthHeroConfig): {
4121
4127
  hint?: string | undefined;
4122
4128
  messages?: {
4123
4129
  text: string;
4124
- type: "error" | "success" | "info" | "warning";
4130
+ type: "success" | "error" | "info" | "warning";
4125
4131
  id?: number | undefined;
4126
4132
  }[] | undefined;
4127
4133
  required?: boolean | undefined;
@@ -4146,7 +4152,7 @@ export declare function init(config: AuthHeroConfig): {
4146
4152
  hint?: string | undefined;
4147
4153
  messages?: {
4148
4154
  text: string;
4149
- type: "error" | "success" | "info" | "warning";
4155
+ type: "success" | "error" | "info" | "warning";
4150
4156
  id?: number | undefined;
4151
4157
  }[] | undefined;
4152
4158
  required?: boolean | undefined;
@@ -4165,7 +4171,7 @@ export declare function init(config: AuthHeroConfig): {
4165
4171
  hint?: string | undefined;
4166
4172
  messages?: {
4167
4173
  text: string;
4168
- type: "error" | "success" | "info" | "warning";
4174
+ type: "success" | "error" | "info" | "warning";
4169
4175
  id?: number | undefined;
4170
4176
  }[] | undefined;
4171
4177
  required?: boolean | undefined;
@@ -4185,7 +4191,7 @@ export declare function init(config: AuthHeroConfig): {
4185
4191
  hint?: string | undefined;
4186
4192
  messages?: {
4187
4193
  text: string;
4188
- type: "error" | "success" | "info" | "warning";
4194
+ type: "success" | "error" | "info" | "warning";
4189
4195
  id?: number | undefined;
4190
4196
  }[] | undefined;
4191
4197
  required?: boolean | undefined;
@@ -4204,7 +4210,7 @@ export declare function init(config: AuthHeroConfig): {
4204
4210
  hint?: string | undefined;
4205
4211
  messages?: {
4206
4212
  text: string;
4207
- type: "error" | "success" | "info" | "warning";
4213
+ type: "success" | "error" | "info" | "warning";
4208
4214
  id?: number | undefined;
4209
4215
  }[] | undefined;
4210
4216
  required?: boolean | undefined;
@@ -4226,7 +4232,7 @@ export declare function init(config: AuthHeroConfig): {
4226
4232
  hint?: string | undefined;
4227
4233
  messages?: {
4228
4234
  text: string;
4229
- type: "error" | "success" | "info" | "warning";
4235
+ type: "success" | "error" | "info" | "warning";
4230
4236
  id?: number | undefined;
4231
4237
  }[] | undefined;
4232
4238
  required?: boolean | undefined;
@@ -4248,7 +4254,7 @@ export declare function init(config: AuthHeroConfig): {
4248
4254
  hint?: string | undefined;
4249
4255
  messages?: {
4250
4256
  text: string;
4251
- type: "error" | "success" | "info" | "warning";
4257
+ type: "success" | "error" | "info" | "warning";
4252
4258
  id?: number | undefined;
4253
4259
  }[] | undefined;
4254
4260
  required?: boolean | undefined;
@@ -4267,7 +4273,7 @@ export declare function init(config: AuthHeroConfig): {
4267
4273
  hint?: string | undefined;
4268
4274
  messages?: {
4269
4275
  text: string;
4270
- type: "error" | "success" | "info" | "warning";
4276
+ type: "success" | "error" | "info" | "warning";
4271
4277
  id?: number | undefined;
4272
4278
  }[] | undefined;
4273
4279
  required?: boolean | undefined;
@@ -4292,7 +4298,7 @@ export declare function init(config: AuthHeroConfig): {
4292
4298
  hint?: string | undefined;
4293
4299
  messages?: {
4294
4300
  text: string;
4295
- type: "error" | "success" | "info" | "warning";
4301
+ type: "success" | "error" | "info" | "warning";
4296
4302
  id?: number | undefined;
4297
4303
  }[] | undefined;
4298
4304
  required?: boolean | undefined;
@@ -4313,7 +4319,7 @@ export declare function init(config: AuthHeroConfig): {
4313
4319
  hint?: string | undefined;
4314
4320
  messages?: {
4315
4321
  text: string;
4316
- type: "error" | "success" | "info" | "warning";
4322
+ type: "success" | "error" | "info" | "warning";
4317
4323
  id?: number | undefined;
4318
4324
  }[] | undefined;
4319
4325
  required?: boolean | undefined;
@@ -4334,7 +4340,7 @@ export declare function init(config: AuthHeroConfig): {
4334
4340
  hint?: string | undefined;
4335
4341
  messages?: {
4336
4342
  text: string;
4337
- type: "error" | "success" | "info" | "warning";
4343
+ type: "success" | "error" | "info" | "warning";
4338
4344
  id?: number | undefined;
4339
4345
  }[] | undefined;
4340
4346
  required?: boolean | undefined;
@@ -4588,7 +4594,7 @@ export declare function init(config: AuthHeroConfig): {
4588
4594
  hint?: string | undefined;
4589
4595
  messages?: {
4590
4596
  text: string;
4591
- type: "error" | "success" | "info" | "warning";
4597
+ type: "success" | "error" | "info" | "warning";
4592
4598
  id?: number | undefined;
4593
4599
  }[] | undefined;
4594
4600
  required?: boolean | undefined;
@@ -4606,7 +4612,7 @@ export declare function init(config: AuthHeroConfig): {
4606
4612
  hint?: string | undefined;
4607
4613
  messages?: {
4608
4614
  text: string;
4609
- type: "error" | "success" | "info" | "warning";
4615
+ type: "success" | "error" | "info" | "warning";
4610
4616
  id?: number | undefined;
4611
4617
  }[] | undefined;
4612
4618
  required?: boolean | undefined;
@@ -4630,7 +4636,7 @@ export declare function init(config: AuthHeroConfig): {
4630
4636
  hint?: string | undefined;
4631
4637
  messages?: {
4632
4638
  text: string;
4633
- type: "error" | "success" | "info" | "warning";
4639
+ type: "success" | "error" | "info" | "warning";
4634
4640
  id?: number | undefined;
4635
4641
  }[] | undefined;
4636
4642
  required?: boolean | undefined;
@@ -4654,7 +4660,7 @@ export declare function init(config: AuthHeroConfig): {
4654
4660
  hint?: string | undefined;
4655
4661
  messages?: {
4656
4662
  text: string;
4657
- type: "error" | "success" | "info" | "warning";
4663
+ type: "success" | "error" | "info" | "warning";
4658
4664
  id?: number | undefined;
4659
4665
  }[] | undefined;
4660
4666
  required?: boolean | undefined;
@@ -4678,7 +4684,7 @@ export declare function init(config: AuthHeroConfig): {
4678
4684
  hint?: string | undefined;
4679
4685
  messages?: {
4680
4686
  text: string;
4681
- type: "error" | "success" | "info" | "warning";
4687
+ type: "success" | "error" | "info" | "warning";
4682
4688
  id?: number | undefined;
4683
4689
  }[] | undefined;
4684
4690
  required?: boolean | undefined;
@@ -4703,7 +4709,7 @@ export declare function init(config: AuthHeroConfig): {
4703
4709
  hint?: string | undefined;
4704
4710
  messages?: {
4705
4711
  text: string;
4706
- type: "error" | "success" | "info" | "warning";
4712
+ type: "success" | "error" | "info" | "warning";
4707
4713
  id?: number | undefined;
4708
4714
  }[] | undefined;
4709
4715
  required?: boolean | undefined;
@@ -4718,7 +4724,7 @@ export declare function init(config: AuthHeroConfig): {
4718
4724
  hint?: string | undefined;
4719
4725
  messages?: {
4720
4726
  text: string;
4721
- type: "error" | "success" | "info" | "warning";
4727
+ type: "success" | "error" | "info" | "warning";
4722
4728
  id?: number | undefined;
4723
4729
  }[] | undefined;
4724
4730
  required?: boolean | undefined;
@@ -4739,7 +4745,7 @@ export declare function init(config: AuthHeroConfig): {
4739
4745
  hint?: string | undefined;
4740
4746
  messages?: {
4741
4747
  text: string;
4742
- type: "error" | "success" | "info" | "warning";
4748
+ type: "success" | "error" | "info" | "warning";
4743
4749
  id?: number | undefined;
4744
4750
  }[] | undefined;
4745
4751
  required?: boolean | undefined;
@@ -4764,7 +4770,7 @@ export declare function init(config: AuthHeroConfig): {
4764
4770
  hint?: string | undefined;
4765
4771
  messages?: {
4766
4772
  text: string;
4767
- type: "error" | "success" | "info" | "warning";
4773
+ type: "success" | "error" | "info" | "warning";
4768
4774
  id?: number | undefined;
4769
4775
  }[] | undefined;
4770
4776
  required?: boolean | undefined;
@@ -4783,7 +4789,7 @@ export declare function init(config: AuthHeroConfig): {
4783
4789
  hint?: string | undefined;
4784
4790
  messages?: {
4785
4791
  text: string;
4786
- type: "error" | "success" | "info" | "warning";
4792
+ type: "success" | "error" | "info" | "warning";
4787
4793
  id?: number | undefined;
4788
4794
  }[] | undefined;
4789
4795
  required?: boolean | undefined;
@@ -4803,7 +4809,7 @@ export declare function init(config: AuthHeroConfig): {
4803
4809
  hint?: string | undefined;
4804
4810
  messages?: {
4805
4811
  text: string;
4806
- type: "error" | "success" | "info" | "warning";
4812
+ type: "success" | "error" | "info" | "warning";
4807
4813
  id?: number | undefined;
4808
4814
  }[] | undefined;
4809
4815
  required?: boolean | undefined;
@@ -4822,7 +4828,7 @@ export declare function init(config: AuthHeroConfig): {
4822
4828
  hint?: string | undefined;
4823
4829
  messages?: {
4824
4830
  text: string;
4825
- type: "error" | "success" | "info" | "warning";
4831
+ type: "success" | "error" | "info" | "warning";
4826
4832
  id?: number | undefined;
4827
4833
  }[] | undefined;
4828
4834
  required?: boolean | undefined;
@@ -4844,7 +4850,7 @@ export declare function init(config: AuthHeroConfig): {
4844
4850
  hint?: string | undefined;
4845
4851
  messages?: {
4846
4852
  text: string;
4847
- type: "error" | "success" | "info" | "warning";
4853
+ type: "success" | "error" | "info" | "warning";
4848
4854
  id?: number | undefined;
4849
4855
  }[] | undefined;
4850
4856
  required?: boolean | undefined;
@@ -4866,7 +4872,7 @@ export declare function init(config: AuthHeroConfig): {
4866
4872
  hint?: string | undefined;
4867
4873
  messages?: {
4868
4874
  text: string;
4869
- type: "error" | "success" | "info" | "warning";
4875
+ type: "success" | "error" | "info" | "warning";
4870
4876
  id?: number | undefined;
4871
4877
  }[] | undefined;
4872
4878
  required?: boolean | undefined;
@@ -4885,7 +4891,7 @@ export declare function init(config: AuthHeroConfig): {
4885
4891
  hint?: string | undefined;
4886
4892
  messages?: {
4887
4893
  text: string;
4888
- type: "error" | "success" | "info" | "warning";
4894
+ type: "success" | "error" | "info" | "warning";
4889
4895
  id?: number | undefined;
4890
4896
  }[] | undefined;
4891
4897
  required?: boolean | undefined;
@@ -4910,7 +4916,7 @@ export declare function init(config: AuthHeroConfig): {
4910
4916
  hint?: string | undefined;
4911
4917
  messages?: {
4912
4918
  text: string;
4913
- type: "error" | "success" | "info" | "warning";
4919
+ type: "success" | "error" | "info" | "warning";
4914
4920
  id?: number | undefined;
4915
4921
  }[] | undefined;
4916
4922
  required?: boolean | undefined;
@@ -4931,7 +4937,7 @@ export declare function init(config: AuthHeroConfig): {
4931
4937
  hint?: string | undefined;
4932
4938
  messages?: {
4933
4939
  text: string;
4934
- type: "error" | "success" | "info" | "warning";
4940
+ type: "success" | "error" | "info" | "warning";
4935
4941
  id?: number | undefined;
4936
4942
  }[] | undefined;
4937
4943
  required?: boolean | undefined;
@@ -4952,7 +4958,7 @@ export declare function init(config: AuthHeroConfig): {
4952
4958
  hint?: string | undefined;
4953
4959
  messages?: {
4954
4960
  text: string;
4955
- type: "error" | "success" | "info" | "warning";
4961
+ type: "success" | "error" | "info" | "warning";
4956
4962
  id?: number | undefined;
4957
4963
  }[] | undefined;
4958
4964
  required?: boolean | undefined;
@@ -5183,7 +5189,7 @@ export declare function init(config: AuthHeroConfig): {
5183
5189
  hint?: string | undefined;
5184
5190
  messages?: {
5185
5191
  text: string;
5186
- type: "error" | "success" | "info" | "warning";
5192
+ type: "success" | "error" | "info" | "warning";
5187
5193
  id?: number | undefined;
5188
5194
  }[] | undefined;
5189
5195
  required?: boolean | undefined;
@@ -5201,7 +5207,7 @@ export declare function init(config: AuthHeroConfig): {
5201
5207
  hint?: string | undefined;
5202
5208
  messages?: {
5203
5209
  text: string;
5204
- type: "error" | "success" | "info" | "warning";
5210
+ type: "success" | "error" | "info" | "warning";
5205
5211
  id?: number | undefined;
5206
5212
  }[] | undefined;
5207
5213
  required?: boolean | undefined;
@@ -5225,7 +5231,7 @@ export declare function init(config: AuthHeroConfig): {
5225
5231
  hint?: string | undefined;
5226
5232
  messages?: {
5227
5233
  text: string;
5228
- type: "error" | "success" | "info" | "warning";
5234
+ type: "success" | "error" | "info" | "warning";
5229
5235
  id?: number | undefined;
5230
5236
  }[] | undefined;
5231
5237
  required?: boolean | undefined;
@@ -5249,7 +5255,7 @@ export declare function init(config: AuthHeroConfig): {
5249
5255
  hint?: string | undefined;
5250
5256
  messages?: {
5251
5257
  text: string;
5252
- type: "error" | "success" | "info" | "warning";
5258
+ type: "success" | "error" | "info" | "warning";
5253
5259
  id?: number | undefined;
5254
5260
  }[] | undefined;
5255
5261
  required?: boolean | undefined;
@@ -5273,7 +5279,7 @@ export declare function init(config: AuthHeroConfig): {
5273
5279
  hint?: string | undefined;
5274
5280
  messages?: {
5275
5281
  text: string;
5276
- type: "error" | "success" | "info" | "warning";
5282
+ type: "success" | "error" | "info" | "warning";
5277
5283
  id?: number | undefined;
5278
5284
  }[] | undefined;
5279
5285
  required?: boolean | undefined;
@@ -5302,7 +5308,7 @@ export declare function init(config: AuthHeroConfig): {
5302
5308
  hint?: string | undefined;
5303
5309
  messages?: {
5304
5310
  text: string;
5305
- type: "error" | "success" | "info" | "warning";
5311
+ type: "success" | "error" | "info" | "warning";
5306
5312
  id?: number | undefined;
5307
5313
  }[] | undefined;
5308
5314
  required?: boolean | undefined;
@@ -5317,7 +5323,7 @@ export declare function init(config: AuthHeroConfig): {
5317
5323
  hint?: string | undefined;
5318
5324
  messages?: {
5319
5325
  text: string;
5320
- type: "error" | "success" | "info" | "warning";
5326
+ type: "success" | "error" | "info" | "warning";
5321
5327
  id?: number | undefined;
5322
5328
  }[] | undefined;
5323
5329
  required?: boolean | undefined;
@@ -5338,7 +5344,7 @@ export declare function init(config: AuthHeroConfig): {
5338
5344
  hint?: string | undefined;
5339
5345
  messages?: {
5340
5346
  text: string;
5341
- type: "error" | "success" | "info" | "warning";
5347
+ type: "success" | "error" | "info" | "warning";
5342
5348
  id?: number | undefined;
5343
5349
  }[] | undefined;
5344
5350
  required?: boolean | undefined;
@@ -5363,7 +5369,7 @@ export declare function init(config: AuthHeroConfig): {
5363
5369
  hint?: string | undefined;
5364
5370
  messages?: {
5365
5371
  text: string;
5366
- type: "error" | "success" | "info" | "warning";
5372
+ type: "success" | "error" | "info" | "warning";
5367
5373
  id?: number | undefined;
5368
5374
  }[] | undefined;
5369
5375
  required?: boolean | undefined;
@@ -5382,7 +5388,7 @@ export declare function init(config: AuthHeroConfig): {
5382
5388
  hint?: string | undefined;
5383
5389
  messages?: {
5384
5390
  text: string;
5385
- type: "error" | "success" | "info" | "warning";
5391
+ type: "success" | "error" | "info" | "warning";
5386
5392
  id?: number | undefined;
5387
5393
  }[] | undefined;
5388
5394
  required?: boolean | undefined;
@@ -5402,7 +5408,7 @@ export declare function init(config: AuthHeroConfig): {
5402
5408
  hint?: string | undefined;
5403
5409
  messages?: {
5404
5410
  text: string;
5405
- type: "error" | "success" | "info" | "warning";
5411
+ type: "success" | "error" | "info" | "warning";
5406
5412
  id?: number | undefined;
5407
5413
  }[] | undefined;
5408
5414
  required?: boolean | undefined;
@@ -5421,7 +5427,7 @@ export declare function init(config: AuthHeroConfig): {
5421
5427
  hint?: string | undefined;
5422
5428
  messages?: {
5423
5429
  text: string;
5424
- type: "error" | "success" | "info" | "warning";
5430
+ type: "success" | "error" | "info" | "warning";
5425
5431
  id?: number | undefined;
5426
5432
  }[] | undefined;
5427
5433
  required?: boolean | undefined;
@@ -5443,7 +5449,7 @@ export declare function init(config: AuthHeroConfig): {
5443
5449
  hint?: string | undefined;
5444
5450
  messages?: {
5445
5451
  text: string;
5446
- type: "error" | "success" | "info" | "warning";
5452
+ type: "success" | "error" | "info" | "warning";
5447
5453
  id?: number | undefined;
5448
5454
  }[] | undefined;
5449
5455
  required?: boolean | undefined;
@@ -5465,7 +5471,7 @@ export declare function init(config: AuthHeroConfig): {
5465
5471
  hint?: string | undefined;
5466
5472
  messages?: {
5467
5473
  text: string;
5468
- type: "error" | "success" | "info" | "warning";
5474
+ type: "success" | "error" | "info" | "warning";
5469
5475
  id?: number | undefined;
5470
5476
  }[] | undefined;
5471
5477
  required?: boolean | undefined;
@@ -5484,7 +5490,7 @@ export declare function init(config: AuthHeroConfig): {
5484
5490
  hint?: string | undefined;
5485
5491
  messages?: {
5486
5492
  text: string;
5487
- type: "error" | "success" | "info" | "warning";
5493
+ type: "success" | "error" | "info" | "warning";
5488
5494
  id?: number | undefined;
5489
5495
  }[] | undefined;
5490
5496
  required?: boolean | undefined;
@@ -5509,7 +5515,7 @@ export declare function init(config: AuthHeroConfig): {
5509
5515
  hint?: string | undefined;
5510
5516
  messages?: {
5511
5517
  text: string;
5512
- type: "error" | "success" | "info" | "warning";
5518
+ type: "success" | "error" | "info" | "warning";
5513
5519
  id?: number | undefined;
5514
5520
  }[] | undefined;
5515
5521
  required?: boolean | undefined;
@@ -5530,7 +5536,7 @@ export declare function init(config: AuthHeroConfig): {
5530
5536
  hint?: string | undefined;
5531
5537
  messages?: {
5532
5538
  text: string;
5533
- type: "error" | "success" | "info" | "warning";
5539
+ type: "success" | "error" | "info" | "warning";
5534
5540
  id?: number | undefined;
5535
5541
  }[] | undefined;
5536
5542
  required?: boolean | undefined;
@@ -5551,7 +5557,7 @@ export declare function init(config: AuthHeroConfig): {
5551
5557
  hint?: string | undefined;
5552
5558
  messages?: {
5553
5559
  text: string;
5554
- type: "error" | "success" | "info" | "warning";
5560
+ type: "success" | "error" | "info" | "warning";
5555
5561
  id?: number | undefined;
5556
5562
  }[] | undefined;
5557
5563
  required?: boolean | undefined;
@@ -5784,7 +5790,7 @@ export declare function init(config: AuthHeroConfig): {
5784
5790
  hint?: string | undefined;
5785
5791
  messages?: {
5786
5792
  text: string;
5787
- type: "error" | "success" | "info" | "warning";
5793
+ type: "success" | "error" | "info" | "warning";
5788
5794
  id?: number | undefined;
5789
5795
  }[] | undefined;
5790
5796
  required?: boolean | undefined;
@@ -5802,7 +5808,7 @@ export declare function init(config: AuthHeroConfig): {
5802
5808
  hint?: string | undefined;
5803
5809
  messages?: {
5804
5810
  text: string;
5805
- type: "error" | "success" | "info" | "warning";
5811
+ type: "success" | "error" | "info" | "warning";
5806
5812
  id?: number | undefined;
5807
5813
  }[] | undefined;
5808
5814
  required?: boolean | undefined;
@@ -5826,7 +5832,7 @@ export declare function init(config: AuthHeroConfig): {
5826
5832
  hint?: string | undefined;
5827
5833
  messages?: {
5828
5834
  text: string;
5829
- type: "error" | "success" | "info" | "warning";
5835
+ type: "success" | "error" | "info" | "warning";
5830
5836
  id?: number | undefined;
5831
5837
  }[] | undefined;
5832
5838
  required?: boolean | undefined;
@@ -5850,7 +5856,7 @@ export declare function init(config: AuthHeroConfig): {
5850
5856
  hint?: string | undefined;
5851
5857
  messages?: {
5852
5858
  text: string;
5853
- type: "error" | "success" | "info" | "warning";
5859
+ type: "success" | "error" | "info" | "warning";
5854
5860
  id?: number | undefined;
5855
5861
  }[] | undefined;
5856
5862
  required?: boolean | undefined;
@@ -5874,7 +5880,7 @@ export declare function init(config: AuthHeroConfig): {
5874
5880
  hint?: string | undefined;
5875
5881
  messages?: {
5876
5882
  text: string;
5877
- type: "error" | "success" | "info" | "warning";
5883
+ type: "success" | "error" | "info" | "warning";
5878
5884
  id?: number | undefined;
5879
5885
  }[] | undefined;
5880
5886
  required?: boolean | undefined;
@@ -5899,7 +5905,7 @@ export declare function init(config: AuthHeroConfig): {
5899
5905
  hint?: string | undefined;
5900
5906
  messages?: {
5901
5907
  text: string;
5902
- type: "error" | "success" | "info" | "warning";
5908
+ type: "success" | "error" | "info" | "warning";
5903
5909
  id?: number | undefined;
5904
5910
  }[] | undefined;
5905
5911
  required?: boolean | undefined;
@@ -5914,7 +5920,7 @@ export declare function init(config: AuthHeroConfig): {
5914
5920
  hint?: string | undefined;
5915
5921
  messages?: {
5916
5922
  text: string;
5917
- type: "error" | "success" | "info" | "warning";
5923
+ type: "success" | "error" | "info" | "warning";
5918
5924
  id?: number | undefined;
5919
5925
  }[] | undefined;
5920
5926
  required?: boolean | undefined;
@@ -5935,7 +5941,7 @@ export declare function init(config: AuthHeroConfig): {
5935
5941
  hint?: string | undefined;
5936
5942
  messages?: {
5937
5943
  text: string;
5938
- type: "error" | "success" | "info" | "warning";
5944
+ type: "success" | "error" | "info" | "warning";
5939
5945
  id?: number | undefined;
5940
5946
  }[] | undefined;
5941
5947
  required?: boolean | undefined;
@@ -5960,7 +5966,7 @@ export declare function init(config: AuthHeroConfig): {
5960
5966
  hint?: string | undefined;
5961
5967
  messages?: {
5962
5968
  text: string;
5963
- type: "error" | "success" | "info" | "warning";
5969
+ type: "success" | "error" | "info" | "warning";
5964
5970
  id?: number | undefined;
5965
5971
  }[] | undefined;
5966
5972
  required?: boolean | undefined;
@@ -5979,7 +5985,7 @@ export declare function init(config: AuthHeroConfig): {
5979
5985
  hint?: string | undefined;
5980
5986
  messages?: {
5981
5987
  text: string;
5982
- type: "error" | "success" | "info" | "warning";
5988
+ type: "success" | "error" | "info" | "warning";
5983
5989
  id?: number | undefined;
5984
5990
  }[] | undefined;
5985
5991
  required?: boolean | undefined;
@@ -5999,7 +6005,7 @@ export declare function init(config: AuthHeroConfig): {
5999
6005
  hint?: string | undefined;
6000
6006
  messages?: {
6001
6007
  text: string;
6002
- type: "error" | "success" | "info" | "warning";
6008
+ type: "success" | "error" | "info" | "warning";
6003
6009
  id?: number | undefined;
6004
6010
  }[] | undefined;
6005
6011
  required?: boolean | undefined;
@@ -6018,7 +6024,7 @@ export declare function init(config: AuthHeroConfig): {
6018
6024
  hint?: string | undefined;
6019
6025
  messages?: {
6020
6026
  text: string;
6021
- type: "error" | "success" | "info" | "warning";
6027
+ type: "success" | "error" | "info" | "warning";
6022
6028
  id?: number | undefined;
6023
6029
  }[] | undefined;
6024
6030
  required?: boolean | undefined;
@@ -6040,7 +6046,7 @@ export declare function init(config: AuthHeroConfig): {
6040
6046
  hint?: string | undefined;
6041
6047
  messages?: {
6042
6048
  text: string;
6043
- type: "error" | "success" | "info" | "warning";
6049
+ type: "success" | "error" | "info" | "warning";
6044
6050
  id?: number | undefined;
6045
6051
  }[] | undefined;
6046
6052
  required?: boolean | undefined;
@@ -6062,7 +6068,7 @@ export declare function init(config: AuthHeroConfig): {
6062
6068
  hint?: string | undefined;
6063
6069
  messages?: {
6064
6070
  text: string;
6065
- type: "error" | "success" | "info" | "warning";
6071
+ type: "success" | "error" | "info" | "warning";
6066
6072
  id?: number | undefined;
6067
6073
  }[] | undefined;
6068
6074
  required?: boolean | undefined;
@@ -6081,7 +6087,7 @@ export declare function init(config: AuthHeroConfig): {
6081
6087
  hint?: string | undefined;
6082
6088
  messages?: {
6083
6089
  text: string;
6084
- type: "error" | "success" | "info" | "warning";
6090
+ type: "success" | "error" | "info" | "warning";
6085
6091
  id?: number | undefined;
6086
6092
  }[] | undefined;
6087
6093
  required?: boolean | undefined;
@@ -6106,7 +6112,7 @@ export declare function init(config: AuthHeroConfig): {
6106
6112
  hint?: string | undefined;
6107
6113
  messages?: {
6108
6114
  text: string;
6109
- type: "error" | "success" | "info" | "warning";
6115
+ type: "success" | "error" | "info" | "warning";
6110
6116
  id?: number | undefined;
6111
6117
  }[] | undefined;
6112
6118
  required?: boolean | undefined;
@@ -6127,7 +6133,7 @@ export declare function init(config: AuthHeroConfig): {
6127
6133
  hint?: string | undefined;
6128
6134
  messages?: {
6129
6135
  text: string;
6130
- type: "error" | "success" | "info" | "warning";
6136
+ type: "success" | "error" | "info" | "warning";
6131
6137
  id?: number | undefined;
6132
6138
  }[] | undefined;
6133
6139
  required?: boolean | undefined;
@@ -6148,7 +6154,7 @@ export declare function init(config: AuthHeroConfig): {
6148
6154
  hint?: string | undefined;
6149
6155
  messages?: {
6150
6156
  text: string;
6151
- type: "error" | "success" | "info" | "warning";
6157
+ type: "success" | "error" | "info" | "warning";
6152
6158
  id?: number | undefined;
6153
6159
  }[] | undefined;
6154
6160
  required?: boolean | undefined;
@@ -6379,7 +6385,7 @@ export declare function init(config: AuthHeroConfig): {
6379
6385
  hint?: string | undefined;
6380
6386
  messages?: {
6381
6387
  text: string;
6382
- type: "error" | "success" | "info" | "warning";
6388
+ type: "success" | "error" | "info" | "warning";
6383
6389
  id?: number | undefined;
6384
6390
  }[] | undefined;
6385
6391
  required?: boolean | undefined;
@@ -6397,7 +6403,7 @@ export declare function init(config: AuthHeroConfig): {
6397
6403
  hint?: string | undefined;
6398
6404
  messages?: {
6399
6405
  text: string;
6400
- type: "error" | "success" | "info" | "warning";
6406
+ type: "success" | "error" | "info" | "warning";
6401
6407
  id?: number | undefined;
6402
6408
  }[] | undefined;
6403
6409
  required?: boolean | undefined;
@@ -6421,7 +6427,7 @@ export declare function init(config: AuthHeroConfig): {
6421
6427
  hint?: string | undefined;
6422
6428
  messages?: {
6423
6429
  text: string;
6424
- type: "error" | "success" | "info" | "warning";
6430
+ type: "success" | "error" | "info" | "warning";
6425
6431
  id?: number | undefined;
6426
6432
  }[] | undefined;
6427
6433
  required?: boolean | undefined;
@@ -6445,7 +6451,7 @@ export declare function init(config: AuthHeroConfig): {
6445
6451
  hint?: string | undefined;
6446
6452
  messages?: {
6447
6453
  text: string;
6448
- type: "error" | "success" | "info" | "warning";
6454
+ type: "success" | "error" | "info" | "warning";
6449
6455
  id?: number | undefined;
6450
6456
  }[] | undefined;
6451
6457
  required?: boolean | undefined;
@@ -6469,7 +6475,7 @@ export declare function init(config: AuthHeroConfig): {
6469
6475
  hint?: string | undefined;
6470
6476
  messages?: {
6471
6477
  text: string;
6472
- type: "error" | "success" | "info" | "warning";
6478
+ type: "success" | "error" | "info" | "warning";
6473
6479
  id?: number | undefined;
6474
6480
  }[] | undefined;
6475
6481
  required?: boolean | undefined;
@@ -6498,7 +6504,7 @@ export declare function init(config: AuthHeroConfig): {
6498
6504
  hint?: string | undefined;
6499
6505
  messages?: {
6500
6506
  text: string;
6501
- type: "error" | "success" | "info" | "warning";
6507
+ type: "success" | "error" | "info" | "warning";
6502
6508
  id?: number | undefined;
6503
6509
  }[] | undefined;
6504
6510
  required?: boolean | undefined;
@@ -6513,7 +6519,7 @@ export declare function init(config: AuthHeroConfig): {
6513
6519
  hint?: string | undefined;
6514
6520
  messages?: {
6515
6521
  text: string;
6516
- type: "error" | "success" | "info" | "warning";
6522
+ type: "success" | "error" | "info" | "warning";
6517
6523
  id?: number | undefined;
6518
6524
  }[] | undefined;
6519
6525
  required?: boolean | undefined;
@@ -6534,7 +6540,7 @@ export declare function init(config: AuthHeroConfig): {
6534
6540
  hint?: string | undefined;
6535
6541
  messages?: {
6536
6542
  text: string;
6537
- type: "error" | "success" | "info" | "warning";
6543
+ type: "success" | "error" | "info" | "warning";
6538
6544
  id?: number | undefined;
6539
6545
  }[] | undefined;
6540
6546
  required?: boolean | undefined;
@@ -6559,7 +6565,7 @@ export declare function init(config: AuthHeroConfig): {
6559
6565
  hint?: string | undefined;
6560
6566
  messages?: {
6561
6567
  text: string;
6562
- type: "error" | "success" | "info" | "warning";
6568
+ type: "success" | "error" | "info" | "warning";
6563
6569
  id?: number | undefined;
6564
6570
  }[] | undefined;
6565
6571
  required?: boolean | undefined;
@@ -6578,7 +6584,7 @@ export declare function init(config: AuthHeroConfig): {
6578
6584
  hint?: string | undefined;
6579
6585
  messages?: {
6580
6586
  text: string;
6581
- type: "error" | "success" | "info" | "warning";
6587
+ type: "success" | "error" | "info" | "warning";
6582
6588
  id?: number | undefined;
6583
6589
  }[] | undefined;
6584
6590
  required?: boolean | undefined;
@@ -6598,7 +6604,7 @@ export declare function init(config: AuthHeroConfig): {
6598
6604
  hint?: string | undefined;
6599
6605
  messages?: {
6600
6606
  text: string;
6601
- type: "error" | "success" | "info" | "warning";
6607
+ type: "success" | "error" | "info" | "warning";
6602
6608
  id?: number | undefined;
6603
6609
  }[] | undefined;
6604
6610
  required?: boolean | undefined;
@@ -6617,7 +6623,7 @@ export declare function init(config: AuthHeroConfig): {
6617
6623
  hint?: string | undefined;
6618
6624
  messages?: {
6619
6625
  text: string;
6620
- type: "error" | "success" | "info" | "warning";
6626
+ type: "success" | "error" | "info" | "warning";
6621
6627
  id?: number | undefined;
6622
6628
  }[] | undefined;
6623
6629
  required?: boolean | undefined;
@@ -6639,7 +6645,7 @@ export declare function init(config: AuthHeroConfig): {
6639
6645
  hint?: string | undefined;
6640
6646
  messages?: {
6641
6647
  text: string;
6642
- type: "error" | "success" | "info" | "warning";
6648
+ type: "success" | "error" | "info" | "warning";
6643
6649
  id?: number | undefined;
6644
6650
  }[] | undefined;
6645
6651
  required?: boolean | undefined;
@@ -6661,7 +6667,7 @@ export declare function init(config: AuthHeroConfig): {
6661
6667
  hint?: string | undefined;
6662
6668
  messages?: {
6663
6669
  text: string;
6664
- type: "error" | "success" | "info" | "warning";
6670
+ type: "success" | "error" | "info" | "warning";
6665
6671
  id?: number | undefined;
6666
6672
  }[] | undefined;
6667
6673
  required?: boolean | undefined;
@@ -6680,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
6680
6686
  hint?: string | undefined;
6681
6687
  messages?: {
6682
6688
  text: string;
6683
- type: "error" | "success" | "info" | "warning";
6689
+ type: "success" | "error" | "info" | "warning";
6684
6690
  id?: number | undefined;
6685
6691
  }[] | undefined;
6686
6692
  required?: boolean | undefined;
@@ -6705,7 +6711,7 @@ export declare function init(config: AuthHeroConfig): {
6705
6711
  hint?: string | undefined;
6706
6712
  messages?: {
6707
6713
  text: string;
6708
- type: "error" | "success" | "info" | "warning";
6714
+ type: "success" | "error" | "info" | "warning";
6709
6715
  id?: number | undefined;
6710
6716
  }[] | undefined;
6711
6717
  required?: boolean | undefined;
@@ -6726,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
6726
6732
  hint?: string | undefined;
6727
6733
  messages?: {
6728
6734
  text: string;
6729
- type: "error" | "success" | "info" | "warning";
6735
+ type: "success" | "error" | "info" | "warning";
6730
6736
  id?: number | undefined;
6731
6737
  }[] | undefined;
6732
6738
  required?: boolean | undefined;
@@ -6747,7 +6753,7 @@ export declare function init(config: AuthHeroConfig): {
6747
6753
  hint?: string | undefined;
6748
6754
  messages?: {
6749
6755
  text: string;
6750
- type: "error" | "success" | "info" | "warning";
6756
+ type: "success" | "error" | "info" | "warning";
6751
6757
  id?: number | undefined;
6752
6758
  }[] | undefined;
6753
6759
  required?: boolean | undefined;
@@ -6977,7 +6983,7 @@ export declare function init(config: AuthHeroConfig): {
6977
6983
  };
6978
6984
  };
6979
6985
  output: {
6980
- prompt: "mfa" | "organizations" | "signup" | "status" | "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";
6986
+ prompt: "status" | "signup" | "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";
6981
6987
  language: string;
6982
6988
  }[];
6983
6989
  outputFormat: "json";
@@ -7015,7 +7021,7 @@ export declare function init(config: AuthHeroConfig): {
7015
7021
  $get: {
7016
7022
  input: {
7017
7023
  param: {
7018
- prompt: "mfa" | "organizations" | "signup" | "status" | "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";
7024
+ prompt: "status" | "signup" | "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";
7019
7025
  language: string;
7020
7026
  };
7021
7027
  } & {
@@ -7037,7 +7043,7 @@ export declare function init(config: AuthHeroConfig): {
7037
7043
  $put: {
7038
7044
  input: {
7039
7045
  param: {
7040
- prompt: "mfa" | "organizations" | "signup" | "status" | "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";
7046
+ prompt: "status" | "signup" | "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";
7041
7047
  language: string;
7042
7048
  };
7043
7049
  } & {
@@ -7061,7 +7067,7 @@ export declare function init(config: AuthHeroConfig): {
7061
7067
  $delete: {
7062
7068
  input: {
7063
7069
  param: {
7064
- prompt: "mfa" | "organizations" | "signup" | "status" | "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";
7070
+ prompt: "status" | "signup" | "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";
7065
7071
  language: string;
7066
7072
  };
7067
7073
  } & {
@@ -7924,7 +7930,7 @@ export declare function init(config: AuthHeroConfig): {
7924
7930
  };
7925
7931
  } | {
7926
7932
  mode: "inline";
7927
- status: "error" | "success";
7933
+ status: "success" | "error";
7928
7934
  connection_id: string;
7929
7935
  connection_name: string;
7930
7936
  strategy: string;
@@ -8564,7 +8570,7 @@ export declare function init(config: AuthHeroConfig): {
8564
8570
  log_type: string;
8565
8571
  category: "user_action" | "admin_action" | "system" | "api";
8566
8572
  actor: {
8567
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8573
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8568
8574
  id?: string | undefined;
8569
8575
  email?: string | undefined;
8570
8576
  org_id?: string | undefined;
@@ -9214,7 +9220,7 @@ export declare function init(config: AuthHeroConfig): {
9214
9220
  };
9215
9221
  };
9216
9222
  output: {
9217
- type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
9223
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9218
9224
  date: string;
9219
9225
  isMobile: boolean;
9220
9226
  log_id: string;
@@ -9253,7 +9259,7 @@ export declare function init(config: AuthHeroConfig): {
9253
9259
  limit: number;
9254
9260
  length: number;
9255
9261
  logs: {
9256
- type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
9262
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9257
9263
  date: string;
9258
9264
  isMobile: boolean;
9259
9265
  log_id: string;
@@ -9292,7 +9298,7 @@ export declare function init(config: AuthHeroConfig): {
9292
9298
  next?: string | undefined;
9293
9299
  } | {
9294
9300
  logs: {
9295
- type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
9301
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9296
9302
  date: string;
9297
9303
  isMobile: boolean;
9298
9304
  log_id: string;
@@ -9346,7 +9352,7 @@ export declare function init(config: AuthHeroConfig): {
9346
9352
  };
9347
9353
  };
9348
9354
  output: {
9349
- type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
9355
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9350
9356
  date: string;
9351
9357
  isMobile: boolean;
9352
9358
  log_id: string;
@@ -9757,7 +9763,7 @@ export declare function init(config: AuthHeroConfig): {
9757
9763
  addons?: {
9758
9764
  [x: string]: any;
9759
9765
  } | undefined;
9760
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9766
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9761
9767
  client_metadata?: {
9762
9768
  [x: string]: string;
9763
9769
  } | undefined;
@@ -9859,7 +9865,7 @@ export declare function init(config: AuthHeroConfig): {
9859
9865
  addons?: {
9860
9866
  [x: string]: any;
9861
9867
  } | undefined;
9862
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9868
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9863
9869
  client_metadata?: {
9864
9870
  [x: string]: string;
9865
9871
  } | undefined;
@@ -9961,7 +9967,7 @@ export declare function init(config: AuthHeroConfig): {
9961
9967
  addons?: {
9962
9968
  [x: string]: any;
9963
9969
  } | undefined;
9964
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9970
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9965
9971
  client_metadata?: {
9966
9972
  [x: string]: string;
9967
9973
  } | undefined;
@@ -10078,7 +10084,7 @@ export declare function init(config: AuthHeroConfig): {
10078
10084
  addons?: {
10079
10085
  [x: string]: any;
10080
10086
  } | undefined;
10081
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10087
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10082
10088
  client_metadata?: {
10083
10089
  [x: string]: string;
10084
10090
  } | undefined;
@@ -10196,7 +10202,7 @@ export declare function init(config: AuthHeroConfig): {
10196
10202
  custom_login_page_preview?: string | undefined;
10197
10203
  form_template?: string | undefined;
10198
10204
  addons?: Record<string, any> | undefined;
10199
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10205
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10200
10206
  client_metadata?: Record<string, string> | undefined;
10201
10207
  hide_sign_up_disabled_error?: boolean | undefined;
10202
10208
  mobile?: Record<string, any> | undefined;
@@ -10282,7 +10288,7 @@ export declare function init(config: AuthHeroConfig): {
10282
10288
  addons?: {
10283
10289
  [x: string]: any;
10284
10290
  } | undefined;
10285
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10291
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10286
10292
  client_metadata?: {
10287
10293
  [x: string]: string;
10288
10294
  } | undefined;
@@ -10379,7 +10385,7 @@ export declare function init(config: AuthHeroConfig): {
10379
10385
  custom_login_page_preview?: string | undefined;
10380
10386
  form_template?: string | undefined;
10381
10387
  addons?: Record<string, any> | undefined;
10382
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10388
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10383
10389
  client_metadata?: Record<string, string> | undefined;
10384
10390
  hide_sign_up_disabled_error?: boolean | undefined;
10385
10391
  mobile?: Record<string, any> | undefined;
@@ -10465,7 +10471,7 @@ export declare function init(config: AuthHeroConfig): {
10465
10471
  addons?: {
10466
10472
  [x: string]: any;
10467
10473
  } | undefined;
10468
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10474
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10469
10475
  client_metadata?: {
10470
10476
  [x: string]: string;
10471
10477
  } | undefined;
@@ -11801,7 +11807,7 @@ export declare function init(config: AuthHeroConfig): {
11801
11807
  };
11802
11808
  };
11803
11809
  output: {
11804
- type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
11810
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11805
11811
  date: string;
11806
11812
  isMobile: boolean;
11807
11813
  log_id: string;
@@ -11840,7 +11846,7 @@ export declare function init(config: AuthHeroConfig): {
11840
11846
  limit: number;
11841
11847
  length: number;
11842
11848
  logs: {
11843
- type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
11849
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11844
11850
  date: string;
11845
11851
  isMobile: boolean;
11846
11852
  log_id: string;
@@ -12684,7 +12690,7 @@ export declare function init(config: AuthHeroConfig): {
12684
12690
  type: "auth0_managed_certs" | "self_managed_certs";
12685
12691
  custom_domain_id: string;
12686
12692
  primary: boolean;
12687
- status: "pending" | "ready" | "disabled" | "pending_verification";
12693
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12688
12694
  verification_method?: "txt" | undefined;
12689
12695
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12690
12696
  domain_metadata?: {
@@ -12725,7 +12731,7 @@ export declare function init(config: AuthHeroConfig): {
12725
12731
  type: "auth0_managed_certs" | "self_managed_certs";
12726
12732
  custom_domain_id: string;
12727
12733
  primary: boolean;
12728
- status: "pending" | "ready" | "disabled" | "pending_verification";
12734
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12729
12735
  verification_method?: "txt" | undefined;
12730
12736
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12731
12737
  domain_metadata?: {
@@ -12789,7 +12795,7 @@ export declare function init(config: AuthHeroConfig): {
12789
12795
  type: "auth0_managed_certs" | "self_managed_certs";
12790
12796
  custom_domain_id: string;
12791
12797
  primary: boolean;
12792
- status: "pending" | "ready" | "disabled" | "pending_verification";
12798
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12793
12799
  verification_method?: "txt" | undefined;
12794
12800
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12795
12801
  domain_metadata?: {
@@ -12836,7 +12842,7 @@ export declare function init(config: AuthHeroConfig): {
12836
12842
  type: "auth0_managed_certs" | "self_managed_certs";
12837
12843
  custom_domain_id: string;
12838
12844
  primary: boolean;
12839
- status: "pending" | "ready" | "disabled" | "pending_verification";
12845
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12840
12846
  verification_method?: "txt" | undefined;
12841
12847
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12842
12848
  domain_metadata?: {
@@ -12882,7 +12888,7 @@ export declare function init(config: AuthHeroConfig): {
12882
12888
  type: "auth0_managed_certs" | "self_managed_certs";
12883
12889
  custom_domain_id: string;
12884
12890
  primary: boolean;
12885
- status: "pending" | "ready" | "disabled" | "pending_verification";
12891
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12886
12892
  verification_method?: "txt" | undefined;
12887
12893
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12888
12894
  domain_metadata?: {
@@ -12923,7 +12929,7 @@ export declare function init(config: AuthHeroConfig): {
12923
12929
  type: "auth0_managed_certs" | "self_managed_certs";
12924
12930
  custom_domain_id: string;
12925
12931
  primary: boolean;
12926
- status: "pending" | "ready" | "disabled" | "pending_verification";
12932
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12927
12933
  verification_method?: "txt" | undefined;
12928
12934
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12929
12935
  domain_metadata?: {
@@ -13353,7 +13359,7 @@ export declare function init(config: AuthHeroConfig): {
13353
13359
  } & {
13354
13360
  json: {
13355
13361
  body?: string | undefined;
13356
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
13362
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
13357
13363
  branding?: {
13358
13364
  colors?: {
13359
13365
  primary: string;
@@ -14624,7 +14630,7 @@ export declare function init(config: AuthHeroConfig): {
14624
14630
  scope?: string | undefined;
14625
14631
  grant_types?: string[] | undefined;
14626
14632
  response_types?: string[] | undefined;
14627
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14633
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14628
14634
  jwks_uri?: string | undefined;
14629
14635
  jwks?: Record<string, unknown> | undefined;
14630
14636
  software_id?: string | undefined;
@@ -14713,7 +14719,7 @@ export declare function init(config: AuthHeroConfig): {
14713
14719
  scope?: string | undefined;
14714
14720
  grant_types?: string[] | undefined;
14715
14721
  response_types?: string[] | undefined;
14716
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14722
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14717
14723
  jwks_uri?: string | undefined;
14718
14724
  jwks?: Record<string, unknown> | undefined;
14719
14725
  software_id?: string | undefined;
@@ -15059,20 +15065,20 @@ export declare function init(config: AuthHeroConfig): {
15059
15065
  email: string;
15060
15066
  send: "code" | "link";
15061
15067
  authParams: {
15062
- audience?: string | undefined;
15068
+ username?: string | undefined;
15063
15069
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15064
15070
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15065
15071
  scope?: string | undefined;
15066
- username?: string | undefined;
15072
+ audience?: string | undefined;
15067
15073
  state?: string | undefined;
15068
- nonce?: string | undefined;
15069
15074
  prompt?: string | undefined;
15070
- act_as?: string | undefined;
15071
- redirect_uri?: string | undefined;
15072
15075
  organization?: string | undefined;
15076
+ ui_locales?: string | undefined;
15077
+ redirect_uri?: string | undefined;
15078
+ act_as?: string | undefined;
15079
+ nonce?: string | undefined;
15073
15080
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15074
15081
  code_challenge?: string | undefined;
15075
- ui_locales?: string | undefined;
15076
15082
  max_age?: number | undefined;
15077
15083
  acr_values?: string | undefined;
15078
15084
  claims?: {
@@ -15095,20 +15101,20 @@ export declare function init(config: AuthHeroConfig): {
15095
15101
  phone_number: string;
15096
15102
  send: "code" | "link";
15097
15103
  authParams: {
15098
- audience?: string | undefined;
15104
+ username?: string | undefined;
15099
15105
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15100
15106
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15101
15107
  scope?: string | undefined;
15102
- username?: string | undefined;
15108
+ audience?: string | undefined;
15103
15109
  state?: string | undefined;
15104
- nonce?: string | undefined;
15105
15110
  prompt?: string | undefined;
15106
- act_as?: string | undefined;
15107
- redirect_uri?: string | undefined;
15108
15111
  organization?: string | undefined;
15112
+ ui_locales?: string | undefined;
15113
+ redirect_uri?: string | undefined;
15114
+ act_as?: string | undefined;
15115
+ nonce?: string | undefined;
15109
15116
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15110
15117
  code_challenge?: string | undefined;
15111
- ui_locales?: string | undefined;
15112
15118
  max_age?: number | undefined;
15113
15119
  acr_values?: string | undefined;
15114
15120
  claims?: {
@@ -15239,14 +15245,14 @@ export declare function init(config: AuthHeroConfig): {
15239
15245
  input: {
15240
15246
  form: {
15241
15247
  token: string;
15242
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15248
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15243
15249
  client_id?: string | undefined;
15244
15250
  client_secret?: string | undefined;
15245
15251
  };
15246
15252
  } & {
15247
15253
  json: {
15248
15254
  token: string;
15249
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15255
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15250
15256
  client_id?: string | undefined;
15251
15257
  client_secret?: string | undefined;
15252
15258
  };
@@ -15258,14 +15264,14 @@ export declare function init(config: AuthHeroConfig): {
15258
15264
  input: {
15259
15265
  form: {
15260
15266
  token: string;
15261
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15267
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15262
15268
  client_id?: string | undefined;
15263
15269
  client_secret?: string | undefined;
15264
15270
  };
15265
15271
  } & {
15266
15272
  json: {
15267
15273
  token: string;
15268
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15274
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15269
15275
  client_id?: string | undefined;
15270
15276
  client_secret?: string | undefined;
15271
15277
  };
@@ -15275,19 +15281,19 @@ export declare function init(config: AuthHeroConfig): {
15275
15281
  error_description?: string | undefined;
15276
15282
  };
15277
15283
  outputFormat: "json";
15278
- status: 400;
15284
+ status: 401;
15279
15285
  } | {
15280
15286
  input: {
15281
15287
  form: {
15282
15288
  token: string;
15283
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15289
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15284
15290
  client_id?: string | undefined;
15285
15291
  client_secret?: string | undefined;
15286
15292
  };
15287
15293
  } & {
15288
15294
  json: {
15289
15295
  token: string;
15290
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15296
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15291
15297
  client_id?: string | undefined;
15292
15298
  client_secret?: string | undefined;
15293
15299
  };
@@ -15297,7 +15303,7 @@ export declare function init(config: AuthHeroConfig): {
15297
15303
  error_description?: string | undefined;
15298
15304
  };
15299
15305
  outputFormat: "json";
15300
- status: 401;
15306
+ status: 400;
15301
15307
  };
15302
15308
  };
15303
15309
  }, "/oauth/revoke"> & import("hono/types").MergeSchemaPath<{
@@ -15337,7 +15343,7 @@ export declare function init(config: AuthHeroConfig): {
15337
15343
  client_id: string;
15338
15344
  username: string;
15339
15345
  otp: string;
15340
- realm: "sms" | "email";
15346
+ realm: "email" | "sms";
15341
15347
  } | {
15342
15348
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15343
15349
  subject_token: string;
@@ -15384,7 +15390,7 @@ export declare function init(config: AuthHeroConfig): {
15384
15390
  client_id: string;
15385
15391
  username: string;
15386
15392
  otp: string;
15387
- realm: "sms" | "email";
15393
+ realm: "email" | "sms";
15388
15394
  } | {
15389
15395
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15390
15396
  subject_token: string;
@@ -15436,7 +15442,7 @@ export declare function init(config: AuthHeroConfig): {
15436
15442
  client_id: string;
15437
15443
  username: string;
15438
15444
  otp: string;
15439
- realm: "sms" | "email";
15445
+ realm: "email" | "sms";
15440
15446
  } | {
15441
15447
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15442
15448
  subject_token: string;
@@ -15483,7 +15489,7 @@ export declare function init(config: AuthHeroConfig): {
15483
15489
  client_id: string;
15484
15490
  username: string;
15485
15491
  otp: string;
15486
- realm: "sms" | "email";
15492
+ realm: "email" | "sms";
15487
15493
  } | {
15488
15494
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15489
15495
  subject_token: string;
@@ -15498,16 +15504,11 @@ export declare function init(config: AuthHeroConfig): {
15498
15504
  };
15499
15505
  };
15500
15506
  output: {
15501
- access_token: string;
15502
- token_type: string;
15503
- expires_in: number;
15504
- id_token?: string | undefined;
15505
- scope?: string | undefined;
15506
- state?: string | undefined;
15507
- refresh_token?: string | undefined;
15507
+ error: string;
15508
+ error_description?: string | undefined;
15508
15509
  };
15509
15510
  outputFormat: "json";
15510
- status: 200;
15511
+ status: 401;
15511
15512
  } | {
15512
15513
  input: {
15513
15514
  form: {
@@ -15543,7 +15544,7 @@ export declare function init(config: AuthHeroConfig): {
15543
15544
  client_id: string;
15544
15545
  username: string;
15545
15546
  otp: string;
15546
- realm: "sms" | "email";
15547
+ realm: "email" | "sms";
15547
15548
  } | {
15548
15549
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15549
15550
  subject_token: string;
@@ -15590,7 +15591,7 @@ export declare function init(config: AuthHeroConfig): {
15590
15591
  client_id: string;
15591
15592
  username: string;
15592
15593
  otp: string;
15593
- realm: "sms" | "email";
15594
+ realm: "email" | "sms";
15594
15595
  } | {
15595
15596
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15596
15597
  subject_token: string;
@@ -15605,11 +15606,16 @@ export declare function init(config: AuthHeroConfig): {
15605
15606
  };
15606
15607
  };
15607
15608
  output: {
15608
- error: string;
15609
- error_description?: string | undefined;
15609
+ access_token: string;
15610
+ token_type: string;
15611
+ expires_in: number;
15612
+ id_token?: string | undefined;
15613
+ scope?: string | undefined;
15614
+ state?: string | undefined;
15615
+ refresh_token?: string | undefined;
15610
15616
  };
15611
15617
  outputFormat: "json";
15612
- status: 400;
15618
+ status: 200;
15613
15619
  } | {
15614
15620
  input: {
15615
15621
  form: {
@@ -15645,7 +15651,7 @@ export declare function init(config: AuthHeroConfig): {
15645
15651
  client_id: string;
15646
15652
  username: string;
15647
15653
  otp: string;
15648
- realm: "sms" | "email";
15654
+ realm: "email" | "sms";
15649
15655
  } | {
15650
15656
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15651
15657
  subject_token: string;
@@ -15692,7 +15698,7 @@ export declare function init(config: AuthHeroConfig): {
15692
15698
  client_id: string;
15693
15699
  username: string;
15694
15700
  otp: string;
15695
- realm: "sms" | "email";
15701
+ realm: "email" | "sms";
15696
15702
  } | {
15697
15703
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15698
15704
  subject_token: string;
@@ -15711,7 +15717,7 @@ export declare function init(config: AuthHeroConfig): {
15711
15717
  error_description?: string | undefined;
15712
15718
  };
15713
15719
  outputFormat: "json";
15714
- status: 401;
15720
+ status: 400;
15715
15721
  } | {
15716
15722
  input: {
15717
15723
  form: {
@@ -15747,7 +15753,7 @@ export declare function init(config: AuthHeroConfig): {
15747
15753
  client_id: string;
15748
15754
  username: string;
15749
15755
  otp: string;
15750
- realm: "sms" | "email";
15756
+ realm: "email" | "sms";
15751
15757
  } | {
15752
15758
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15753
15759
  subject_token: string;
@@ -15794,7 +15800,7 @@ export declare function init(config: AuthHeroConfig): {
15794
15800
  client_id: string;
15795
15801
  username: string;
15796
15802
  otp: string;
15797
- realm: "sms" | "email";
15803
+ realm: "email" | "sms";
15798
15804
  } | {
15799
15805
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15800
15806
  subject_token: string;
@@ -17018,7 +17024,7 @@ export declare function init(config: AuthHeroConfig): {
17018
17024
  $get: {
17019
17025
  input: {
17020
17026
  param: {
17021
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
17027
+ 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";
17022
17028
  };
17023
17029
  } & {
17024
17030
  query: {
@@ -17034,7 +17040,7 @@ export declare function init(config: AuthHeroConfig): {
17034
17040
  } | {
17035
17041
  input: {
17036
17042
  param: {
17037
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
17043
+ 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";
17038
17044
  };
17039
17045
  } & {
17040
17046
  query: {
@@ -17050,7 +17056,7 @@ export declare function init(config: AuthHeroConfig): {
17050
17056
  } | {
17051
17057
  input: {
17052
17058
  param: {
17053
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
17059
+ 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";
17054
17060
  };
17055
17061
  } & {
17056
17062
  query: {
@@ -17070,7 +17076,7 @@ export declare function init(config: AuthHeroConfig): {
17070
17076
  $post: {
17071
17077
  input: {
17072
17078
  param: {
17073
- 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";
17079
+ 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";
17074
17080
  };
17075
17081
  } & {
17076
17082
  query: {
@@ -17088,7 +17094,7 @@ export declare function init(config: AuthHeroConfig): {
17088
17094
  } | {
17089
17095
  input: {
17090
17096
  param: {
17091
- 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";
17097
+ 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";
17092
17098
  };
17093
17099
  } & {
17094
17100
  query: {