authhero 9.11.1 → 9.12.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 (51) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/{p-f94037cd.entry.js → p-74f95441.entry.js} +1 -1
  3. package/dist/authhero.cjs +292 -160
  4. package/dist/authhero.d.ts +235 -232
  5. package/dist/authhero.mjs +81493 -89256
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +2 -2
  8. package/dist/types/emails/render.d.ts +2 -0
  9. package/dist/types/helpers/action-executions-cleanup.d.ts +6 -3
  10. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  11. package/dist/types/helpers/logging.d.ts +11 -3
  12. package/dist/types/helpers/reserved-claims.d.ts +2 -2
  13. package/dist/types/helpers/run-retention.d.ts +1 -1
  14. package/dist/types/helpers/saml.d.ts +1 -1
  15. package/dist/types/helpers/scopes-permissions.d.ts +16 -0
  16. package/dist/types/helpers/users-import/map.d.ts +14 -0
  17. package/dist/types/hooks/codehooks.d.ts +28 -1
  18. package/dist/types/index.d.ts +228 -228
  19. package/dist/types/routes/auth-api/index.d.ts +15 -15
  20. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  21. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  22. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  23. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  24. package/dist/types/routes/management-api/branding.d.ts +1 -1
  25. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  26. package/dist/types/routes/management-api/clients.d.ts +8 -8
  27. package/dist/types/routes/management-api/connections.d.ts +1 -1
  28. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  29. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  30. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  31. package/dist/types/routes/management-api/forms.d.ts +126 -126
  32. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  33. package/dist/types/routes/management-api/index.d.ts +206 -206
  34. package/dist/types/routes/management-api/keys.d.ts +8 -8
  35. package/dist/types/routes/management-api/logs.d.ts +4 -4
  36. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  37. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  38. package/dist/types/routes/management-api/roles.d.ts +1 -1
  39. package/dist/types/routes/management-api/tenant-operations.d.ts +1 -1
  40. package/dist/types/routes/management-api/tenants.d.ts +12 -12
  41. package/dist/types/routes/management-api/users.d.ts +14 -14
  42. package/dist/types/routes/universal-login/common.d.ts +6 -6
  43. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  44. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  45. package/dist/types/routes/universal-login/index.d.ts +2 -2
  46. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  47. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  48. package/dist/types/routes/universal-login/u2-widget-page.d.ts +13 -42
  49. package/dist/types/routes/universal-login/universal-login-template.d.ts +1 -1
  50. package/dist/types/utils/jwks.d.ts +2 -2
  51. package/package.json +7 -7
@@ -293,7 +293,7 @@ export declare function init(config: AuthHeroConfig): {
293
293
  };
294
294
  } & {
295
295
  json: {
296
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
296
+ type: "email" | "totp" | "phone" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform";
297
297
  phone_number?: string | undefined;
298
298
  totp_secret?: string | undefined;
299
299
  credential_id?: string | undefined;
@@ -1393,19 +1393,19 @@ export declare function init(config: AuthHeroConfig): {
1393
1393
  } & {
1394
1394
  json: {
1395
1395
  client_id: string;
1396
- inviter: {
1397
- name?: string | undefined;
1398
- };
1399
1396
  invitee: {
1400
1397
  email?: string | undefined;
1401
1398
  };
1399
+ inviter: {
1400
+ name?: string | undefined;
1401
+ };
1402
1402
  id?: string | undefined;
1403
1403
  app_metadata?: Record<string, any> | undefined;
1404
1404
  user_metadata?: Record<string, any> | undefined;
1405
1405
  connection_id?: string | undefined;
1406
1406
  roles?: string[] | undefined;
1407
- ttl_sec?: number | undefined;
1408
1407
  send_invitation_email?: boolean | undefined;
1408
+ ttl_sec?: number | undefined;
1409
1409
  };
1410
1410
  };
1411
1411
  output: {
@@ -2160,9 +2160,9 @@ export declare function init(config: AuthHeroConfig): {
2160
2160
  };
2161
2161
  } & {
2162
2162
  query: {
2163
- from?: string | undefined;
2164
2163
  page?: string | undefined;
2165
2164
  include_totals?: string | undefined;
2165
+ from?: string | undefined;
2166
2166
  per_page?: string | undefined;
2167
2167
  take?: string | undefined;
2168
2168
  };
@@ -2885,7 +2885,7 @@ export declare function init(config: AuthHeroConfig): {
2885
2885
  hint?: string | undefined;
2886
2886
  messages?: {
2887
2887
  text: string;
2888
- type: "error" | "success" | "info" | "warning";
2888
+ type: "success" | "error" | "info" | "warning";
2889
2889
  id?: number | undefined;
2890
2890
  }[] | undefined;
2891
2891
  required?: boolean | undefined;
@@ -2903,7 +2903,7 @@ export declare function init(config: AuthHeroConfig): {
2903
2903
  hint?: string | undefined;
2904
2904
  messages?: {
2905
2905
  text: string;
2906
- type: "error" | "success" | "info" | "warning";
2906
+ type: "success" | "error" | "info" | "warning";
2907
2907
  id?: number | undefined;
2908
2908
  }[] | undefined;
2909
2909
  required?: boolean | undefined;
@@ -2927,7 +2927,7 @@ export declare function init(config: AuthHeroConfig): {
2927
2927
  hint?: string | undefined;
2928
2928
  messages?: {
2929
2929
  text: string;
2930
- type: "error" | "success" | "info" | "warning";
2930
+ type: "success" | "error" | "info" | "warning";
2931
2931
  id?: number | undefined;
2932
2932
  }[] | undefined;
2933
2933
  required?: boolean | undefined;
@@ -2951,7 +2951,7 @@ export declare function init(config: AuthHeroConfig): {
2951
2951
  hint?: string | undefined;
2952
2952
  messages?: {
2953
2953
  text: string;
2954
- type: "error" | "success" | "info" | "warning";
2954
+ type: "success" | "error" | "info" | "warning";
2955
2955
  id?: number | undefined;
2956
2956
  }[] | undefined;
2957
2957
  required?: boolean | undefined;
@@ -2975,7 +2975,7 @@ export declare function init(config: AuthHeroConfig): {
2975
2975
  hint?: string | undefined;
2976
2976
  messages?: {
2977
2977
  text: string;
2978
- type: "error" | "success" | "info" | "warning";
2978
+ type: "success" | "error" | "info" | "warning";
2979
2979
  id?: number | undefined;
2980
2980
  }[] | undefined;
2981
2981
  required?: boolean | undefined;
@@ -3004,7 +3004,7 @@ export declare function init(config: AuthHeroConfig): {
3004
3004
  hint?: string | undefined;
3005
3005
  messages?: {
3006
3006
  text: string;
3007
- type: "error" | "success" | "info" | "warning";
3007
+ type: "success" | "error" | "info" | "warning";
3008
3008
  id?: number | undefined;
3009
3009
  }[] | undefined;
3010
3010
  required?: boolean | undefined;
@@ -3019,7 +3019,7 @@ export declare function init(config: AuthHeroConfig): {
3019
3019
  hint?: string | undefined;
3020
3020
  messages?: {
3021
3021
  text: string;
3022
- type: "error" | "success" | "info" | "warning";
3022
+ type: "success" | "error" | "info" | "warning";
3023
3023
  id?: number | undefined;
3024
3024
  }[] | undefined;
3025
3025
  required?: boolean | undefined;
@@ -3040,7 +3040,7 @@ export declare function init(config: AuthHeroConfig): {
3040
3040
  hint?: string | undefined;
3041
3041
  messages?: {
3042
3042
  text: string;
3043
- type: "error" | "success" | "info" | "warning";
3043
+ type: "success" | "error" | "info" | "warning";
3044
3044
  id?: number | undefined;
3045
3045
  }[] | undefined;
3046
3046
  required?: boolean | undefined;
@@ -3065,7 +3065,7 @@ export declare function init(config: AuthHeroConfig): {
3065
3065
  hint?: string | undefined;
3066
3066
  messages?: {
3067
3067
  text: string;
3068
- type: "error" | "success" | "info" | "warning";
3068
+ type: "success" | "error" | "info" | "warning";
3069
3069
  id?: number | undefined;
3070
3070
  }[] | undefined;
3071
3071
  required?: boolean | undefined;
@@ -3086,7 +3086,7 @@ export declare function init(config: AuthHeroConfig): {
3086
3086
  hint?: string | undefined;
3087
3087
  messages?: {
3088
3088
  text: string;
3089
- type: "error" | "success" | "info" | "warning";
3089
+ type: "success" | "error" | "info" | "warning";
3090
3090
  id?: number | undefined;
3091
3091
  }[] | undefined;
3092
3092
  required?: boolean | undefined;
@@ -3106,7 +3106,7 @@ export declare function init(config: AuthHeroConfig): {
3106
3106
  hint?: string | undefined;
3107
3107
  messages?: {
3108
3108
  text: string;
3109
- type: "error" | "success" | "info" | "warning";
3109
+ type: "success" | "error" | "info" | "warning";
3110
3110
  id?: number | undefined;
3111
3111
  }[] | undefined;
3112
3112
  required?: boolean | undefined;
@@ -3125,7 +3125,7 @@ export declare function init(config: AuthHeroConfig): {
3125
3125
  hint?: string | undefined;
3126
3126
  messages?: {
3127
3127
  text: string;
3128
- type: "error" | "success" | "info" | "warning";
3128
+ type: "success" | "error" | "info" | "warning";
3129
3129
  id?: number | undefined;
3130
3130
  }[] | undefined;
3131
3131
  required?: boolean | undefined;
@@ -3147,7 +3147,7 @@ export declare function init(config: AuthHeroConfig): {
3147
3147
  hint?: string | undefined;
3148
3148
  messages?: {
3149
3149
  text: string;
3150
- type: "error" | "success" | "info" | "warning";
3150
+ type: "success" | "error" | "info" | "warning";
3151
3151
  id?: number | undefined;
3152
3152
  }[] | undefined;
3153
3153
  required?: boolean | undefined;
@@ -3169,7 +3169,7 @@ export declare function init(config: AuthHeroConfig): {
3169
3169
  hint?: string | undefined;
3170
3170
  messages?: {
3171
3171
  text: string;
3172
- type: "error" | "success" | "info" | "warning";
3172
+ type: "success" | "error" | "info" | "warning";
3173
3173
  id?: number | undefined;
3174
3174
  }[] | undefined;
3175
3175
  required?: boolean | undefined;
@@ -3188,7 +3188,7 @@ export declare function init(config: AuthHeroConfig): {
3188
3188
  hint?: string | undefined;
3189
3189
  messages?: {
3190
3190
  text: string;
3191
- type: "error" | "success" | "info" | "warning";
3191
+ type: "success" | "error" | "info" | "warning";
3192
3192
  id?: number | undefined;
3193
3193
  }[] | undefined;
3194
3194
  required?: boolean | undefined;
@@ -3215,7 +3215,7 @@ export declare function init(config: AuthHeroConfig): {
3215
3215
  hint?: string | undefined;
3216
3216
  messages?: {
3217
3217
  text: string;
3218
- type: "error" | "success" | "info" | "warning";
3218
+ type: "success" | "error" | "info" | "warning";
3219
3219
  id?: number | undefined;
3220
3220
  }[] | undefined;
3221
3221
  required?: boolean | undefined;
@@ -3236,7 +3236,7 @@ export declare function init(config: AuthHeroConfig): {
3236
3236
  hint?: string | undefined;
3237
3237
  messages?: {
3238
3238
  text: string;
3239
- type: "error" | "success" | "info" | "warning";
3239
+ type: "success" | "error" | "info" | "warning";
3240
3240
  id?: number | undefined;
3241
3241
  }[] | undefined;
3242
3242
  required?: boolean | undefined;
@@ -3259,7 +3259,7 @@ export declare function init(config: AuthHeroConfig): {
3259
3259
  hint?: string | undefined;
3260
3260
  messages?: {
3261
3261
  text: string;
3262
- type: "error" | "success" | "info" | "warning";
3262
+ type: "success" | "error" | "info" | "warning";
3263
3263
  id?: number | undefined;
3264
3264
  }[] | undefined;
3265
3265
  required?: boolean | undefined;
@@ -3492,7 +3492,7 @@ export declare function init(config: AuthHeroConfig): {
3492
3492
  hint?: string | undefined;
3493
3493
  messages?: {
3494
3494
  text: string;
3495
- type: "error" | "success" | "info" | "warning";
3495
+ type: "success" | "error" | "info" | "warning";
3496
3496
  id?: number | undefined;
3497
3497
  }[] | undefined;
3498
3498
  required?: boolean | undefined;
@@ -3510,7 +3510,7 @@ export declare function init(config: AuthHeroConfig): {
3510
3510
  hint?: string | undefined;
3511
3511
  messages?: {
3512
3512
  text: string;
3513
- type: "error" | "success" | "info" | "warning";
3513
+ type: "success" | "error" | "info" | "warning";
3514
3514
  id?: number | undefined;
3515
3515
  }[] | undefined;
3516
3516
  required?: boolean | undefined;
@@ -3534,7 +3534,7 @@ export declare function init(config: AuthHeroConfig): {
3534
3534
  hint?: string | undefined;
3535
3535
  messages?: {
3536
3536
  text: string;
3537
- type: "error" | "success" | "info" | "warning";
3537
+ type: "success" | "error" | "info" | "warning";
3538
3538
  id?: number | undefined;
3539
3539
  }[] | undefined;
3540
3540
  required?: boolean | undefined;
@@ -3558,7 +3558,7 @@ export declare function init(config: AuthHeroConfig): {
3558
3558
  hint?: string | undefined;
3559
3559
  messages?: {
3560
3560
  text: string;
3561
- type: "error" | "success" | "info" | "warning";
3561
+ type: "success" | "error" | "info" | "warning";
3562
3562
  id?: number | undefined;
3563
3563
  }[] | undefined;
3564
3564
  required?: boolean | undefined;
@@ -3582,7 +3582,7 @@ export declare function init(config: AuthHeroConfig): {
3582
3582
  hint?: string | undefined;
3583
3583
  messages?: {
3584
3584
  text: string;
3585
- type: "error" | "success" | "info" | "warning";
3585
+ type: "success" | "error" | "info" | "warning";
3586
3586
  id?: number | undefined;
3587
3587
  }[] | undefined;
3588
3588
  required?: boolean | undefined;
@@ -3611,7 +3611,7 @@ export declare function init(config: AuthHeroConfig): {
3611
3611
  hint?: string | undefined;
3612
3612
  messages?: {
3613
3613
  text: string;
3614
- type: "error" | "success" | "info" | "warning";
3614
+ type: "success" | "error" | "info" | "warning";
3615
3615
  id?: number | undefined;
3616
3616
  }[] | undefined;
3617
3617
  required?: boolean | undefined;
@@ -3626,7 +3626,7 @@ export declare function init(config: AuthHeroConfig): {
3626
3626
  hint?: string | undefined;
3627
3627
  messages?: {
3628
3628
  text: string;
3629
- type: "error" | "success" | "info" | "warning";
3629
+ type: "success" | "error" | "info" | "warning";
3630
3630
  id?: number | undefined;
3631
3631
  }[] | undefined;
3632
3632
  required?: boolean | undefined;
@@ -3647,7 +3647,7 @@ export declare function init(config: AuthHeroConfig): {
3647
3647
  hint?: string | undefined;
3648
3648
  messages?: {
3649
3649
  text: string;
3650
- type: "error" | "success" | "info" | "warning";
3650
+ type: "success" | "error" | "info" | "warning";
3651
3651
  id?: number | undefined;
3652
3652
  }[] | undefined;
3653
3653
  required?: boolean | undefined;
@@ -3672,7 +3672,7 @@ export declare function init(config: AuthHeroConfig): {
3672
3672
  hint?: string | undefined;
3673
3673
  messages?: {
3674
3674
  text: string;
3675
- type: "error" | "success" | "info" | "warning";
3675
+ type: "success" | "error" | "info" | "warning";
3676
3676
  id?: number | undefined;
3677
3677
  }[] | undefined;
3678
3678
  required?: boolean | undefined;
@@ -3693,7 +3693,7 @@ export declare function init(config: AuthHeroConfig): {
3693
3693
  hint?: string | undefined;
3694
3694
  messages?: {
3695
3695
  text: string;
3696
- type: "error" | "success" | "info" | "warning";
3696
+ type: "success" | "error" | "info" | "warning";
3697
3697
  id?: number | undefined;
3698
3698
  }[] | undefined;
3699
3699
  required?: boolean | undefined;
@@ -3713,7 +3713,7 @@ export declare function init(config: AuthHeroConfig): {
3713
3713
  hint?: string | undefined;
3714
3714
  messages?: {
3715
3715
  text: string;
3716
- type: "error" | "success" | "info" | "warning";
3716
+ type: "success" | "error" | "info" | "warning";
3717
3717
  id?: number | undefined;
3718
3718
  }[] | undefined;
3719
3719
  required?: boolean | undefined;
@@ -3732,7 +3732,7 @@ export declare function init(config: AuthHeroConfig): {
3732
3732
  hint?: string | undefined;
3733
3733
  messages?: {
3734
3734
  text: string;
3735
- type: "error" | "success" | "info" | "warning";
3735
+ type: "success" | "error" | "info" | "warning";
3736
3736
  id?: number | undefined;
3737
3737
  }[] | undefined;
3738
3738
  required?: boolean | undefined;
@@ -3754,7 +3754,7 @@ export declare function init(config: AuthHeroConfig): {
3754
3754
  hint?: string | undefined;
3755
3755
  messages?: {
3756
3756
  text: string;
3757
- type: "error" | "success" | "info" | "warning";
3757
+ type: "success" | "error" | "info" | "warning";
3758
3758
  id?: number | undefined;
3759
3759
  }[] | undefined;
3760
3760
  required?: boolean | undefined;
@@ -3776,7 +3776,7 @@ export declare function init(config: AuthHeroConfig): {
3776
3776
  hint?: string | undefined;
3777
3777
  messages?: {
3778
3778
  text: string;
3779
- type: "error" | "success" | "info" | "warning";
3779
+ type: "success" | "error" | "info" | "warning";
3780
3780
  id?: number | undefined;
3781
3781
  }[] | undefined;
3782
3782
  required?: boolean | undefined;
@@ -3795,7 +3795,7 @@ export declare function init(config: AuthHeroConfig): {
3795
3795
  hint?: string | undefined;
3796
3796
  messages?: {
3797
3797
  text: string;
3798
- type: "error" | "success" | "info" | "warning";
3798
+ type: "success" | "error" | "info" | "warning";
3799
3799
  id?: number | undefined;
3800
3800
  }[] | undefined;
3801
3801
  required?: boolean | undefined;
@@ -3822,7 +3822,7 @@ export declare function init(config: AuthHeroConfig): {
3822
3822
  hint?: string | undefined;
3823
3823
  messages?: {
3824
3824
  text: string;
3825
- type: "error" | "success" | "info" | "warning";
3825
+ type: "success" | "error" | "info" | "warning";
3826
3826
  id?: number | undefined;
3827
3827
  }[] | undefined;
3828
3828
  required?: boolean | undefined;
@@ -3843,7 +3843,7 @@ export declare function init(config: AuthHeroConfig): {
3843
3843
  hint?: string | undefined;
3844
3844
  messages?: {
3845
3845
  text: string;
3846
- type: "error" | "success" | "info" | "warning";
3846
+ type: "success" | "error" | "info" | "warning";
3847
3847
  id?: number | undefined;
3848
3848
  }[] | undefined;
3849
3849
  required?: boolean | undefined;
@@ -3866,7 +3866,7 @@ export declare function init(config: AuthHeroConfig): {
3866
3866
  hint?: string | undefined;
3867
3867
  messages?: {
3868
3868
  text: string;
3869
- type: "error" | "success" | "info" | "warning";
3869
+ type: "success" | "error" | "info" | "warning";
3870
3870
  id?: number | undefined;
3871
3871
  }[] | undefined;
3872
3872
  required?: boolean | undefined;
@@ -4115,7 +4115,7 @@ export declare function init(config: AuthHeroConfig): {
4115
4115
  hint?: string | undefined;
4116
4116
  messages?: {
4117
4117
  text: string;
4118
- type: "error" | "success" | "info" | "warning";
4118
+ type: "success" | "error" | "info" | "warning";
4119
4119
  id?: number | undefined;
4120
4120
  }[] | undefined;
4121
4121
  required?: boolean | undefined;
@@ -4133,7 +4133,7 @@ export declare function init(config: AuthHeroConfig): {
4133
4133
  hint?: string | undefined;
4134
4134
  messages?: {
4135
4135
  text: string;
4136
- type: "error" | "success" | "info" | "warning";
4136
+ type: "success" | "error" | "info" | "warning";
4137
4137
  id?: number | undefined;
4138
4138
  }[] | undefined;
4139
4139
  required?: boolean | undefined;
@@ -4157,7 +4157,7 @@ export declare function init(config: AuthHeroConfig): {
4157
4157
  hint?: string | undefined;
4158
4158
  messages?: {
4159
4159
  text: string;
4160
- type: "error" | "success" | "info" | "warning";
4160
+ type: "success" | "error" | "info" | "warning";
4161
4161
  id?: number | undefined;
4162
4162
  }[] | undefined;
4163
4163
  required?: boolean | undefined;
@@ -4181,7 +4181,7 @@ export declare function init(config: AuthHeroConfig): {
4181
4181
  hint?: string | undefined;
4182
4182
  messages?: {
4183
4183
  text: string;
4184
- type: "error" | "success" | "info" | "warning";
4184
+ type: "success" | "error" | "info" | "warning";
4185
4185
  id?: number | undefined;
4186
4186
  }[] | undefined;
4187
4187
  required?: boolean | undefined;
@@ -4205,7 +4205,7 @@ export declare function init(config: AuthHeroConfig): {
4205
4205
  hint?: string | undefined;
4206
4206
  messages?: {
4207
4207
  text: string;
4208
- type: "error" | "success" | "info" | "warning";
4208
+ type: "success" | "error" | "info" | "warning";
4209
4209
  id?: number | undefined;
4210
4210
  }[] | undefined;
4211
4211
  required?: boolean | undefined;
@@ -4234,7 +4234,7 @@ export declare function init(config: AuthHeroConfig): {
4234
4234
  hint?: string | undefined;
4235
4235
  messages?: {
4236
4236
  text: string;
4237
- type: "error" | "success" | "info" | "warning";
4237
+ type: "success" | "error" | "info" | "warning";
4238
4238
  id?: number | undefined;
4239
4239
  }[] | undefined;
4240
4240
  required?: boolean | undefined;
@@ -4249,7 +4249,7 @@ export declare function init(config: AuthHeroConfig): {
4249
4249
  hint?: string | undefined;
4250
4250
  messages?: {
4251
4251
  text: string;
4252
- type: "error" | "success" | "info" | "warning";
4252
+ type: "success" | "error" | "info" | "warning";
4253
4253
  id?: number | undefined;
4254
4254
  }[] | undefined;
4255
4255
  required?: boolean | undefined;
@@ -4270,7 +4270,7 @@ export declare function init(config: AuthHeroConfig): {
4270
4270
  hint?: string | undefined;
4271
4271
  messages?: {
4272
4272
  text: string;
4273
- type: "error" | "success" | "info" | "warning";
4273
+ type: "success" | "error" | "info" | "warning";
4274
4274
  id?: number | undefined;
4275
4275
  }[] | undefined;
4276
4276
  required?: boolean | undefined;
@@ -4295,7 +4295,7 @@ export declare function init(config: AuthHeroConfig): {
4295
4295
  hint?: string | undefined;
4296
4296
  messages?: {
4297
4297
  text: string;
4298
- type: "error" | "success" | "info" | "warning";
4298
+ type: "success" | "error" | "info" | "warning";
4299
4299
  id?: number | undefined;
4300
4300
  }[] | undefined;
4301
4301
  required?: boolean | undefined;
@@ -4316,7 +4316,7 @@ export declare function init(config: AuthHeroConfig): {
4316
4316
  hint?: string | undefined;
4317
4317
  messages?: {
4318
4318
  text: string;
4319
- type: "error" | "success" | "info" | "warning";
4319
+ type: "success" | "error" | "info" | "warning";
4320
4320
  id?: number | undefined;
4321
4321
  }[] | undefined;
4322
4322
  required?: boolean | undefined;
@@ -4336,7 +4336,7 @@ export declare function init(config: AuthHeroConfig): {
4336
4336
  hint?: string | undefined;
4337
4337
  messages?: {
4338
4338
  text: string;
4339
- type: "error" | "success" | "info" | "warning";
4339
+ type: "success" | "error" | "info" | "warning";
4340
4340
  id?: number | undefined;
4341
4341
  }[] | undefined;
4342
4342
  required?: boolean | undefined;
@@ -4355,7 +4355,7 @@ export declare function init(config: AuthHeroConfig): {
4355
4355
  hint?: string | undefined;
4356
4356
  messages?: {
4357
4357
  text: string;
4358
- type: "error" | "success" | "info" | "warning";
4358
+ type: "success" | "error" | "info" | "warning";
4359
4359
  id?: number | undefined;
4360
4360
  }[] | undefined;
4361
4361
  required?: boolean | undefined;
@@ -4377,7 +4377,7 @@ export declare function init(config: AuthHeroConfig): {
4377
4377
  hint?: string | undefined;
4378
4378
  messages?: {
4379
4379
  text: string;
4380
- type: "error" | "success" | "info" | "warning";
4380
+ type: "success" | "error" | "info" | "warning";
4381
4381
  id?: number | undefined;
4382
4382
  }[] | undefined;
4383
4383
  required?: boolean | undefined;
@@ -4399,7 +4399,7 @@ export declare function init(config: AuthHeroConfig): {
4399
4399
  hint?: string | undefined;
4400
4400
  messages?: {
4401
4401
  text: string;
4402
- type: "error" | "success" | "info" | "warning";
4402
+ type: "success" | "error" | "info" | "warning";
4403
4403
  id?: number | undefined;
4404
4404
  }[] | undefined;
4405
4405
  required?: boolean | undefined;
@@ -4418,7 +4418,7 @@ export declare function init(config: AuthHeroConfig): {
4418
4418
  hint?: string | undefined;
4419
4419
  messages?: {
4420
4420
  text: string;
4421
- type: "error" | "success" | "info" | "warning";
4421
+ type: "success" | "error" | "info" | "warning";
4422
4422
  id?: number | undefined;
4423
4423
  }[] | undefined;
4424
4424
  required?: boolean | undefined;
@@ -4445,7 +4445,7 @@ export declare function init(config: AuthHeroConfig): {
4445
4445
  hint?: string | undefined;
4446
4446
  messages?: {
4447
4447
  text: string;
4448
- type: "error" | "success" | "info" | "warning";
4448
+ type: "success" | "error" | "info" | "warning";
4449
4449
  id?: number | undefined;
4450
4450
  }[] | undefined;
4451
4451
  required?: boolean | undefined;
@@ -4466,7 +4466,7 @@ export declare function init(config: AuthHeroConfig): {
4466
4466
  hint?: string | undefined;
4467
4467
  messages?: {
4468
4468
  text: string;
4469
- type: "error" | "success" | "info" | "warning";
4469
+ type: "success" | "error" | "info" | "warning";
4470
4470
  id?: number | undefined;
4471
4471
  }[] | undefined;
4472
4472
  required?: boolean | undefined;
@@ -4489,7 +4489,7 @@ export declare function init(config: AuthHeroConfig): {
4489
4489
  hint?: string | undefined;
4490
4490
  messages?: {
4491
4491
  text: string;
4492
- type: "error" | "success" | "info" | "warning";
4492
+ type: "success" | "error" | "info" | "warning";
4493
4493
  id?: number | undefined;
4494
4494
  }[] | undefined;
4495
4495
  required?: boolean | undefined;
@@ -4743,7 +4743,7 @@ export declare function init(config: AuthHeroConfig): {
4743
4743
  hint?: string | undefined;
4744
4744
  messages?: {
4745
4745
  text: string;
4746
- type: "error" | "success" | "info" | "warning";
4746
+ type: "success" | "error" | "info" | "warning";
4747
4747
  id?: number | undefined;
4748
4748
  }[] | undefined;
4749
4749
  required?: boolean | undefined;
@@ -4761,7 +4761,7 @@ export declare function init(config: AuthHeroConfig): {
4761
4761
  hint?: string | undefined;
4762
4762
  messages?: {
4763
4763
  text: string;
4764
- type: "error" | "success" | "info" | "warning";
4764
+ type: "success" | "error" | "info" | "warning";
4765
4765
  id?: number | undefined;
4766
4766
  }[] | undefined;
4767
4767
  required?: boolean | undefined;
@@ -4785,7 +4785,7 @@ export declare function init(config: AuthHeroConfig): {
4785
4785
  hint?: string | undefined;
4786
4786
  messages?: {
4787
4787
  text: string;
4788
- type: "error" | "success" | "info" | "warning";
4788
+ type: "success" | "error" | "info" | "warning";
4789
4789
  id?: number | undefined;
4790
4790
  }[] | undefined;
4791
4791
  required?: boolean | undefined;
@@ -4809,7 +4809,7 @@ export declare function init(config: AuthHeroConfig): {
4809
4809
  hint?: string | undefined;
4810
4810
  messages?: {
4811
4811
  text: string;
4812
- type: "error" | "success" | "info" | "warning";
4812
+ type: "success" | "error" | "info" | "warning";
4813
4813
  id?: number | undefined;
4814
4814
  }[] | undefined;
4815
4815
  required?: boolean | undefined;
@@ -4833,7 +4833,7 @@ export declare function init(config: AuthHeroConfig): {
4833
4833
  hint?: string | undefined;
4834
4834
  messages?: {
4835
4835
  text: string;
4836
- type: "error" | "success" | "info" | "warning";
4836
+ type: "success" | "error" | "info" | "warning";
4837
4837
  id?: number | undefined;
4838
4838
  }[] | undefined;
4839
4839
  required?: boolean | undefined;
@@ -4858,7 +4858,7 @@ export declare function init(config: AuthHeroConfig): {
4858
4858
  hint?: string | undefined;
4859
4859
  messages?: {
4860
4860
  text: string;
4861
- type: "error" | "success" | "info" | "warning";
4861
+ type: "success" | "error" | "info" | "warning";
4862
4862
  id?: number | undefined;
4863
4863
  }[] | undefined;
4864
4864
  required?: boolean | undefined;
@@ -4873,7 +4873,7 @@ export declare function init(config: AuthHeroConfig): {
4873
4873
  hint?: string | undefined;
4874
4874
  messages?: {
4875
4875
  text: string;
4876
- type: "error" | "success" | "info" | "warning";
4876
+ type: "success" | "error" | "info" | "warning";
4877
4877
  id?: number | undefined;
4878
4878
  }[] | undefined;
4879
4879
  required?: boolean | undefined;
@@ -4894,7 +4894,7 @@ export declare function init(config: AuthHeroConfig): {
4894
4894
  hint?: string | undefined;
4895
4895
  messages?: {
4896
4896
  text: string;
4897
- type: "error" | "success" | "info" | "warning";
4897
+ type: "success" | "error" | "info" | "warning";
4898
4898
  id?: number | undefined;
4899
4899
  }[] | undefined;
4900
4900
  required?: boolean | undefined;
@@ -4919,7 +4919,7 @@ export declare function init(config: AuthHeroConfig): {
4919
4919
  hint?: string | undefined;
4920
4920
  messages?: {
4921
4921
  text: string;
4922
- type: "error" | "success" | "info" | "warning";
4922
+ type: "success" | "error" | "info" | "warning";
4923
4923
  id?: number | undefined;
4924
4924
  }[] | undefined;
4925
4925
  required?: boolean | undefined;
@@ -4940,7 +4940,7 @@ export declare function init(config: AuthHeroConfig): {
4940
4940
  hint?: string | undefined;
4941
4941
  messages?: {
4942
4942
  text: string;
4943
- type: "error" | "success" | "info" | "warning";
4943
+ type: "success" | "error" | "info" | "warning";
4944
4944
  id?: number | undefined;
4945
4945
  }[] | undefined;
4946
4946
  required?: boolean | undefined;
@@ -4960,7 +4960,7 @@ export declare function init(config: AuthHeroConfig): {
4960
4960
  hint?: string | undefined;
4961
4961
  messages?: {
4962
4962
  text: string;
4963
- type: "error" | "success" | "info" | "warning";
4963
+ type: "success" | "error" | "info" | "warning";
4964
4964
  id?: number | undefined;
4965
4965
  }[] | undefined;
4966
4966
  required?: boolean | undefined;
@@ -4979,7 +4979,7 @@ export declare function init(config: AuthHeroConfig): {
4979
4979
  hint?: string | undefined;
4980
4980
  messages?: {
4981
4981
  text: string;
4982
- type: "error" | "success" | "info" | "warning";
4982
+ type: "success" | "error" | "info" | "warning";
4983
4983
  id?: number | undefined;
4984
4984
  }[] | undefined;
4985
4985
  required?: boolean | undefined;
@@ -5001,7 +5001,7 @@ export declare function init(config: AuthHeroConfig): {
5001
5001
  hint?: string | undefined;
5002
5002
  messages?: {
5003
5003
  text: string;
5004
- type: "error" | "success" | "info" | "warning";
5004
+ type: "success" | "error" | "info" | "warning";
5005
5005
  id?: number | undefined;
5006
5006
  }[] | undefined;
5007
5007
  required?: boolean | undefined;
@@ -5023,7 +5023,7 @@ export declare function init(config: AuthHeroConfig): {
5023
5023
  hint?: string | undefined;
5024
5024
  messages?: {
5025
5025
  text: string;
5026
- type: "error" | "success" | "info" | "warning";
5026
+ type: "success" | "error" | "info" | "warning";
5027
5027
  id?: number | undefined;
5028
5028
  }[] | undefined;
5029
5029
  required?: boolean | undefined;
@@ -5042,7 +5042,7 @@ export declare function init(config: AuthHeroConfig): {
5042
5042
  hint?: string | undefined;
5043
5043
  messages?: {
5044
5044
  text: string;
5045
- type: "error" | "success" | "info" | "warning";
5045
+ type: "success" | "error" | "info" | "warning";
5046
5046
  id?: number | undefined;
5047
5047
  }[] | undefined;
5048
5048
  required?: boolean | undefined;
@@ -5069,7 +5069,7 @@ export declare function init(config: AuthHeroConfig): {
5069
5069
  hint?: string | undefined;
5070
5070
  messages?: {
5071
5071
  text: string;
5072
- type: "error" | "success" | "info" | "warning";
5072
+ type: "success" | "error" | "info" | "warning";
5073
5073
  id?: number | undefined;
5074
5074
  }[] | undefined;
5075
5075
  required?: boolean | undefined;
@@ -5090,7 +5090,7 @@ export declare function init(config: AuthHeroConfig): {
5090
5090
  hint?: string | undefined;
5091
5091
  messages?: {
5092
5092
  text: string;
5093
- type: "error" | "success" | "info" | "warning";
5093
+ type: "success" | "error" | "info" | "warning";
5094
5094
  id?: number | undefined;
5095
5095
  }[] | undefined;
5096
5096
  required?: boolean | undefined;
@@ -5113,7 +5113,7 @@ export declare function init(config: AuthHeroConfig): {
5113
5113
  hint?: string | undefined;
5114
5114
  messages?: {
5115
5115
  text: string;
5116
- type: "error" | "success" | "info" | "warning";
5116
+ type: "success" | "error" | "info" | "warning";
5117
5117
  id?: number | undefined;
5118
5118
  }[] | undefined;
5119
5119
  required?: boolean | undefined;
@@ -5344,7 +5344,7 @@ export declare function init(config: AuthHeroConfig): {
5344
5344
  hint?: string | undefined;
5345
5345
  messages?: {
5346
5346
  text: string;
5347
- type: "error" | "success" | "info" | "warning";
5347
+ type: "success" | "error" | "info" | "warning";
5348
5348
  id?: number | undefined;
5349
5349
  }[] | undefined;
5350
5350
  required?: boolean | undefined;
@@ -5362,7 +5362,7 @@ export declare function init(config: AuthHeroConfig): {
5362
5362
  hint?: string | undefined;
5363
5363
  messages?: {
5364
5364
  text: string;
5365
- type: "error" | "success" | "info" | "warning";
5365
+ type: "success" | "error" | "info" | "warning";
5366
5366
  id?: number | undefined;
5367
5367
  }[] | undefined;
5368
5368
  required?: boolean | undefined;
@@ -5386,7 +5386,7 @@ export declare function init(config: AuthHeroConfig): {
5386
5386
  hint?: string | undefined;
5387
5387
  messages?: {
5388
5388
  text: string;
5389
- type: "error" | "success" | "info" | "warning";
5389
+ type: "success" | "error" | "info" | "warning";
5390
5390
  id?: number | undefined;
5391
5391
  }[] | undefined;
5392
5392
  required?: boolean | undefined;
@@ -5410,7 +5410,7 @@ export declare function init(config: AuthHeroConfig): {
5410
5410
  hint?: string | undefined;
5411
5411
  messages?: {
5412
5412
  text: string;
5413
- type: "error" | "success" | "info" | "warning";
5413
+ type: "success" | "error" | "info" | "warning";
5414
5414
  id?: number | undefined;
5415
5415
  }[] | undefined;
5416
5416
  required?: boolean | undefined;
@@ -5434,7 +5434,7 @@ export declare function init(config: AuthHeroConfig): {
5434
5434
  hint?: string | undefined;
5435
5435
  messages?: {
5436
5436
  text: string;
5437
- type: "error" | "success" | "info" | "warning";
5437
+ type: "success" | "error" | "info" | "warning";
5438
5438
  id?: number | undefined;
5439
5439
  }[] | undefined;
5440
5440
  required?: boolean | undefined;
@@ -5463,7 +5463,7 @@ export declare function init(config: AuthHeroConfig): {
5463
5463
  hint?: string | undefined;
5464
5464
  messages?: {
5465
5465
  text: string;
5466
- type: "error" | "success" | "info" | "warning";
5466
+ type: "success" | "error" | "info" | "warning";
5467
5467
  id?: number | undefined;
5468
5468
  }[] | undefined;
5469
5469
  required?: boolean | undefined;
@@ -5478,7 +5478,7 @@ export declare function init(config: AuthHeroConfig): {
5478
5478
  hint?: string | undefined;
5479
5479
  messages?: {
5480
5480
  text: string;
5481
- type: "error" | "success" | "info" | "warning";
5481
+ type: "success" | "error" | "info" | "warning";
5482
5482
  id?: number | undefined;
5483
5483
  }[] | undefined;
5484
5484
  required?: boolean | undefined;
@@ -5499,7 +5499,7 @@ export declare function init(config: AuthHeroConfig): {
5499
5499
  hint?: string | undefined;
5500
5500
  messages?: {
5501
5501
  text: string;
5502
- type: "error" | "success" | "info" | "warning";
5502
+ type: "success" | "error" | "info" | "warning";
5503
5503
  id?: number | undefined;
5504
5504
  }[] | undefined;
5505
5505
  required?: boolean | undefined;
@@ -5524,7 +5524,7 @@ export declare function init(config: AuthHeroConfig): {
5524
5524
  hint?: string | undefined;
5525
5525
  messages?: {
5526
5526
  text: string;
5527
- type: "error" | "success" | "info" | "warning";
5527
+ type: "success" | "error" | "info" | "warning";
5528
5528
  id?: number | undefined;
5529
5529
  }[] | undefined;
5530
5530
  required?: boolean | undefined;
@@ -5545,7 +5545,7 @@ export declare function init(config: AuthHeroConfig): {
5545
5545
  hint?: string | undefined;
5546
5546
  messages?: {
5547
5547
  text: string;
5548
- type: "error" | "success" | "info" | "warning";
5548
+ type: "success" | "error" | "info" | "warning";
5549
5549
  id?: number | undefined;
5550
5550
  }[] | undefined;
5551
5551
  required?: boolean | undefined;
@@ -5565,7 +5565,7 @@ export declare function init(config: AuthHeroConfig): {
5565
5565
  hint?: string | undefined;
5566
5566
  messages?: {
5567
5567
  text: string;
5568
- type: "error" | "success" | "info" | "warning";
5568
+ type: "success" | "error" | "info" | "warning";
5569
5569
  id?: number | undefined;
5570
5570
  }[] | undefined;
5571
5571
  required?: boolean | undefined;
@@ -5584,7 +5584,7 @@ export declare function init(config: AuthHeroConfig): {
5584
5584
  hint?: string | undefined;
5585
5585
  messages?: {
5586
5586
  text: string;
5587
- type: "error" | "success" | "info" | "warning";
5587
+ type: "success" | "error" | "info" | "warning";
5588
5588
  id?: number | undefined;
5589
5589
  }[] | undefined;
5590
5590
  required?: boolean | undefined;
@@ -5606,7 +5606,7 @@ export declare function init(config: AuthHeroConfig): {
5606
5606
  hint?: string | undefined;
5607
5607
  messages?: {
5608
5608
  text: string;
5609
- type: "error" | "success" | "info" | "warning";
5609
+ type: "success" | "error" | "info" | "warning";
5610
5610
  id?: number | undefined;
5611
5611
  }[] | undefined;
5612
5612
  required?: boolean | undefined;
@@ -5628,7 +5628,7 @@ export declare function init(config: AuthHeroConfig): {
5628
5628
  hint?: string | undefined;
5629
5629
  messages?: {
5630
5630
  text: string;
5631
- type: "error" | "success" | "info" | "warning";
5631
+ type: "success" | "error" | "info" | "warning";
5632
5632
  id?: number | undefined;
5633
5633
  }[] | undefined;
5634
5634
  required?: boolean | undefined;
@@ -5647,7 +5647,7 @@ export declare function init(config: AuthHeroConfig): {
5647
5647
  hint?: string | undefined;
5648
5648
  messages?: {
5649
5649
  text: string;
5650
- type: "error" | "success" | "info" | "warning";
5650
+ type: "success" | "error" | "info" | "warning";
5651
5651
  id?: number | undefined;
5652
5652
  }[] | undefined;
5653
5653
  required?: boolean | undefined;
@@ -5674,7 +5674,7 @@ export declare function init(config: AuthHeroConfig): {
5674
5674
  hint?: string | undefined;
5675
5675
  messages?: {
5676
5676
  text: string;
5677
- type: "error" | "success" | "info" | "warning";
5677
+ type: "success" | "error" | "info" | "warning";
5678
5678
  id?: number | undefined;
5679
5679
  }[] | undefined;
5680
5680
  required?: boolean | undefined;
@@ -5695,7 +5695,7 @@ export declare function init(config: AuthHeroConfig): {
5695
5695
  hint?: string | undefined;
5696
5696
  messages?: {
5697
5697
  text: string;
5698
- type: "error" | "success" | "info" | "warning";
5698
+ type: "success" | "error" | "info" | "warning";
5699
5699
  id?: number | undefined;
5700
5700
  }[] | undefined;
5701
5701
  required?: boolean | undefined;
@@ -5718,7 +5718,7 @@ export declare function init(config: AuthHeroConfig): {
5718
5718
  hint?: string | undefined;
5719
5719
  messages?: {
5720
5720
  text: string;
5721
- type: "error" | "success" | "info" | "warning";
5721
+ type: "success" | "error" | "info" | "warning";
5722
5722
  id?: number | undefined;
5723
5723
  }[] | undefined;
5724
5724
  required?: boolean | undefined;
@@ -5951,7 +5951,7 @@ export declare function init(config: AuthHeroConfig): {
5951
5951
  hint?: string | undefined;
5952
5952
  messages?: {
5953
5953
  text: string;
5954
- type: "error" | "success" | "info" | "warning";
5954
+ type: "success" | "error" | "info" | "warning";
5955
5955
  id?: number | undefined;
5956
5956
  }[] | undefined;
5957
5957
  required?: boolean | undefined;
@@ -5969,7 +5969,7 @@ export declare function init(config: AuthHeroConfig): {
5969
5969
  hint?: string | undefined;
5970
5970
  messages?: {
5971
5971
  text: string;
5972
- type: "error" | "success" | "info" | "warning";
5972
+ type: "success" | "error" | "info" | "warning";
5973
5973
  id?: number | undefined;
5974
5974
  }[] | undefined;
5975
5975
  required?: boolean | undefined;
@@ -5993,7 +5993,7 @@ export declare function init(config: AuthHeroConfig): {
5993
5993
  hint?: string | undefined;
5994
5994
  messages?: {
5995
5995
  text: string;
5996
- type: "error" | "success" | "info" | "warning";
5996
+ type: "success" | "error" | "info" | "warning";
5997
5997
  id?: number | undefined;
5998
5998
  }[] | undefined;
5999
5999
  required?: boolean | undefined;
@@ -6017,7 +6017,7 @@ export declare function init(config: AuthHeroConfig): {
6017
6017
  hint?: string | undefined;
6018
6018
  messages?: {
6019
6019
  text: string;
6020
- type: "error" | "success" | "info" | "warning";
6020
+ type: "success" | "error" | "info" | "warning";
6021
6021
  id?: number | undefined;
6022
6022
  }[] | undefined;
6023
6023
  required?: boolean | undefined;
@@ -6041,7 +6041,7 @@ export declare function init(config: AuthHeroConfig): {
6041
6041
  hint?: string | undefined;
6042
6042
  messages?: {
6043
6043
  text: string;
6044
- type: "error" | "success" | "info" | "warning";
6044
+ type: "success" | "error" | "info" | "warning";
6045
6045
  id?: number | undefined;
6046
6046
  }[] | undefined;
6047
6047
  required?: boolean | undefined;
@@ -6066,7 +6066,7 @@ export declare function init(config: AuthHeroConfig): {
6066
6066
  hint?: string | undefined;
6067
6067
  messages?: {
6068
6068
  text: string;
6069
- type: "error" | "success" | "info" | "warning";
6069
+ type: "success" | "error" | "info" | "warning";
6070
6070
  id?: number | undefined;
6071
6071
  }[] | undefined;
6072
6072
  required?: boolean | undefined;
@@ -6081,7 +6081,7 @@ export declare function init(config: AuthHeroConfig): {
6081
6081
  hint?: string | undefined;
6082
6082
  messages?: {
6083
6083
  text: string;
6084
- type: "error" | "success" | "info" | "warning";
6084
+ type: "success" | "error" | "info" | "warning";
6085
6085
  id?: number | undefined;
6086
6086
  }[] | undefined;
6087
6087
  required?: boolean | undefined;
@@ -6102,7 +6102,7 @@ export declare function init(config: AuthHeroConfig): {
6102
6102
  hint?: string | undefined;
6103
6103
  messages?: {
6104
6104
  text: string;
6105
- type: "error" | "success" | "info" | "warning";
6105
+ type: "success" | "error" | "info" | "warning";
6106
6106
  id?: number | undefined;
6107
6107
  }[] | undefined;
6108
6108
  required?: boolean | undefined;
@@ -6127,7 +6127,7 @@ export declare function init(config: AuthHeroConfig): {
6127
6127
  hint?: string | undefined;
6128
6128
  messages?: {
6129
6129
  text: string;
6130
- type: "error" | "success" | "info" | "warning";
6130
+ type: "success" | "error" | "info" | "warning";
6131
6131
  id?: number | undefined;
6132
6132
  }[] | undefined;
6133
6133
  required?: boolean | undefined;
@@ -6148,7 +6148,7 @@ export declare function init(config: AuthHeroConfig): {
6148
6148
  hint?: string | undefined;
6149
6149
  messages?: {
6150
6150
  text: string;
6151
- type: "error" | "success" | "info" | "warning";
6151
+ type: "success" | "error" | "info" | "warning";
6152
6152
  id?: number | undefined;
6153
6153
  }[] | undefined;
6154
6154
  required?: boolean | undefined;
@@ -6168,7 +6168,7 @@ export declare function init(config: AuthHeroConfig): {
6168
6168
  hint?: string | undefined;
6169
6169
  messages?: {
6170
6170
  text: string;
6171
- type: "error" | "success" | "info" | "warning";
6171
+ type: "success" | "error" | "info" | "warning";
6172
6172
  id?: number | undefined;
6173
6173
  }[] | undefined;
6174
6174
  required?: boolean | undefined;
@@ -6187,7 +6187,7 @@ export declare function init(config: AuthHeroConfig): {
6187
6187
  hint?: string | undefined;
6188
6188
  messages?: {
6189
6189
  text: string;
6190
- type: "error" | "success" | "info" | "warning";
6190
+ type: "success" | "error" | "info" | "warning";
6191
6191
  id?: number | undefined;
6192
6192
  }[] | undefined;
6193
6193
  required?: boolean | undefined;
@@ -6209,7 +6209,7 @@ export declare function init(config: AuthHeroConfig): {
6209
6209
  hint?: string | undefined;
6210
6210
  messages?: {
6211
6211
  text: string;
6212
- type: "error" | "success" | "info" | "warning";
6212
+ type: "success" | "error" | "info" | "warning";
6213
6213
  id?: number | undefined;
6214
6214
  }[] | undefined;
6215
6215
  required?: boolean | undefined;
@@ -6231,7 +6231,7 @@ export declare function init(config: AuthHeroConfig): {
6231
6231
  hint?: string | undefined;
6232
6232
  messages?: {
6233
6233
  text: string;
6234
- type: "error" | "success" | "info" | "warning";
6234
+ type: "success" | "error" | "info" | "warning";
6235
6235
  id?: number | undefined;
6236
6236
  }[] | undefined;
6237
6237
  required?: boolean | undefined;
@@ -6250,7 +6250,7 @@ export declare function init(config: AuthHeroConfig): {
6250
6250
  hint?: string | undefined;
6251
6251
  messages?: {
6252
6252
  text: string;
6253
- type: "error" | "success" | "info" | "warning";
6253
+ type: "success" | "error" | "info" | "warning";
6254
6254
  id?: number | undefined;
6255
6255
  }[] | undefined;
6256
6256
  required?: boolean | undefined;
@@ -6277,7 +6277,7 @@ export declare function init(config: AuthHeroConfig): {
6277
6277
  hint?: string | undefined;
6278
6278
  messages?: {
6279
6279
  text: string;
6280
- type: "error" | "success" | "info" | "warning";
6280
+ type: "success" | "error" | "info" | "warning";
6281
6281
  id?: number | undefined;
6282
6282
  }[] | undefined;
6283
6283
  required?: boolean | undefined;
@@ -6298,7 +6298,7 @@ export declare function init(config: AuthHeroConfig): {
6298
6298
  hint?: string | undefined;
6299
6299
  messages?: {
6300
6300
  text: string;
6301
- type: "error" | "success" | "info" | "warning";
6301
+ type: "success" | "error" | "info" | "warning";
6302
6302
  id?: number | undefined;
6303
6303
  }[] | undefined;
6304
6304
  required?: boolean | undefined;
@@ -6321,7 +6321,7 @@ export declare function init(config: AuthHeroConfig): {
6321
6321
  hint?: string | undefined;
6322
6322
  messages?: {
6323
6323
  text: string;
6324
- type: "error" | "success" | "info" | "warning";
6324
+ type: "success" | "error" | "info" | "warning";
6325
6325
  id?: number | undefined;
6326
6326
  }[] | undefined;
6327
6327
  required?: boolean | undefined;
@@ -6552,7 +6552,7 @@ export declare function init(config: AuthHeroConfig): {
6552
6552
  hint?: string | undefined;
6553
6553
  messages?: {
6554
6554
  text: string;
6555
- type: "error" | "success" | "info" | "warning";
6555
+ type: "success" | "error" | "info" | "warning";
6556
6556
  id?: number | undefined;
6557
6557
  }[] | undefined;
6558
6558
  required?: boolean | undefined;
@@ -6570,7 +6570,7 @@ export declare function init(config: AuthHeroConfig): {
6570
6570
  hint?: string | undefined;
6571
6571
  messages?: {
6572
6572
  text: string;
6573
- type: "error" | "success" | "info" | "warning";
6573
+ type: "success" | "error" | "info" | "warning";
6574
6574
  id?: number | undefined;
6575
6575
  }[] | undefined;
6576
6576
  required?: boolean | undefined;
@@ -6594,7 +6594,7 @@ export declare function init(config: AuthHeroConfig): {
6594
6594
  hint?: string | undefined;
6595
6595
  messages?: {
6596
6596
  text: string;
6597
- type: "error" | "success" | "info" | "warning";
6597
+ type: "success" | "error" | "info" | "warning";
6598
6598
  id?: number | undefined;
6599
6599
  }[] | undefined;
6600
6600
  required?: boolean | undefined;
@@ -6618,7 +6618,7 @@ export declare function init(config: AuthHeroConfig): {
6618
6618
  hint?: string | undefined;
6619
6619
  messages?: {
6620
6620
  text: string;
6621
- type: "error" | "success" | "info" | "warning";
6621
+ type: "success" | "error" | "info" | "warning";
6622
6622
  id?: number | undefined;
6623
6623
  }[] | undefined;
6624
6624
  required?: boolean | undefined;
@@ -6642,7 +6642,7 @@ export declare function init(config: AuthHeroConfig): {
6642
6642
  hint?: string | undefined;
6643
6643
  messages?: {
6644
6644
  text: string;
6645
- type: "error" | "success" | "info" | "warning";
6645
+ type: "success" | "error" | "info" | "warning";
6646
6646
  id?: number | undefined;
6647
6647
  }[] | undefined;
6648
6648
  required?: boolean | undefined;
@@ -6671,7 +6671,7 @@ export declare function init(config: AuthHeroConfig): {
6671
6671
  hint?: string | undefined;
6672
6672
  messages?: {
6673
6673
  text: string;
6674
- type: "error" | "success" | "info" | "warning";
6674
+ type: "success" | "error" | "info" | "warning";
6675
6675
  id?: number | undefined;
6676
6676
  }[] | undefined;
6677
6677
  required?: boolean | undefined;
@@ -6686,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
6686
6686
  hint?: string | undefined;
6687
6687
  messages?: {
6688
6688
  text: string;
6689
- type: "error" | "success" | "info" | "warning";
6689
+ type: "success" | "error" | "info" | "warning";
6690
6690
  id?: number | undefined;
6691
6691
  }[] | undefined;
6692
6692
  required?: boolean | undefined;
@@ -6707,7 +6707,7 @@ export declare function init(config: AuthHeroConfig): {
6707
6707
  hint?: string | undefined;
6708
6708
  messages?: {
6709
6709
  text: string;
6710
- type: "error" | "success" | "info" | "warning";
6710
+ type: "success" | "error" | "info" | "warning";
6711
6711
  id?: number | undefined;
6712
6712
  }[] | undefined;
6713
6713
  required?: boolean | undefined;
@@ -6732,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
6732
6732
  hint?: string | undefined;
6733
6733
  messages?: {
6734
6734
  text: string;
6735
- type: "error" | "success" | "info" | "warning";
6735
+ type: "success" | "error" | "info" | "warning";
6736
6736
  id?: number | undefined;
6737
6737
  }[] | undefined;
6738
6738
  required?: boolean | undefined;
@@ -6753,7 +6753,7 @@ export declare function init(config: AuthHeroConfig): {
6753
6753
  hint?: string | undefined;
6754
6754
  messages?: {
6755
6755
  text: string;
6756
- type: "error" | "success" | "info" | "warning";
6756
+ type: "success" | "error" | "info" | "warning";
6757
6757
  id?: number | undefined;
6758
6758
  }[] | undefined;
6759
6759
  required?: boolean | undefined;
@@ -6773,7 +6773,7 @@ export declare function init(config: AuthHeroConfig): {
6773
6773
  hint?: string | undefined;
6774
6774
  messages?: {
6775
6775
  text: string;
6776
- type: "error" | "success" | "info" | "warning";
6776
+ type: "success" | "error" | "info" | "warning";
6777
6777
  id?: number | undefined;
6778
6778
  }[] | undefined;
6779
6779
  required?: boolean | undefined;
@@ -6792,7 +6792,7 @@ export declare function init(config: AuthHeroConfig): {
6792
6792
  hint?: string | undefined;
6793
6793
  messages?: {
6794
6794
  text: string;
6795
- type: "error" | "success" | "info" | "warning";
6795
+ type: "success" | "error" | "info" | "warning";
6796
6796
  id?: number | undefined;
6797
6797
  }[] | undefined;
6798
6798
  required?: boolean | undefined;
@@ -6814,7 +6814,7 @@ export declare function init(config: AuthHeroConfig): {
6814
6814
  hint?: string | undefined;
6815
6815
  messages?: {
6816
6816
  text: string;
6817
- type: "error" | "success" | "info" | "warning";
6817
+ type: "success" | "error" | "info" | "warning";
6818
6818
  id?: number | undefined;
6819
6819
  }[] | undefined;
6820
6820
  required?: boolean | undefined;
@@ -6836,7 +6836,7 @@ export declare function init(config: AuthHeroConfig): {
6836
6836
  hint?: string | undefined;
6837
6837
  messages?: {
6838
6838
  text: string;
6839
- type: "error" | "success" | "info" | "warning";
6839
+ type: "success" | "error" | "info" | "warning";
6840
6840
  id?: number | undefined;
6841
6841
  }[] | undefined;
6842
6842
  required?: boolean | undefined;
@@ -6855,7 +6855,7 @@ export declare function init(config: AuthHeroConfig): {
6855
6855
  hint?: string | undefined;
6856
6856
  messages?: {
6857
6857
  text: string;
6858
- type: "error" | "success" | "info" | "warning";
6858
+ type: "success" | "error" | "info" | "warning";
6859
6859
  id?: number | undefined;
6860
6860
  }[] | undefined;
6861
6861
  required?: boolean | undefined;
@@ -6882,7 +6882,7 @@ export declare function init(config: AuthHeroConfig): {
6882
6882
  hint?: string | undefined;
6883
6883
  messages?: {
6884
6884
  text: string;
6885
- type: "error" | "success" | "info" | "warning";
6885
+ type: "success" | "error" | "info" | "warning";
6886
6886
  id?: number | undefined;
6887
6887
  }[] | undefined;
6888
6888
  required?: boolean | undefined;
@@ -6903,7 +6903,7 @@ export declare function init(config: AuthHeroConfig): {
6903
6903
  hint?: string | undefined;
6904
6904
  messages?: {
6905
6905
  text: string;
6906
- type: "error" | "success" | "info" | "warning";
6906
+ type: "success" | "error" | "info" | "warning";
6907
6907
  id?: number | undefined;
6908
6908
  }[] | undefined;
6909
6909
  required?: boolean | undefined;
@@ -6926,7 +6926,7 @@ export declare function init(config: AuthHeroConfig): {
6926
6926
  hint?: string | undefined;
6927
6927
  messages?: {
6928
6928
  text: string;
6929
- type: "error" | "success" | "info" | "warning";
6929
+ type: "success" | "error" | "info" | "warning";
6930
6930
  id?: number | undefined;
6931
6931
  }[] | undefined;
6932
6932
  required?: boolean | undefined;
@@ -7232,7 +7232,7 @@ export declare function init(config: AuthHeroConfig): {
7232
7232
  };
7233
7233
  };
7234
7234
  output: {
7235
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7235
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7236
7236
  language: string;
7237
7237
  }[];
7238
7238
  outputFormat: "json";
@@ -7270,7 +7270,7 @@ export declare function init(config: AuthHeroConfig): {
7270
7270
  $get: {
7271
7271
  input: {
7272
7272
  param: {
7273
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7273
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7274
7274
  language: string;
7275
7275
  };
7276
7276
  } & {
@@ -7292,7 +7292,7 @@ export declare function init(config: AuthHeroConfig): {
7292
7292
  $put: {
7293
7293
  input: {
7294
7294
  param: {
7295
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7295
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7296
7296
  language: string;
7297
7297
  };
7298
7298
  } & {
@@ -7316,7 +7316,7 @@ export declare function init(config: AuthHeroConfig): {
7316
7316
  $delete: {
7317
7317
  input: {
7318
7318
  param: {
7319
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
7319
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
7320
7320
  language: string;
7321
7321
  };
7322
7322
  } & {
@@ -8199,7 +8199,7 @@ export declare function init(config: AuthHeroConfig): {
8199
8199
  };
8200
8200
  } | {
8201
8201
  mode: "inline";
8202
- status: "error" | "success";
8202
+ status: "success" | "error";
8203
8203
  connection_id: string;
8204
8204
  connection_name: string;
8205
8205
  strategy: string;
@@ -8928,7 +8928,7 @@ export declare function init(config: AuthHeroConfig): {
8928
8928
  log_type: string;
8929
8929
  category: "user_action" | "admin_action" | "system" | "api";
8930
8930
  actor: {
8931
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8931
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8932
8932
  id?: string | undefined;
8933
8933
  email?: string | undefined;
8934
8934
  org_id?: string | undefined;
@@ -9599,7 +9599,7 @@ export declare function init(config: AuthHeroConfig): {
9599
9599
  };
9600
9600
  };
9601
9601
  output: {
9602
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
9602
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
9603
9603
  date: string;
9604
9604
  isMobile: boolean;
9605
9605
  log_id: string;
@@ -9638,7 +9638,7 @@ export declare function init(config: AuthHeroConfig): {
9638
9638
  limit: number;
9639
9639
  length: number;
9640
9640
  logs: {
9641
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
9641
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
9642
9642
  date: string;
9643
9643
  isMobile: boolean;
9644
9644
  log_id: string;
@@ -9677,7 +9677,7 @@ export declare function init(config: AuthHeroConfig): {
9677
9677
  next?: string | undefined;
9678
9678
  } | {
9679
9679
  logs: {
9680
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
9680
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
9681
9681
  date: string;
9682
9682
  isMobile: boolean;
9683
9683
  log_id: string;
@@ -9731,7 +9731,7 @@ export declare function init(config: AuthHeroConfig): {
9731
9731
  };
9732
9732
  };
9733
9733
  output: {
9734
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
9734
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
9735
9735
  date: string;
9736
9736
  isMobile: boolean;
9737
9737
  log_id: string;
@@ -9887,7 +9887,7 @@ export declare function init(config: AuthHeroConfig): {
9887
9887
  audience?: string | undefined;
9888
9888
  client_id?: string | undefined;
9889
9889
  allow_any_organization?: string | undefined;
9890
- subject_type?: "client" | "user" | undefined;
9890
+ subject_type?: "user" | "client" | undefined;
9891
9891
  };
9892
9892
  } & {
9893
9893
  header: {
@@ -9902,7 +9902,7 @@ export declare function init(config: AuthHeroConfig): {
9902
9902
  organization_usage?: "deny" | "allow" | "require" | undefined;
9903
9903
  allow_any_organization?: boolean | undefined;
9904
9904
  is_system?: boolean | undefined;
9905
- subject_type?: "client" | "user" | undefined;
9905
+ subject_type?: "user" | "client" | undefined;
9906
9906
  authorization_details_types?: string[] | undefined;
9907
9907
  created_at?: string | undefined;
9908
9908
  updated_at?: string | undefined;
@@ -9918,7 +9918,7 @@ export declare function init(config: AuthHeroConfig): {
9918
9918
  organization_usage?: "deny" | "allow" | "require" | undefined;
9919
9919
  allow_any_organization?: boolean | undefined;
9920
9920
  is_system?: boolean | undefined;
9921
- subject_type?: "client" | "user" | undefined;
9921
+ subject_type?: "user" | "client" | undefined;
9922
9922
  authorization_details_types?: string[] | undefined;
9923
9923
  created_at?: string | undefined;
9924
9924
  updated_at?: string | undefined;
@@ -9934,7 +9934,7 @@ export declare function init(config: AuthHeroConfig): {
9934
9934
  organization_usage?: "deny" | "allow" | "require" | undefined;
9935
9935
  allow_any_organization?: boolean | undefined;
9936
9936
  is_system?: boolean | undefined;
9937
- subject_type?: "client" | "user" | undefined;
9937
+ subject_type?: "user" | "client" | undefined;
9938
9938
  authorization_details_types?: string[] | undefined;
9939
9939
  created_at?: string | undefined;
9940
9940
  updated_at?: string | undefined;
@@ -9965,7 +9965,7 @@ export declare function init(config: AuthHeroConfig): {
9965
9965
  organization_usage?: "deny" | "allow" | "require" | undefined;
9966
9966
  allow_any_organization?: boolean | undefined;
9967
9967
  is_system?: boolean | undefined;
9968
- subject_type?: "client" | "user" | undefined;
9968
+ subject_type?: "user" | "client" | undefined;
9969
9969
  authorization_details_types?: string[] | undefined;
9970
9970
  created_at?: string | undefined;
9971
9971
  updated_at?: string | undefined;
@@ -10010,7 +10010,7 @@ export declare function init(config: AuthHeroConfig): {
10010
10010
  organization_usage?: "deny" | "allow" | "require" | undefined;
10011
10011
  allow_any_organization?: boolean | undefined;
10012
10012
  is_system?: boolean | undefined;
10013
- subject_type?: "client" | "user" | undefined;
10013
+ subject_type?: "user" | "client" | undefined;
10014
10014
  authorization_details_types?: string[] | undefined;
10015
10015
  };
10016
10016
  };
@@ -10022,7 +10022,7 @@ export declare function init(config: AuthHeroConfig): {
10022
10022
  organization_usage?: "deny" | "allow" | "require" | undefined;
10023
10023
  allow_any_organization?: boolean | undefined;
10024
10024
  is_system?: boolean | undefined;
10025
- subject_type?: "client" | "user" | undefined;
10025
+ subject_type?: "user" | "client" | undefined;
10026
10026
  authorization_details_types?: string[] | undefined;
10027
10027
  created_at?: string | undefined;
10028
10028
  updated_at?: string | undefined;
@@ -10046,7 +10046,7 @@ export declare function init(config: AuthHeroConfig): {
10046
10046
  organization_usage?: "deny" | "allow" | "require" | undefined;
10047
10047
  allow_any_organization?: boolean | undefined;
10048
10048
  is_system?: boolean | undefined;
10049
- subject_type?: "client" | "user" | undefined;
10049
+ subject_type?: "user" | "client" | undefined;
10050
10050
  authorization_details_types?: string[] | undefined;
10051
10051
  };
10052
10052
  };
@@ -10058,7 +10058,7 @@ export declare function init(config: AuthHeroConfig): {
10058
10058
  organization_usage?: "deny" | "allow" | "require" | undefined;
10059
10059
  allow_any_organization?: boolean | undefined;
10060
10060
  is_system?: boolean | undefined;
10061
- subject_type?: "client" | "user" | undefined;
10061
+ subject_type?: "user" | "client" | undefined;
10062
10062
  authorization_details_types?: string[] | undefined;
10063
10063
  created_at?: string | undefined;
10064
10064
  updated_at?: string | undefined;
@@ -10142,7 +10142,7 @@ export declare function init(config: AuthHeroConfig): {
10142
10142
  addons?: {
10143
10143
  [x: string]: any;
10144
10144
  } | undefined;
10145
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10145
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10146
10146
  client_metadata?: {
10147
10147
  [x: string]: string;
10148
10148
  } | undefined;
@@ -10244,7 +10244,7 @@ export declare function init(config: AuthHeroConfig): {
10244
10244
  addons?: {
10245
10245
  [x: string]: any;
10246
10246
  } | undefined;
10247
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10247
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10248
10248
  client_metadata?: {
10249
10249
  [x: string]: string;
10250
10250
  } | undefined;
@@ -10346,7 +10346,7 @@ export declare function init(config: AuthHeroConfig): {
10346
10346
  addons?: {
10347
10347
  [x: string]: any;
10348
10348
  } | undefined;
10349
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10349
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10350
10350
  client_metadata?: {
10351
10351
  [x: string]: string;
10352
10352
  } | undefined;
@@ -10463,7 +10463,7 @@ export declare function init(config: AuthHeroConfig): {
10463
10463
  addons?: {
10464
10464
  [x: string]: any;
10465
10465
  } | undefined;
10466
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10466
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10467
10467
  client_metadata?: {
10468
10468
  [x: string]: string;
10469
10469
  } | undefined;
@@ -10581,7 +10581,7 @@ export declare function init(config: AuthHeroConfig): {
10581
10581
  custom_login_page_preview?: string | undefined;
10582
10582
  form_template?: string | undefined;
10583
10583
  addons?: Record<string, any> | undefined;
10584
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10584
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10585
10585
  client_metadata?: Record<string, string> | undefined;
10586
10586
  hide_sign_up_disabled_error?: boolean | undefined;
10587
10587
  mobile?: Record<string, any> | undefined;
@@ -10667,7 +10667,7 @@ export declare function init(config: AuthHeroConfig): {
10667
10667
  addons?: {
10668
10668
  [x: string]: any;
10669
10669
  } | undefined;
10670
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10670
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10671
10671
  client_metadata?: {
10672
10672
  [x: string]: string;
10673
10673
  } | undefined;
@@ -10764,7 +10764,7 @@ export declare function init(config: AuthHeroConfig): {
10764
10764
  custom_login_page_preview?: string | undefined;
10765
10765
  form_template?: string | undefined;
10766
10766
  addons?: Record<string, any> | undefined;
10767
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10767
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10768
10768
  client_metadata?: Record<string, string> | undefined;
10769
10769
  hide_sign_up_disabled_error?: boolean | undefined;
10770
10770
  mobile?: Record<string, any> | undefined;
@@ -10850,7 +10850,7 @@ export declare function init(config: AuthHeroConfig): {
10850
10850
  addons?: {
10851
10851
  [x: string]: any;
10852
10852
  } | undefined;
10853
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10853
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10854
10854
  client_metadata?: {
10855
10855
  [x: string]: string;
10856
10856
  } | undefined;
@@ -11310,13 +11310,13 @@ export declare function init(config: AuthHeroConfig): {
11310
11310
  };
11311
11311
  };
11312
11312
  output: {
11313
+ type: "jwt_signing" | "saml_encryption";
11313
11314
  kid: string;
11314
11315
  cert: string;
11315
11316
  fingerprint: string;
11316
11317
  thumbprint: string;
11317
- type: "jwt_signing" | "saml_encryption";
11318
- tenant_id?: string | undefined;
11319
11318
  connection?: string | undefined;
11319
+ tenant_id?: string | undefined;
11320
11320
  current?: boolean | undefined;
11321
11321
  next?: boolean | undefined;
11322
11322
  previous?: boolean | undefined;
@@ -11349,13 +11349,13 @@ export declare function init(config: AuthHeroConfig): {
11349
11349
  };
11350
11350
  };
11351
11351
  output: {
11352
+ type: "jwt_signing" | "saml_encryption";
11352
11353
  kid: string;
11353
11354
  cert: string;
11354
11355
  fingerprint: string;
11355
11356
  thumbprint: string;
11356
- type: "jwt_signing" | "saml_encryption";
11357
- tenant_id?: string | undefined;
11358
11357
  connection?: string | undefined;
11358
+ tenant_id?: string | undefined;
11359
11359
  current?: boolean | undefined;
11360
11360
  next?: boolean | undefined;
11361
11361
  previous?: boolean | undefined;
@@ -11387,13 +11387,13 @@ export declare function init(config: AuthHeroConfig): {
11387
11387
  };
11388
11388
  };
11389
11389
  output: {
11390
+ type: "jwt_signing" | "saml_encryption";
11390
11391
  kid: string;
11391
11392
  cert: string;
11392
11393
  fingerprint: string;
11393
11394
  thumbprint: string;
11394
- type: "jwt_signing" | "saml_encryption";
11395
- tenant_id?: string | undefined;
11396
11395
  connection?: string | undefined;
11396
+ tenant_id?: string | undefined;
11397
11397
  current?: boolean | undefined;
11398
11398
  next?: boolean | undefined;
11399
11399
  previous?: boolean | undefined;
@@ -11427,13 +11427,13 @@ export declare function init(config: AuthHeroConfig): {
11427
11427
  };
11428
11428
  };
11429
11429
  output: {
11430
+ type: "jwt_signing" | "saml_encryption";
11430
11431
  kid: string;
11431
11432
  cert: string;
11432
11433
  fingerprint: string;
11433
11434
  thumbprint: string;
11434
- type: "jwt_signing" | "saml_encryption";
11435
- tenant_id?: string | undefined;
11436
11435
  connection?: string | undefined;
11436
+ tenant_id?: string | undefined;
11437
11437
  current?: boolean | undefined;
11438
11438
  next?: boolean | undefined;
11439
11439
  previous?: boolean | undefined;
@@ -12285,10 +12285,10 @@ export declare function init(config: AuthHeroConfig): {
12285
12285
  };
12286
12286
  };
12287
12287
  output: {
12288
- created_at: string;
12289
12288
  id: string;
12290
- client_id: string;
12291
12289
  user_id: string;
12290
+ created_at: string;
12291
+ client_id: string;
12292
12292
  rotating: boolean;
12293
12293
  device: {
12294
12294
  initial_user_agent: string;
@@ -12303,8 +12303,6 @@ export declare function init(config: AuthHeroConfig): {
12303
12303
  audience: string;
12304
12304
  scopes: string;
12305
12305
  }[];
12306
- organization?: string | undefined;
12307
- revoked_at?: string | undefined;
12308
12306
  expires_at?: string | undefined;
12309
12307
  session_id?: string | undefined;
12310
12308
  auth_connection?: string | undefined;
@@ -12312,6 +12310,8 @@ export declare function init(config: AuthHeroConfig): {
12312
12310
  strategy: string;
12313
12311
  strategy_type: string;
12314
12312
  } | undefined;
12313
+ organization?: string | undefined;
12314
+ revoked_at?: string | undefined;
12315
12315
  idle_expires_at?: string | undefined;
12316
12316
  last_exchanged_at?: string | undefined;
12317
12317
  }[] | {
@@ -12319,10 +12319,10 @@ export declare function init(config: AuthHeroConfig): {
12319
12319
  limit: number;
12320
12320
  length: number;
12321
12321
  tokens: {
12322
- created_at: string;
12323
12322
  id: string;
12324
- client_id: string;
12325
12323
  user_id: string;
12324
+ created_at: string;
12325
+ client_id: string;
12326
12326
  rotating: boolean;
12327
12327
  device: {
12328
12328
  initial_user_agent: string;
@@ -12337,8 +12337,6 @@ export declare function init(config: AuthHeroConfig): {
12337
12337
  audience: string;
12338
12338
  scopes: string;
12339
12339
  }[];
12340
- organization?: string | undefined;
12341
- revoked_at?: string | undefined;
12342
12340
  expires_at?: string | undefined;
12343
12341
  session_id?: string | undefined;
12344
12342
  auth_connection?: string | undefined;
@@ -12346,6 +12344,8 @@ export declare function init(config: AuthHeroConfig): {
12346
12344
  strategy: string;
12347
12345
  strategy_type: string;
12348
12346
  } | undefined;
12347
+ organization?: string | undefined;
12348
+ revoked_at?: string | undefined;
12349
12349
  idle_expires_at?: string | undefined;
12350
12350
  last_exchanged_at?: string | undefined;
12351
12351
  }[];
@@ -12353,10 +12353,10 @@ export declare function init(config: AuthHeroConfig): {
12353
12353
  next?: string | undefined;
12354
12354
  } | {
12355
12355
  tokens: {
12356
- created_at: string;
12357
12356
  id: string;
12358
- client_id: string;
12359
12357
  user_id: string;
12358
+ created_at: string;
12359
+ client_id: string;
12360
12360
  rotating: boolean;
12361
12361
  device: {
12362
12362
  initial_user_agent: string;
@@ -12371,8 +12371,6 @@ export declare function init(config: AuthHeroConfig): {
12371
12371
  audience: string;
12372
12372
  scopes: string;
12373
12373
  }[];
12374
- organization?: string | undefined;
12375
- revoked_at?: string | undefined;
12376
12374
  expires_at?: string | undefined;
12377
12375
  session_id?: string | undefined;
12378
12376
  auth_connection?: string | undefined;
@@ -12380,6 +12378,8 @@ export declare function init(config: AuthHeroConfig): {
12380
12378
  strategy: string;
12381
12379
  strategy_type: string;
12382
12380
  } | undefined;
12381
+ organization?: string | undefined;
12382
+ revoked_at?: string | undefined;
12383
12383
  idle_expires_at?: string | undefined;
12384
12384
  last_exchanged_at?: string | undefined;
12385
12385
  }[];
@@ -12431,7 +12431,7 @@ export declare function init(config: AuthHeroConfig): {
12431
12431
  };
12432
12432
  };
12433
12433
  output: {
12434
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
12434
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
12435
12435
  date: string;
12436
12436
  isMobile: boolean;
12437
12437
  log_id: string;
@@ -12470,7 +12470,7 @@ export declare function init(config: AuthHeroConfig): {
12470
12470
  limit: number;
12471
12471
  length: number;
12472
12472
  logs: {
12473
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
12473
+ type: "fn" | "sapi" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
12474
12474
  date: string;
12475
12475
  isMobile: boolean;
12476
12476
  log_id: string;
@@ -12789,7 +12789,7 @@ export declare function init(config: AuthHeroConfig): {
12789
12789
  };
12790
12790
  } & {
12791
12791
  json: {
12792
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12792
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12793
12793
  body: string;
12794
12794
  from: string;
12795
12795
  subject: string;
@@ -12810,7 +12810,7 @@ export declare function init(config: AuthHeroConfig): {
12810
12810
  };
12811
12811
  } & {
12812
12812
  json: {
12813
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12813
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12814
12814
  body: string;
12815
12815
  from: string;
12816
12816
  subject: string;
@@ -12822,7 +12822,7 @@ export declare function init(config: AuthHeroConfig): {
12822
12822
  };
12823
12823
  };
12824
12824
  output: {
12825
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12825
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12826
12826
  body: string;
12827
12827
  from: string;
12828
12828
  subject: string;
@@ -12845,7 +12845,7 @@ export declare function init(config: AuthHeroConfig): {
12845
12845
  };
12846
12846
  };
12847
12847
  output: {
12848
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12848
+ name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12849
12849
  body: string;
12850
12850
  subject: string;
12851
12851
  }[];
@@ -12858,7 +12858,7 @@ export declare function init(config: AuthHeroConfig): {
12858
12858
  $get: {
12859
12859
  input: {
12860
12860
  param: {
12861
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12861
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12862
12862
  };
12863
12863
  } & {
12864
12864
  header: {
@@ -12871,7 +12871,7 @@ export declare function init(config: AuthHeroConfig): {
12871
12871
  } | {
12872
12872
  input: {
12873
12873
  param: {
12874
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12874
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12875
12875
  };
12876
12876
  } & {
12877
12877
  header: {
@@ -12879,7 +12879,7 @@ export declare function init(config: AuthHeroConfig): {
12879
12879
  };
12880
12880
  };
12881
12881
  output: {
12882
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12882
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12883
12883
  body: string;
12884
12884
  from: string;
12885
12885
  subject: string;
@@ -12898,7 +12898,7 @@ export declare function init(config: AuthHeroConfig): {
12898
12898
  $put: {
12899
12899
  input: {
12900
12900
  param: {
12901
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12901
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12902
12902
  };
12903
12903
  } & {
12904
12904
  header: {
@@ -12906,7 +12906,7 @@ export declare function init(config: AuthHeroConfig): {
12906
12906
  };
12907
12907
  } & {
12908
12908
  json: {
12909
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12909
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12910
12910
  body: string;
12911
12911
  subject: string;
12912
12912
  syntax?: "liquid" | undefined;
@@ -12918,7 +12918,7 @@ export declare function init(config: AuthHeroConfig): {
12918
12918
  };
12919
12919
  };
12920
12920
  output: {
12921
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12921
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12922
12922
  body: string;
12923
12923
  from: string;
12924
12924
  subject: string;
@@ -12937,7 +12937,7 @@ export declare function init(config: AuthHeroConfig): {
12937
12937
  $patch: {
12938
12938
  input: {
12939
12939
  param: {
12940
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12940
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12941
12941
  };
12942
12942
  } & {
12943
12943
  header: {
@@ -12945,7 +12945,7 @@ export declare function init(config: AuthHeroConfig): {
12945
12945
  };
12946
12946
  } & {
12947
12947
  json: {
12948
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12948
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12949
12949
  body?: string | undefined;
12950
12950
  from?: string | undefined;
12951
12951
  subject?: string | undefined;
@@ -12962,7 +12962,7 @@ export declare function init(config: AuthHeroConfig): {
12962
12962
  } | {
12963
12963
  input: {
12964
12964
  param: {
12965
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12965
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12966
12966
  };
12967
12967
  } & {
12968
12968
  header: {
@@ -12970,7 +12970,7 @@ export declare function init(config: AuthHeroConfig): {
12970
12970
  };
12971
12971
  } & {
12972
12972
  json: {
12973
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12973
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12974
12974
  body?: string | undefined;
12975
12975
  from?: string | undefined;
12976
12976
  subject?: string | undefined;
@@ -12982,7 +12982,7 @@ export declare function init(config: AuthHeroConfig): {
12982
12982
  };
12983
12983
  };
12984
12984
  output: {
12985
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12985
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12986
12986
  body: string;
12987
12987
  from: string;
12988
12988
  subject: string;
@@ -13001,7 +13001,7 @@ export declare function init(config: AuthHeroConfig): {
13001
13001
  $delete: {
13002
13002
  input: {
13003
13003
  param: {
13004
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13004
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13005
13005
  };
13006
13006
  } & {
13007
13007
  header: {
@@ -13014,7 +13014,7 @@ export declare function init(config: AuthHeroConfig): {
13014
13014
  } | {
13015
13015
  input: {
13016
13016
  param: {
13017
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13017
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13018
13018
  };
13019
13019
  } & {
13020
13020
  header: {
@@ -13031,7 +13031,7 @@ export declare function init(config: AuthHeroConfig): {
13031
13031
  $post: {
13032
13032
  input: {
13033
13033
  param: {
13034
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13034
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
13035
13035
  };
13036
13036
  } & {
13037
13037
  header: {
@@ -13314,7 +13314,7 @@ export declare function init(config: AuthHeroConfig): {
13314
13314
  type: "auth0_managed_certs" | "self_managed_certs";
13315
13315
  custom_domain_id: string;
13316
13316
  primary: boolean;
13317
- status: "disabled" | "pending" | "ready" | "pending_verification";
13317
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13318
13318
  verification_method?: "txt" | undefined;
13319
13319
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13320
13320
  domain_metadata?: {
@@ -13355,7 +13355,7 @@ export declare function init(config: AuthHeroConfig): {
13355
13355
  type: "auth0_managed_certs" | "self_managed_certs";
13356
13356
  custom_domain_id: string;
13357
13357
  primary: boolean;
13358
- status: "disabled" | "pending" | "ready" | "pending_verification";
13358
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13359
13359
  verification_method?: "txt" | undefined;
13360
13360
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13361
13361
  domain_metadata?: {
@@ -13419,7 +13419,7 @@ export declare function init(config: AuthHeroConfig): {
13419
13419
  type: "auth0_managed_certs" | "self_managed_certs";
13420
13420
  custom_domain_id: string;
13421
13421
  primary: boolean;
13422
- status: "disabled" | "pending" | "ready" | "pending_verification";
13422
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13423
13423
  verification_method?: "txt" | undefined;
13424
13424
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13425
13425
  domain_metadata?: {
@@ -13466,7 +13466,7 @@ export declare function init(config: AuthHeroConfig): {
13466
13466
  type: "auth0_managed_certs" | "self_managed_certs";
13467
13467
  custom_domain_id: string;
13468
13468
  primary: boolean;
13469
- status: "disabled" | "pending" | "ready" | "pending_verification";
13469
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13470
13470
  verification_method?: "txt" | undefined;
13471
13471
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13472
13472
  domain_metadata?: {
@@ -13512,7 +13512,7 @@ export declare function init(config: AuthHeroConfig): {
13512
13512
  type: "auth0_managed_certs" | "self_managed_certs";
13513
13513
  custom_domain_id: string;
13514
13514
  primary: boolean;
13515
- status: "disabled" | "pending" | "ready" | "pending_verification";
13515
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13516
13516
  verification_method?: "txt" | undefined;
13517
13517
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13518
13518
  domain_metadata?: {
@@ -13553,7 +13553,7 @@ export declare function init(config: AuthHeroConfig): {
13553
13553
  type: "auth0_managed_certs" | "self_managed_certs";
13554
13554
  custom_domain_id: string;
13555
13555
  primary: boolean;
13556
- status: "disabled" | "pending" | "ready" | "pending_verification";
13556
+ status: "pending" | "ready" | "disabled" | "pending_verification";
13557
13557
  verification_method?: "txt" | undefined;
13558
13558
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
13559
13559
  domain_metadata?: {
@@ -13983,7 +13983,7 @@ export declare function init(config: AuthHeroConfig): {
13983
13983
  } & {
13984
13984
  json: {
13985
13985
  body?: string | undefined;
13986
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
13986
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
13987
13987
  branding?: {
13988
13988
  colors?: {
13989
13989
  primary: string;
@@ -15245,7 +15245,7 @@ export declare function init(config: AuthHeroConfig): {
15245
15245
  scope?: string | undefined;
15246
15246
  grant_types?: string[] | undefined;
15247
15247
  response_types?: string[] | undefined;
15248
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15248
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
15249
15249
  jwks_uri?: string | undefined;
15250
15250
  jwks?: Record<string, unknown> | undefined;
15251
15251
  software_id?: string | undefined;
@@ -15334,7 +15334,7 @@ export declare function init(config: AuthHeroConfig): {
15334
15334
  scope?: string | undefined;
15335
15335
  grant_types?: string[] | undefined;
15336
15336
  response_types?: string[] | undefined;
15337
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15337
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
15338
15338
  jwks_uri?: string | undefined;
15339
15339
  jwks?: Record<string, unknown> | undefined;
15340
15340
  software_id?: string | undefined;
@@ -15680,19 +15680,19 @@ export declare function init(config: AuthHeroConfig): {
15680
15680
  email: string;
15681
15681
  send: "code" | "link";
15682
15682
  authParams: {
15683
+ username?: string | undefined;
15684
+ state?: string | undefined;
15685
+ audience?: string | undefined;
15683
15686
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15684
15687
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15685
15688
  scope?: string | undefined;
15686
- username?: string | undefined;
15687
- audience?: string | undefined;
15688
- nonce?: string | undefined;
15689
15689
  organization?: string | undefined;
15690
15690
  redirect_uri?: string | undefined;
15691
- state?: string | undefined;
15692
- act_as?: string | undefined;
15693
- prompt?: string | undefined;
15694
15691
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15695
15692
  code_challenge?: string | undefined;
15693
+ nonce?: string | undefined;
15694
+ act_as?: string | undefined;
15695
+ prompt?: string | undefined;
15696
15696
  ui_locales?: string | undefined;
15697
15697
  max_age?: number | undefined;
15698
15698
  acr_values?: string | undefined;
@@ -15716,19 +15716,19 @@ export declare function init(config: AuthHeroConfig): {
15716
15716
  phone_number: string;
15717
15717
  send: "code" | "link";
15718
15718
  authParams: {
15719
+ username?: string | undefined;
15720
+ state?: string | undefined;
15721
+ audience?: string | undefined;
15719
15722
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15720
15723
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15721
15724
  scope?: string | undefined;
15722
- username?: string | undefined;
15723
- audience?: string | undefined;
15724
- nonce?: string | undefined;
15725
15725
  organization?: string | undefined;
15726
15726
  redirect_uri?: string | undefined;
15727
- state?: string | undefined;
15728
- act_as?: string | undefined;
15729
- prompt?: string | undefined;
15730
15727
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15731
15728
  code_challenge?: string | undefined;
15729
+ nonce?: string | undefined;
15730
+ act_as?: string | undefined;
15731
+ prompt?: string | undefined;
15732
15732
  ui_locales?: string | undefined;
15733
15733
  max_age?: number | undefined;
15734
15734
  acr_values?: string | undefined;
@@ -16464,7 +16464,7 @@ export declare function init(config: AuthHeroConfig): {
16464
16464
  output: {
16465
16465
  keys: {
16466
16466
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
16467
- kty: "RSA" | "EC" | "oct";
16467
+ kty: "EC" | "RSA" | "oct";
16468
16468
  kid?: string | undefined;
16469
16469
  use?: "sig" | "enc" | undefined;
16470
16470
  n?: string | undefined;
@@ -17280,7 +17280,7 @@ export declare function init(config: AuthHeroConfig): {
17280
17280
  } & {
17281
17281
  form: {
17282
17282
  username: string;
17283
- login_selection?: "code" | "password" | undefined;
17283
+ login_selection?: "password" | "code" | undefined;
17284
17284
  };
17285
17285
  };
17286
17286
  output: {};
@@ -17294,7 +17294,7 @@ export declare function init(config: AuthHeroConfig): {
17294
17294
  } & {
17295
17295
  form: {
17296
17296
  username: string;
17297
- login_selection?: "code" | "password" | undefined;
17297
+ login_selection?: "password" | "code" | undefined;
17298
17298
  };
17299
17299
  };
17300
17300
  output: {};
@@ -17659,7 +17659,7 @@ export declare function init(config: AuthHeroConfig): {
17659
17659
  $get: {
17660
17660
  input: {
17661
17661
  param: {
17662
- screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17662
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17663
17663
  };
17664
17664
  } & {
17665
17665
  query: {
@@ -17675,7 +17675,7 @@ export declare function init(config: AuthHeroConfig): {
17675
17675
  } | {
17676
17676
  input: {
17677
17677
  param: {
17678
- screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17678
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17679
17679
  };
17680
17680
  } & {
17681
17681
  query: {
@@ -17691,7 +17691,7 @@ export declare function init(config: AuthHeroConfig): {
17691
17691
  } | {
17692
17692
  input: {
17693
17693
  param: {
17694
- screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17694
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
17695
17695
  };
17696
17696
  } & {
17697
17697
  query: {
@@ -17711,7 +17711,7 @@ export declare function init(config: AuthHeroConfig): {
17711
17711
  $post: {
17712
17712
  input: {
17713
17713
  param: {
17714
- screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "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";
17714
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "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";
17715
17715
  };
17716
17716
  } & {
17717
17717
  query: {
@@ -17729,7 +17729,7 @@ export declare function init(config: AuthHeroConfig): {
17729
17729
  } | {
17730
17730
  input: {
17731
17731
  param: {
17732
- screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "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";
17732
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "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";
17733
17733
  };
17734
17734
  } & {
17735
17735
  query: {