authhero 8.21.0 → 8.22.1

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 (48) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +142 -142
  3. package/dist/authhero.d.ts +529 -276
  4. package/dist/authhero.mjs +22201 -17447
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +7 -7
  7. package/dist/types/errors/is-http-exception-like.d.ts +11 -0
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  9. package/dist/types/index.d.ts +407 -273
  10. package/dist/types/routes/auth-api/account.d.ts +2 -2
  11. package/dist/types/routes/auth-api/authorize.d.ts +14 -14
  12. package/dist/types/routes/auth-api/index.d.ts +46 -46
  13. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  14. package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
  15. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  16. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  17. package/dist/types/routes/auth-api/well-known.d.ts +2 -2
  18. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  19. package/dist/types/routes/management-api/actions.d.ts +1 -1
  20. package/dist/types/routes/management-api/branding.d.ts +1 -1
  21. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  22. package/dist/types/routes/management-api/clients.d.ts +110 -15
  23. package/dist/types/routes/management-api/connections.d.ts +21 -21
  24. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  25. package/dist/types/routes/management-api/flows.d.ts +7 -7
  26. package/dist/types/routes/management-api/forms.d.ts +126 -126
  27. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  28. package/dist/types/routes/management-api/index.d.ts +353 -220
  29. package/dist/types/routes/management-api/logs.d.ts +41 -3
  30. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  31. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  32. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  33. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  34. package/dist/types/routes/management-api/users.d.ts +2 -2
  35. package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.d.ts +122 -0
  36. package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.test.d.ts +1 -0
  37. package/dist/types/routes/universal-login/common.d.ts +10 -10
  38. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  39. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  40. package/dist/types/routes/universal-login/index.d.ts +2 -2
  41. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  42. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  43. package/dist/types/utils/crypto.d.ts +3 -0
  44. package/dist/types/utils/jwks.d.ts +4 -4
  45. package/dist/types/utils/jwt.d.ts +29 -0
  46. package/dist/types/utils/request-origin.d.ts +6 -0
  47. package/dist/types/utils/totp.d.ts +10 -0
  48. package/package.json +6 -7
@@ -30,6 +30,7 @@ export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, }
30
30
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
31
31
  export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
32
32
  export { wrapProxyAdaptersWithKvPublish, backfillProxyHostsToKv, type KvPublishOptions, type WrappedProxyAdapters, type BackfillProxyHostsOptions, type BackfillResult, } from "./routes/proxy-control-plane/kv-publish";
33
+ export { createWfpTenantHostResolver, wrapTenantsAdapterWithWfpKvPublish, composeHostResolvers, wfpTenantHost, isWfpSubdomainSafeTenantId, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, type WfpTenantHostResolverOptions, type WfpTenantsKvPublishOptions, } from "./routes/proxy-control-plane/wfp-tenant-hosts";
33
34
  export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
34
35
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
35
36
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
@@ -62,8 +63,8 @@ export declare function init(config: AuthHeroConfig): {
62
63
  $get: {
63
64
  input: {
64
65
  query: {
65
- include_password_hashes?: "false" | "true" | undefined;
66
- gzip?: "false" | "true" | undefined;
66
+ include_password_hashes?: "true" | "false" | undefined;
67
+ gzip?: "true" | "false" | undefined;
67
68
  };
68
69
  } & {
69
70
  header: {
@@ -76,8 +77,8 @@ export declare function init(config: AuthHeroConfig): {
76
77
  } | {
77
78
  input: {
78
79
  query: {
79
- include_password_hashes?: "false" | "true" | undefined;
80
- gzip?: "false" | "true" | undefined;
80
+ include_password_hashes?: "true" | "false" | undefined;
81
+ gzip?: "true" | "false" | undefined;
81
82
  };
82
83
  } & {
83
84
  header: {
@@ -96,7 +97,7 @@ export declare function init(config: AuthHeroConfig): {
96
97
  $post: {
97
98
  input: {
98
99
  query: {
99
- include_password_hashes?: "false" | "true" | undefined;
100
+ include_password_hashes?: "true" | "false" | undefined;
100
101
  };
101
102
  } & {
102
103
  header: {
@@ -290,7 +291,7 @@ export declare function init(config: AuthHeroConfig): {
290
291
  };
291
292
  };
292
293
  output: {
293
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
294
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
294
295
  enabled: boolean;
295
296
  trial_expired?: boolean | undefined;
296
297
  }[];
@@ -445,7 +446,7 @@ export declare function init(config: AuthHeroConfig): {
445
446
  $get: {
446
447
  input: {
447
448
  param: {
448
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
449
+ factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
449
450
  };
450
451
  } & {
451
452
  header: {
@@ -453,7 +454,7 @@ export declare function init(config: AuthHeroConfig): {
453
454
  };
454
455
  };
455
456
  output: {
456
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
457
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
457
458
  enabled: boolean;
458
459
  trial_expired?: boolean | undefined;
459
460
  };
@@ -466,7 +467,7 @@ export declare function init(config: AuthHeroConfig): {
466
467
  $put: {
467
468
  input: {
468
469
  param: {
469
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
470
+ factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
470
471
  };
471
472
  } & {
472
473
  header: {
@@ -478,7 +479,7 @@ export declare function init(config: AuthHeroConfig): {
478
479
  };
479
480
  };
480
481
  output: {
481
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
482
+ name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
482
483
  enabled: boolean;
483
484
  trial_expired?: boolean | undefined;
484
485
  };
@@ -1258,9 +1259,9 @@ export declare function init(config: AuthHeroConfig): {
1258
1259
  };
1259
1260
  id?: string | undefined;
1260
1261
  connection_id?: string | undefined;
1261
- roles?: string[] | undefined;
1262
1262
  app_metadata?: Record<string, any> | undefined;
1263
1263
  user_metadata?: Record<string, any> | undefined;
1264
+ roles?: string[] | undefined;
1264
1265
  ttl_sec?: number | undefined;
1265
1266
  send_invitation_email?: boolean | undefined;
1266
1267
  };
@@ -1445,8 +1446,8 @@ export declare function init(config: AuthHeroConfig): {
1445
1446
  };
1446
1447
  } & {
1447
1448
  json: {
1448
- assign_membership_on_login?: boolean | undefined;
1449
1449
  show_as_button?: boolean | undefined;
1450
+ assign_membership_on_login?: boolean | undefined;
1450
1451
  is_signup_enabled?: boolean | undefined;
1451
1452
  };
1452
1453
  };
@@ -2115,7 +2116,7 @@ export declare function init(config: AuthHeroConfig): {
2115
2116
  type: "REDIRECT";
2116
2117
  action: "REDIRECT_USER";
2117
2118
  params: {
2118
- target: "custom" | "change-email" | "account";
2119
+ target: "custom" | "account" | "change-email";
2119
2120
  custom_url?: string | undefined;
2120
2121
  };
2121
2122
  alias?: string | undefined;
@@ -2168,7 +2169,7 @@ export declare function init(config: AuthHeroConfig): {
2168
2169
  type: "REDIRECT";
2169
2170
  action: "REDIRECT_USER";
2170
2171
  params: {
2171
- target: "custom" | "change-email" | "account";
2172
+ target: "custom" | "account" | "change-email";
2172
2173
  custom_url?: string | undefined;
2173
2174
  };
2174
2175
  alias?: string | undefined;
@@ -2237,7 +2238,7 @@ export declare function init(config: AuthHeroConfig): {
2237
2238
  type: "REDIRECT";
2238
2239
  action: "REDIRECT_USER";
2239
2240
  params: {
2240
- target: "custom" | "change-email" | "account";
2241
+ target: "custom" | "account" | "change-email";
2241
2242
  custom_url?: string | undefined;
2242
2243
  };
2243
2244
  alias?: string | undefined;
@@ -2318,7 +2319,7 @@ export declare function init(config: AuthHeroConfig): {
2318
2319
  type: "REDIRECT";
2319
2320
  action: "REDIRECT_USER";
2320
2321
  params: {
2321
- target: "custom" | "change-email" | "account";
2322
+ target: "custom" | "account" | "change-email";
2322
2323
  custom_url?: string | undefined;
2323
2324
  };
2324
2325
  alias?: string | undefined;
@@ -2366,7 +2367,7 @@ export declare function init(config: AuthHeroConfig): {
2366
2367
  type: "REDIRECT";
2367
2368
  action: "REDIRECT_USER";
2368
2369
  params: {
2369
- target: "custom" | "change-email" | "account";
2370
+ target: "custom" | "account" | "change-email";
2370
2371
  custom_url?: string | undefined;
2371
2372
  };
2372
2373
  alias?: string | undefined;
@@ -2426,7 +2427,7 @@ export declare function init(config: AuthHeroConfig): {
2426
2427
  type: "REDIRECT";
2427
2428
  action: "REDIRECT_USER";
2428
2429
  params: {
2429
- target: "custom" | "change-email" | "account";
2430
+ target: "custom" | "account" | "change-email";
2430
2431
  custom_url?: string | undefined;
2431
2432
  };
2432
2433
  alias?: string | undefined;
@@ -2474,7 +2475,7 @@ export declare function init(config: AuthHeroConfig): {
2474
2475
  type: "REDIRECT";
2475
2476
  action: "REDIRECT_USER";
2476
2477
  params: {
2477
- target: "custom" | "change-email" | "account";
2478
+ target: "custom" | "account" | "change-email";
2478
2479
  custom_url?: string | undefined;
2479
2480
  };
2480
2481
  alias?: string | undefined;
@@ -2692,7 +2693,7 @@ export declare function init(config: AuthHeroConfig): {
2692
2693
  hint?: string | undefined;
2693
2694
  messages?: {
2694
2695
  text: string;
2695
- type: "error" | "success" | "info" | "warning";
2696
+ type: "success" | "error" | "info" | "warning";
2696
2697
  id?: number | undefined;
2697
2698
  }[] | undefined;
2698
2699
  required?: boolean | undefined;
@@ -2710,7 +2711,7 @@ export declare function init(config: AuthHeroConfig): {
2710
2711
  hint?: string | undefined;
2711
2712
  messages?: {
2712
2713
  text: string;
2713
- type: "error" | "success" | "info" | "warning";
2714
+ type: "success" | "error" | "info" | "warning";
2714
2715
  id?: number | undefined;
2715
2716
  }[] | undefined;
2716
2717
  required?: boolean | undefined;
@@ -2734,7 +2735,7 @@ export declare function init(config: AuthHeroConfig): {
2734
2735
  hint?: string | undefined;
2735
2736
  messages?: {
2736
2737
  text: string;
2737
- type: "error" | "success" | "info" | "warning";
2738
+ type: "success" | "error" | "info" | "warning";
2738
2739
  id?: number | undefined;
2739
2740
  }[] | undefined;
2740
2741
  required?: boolean | undefined;
@@ -2758,7 +2759,7 @@ export declare function init(config: AuthHeroConfig): {
2758
2759
  hint?: string | undefined;
2759
2760
  messages?: {
2760
2761
  text: string;
2761
- type: "error" | "success" | "info" | "warning";
2762
+ type: "success" | "error" | "info" | "warning";
2762
2763
  id?: number | undefined;
2763
2764
  }[] | undefined;
2764
2765
  required?: boolean | undefined;
@@ -2782,7 +2783,7 @@ export declare function init(config: AuthHeroConfig): {
2782
2783
  hint?: string | undefined;
2783
2784
  messages?: {
2784
2785
  text: string;
2785
- type: "error" | "success" | "info" | "warning";
2786
+ type: "success" | "error" | "info" | "warning";
2786
2787
  id?: number | undefined;
2787
2788
  }[] | undefined;
2788
2789
  required?: boolean | undefined;
@@ -2811,7 +2812,7 @@ export declare function init(config: AuthHeroConfig): {
2811
2812
  hint?: string | undefined;
2812
2813
  messages?: {
2813
2814
  text: string;
2814
- type: "error" | "success" | "info" | "warning";
2815
+ type: "success" | "error" | "info" | "warning";
2815
2816
  id?: number | undefined;
2816
2817
  }[] | undefined;
2817
2818
  required?: boolean | undefined;
@@ -2826,7 +2827,7 @@ export declare function init(config: AuthHeroConfig): {
2826
2827
  hint?: string | undefined;
2827
2828
  messages?: {
2828
2829
  text: string;
2829
- type: "error" | "success" | "info" | "warning";
2830
+ type: "success" | "error" | "info" | "warning";
2830
2831
  id?: number | undefined;
2831
2832
  }[] | undefined;
2832
2833
  required?: boolean | undefined;
@@ -2847,7 +2848,7 @@ export declare function init(config: AuthHeroConfig): {
2847
2848
  hint?: string | undefined;
2848
2849
  messages?: {
2849
2850
  text: string;
2850
- type: "error" | "success" | "info" | "warning";
2851
+ type: "success" | "error" | "info" | "warning";
2851
2852
  id?: number | undefined;
2852
2853
  }[] | undefined;
2853
2854
  required?: boolean | undefined;
@@ -2872,7 +2873,7 @@ export declare function init(config: AuthHeroConfig): {
2872
2873
  hint?: string | undefined;
2873
2874
  messages?: {
2874
2875
  text: string;
2875
- type: "error" | "success" | "info" | "warning";
2876
+ type: "success" | "error" | "info" | "warning";
2876
2877
  id?: number | undefined;
2877
2878
  }[] | undefined;
2878
2879
  required?: boolean | undefined;
@@ -2891,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
2891
2892
  hint?: string | undefined;
2892
2893
  messages?: {
2893
2894
  text: string;
2894
- type: "error" | "success" | "info" | "warning";
2895
+ type: "success" | "error" | "info" | "warning";
2895
2896
  id?: number | undefined;
2896
2897
  }[] | undefined;
2897
2898
  required?: boolean | undefined;
@@ -2911,7 +2912,7 @@ export declare function init(config: AuthHeroConfig): {
2911
2912
  hint?: string | undefined;
2912
2913
  messages?: {
2913
2914
  text: string;
2914
- type: "error" | "success" | "info" | "warning";
2915
+ type: "success" | "error" | "info" | "warning";
2915
2916
  id?: number | undefined;
2916
2917
  }[] | undefined;
2917
2918
  required?: boolean | undefined;
@@ -2930,7 +2931,7 @@ export declare function init(config: AuthHeroConfig): {
2930
2931
  hint?: string | undefined;
2931
2932
  messages?: {
2932
2933
  text: string;
2933
- type: "error" | "success" | "info" | "warning";
2934
+ type: "success" | "error" | "info" | "warning";
2934
2935
  id?: number | undefined;
2935
2936
  }[] | undefined;
2936
2937
  required?: boolean | undefined;
@@ -2952,7 +2953,7 @@ export declare function init(config: AuthHeroConfig): {
2952
2953
  hint?: string | undefined;
2953
2954
  messages?: {
2954
2955
  text: string;
2955
- type: "error" | "success" | "info" | "warning";
2956
+ type: "success" | "error" | "info" | "warning";
2956
2957
  id?: number | undefined;
2957
2958
  }[] | undefined;
2958
2959
  required?: boolean | undefined;
@@ -2974,7 +2975,7 @@ export declare function init(config: AuthHeroConfig): {
2974
2975
  hint?: string | undefined;
2975
2976
  messages?: {
2976
2977
  text: string;
2977
- type: "error" | "success" | "info" | "warning";
2978
+ type: "success" | "error" | "info" | "warning";
2978
2979
  id?: number | undefined;
2979
2980
  }[] | undefined;
2980
2981
  required?: boolean | undefined;
@@ -2993,7 +2994,7 @@ export declare function init(config: AuthHeroConfig): {
2993
2994
  hint?: string | undefined;
2994
2995
  messages?: {
2995
2996
  text: string;
2996
- type: "error" | "success" | "info" | "warning";
2997
+ type: "success" | "error" | "info" | "warning";
2997
2998
  id?: number | undefined;
2998
2999
  }[] | undefined;
2999
3000
  required?: boolean | undefined;
@@ -3018,7 +3019,7 @@ export declare function init(config: AuthHeroConfig): {
3018
3019
  hint?: string | undefined;
3019
3020
  messages?: {
3020
3021
  text: string;
3021
- type: "error" | "success" | "info" | "warning";
3022
+ type: "success" | "error" | "info" | "warning";
3022
3023
  id?: number | undefined;
3023
3024
  }[] | undefined;
3024
3025
  required?: boolean | undefined;
@@ -3039,7 +3040,7 @@ export declare function init(config: AuthHeroConfig): {
3039
3040
  hint?: string | undefined;
3040
3041
  messages?: {
3041
3042
  text: string;
3042
- type: "error" | "success" | "info" | "warning";
3043
+ type: "success" | "error" | "info" | "warning";
3043
3044
  id?: number | undefined;
3044
3045
  }[] | undefined;
3045
3046
  required?: boolean | undefined;
@@ -3060,7 +3061,7 @@ export declare function init(config: AuthHeroConfig): {
3060
3061
  hint?: string | undefined;
3061
3062
  messages?: {
3062
3063
  text: string;
3063
- type: "error" | "success" | "info" | "warning";
3064
+ type: "success" | "error" | "info" | "warning";
3064
3065
  id?: number | undefined;
3065
3066
  }[] | undefined;
3066
3067
  required?: boolean | undefined;
@@ -3293,7 +3294,7 @@ export declare function init(config: AuthHeroConfig): {
3293
3294
  hint?: string | undefined;
3294
3295
  messages?: {
3295
3296
  text: string;
3296
- type: "error" | "success" | "info" | "warning";
3297
+ type: "success" | "error" | "info" | "warning";
3297
3298
  id?: number | undefined;
3298
3299
  }[] | undefined;
3299
3300
  required?: boolean | undefined;
@@ -3311,7 +3312,7 @@ export declare function init(config: AuthHeroConfig): {
3311
3312
  hint?: string | undefined;
3312
3313
  messages?: {
3313
3314
  text: string;
3314
- type: "error" | "success" | "info" | "warning";
3315
+ type: "success" | "error" | "info" | "warning";
3315
3316
  id?: number | undefined;
3316
3317
  }[] | undefined;
3317
3318
  required?: boolean | undefined;
@@ -3335,7 +3336,7 @@ export declare function init(config: AuthHeroConfig): {
3335
3336
  hint?: string | undefined;
3336
3337
  messages?: {
3337
3338
  text: string;
3338
- type: "error" | "success" | "info" | "warning";
3339
+ type: "success" | "error" | "info" | "warning";
3339
3340
  id?: number | undefined;
3340
3341
  }[] | undefined;
3341
3342
  required?: boolean | undefined;
@@ -3359,7 +3360,7 @@ export declare function init(config: AuthHeroConfig): {
3359
3360
  hint?: string | undefined;
3360
3361
  messages?: {
3361
3362
  text: string;
3362
- type: "error" | "success" | "info" | "warning";
3363
+ type: "success" | "error" | "info" | "warning";
3363
3364
  id?: number | undefined;
3364
3365
  }[] | undefined;
3365
3366
  required?: boolean | undefined;
@@ -3383,7 +3384,7 @@ export declare function init(config: AuthHeroConfig): {
3383
3384
  hint?: string | undefined;
3384
3385
  messages?: {
3385
3386
  text: string;
3386
- type: "error" | "success" | "info" | "warning";
3387
+ type: "success" | "error" | "info" | "warning";
3387
3388
  id?: number | undefined;
3388
3389
  }[] | undefined;
3389
3390
  required?: boolean | undefined;
@@ -3412,7 +3413,7 @@ export declare function init(config: AuthHeroConfig): {
3412
3413
  hint?: string | undefined;
3413
3414
  messages?: {
3414
3415
  text: string;
3415
- type: "error" | "success" | "info" | "warning";
3416
+ type: "success" | "error" | "info" | "warning";
3416
3417
  id?: number | undefined;
3417
3418
  }[] | undefined;
3418
3419
  required?: boolean | undefined;
@@ -3427,7 +3428,7 @@ export declare function init(config: AuthHeroConfig): {
3427
3428
  hint?: string | undefined;
3428
3429
  messages?: {
3429
3430
  text: string;
3430
- type: "error" | "success" | "info" | "warning";
3431
+ type: "success" | "error" | "info" | "warning";
3431
3432
  id?: number | undefined;
3432
3433
  }[] | undefined;
3433
3434
  required?: boolean | undefined;
@@ -3448,7 +3449,7 @@ export declare function init(config: AuthHeroConfig): {
3448
3449
  hint?: string | undefined;
3449
3450
  messages?: {
3450
3451
  text: string;
3451
- type: "error" | "success" | "info" | "warning";
3452
+ type: "success" | "error" | "info" | "warning";
3452
3453
  id?: number | undefined;
3453
3454
  }[] | undefined;
3454
3455
  required?: boolean | undefined;
@@ -3473,7 +3474,7 @@ export declare function init(config: AuthHeroConfig): {
3473
3474
  hint?: string | undefined;
3474
3475
  messages?: {
3475
3476
  text: string;
3476
- type: "error" | "success" | "info" | "warning";
3477
+ type: "success" | "error" | "info" | "warning";
3477
3478
  id?: number | undefined;
3478
3479
  }[] | undefined;
3479
3480
  required?: boolean | undefined;
@@ -3492,7 +3493,7 @@ export declare function init(config: AuthHeroConfig): {
3492
3493
  hint?: string | undefined;
3493
3494
  messages?: {
3494
3495
  text: string;
3495
- type: "error" | "success" | "info" | "warning";
3496
+ type: "success" | "error" | "info" | "warning";
3496
3497
  id?: number | undefined;
3497
3498
  }[] | undefined;
3498
3499
  required?: boolean | undefined;
@@ -3512,7 +3513,7 @@ export declare function init(config: AuthHeroConfig): {
3512
3513
  hint?: string | undefined;
3513
3514
  messages?: {
3514
3515
  text: string;
3515
- type: "error" | "success" | "info" | "warning";
3516
+ type: "success" | "error" | "info" | "warning";
3516
3517
  id?: number | undefined;
3517
3518
  }[] | undefined;
3518
3519
  required?: boolean | undefined;
@@ -3531,7 +3532,7 @@ export declare function init(config: AuthHeroConfig): {
3531
3532
  hint?: string | undefined;
3532
3533
  messages?: {
3533
3534
  text: string;
3534
- type: "error" | "success" | "info" | "warning";
3535
+ type: "success" | "error" | "info" | "warning";
3535
3536
  id?: number | undefined;
3536
3537
  }[] | undefined;
3537
3538
  required?: boolean | undefined;
@@ -3553,7 +3554,7 @@ export declare function init(config: AuthHeroConfig): {
3553
3554
  hint?: string | undefined;
3554
3555
  messages?: {
3555
3556
  text: string;
3556
- type: "error" | "success" | "info" | "warning";
3557
+ type: "success" | "error" | "info" | "warning";
3557
3558
  id?: number | undefined;
3558
3559
  }[] | undefined;
3559
3560
  required?: boolean | undefined;
@@ -3575,7 +3576,7 @@ export declare function init(config: AuthHeroConfig): {
3575
3576
  hint?: string | undefined;
3576
3577
  messages?: {
3577
3578
  text: string;
3578
- type: "error" | "success" | "info" | "warning";
3579
+ type: "success" | "error" | "info" | "warning";
3579
3580
  id?: number | undefined;
3580
3581
  }[] | undefined;
3581
3582
  required?: boolean | undefined;
@@ -3594,7 +3595,7 @@ export declare function init(config: AuthHeroConfig): {
3594
3595
  hint?: string | undefined;
3595
3596
  messages?: {
3596
3597
  text: string;
3597
- type: "error" | "success" | "info" | "warning";
3598
+ type: "success" | "error" | "info" | "warning";
3598
3599
  id?: number | undefined;
3599
3600
  }[] | undefined;
3600
3601
  required?: boolean | undefined;
@@ -3619,7 +3620,7 @@ export declare function init(config: AuthHeroConfig): {
3619
3620
  hint?: string | undefined;
3620
3621
  messages?: {
3621
3622
  text: string;
3622
- type: "error" | "success" | "info" | "warning";
3623
+ type: "success" | "error" | "info" | "warning";
3623
3624
  id?: number | undefined;
3624
3625
  }[] | undefined;
3625
3626
  required?: boolean | undefined;
@@ -3640,7 +3641,7 @@ export declare function init(config: AuthHeroConfig): {
3640
3641
  hint?: string | undefined;
3641
3642
  messages?: {
3642
3643
  text: string;
3643
- type: "error" | "success" | "info" | "warning";
3644
+ type: "success" | "error" | "info" | "warning";
3644
3645
  id?: number | undefined;
3645
3646
  }[] | undefined;
3646
3647
  required?: boolean | undefined;
@@ -3661,7 +3662,7 @@ export declare function init(config: AuthHeroConfig): {
3661
3662
  hint?: string | undefined;
3662
3663
  messages?: {
3663
3664
  text: string;
3664
- type: "error" | "success" | "info" | "warning";
3665
+ type: "success" | "error" | "info" | "warning";
3665
3666
  id?: number | undefined;
3666
3667
  }[] | undefined;
3667
3668
  required?: boolean | undefined;
@@ -3910,7 +3911,7 @@ export declare function init(config: AuthHeroConfig): {
3910
3911
  hint?: string | undefined;
3911
3912
  messages?: {
3912
3913
  text: string;
3913
- type: "error" | "success" | "info" | "warning";
3914
+ type: "success" | "error" | "info" | "warning";
3914
3915
  id?: number | undefined;
3915
3916
  }[] | undefined;
3916
3917
  required?: boolean | undefined;
@@ -3928,7 +3929,7 @@ export declare function init(config: AuthHeroConfig): {
3928
3929
  hint?: string | undefined;
3929
3930
  messages?: {
3930
3931
  text: string;
3931
- type: "error" | "success" | "info" | "warning";
3932
+ type: "success" | "error" | "info" | "warning";
3932
3933
  id?: number | undefined;
3933
3934
  }[] | undefined;
3934
3935
  required?: boolean | undefined;
@@ -3952,7 +3953,7 @@ export declare function init(config: AuthHeroConfig): {
3952
3953
  hint?: string | undefined;
3953
3954
  messages?: {
3954
3955
  text: string;
3955
- type: "error" | "success" | "info" | "warning";
3956
+ type: "success" | "error" | "info" | "warning";
3956
3957
  id?: number | undefined;
3957
3958
  }[] | undefined;
3958
3959
  required?: boolean | undefined;
@@ -3976,7 +3977,7 @@ export declare function init(config: AuthHeroConfig): {
3976
3977
  hint?: string | undefined;
3977
3978
  messages?: {
3978
3979
  text: string;
3979
- type: "error" | "success" | "info" | "warning";
3980
+ type: "success" | "error" | "info" | "warning";
3980
3981
  id?: number | undefined;
3981
3982
  }[] | undefined;
3982
3983
  required?: boolean | undefined;
@@ -4000,7 +4001,7 @@ export declare function init(config: AuthHeroConfig): {
4000
4001
  hint?: string | undefined;
4001
4002
  messages?: {
4002
4003
  text: string;
4003
- type: "error" | "success" | "info" | "warning";
4004
+ type: "success" | "error" | "info" | "warning";
4004
4005
  id?: number | undefined;
4005
4006
  }[] | undefined;
4006
4007
  required?: boolean | undefined;
@@ -4029,7 +4030,7 @@ export declare function init(config: AuthHeroConfig): {
4029
4030
  hint?: string | undefined;
4030
4031
  messages?: {
4031
4032
  text: string;
4032
- type: "error" | "success" | "info" | "warning";
4033
+ type: "success" | "error" | "info" | "warning";
4033
4034
  id?: number | undefined;
4034
4035
  }[] | undefined;
4035
4036
  required?: boolean | undefined;
@@ -4044,7 +4045,7 @@ export declare function init(config: AuthHeroConfig): {
4044
4045
  hint?: string | undefined;
4045
4046
  messages?: {
4046
4047
  text: string;
4047
- type: "error" | "success" | "info" | "warning";
4048
+ type: "success" | "error" | "info" | "warning";
4048
4049
  id?: number | undefined;
4049
4050
  }[] | undefined;
4050
4051
  required?: boolean | undefined;
@@ -4065,7 +4066,7 @@ export declare function init(config: AuthHeroConfig): {
4065
4066
  hint?: string | undefined;
4066
4067
  messages?: {
4067
4068
  text: string;
4068
- type: "error" | "success" | "info" | "warning";
4069
+ type: "success" | "error" | "info" | "warning";
4069
4070
  id?: number | undefined;
4070
4071
  }[] | undefined;
4071
4072
  required?: boolean | undefined;
@@ -4090,7 +4091,7 @@ export declare function init(config: AuthHeroConfig): {
4090
4091
  hint?: string | undefined;
4091
4092
  messages?: {
4092
4093
  text: string;
4093
- type: "error" | "success" | "info" | "warning";
4094
+ type: "success" | "error" | "info" | "warning";
4094
4095
  id?: number | undefined;
4095
4096
  }[] | undefined;
4096
4097
  required?: boolean | undefined;
@@ -4109,7 +4110,7 @@ export declare function init(config: AuthHeroConfig): {
4109
4110
  hint?: string | undefined;
4110
4111
  messages?: {
4111
4112
  text: string;
4112
- type: "error" | "success" | "info" | "warning";
4113
+ type: "success" | "error" | "info" | "warning";
4113
4114
  id?: number | undefined;
4114
4115
  }[] | undefined;
4115
4116
  required?: boolean | undefined;
@@ -4129,7 +4130,7 @@ export declare function init(config: AuthHeroConfig): {
4129
4130
  hint?: string | undefined;
4130
4131
  messages?: {
4131
4132
  text: string;
4132
- type: "error" | "success" | "info" | "warning";
4133
+ type: "success" | "error" | "info" | "warning";
4133
4134
  id?: number | undefined;
4134
4135
  }[] | undefined;
4135
4136
  required?: boolean | undefined;
@@ -4148,7 +4149,7 @@ export declare function init(config: AuthHeroConfig): {
4148
4149
  hint?: string | undefined;
4149
4150
  messages?: {
4150
4151
  text: string;
4151
- type: "error" | "success" | "info" | "warning";
4152
+ type: "success" | "error" | "info" | "warning";
4152
4153
  id?: number | undefined;
4153
4154
  }[] | undefined;
4154
4155
  required?: boolean | undefined;
@@ -4170,7 +4171,7 @@ export declare function init(config: AuthHeroConfig): {
4170
4171
  hint?: string | undefined;
4171
4172
  messages?: {
4172
4173
  text: string;
4173
- type: "error" | "success" | "info" | "warning";
4174
+ type: "success" | "error" | "info" | "warning";
4174
4175
  id?: number | undefined;
4175
4176
  }[] | undefined;
4176
4177
  required?: boolean | undefined;
@@ -4192,7 +4193,7 @@ export declare function init(config: AuthHeroConfig): {
4192
4193
  hint?: string | undefined;
4193
4194
  messages?: {
4194
4195
  text: string;
4195
- type: "error" | "success" | "info" | "warning";
4196
+ type: "success" | "error" | "info" | "warning";
4196
4197
  id?: number | undefined;
4197
4198
  }[] | undefined;
4198
4199
  required?: boolean | undefined;
@@ -4211,7 +4212,7 @@ export declare function init(config: AuthHeroConfig): {
4211
4212
  hint?: string | undefined;
4212
4213
  messages?: {
4213
4214
  text: string;
4214
- type: "error" | "success" | "info" | "warning";
4215
+ type: "success" | "error" | "info" | "warning";
4215
4216
  id?: number | undefined;
4216
4217
  }[] | undefined;
4217
4218
  required?: boolean | undefined;
@@ -4236,7 +4237,7 @@ export declare function init(config: AuthHeroConfig): {
4236
4237
  hint?: string | undefined;
4237
4238
  messages?: {
4238
4239
  text: string;
4239
- type: "error" | "success" | "info" | "warning";
4240
+ type: "success" | "error" | "info" | "warning";
4240
4241
  id?: number | undefined;
4241
4242
  }[] | undefined;
4242
4243
  required?: boolean | undefined;
@@ -4257,7 +4258,7 @@ export declare function init(config: AuthHeroConfig): {
4257
4258
  hint?: string | undefined;
4258
4259
  messages?: {
4259
4260
  text: string;
4260
- type: "error" | "success" | "info" | "warning";
4261
+ type: "success" | "error" | "info" | "warning";
4261
4262
  id?: number | undefined;
4262
4263
  }[] | undefined;
4263
4264
  required?: boolean | undefined;
@@ -4278,7 +4279,7 @@ export declare function init(config: AuthHeroConfig): {
4278
4279
  hint?: string | undefined;
4279
4280
  messages?: {
4280
4281
  text: string;
4281
- type: "error" | "success" | "info" | "warning";
4282
+ type: "success" | "error" | "info" | "warning";
4282
4283
  id?: number | undefined;
4283
4284
  }[] | undefined;
4284
4285
  required?: boolean | undefined;
@@ -4532,7 +4533,7 @@ export declare function init(config: AuthHeroConfig): {
4532
4533
  hint?: string | undefined;
4533
4534
  messages?: {
4534
4535
  text: string;
4535
- type: "error" | "success" | "info" | "warning";
4536
+ type: "success" | "error" | "info" | "warning";
4536
4537
  id?: number | undefined;
4537
4538
  }[] | undefined;
4538
4539
  required?: boolean | undefined;
@@ -4550,7 +4551,7 @@ export declare function init(config: AuthHeroConfig): {
4550
4551
  hint?: string | undefined;
4551
4552
  messages?: {
4552
4553
  text: string;
4553
- type: "error" | "success" | "info" | "warning";
4554
+ type: "success" | "error" | "info" | "warning";
4554
4555
  id?: number | undefined;
4555
4556
  }[] | undefined;
4556
4557
  required?: boolean | undefined;
@@ -4574,7 +4575,7 @@ export declare function init(config: AuthHeroConfig): {
4574
4575
  hint?: string | undefined;
4575
4576
  messages?: {
4576
4577
  text: string;
4577
- type: "error" | "success" | "info" | "warning";
4578
+ type: "success" | "error" | "info" | "warning";
4578
4579
  id?: number | undefined;
4579
4580
  }[] | undefined;
4580
4581
  required?: boolean | undefined;
@@ -4598,7 +4599,7 @@ export declare function init(config: AuthHeroConfig): {
4598
4599
  hint?: string | undefined;
4599
4600
  messages?: {
4600
4601
  text: string;
4601
- type: "error" | "success" | "info" | "warning";
4602
+ type: "success" | "error" | "info" | "warning";
4602
4603
  id?: number | undefined;
4603
4604
  }[] | undefined;
4604
4605
  required?: boolean | undefined;
@@ -4622,7 +4623,7 @@ export declare function init(config: AuthHeroConfig): {
4622
4623
  hint?: string | undefined;
4623
4624
  messages?: {
4624
4625
  text: string;
4625
- type: "error" | "success" | "info" | "warning";
4626
+ type: "success" | "error" | "info" | "warning";
4626
4627
  id?: number | undefined;
4627
4628
  }[] | undefined;
4628
4629
  required?: boolean | undefined;
@@ -4647,7 +4648,7 @@ export declare function init(config: AuthHeroConfig): {
4647
4648
  hint?: string | undefined;
4648
4649
  messages?: {
4649
4650
  text: string;
4650
- type: "error" | "success" | "info" | "warning";
4651
+ type: "success" | "error" | "info" | "warning";
4651
4652
  id?: number | undefined;
4652
4653
  }[] | undefined;
4653
4654
  required?: boolean | undefined;
@@ -4662,7 +4663,7 @@ export declare function init(config: AuthHeroConfig): {
4662
4663
  hint?: string | undefined;
4663
4664
  messages?: {
4664
4665
  text: string;
4665
- type: "error" | "success" | "info" | "warning";
4666
+ type: "success" | "error" | "info" | "warning";
4666
4667
  id?: number | undefined;
4667
4668
  }[] | undefined;
4668
4669
  required?: boolean | undefined;
@@ -4683,7 +4684,7 @@ export declare function init(config: AuthHeroConfig): {
4683
4684
  hint?: string | undefined;
4684
4685
  messages?: {
4685
4686
  text: string;
4686
- type: "error" | "success" | "info" | "warning";
4687
+ type: "success" | "error" | "info" | "warning";
4687
4688
  id?: number | undefined;
4688
4689
  }[] | undefined;
4689
4690
  required?: boolean | undefined;
@@ -4708,7 +4709,7 @@ export declare function init(config: AuthHeroConfig): {
4708
4709
  hint?: string | undefined;
4709
4710
  messages?: {
4710
4711
  text: string;
4711
- type: "error" | "success" | "info" | "warning";
4712
+ type: "success" | "error" | "info" | "warning";
4712
4713
  id?: number | undefined;
4713
4714
  }[] | undefined;
4714
4715
  required?: boolean | undefined;
@@ -4727,7 +4728,7 @@ export declare function init(config: AuthHeroConfig): {
4727
4728
  hint?: string | undefined;
4728
4729
  messages?: {
4729
4730
  text: string;
4730
- type: "error" | "success" | "info" | "warning";
4731
+ type: "success" | "error" | "info" | "warning";
4731
4732
  id?: number | undefined;
4732
4733
  }[] | undefined;
4733
4734
  required?: boolean | undefined;
@@ -4747,7 +4748,7 @@ export declare function init(config: AuthHeroConfig): {
4747
4748
  hint?: string | undefined;
4748
4749
  messages?: {
4749
4750
  text: string;
4750
- type: "error" | "success" | "info" | "warning";
4751
+ type: "success" | "error" | "info" | "warning";
4751
4752
  id?: number | undefined;
4752
4753
  }[] | undefined;
4753
4754
  required?: boolean | undefined;
@@ -4766,7 +4767,7 @@ export declare function init(config: AuthHeroConfig): {
4766
4767
  hint?: string | undefined;
4767
4768
  messages?: {
4768
4769
  text: string;
4769
- type: "error" | "success" | "info" | "warning";
4770
+ type: "success" | "error" | "info" | "warning";
4770
4771
  id?: number | undefined;
4771
4772
  }[] | undefined;
4772
4773
  required?: boolean | undefined;
@@ -4788,7 +4789,7 @@ export declare function init(config: AuthHeroConfig): {
4788
4789
  hint?: string | undefined;
4789
4790
  messages?: {
4790
4791
  text: string;
4791
- type: "error" | "success" | "info" | "warning";
4792
+ type: "success" | "error" | "info" | "warning";
4792
4793
  id?: number | undefined;
4793
4794
  }[] | undefined;
4794
4795
  required?: boolean | undefined;
@@ -4810,7 +4811,7 @@ export declare function init(config: AuthHeroConfig): {
4810
4811
  hint?: string | undefined;
4811
4812
  messages?: {
4812
4813
  text: string;
4813
- type: "error" | "success" | "info" | "warning";
4814
+ type: "success" | "error" | "info" | "warning";
4814
4815
  id?: number | undefined;
4815
4816
  }[] | undefined;
4816
4817
  required?: boolean | undefined;
@@ -4829,7 +4830,7 @@ export declare function init(config: AuthHeroConfig): {
4829
4830
  hint?: string | undefined;
4830
4831
  messages?: {
4831
4832
  text: string;
4832
- type: "error" | "success" | "info" | "warning";
4833
+ type: "success" | "error" | "info" | "warning";
4833
4834
  id?: number | undefined;
4834
4835
  }[] | undefined;
4835
4836
  required?: boolean | undefined;
@@ -4854,7 +4855,7 @@ export declare function init(config: AuthHeroConfig): {
4854
4855
  hint?: string | undefined;
4855
4856
  messages?: {
4856
4857
  text: string;
4857
- type: "error" | "success" | "info" | "warning";
4858
+ type: "success" | "error" | "info" | "warning";
4858
4859
  id?: number | undefined;
4859
4860
  }[] | undefined;
4860
4861
  required?: boolean | undefined;
@@ -4875,7 +4876,7 @@ export declare function init(config: AuthHeroConfig): {
4875
4876
  hint?: string | undefined;
4876
4877
  messages?: {
4877
4878
  text: string;
4878
- type: "error" | "success" | "info" | "warning";
4879
+ type: "success" | "error" | "info" | "warning";
4879
4880
  id?: number | undefined;
4880
4881
  }[] | undefined;
4881
4882
  required?: boolean | undefined;
@@ -4896,7 +4897,7 @@ export declare function init(config: AuthHeroConfig): {
4896
4897
  hint?: string | undefined;
4897
4898
  messages?: {
4898
4899
  text: string;
4899
- type: "error" | "success" | "info" | "warning";
4900
+ type: "success" | "error" | "info" | "warning";
4900
4901
  id?: number | undefined;
4901
4902
  }[] | undefined;
4902
4903
  required?: boolean | undefined;
@@ -5127,7 +5128,7 @@ export declare function init(config: AuthHeroConfig): {
5127
5128
  hint?: string | undefined;
5128
5129
  messages?: {
5129
5130
  text: string;
5130
- type: "error" | "success" | "info" | "warning";
5131
+ type: "success" | "error" | "info" | "warning";
5131
5132
  id?: number | undefined;
5132
5133
  }[] | undefined;
5133
5134
  required?: boolean | undefined;
@@ -5145,7 +5146,7 @@ export declare function init(config: AuthHeroConfig): {
5145
5146
  hint?: string | undefined;
5146
5147
  messages?: {
5147
5148
  text: string;
5148
- type: "error" | "success" | "info" | "warning";
5149
+ type: "success" | "error" | "info" | "warning";
5149
5150
  id?: number | undefined;
5150
5151
  }[] | undefined;
5151
5152
  required?: boolean | undefined;
@@ -5169,7 +5170,7 @@ export declare function init(config: AuthHeroConfig): {
5169
5170
  hint?: string | undefined;
5170
5171
  messages?: {
5171
5172
  text: string;
5172
- type: "error" | "success" | "info" | "warning";
5173
+ type: "success" | "error" | "info" | "warning";
5173
5174
  id?: number | undefined;
5174
5175
  }[] | undefined;
5175
5176
  required?: boolean | undefined;
@@ -5193,7 +5194,7 @@ export declare function init(config: AuthHeroConfig): {
5193
5194
  hint?: string | undefined;
5194
5195
  messages?: {
5195
5196
  text: string;
5196
- type: "error" | "success" | "info" | "warning";
5197
+ type: "success" | "error" | "info" | "warning";
5197
5198
  id?: number | undefined;
5198
5199
  }[] | undefined;
5199
5200
  required?: boolean | undefined;
@@ -5217,7 +5218,7 @@ export declare function init(config: AuthHeroConfig): {
5217
5218
  hint?: string | undefined;
5218
5219
  messages?: {
5219
5220
  text: string;
5220
- type: "error" | "success" | "info" | "warning";
5221
+ type: "success" | "error" | "info" | "warning";
5221
5222
  id?: number | undefined;
5222
5223
  }[] | undefined;
5223
5224
  required?: boolean | undefined;
@@ -5246,7 +5247,7 @@ export declare function init(config: AuthHeroConfig): {
5246
5247
  hint?: string | undefined;
5247
5248
  messages?: {
5248
5249
  text: string;
5249
- type: "error" | "success" | "info" | "warning";
5250
+ type: "success" | "error" | "info" | "warning";
5250
5251
  id?: number | undefined;
5251
5252
  }[] | undefined;
5252
5253
  required?: boolean | undefined;
@@ -5261,7 +5262,7 @@ export declare function init(config: AuthHeroConfig): {
5261
5262
  hint?: string | undefined;
5262
5263
  messages?: {
5263
5264
  text: string;
5264
- type: "error" | "success" | "info" | "warning";
5265
+ type: "success" | "error" | "info" | "warning";
5265
5266
  id?: number | undefined;
5266
5267
  }[] | undefined;
5267
5268
  required?: boolean | undefined;
@@ -5282,7 +5283,7 @@ export declare function init(config: AuthHeroConfig): {
5282
5283
  hint?: string | undefined;
5283
5284
  messages?: {
5284
5285
  text: string;
5285
- type: "error" | "success" | "info" | "warning";
5286
+ type: "success" | "error" | "info" | "warning";
5286
5287
  id?: number | undefined;
5287
5288
  }[] | undefined;
5288
5289
  required?: boolean | undefined;
@@ -5307,7 +5308,7 @@ export declare function init(config: AuthHeroConfig): {
5307
5308
  hint?: string | undefined;
5308
5309
  messages?: {
5309
5310
  text: string;
5310
- type: "error" | "success" | "info" | "warning";
5311
+ type: "success" | "error" | "info" | "warning";
5311
5312
  id?: number | undefined;
5312
5313
  }[] | undefined;
5313
5314
  required?: boolean | undefined;
@@ -5326,7 +5327,7 @@ export declare function init(config: AuthHeroConfig): {
5326
5327
  hint?: string | undefined;
5327
5328
  messages?: {
5328
5329
  text: string;
5329
- type: "error" | "success" | "info" | "warning";
5330
+ type: "success" | "error" | "info" | "warning";
5330
5331
  id?: number | undefined;
5331
5332
  }[] | undefined;
5332
5333
  required?: boolean | undefined;
@@ -5346,7 +5347,7 @@ export declare function init(config: AuthHeroConfig): {
5346
5347
  hint?: string | undefined;
5347
5348
  messages?: {
5348
5349
  text: string;
5349
- type: "error" | "success" | "info" | "warning";
5350
+ type: "success" | "error" | "info" | "warning";
5350
5351
  id?: number | undefined;
5351
5352
  }[] | undefined;
5352
5353
  required?: boolean | undefined;
@@ -5365,7 +5366,7 @@ export declare function init(config: AuthHeroConfig): {
5365
5366
  hint?: string | undefined;
5366
5367
  messages?: {
5367
5368
  text: string;
5368
- type: "error" | "success" | "info" | "warning";
5369
+ type: "success" | "error" | "info" | "warning";
5369
5370
  id?: number | undefined;
5370
5371
  }[] | undefined;
5371
5372
  required?: boolean | undefined;
@@ -5387,7 +5388,7 @@ export declare function init(config: AuthHeroConfig): {
5387
5388
  hint?: string | undefined;
5388
5389
  messages?: {
5389
5390
  text: string;
5390
- type: "error" | "success" | "info" | "warning";
5391
+ type: "success" | "error" | "info" | "warning";
5391
5392
  id?: number | undefined;
5392
5393
  }[] | undefined;
5393
5394
  required?: boolean | undefined;
@@ -5409,7 +5410,7 @@ export declare function init(config: AuthHeroConfig): {
5409
5410
  hint?: string | undefined;
5410
5411
  messages?: {
5411
5412
  text: string;
5412
- type: "error" | "success" | "info" | "warning";
5413
+ type: "success" | "error" | "info" | "warning";
5413
5414
  id?: number | undefined;
5414
5415
  }[] | undefined;
5415
5416
  required?: boolean | undefined;
@@ -5428,7 +5429,7 @@ export declare function init(config: AuthHeroConfig): {
5428
5429
  hint?: string | undefined;
5429
5430
  messages?: {
5430
5431
  text: string;
5431
- type: "error" | "success" | "info" | "warning";
5432
+ type: "success" | "error" | "info" | "warning";
5432
5433
  id?: number | undefined;
5433
5434
  }[] | undefined;
5434
5435
  required?: boolean | undefined;
@@ -5453,7 +5454,7 @@ export declare function init(config: AuthHeroConfig): {
5453
5454
  hint?: string | undefined;
5454
5455
  messages?: {
5455
5456
  text: string;
5456
- type: "error" | "success" | "info" | "warning";
5457
+ type: "success" | "error" | "info" | "warning";
5457
5458
  id?: number | undefined;
5458
5459
  }[] | undefined;
5459
5460
  required?: boolean | undefined;
@@ -5474,7 +5475,7 @@ export declare function init(config: AuthHeroConfig): {
5474
5475
  hint?: string | undefined;
5475
5476
  messages?: {
5476
5477
  text: string;
5477
- type: "error" | "success" | "info" | "warning";
5478
+ type: "success" | "error" | "info" | "warning";
5478
5479
  id?: number | undefined;
5479
5480
  }[] | undefined;
5480
5481
  required?: boolean | undefined;
@@ -5495,7 +5496,7 @@ export declare function init(config: AuthHeroConfig): {
5495
5496
  hint?: string | undefined;
5496
5497
  messages?: {
5497
5498
  text: string;
5498
- type: "error" | "success" | "info" | "warning";
5499
+ type: "success" | "error" | "info" | "warning";
5499
5500
  id?: number | undefined;
5500
5501
  }[] | undefined;
5501
5502
  required?: boolean | undefined;
@@ -5728,7 +5729,7 @@ export declare function init(config: AuthHeroConfig): {
5728
5729
  hint?: string | undefined;
5729
5730
  messages?: {
5730
5731
  text: string;
5731
- type: "error" | "success" | "info" | "warning";
5732
+ type: "success" | "error" | "info" | "warning";
5732
5733
  id?: number | undefined;
5733
5734
  }[] | undefined;
5734
5735
  required?: boolean | undefined;
@@ -5746,7 +5747,7 @@ export declare function init(config: AuthHeroConfig): {
5746
5747
  hint?: string | undefined;
5747
5748
  messages?: {
5748
5749
  text: string;
5749
- type: "error" | "success" | "info" | "warning";
5750
+ type: "success" | "error" | "info" | "warning";
5750
5751
  id?: number | undefined;
5751
5752
  }[] | undefined;
5752
5753
  required?: boolean | undefined;
@@ -5770,7 +5771,7 @@ export declare function init(config: AuthHeroConfig): {
5770
5771
  hint?: string | undefined;
5771
5772
  messages?: {
5772
5773
  text: string;
5773
- type: "error" | "success" | "info" | "warning";
5774
+ type: "success" | "error" | "info" | "warning";
5774
5775
  id?: number | undefined;
5775
5776
  }[] | undefined;
5776
5777
  required?: boolean | undefined;
@@ -5794,7 +5795,7 @@ export declare function init(config: AuthHeroConfig): {
5794
5795
  hint?: string | undefined;
5795
5796
  messages?: {
5796
5797
  text: string;
5797
- type: "error" | "success" | "info" | "warning";
5798
+ type: "success" | "error" | "info" | "warning";
5798
5799
  id?: number | undefined;
5799
5800
  }[] | undefined;
5800
5801
  required?: boolean | undefined;
@@ -5818,7 +5819,7 @@ export declare function init(config: AuthHeroConfig): {
5818
5819
  hint?: string | undefined;
5819
5820
  messages?: {
5820
5821
  text: string;
5821
- type: "error" | "success" | "info" | "warning";
5822
+ type: "success" | "error" | "info" | "warning";
5822
5823
  id?: number | undefined;
5823
5824
  }[] | undefined;
5824
5825
  required?: boolean | undefined;
@@ -5843,7 +5844,7 @@ export declare function init(config: AuthHeroConfig): {
5843
5844
  hint?: string | undefined;
5844
5845
  messages?: {
5845
5846
  text: string;
5846
- type: "error" | "success" | "info" | "warning";
5847
+ type: "success" | "error" | "info" | "warning";
5847
5848
  id?: number | undefined;
5848
5849
  }[] | undefined;
5849
5850
  required?: boolean | undefined;
@@ -5858,7 +5859,7 @@ export declare function init(config: AuthHeroConfig): {
5858
5859
  hint?: string | undefined;
5859
5860
  messages?: {
5860
5861
  text: string;
5861
- type: "error" | "success" | "info" | "warning";
5862
+ type: "success" | "error" | "info" | "warning";
5862
5863
  id?: number | undefined;
5863
5864
  }[] | undefined;
5864
5865
  required?: boolean | undefined;
@@ -5879,7 +5880,7 @@ export declare function init(config: AuthHeroConfig): {
5879
5880
  hint?: string | undefined;
5880
5881
  messages?: {
5881
5882
  text: string;
5882
- type: "error" | "success" | "info" | "warning";
5883
+ type: "success" | "error" | "info" | "warning";
5883
5884
  id?: number | undefined;
5884
5885
  }[] | undefined;
5885
5886
  required?: boolean | undefined;
@@ -5904,7 +5905,7 @@ export declare function init(config: AuthHeroConfig): {
5904
5905
  hint?: string | undefined;
5905
5906
  messages?: {
5906
5907
  text: string;
5907
- type: "error" | "success" | "info" | "warning";
5908
+ type: "success" | "error" | "info" | "warning";
5908
5909
  id?: number | undefined;
5909
5910
  }[] | undefined;
5910
5911
  required?: boolean | undefined;
@@ -5923,7 +5924,7 @@ export declare function init(config: AuthHeroConfig): {
5923
5924
  hint?: string | undefined;
5924
5925
  messages?: {
5925
5926
  text: string;
5926
- type: "error" | "success" | "info" | "warning";
5927
+ type: "success" | "error" | "info" | "warning";
5927
5928
  id?: number | undefined;
5928
5929
  }[] | undefined;
5929
5930
  required?: boolean | undefined;
@@ -5943,7 +5944,7 @@ export declare function init(config: AuthHeroConfig): {
5943
5944
  hint?: string | undefined;
5944
5945
  messages?: {
5945
5946
  text: string;
5946
- type: "error" | "success" | "info" | "warning";
5947
+ type: "success" | "error" | "info" | "warning";
5947
5948
  id?: number | undefined;
5948
5949
  }[] | undefined;
5949
5950
  required?: boolean | undefined;
@@ -5962,7 +5963,7 @@ export declare function init(config: AuthHeroConfig): {
5962
5963
  hint?: string | undefined;
5963
5964
  messages?: {
5964
5965
  text: string;
5965
- type: "error" | "success" | "info" | "warning";
5966
+ type: "success" | "error" | "info" | "warning";
5966
5967
  id?: number | undefined;
5967
5968
  }[] | undefined;
5968
5969
  required?: boolean | undefined;
@@ -5984,7 +5985,7 @@ export declare function init(config: AuthHeroConfig): {
5984
5985
  hint?: string | undefined;
5985
5986
  messages?: {
5986
5987
  text: string;
5987
- type: "error" | "success" | "info" | "warning";
5988
+ type: "success" | "error" | "info" | "warning";
5988
5989
  id?: number | undefined;
5989
5990
  }[] | undefined;
5990
5991
  required?: boolean | undefined;
@@ -6006,7 +6007,7 @@ export declare function init(config: AuthHeroConfig): {
6006
6007
  hint?: string | undefined;
6007
6008
  messages?: {
6008
6009
  text: string;
6009
- type: "error" | "success" | "info" | "warning";
6010
+ type: "success" | "error" | "info" | "warning";
6010
6011
  id?: number | undefined;
6011
6012
  }[] | undefined;
6012
6013
  required?: boolean | undefined;
@@ -6025,7 +6026,7 @@ export declare function init(config: AuthHeroConfig): {
6025
6026
  hint?: string | undefined;
6026
6027
  messages?: {
6027
6028
  text: string;
6028
- type: "error" | "success" | "info" | "warning";
6029
+ type: "success" | "error" | "info" | "warning";
6029
6030
  id?: number | undefined;
6030
6031
  }[] | undefined;
6031
6032
  required?: boolean | undefined;
@@ -6050,7 +6051,7 @@ export declare function init(config: AuthHeroConfig): {
6050
6051
  hint?: string | undefined;
6051
6052
  messages?: {
6052
6053
  text: string;
6053
- type: "error" | "success" | "info" | "warning";
6054
+ type: "success" | "error" | "info" | "warning";
6054
6055
  id?: number | undefined;
6055
6056
  }[] | undefined;
6056
6057
  required?: boolean | undefined;
@@ -6071,7 +6072,7 @@ export declare function init(config: AuthHeroConfig): {
6071
6072
  hint?: string | undefined;
6072
6073
  messages?: {
6073
6074
  text: string;
6074
- type: "error" | "success" | "info" | "warning";
6075
+ type: "success" | "error" | "info" | "warning";
6075
6076
  id?: number | undefined;
6076
6077
  }[] | undefined;
6077
6078
  required?: boolean | undefined;
@@ -6092,7 +6093,7 @@ export declare function init(config: AuthHeroConfig): {
6092
6093
  hint?: string | undefined;
6093
6094
  messages?: {
6094
6095
  text: string;
6095
- type: "error" | "success" | "info" | "warning";
6096
+ type: "success" | "error" | "info" | "warning";
6096
6097
  id?: number | undefined;
6097
6098
  }[] | undefined;
6098
6099
  required?: boolean | undefined;
@@ -6323,7 +6324,7 @@ export declare function init(config: AuthHeroConfig): {
6323
6324
  hint?: string | undefined;
6324
6325
  messages?: {
6325
6326
  text: string;
6326
- type: "error" | "success" | "info" | "warning";
6327
+ type: "success" | "error" | "info" | "warning";
6327
6328
  id?: number | undefined;
6328
6329
  }[] | undefined;
6329
6330
  required?: boolean | undefined;
@@ -6341,7 +6342,7 @@ export declare function init(config: AuthHeroConfig): {
6341
6342
  hint?: string | undefined;
6342
6343
  messages?: {
6343
6344
  text: string;
6344
- type: "error" | "success" | "info" | "warning";
6345
+ type: "success" | "error" | "info" | "warning";
6345
6346
  id?: number | undefined;
6346
6347
  }[] | undefined;
6347
6348
  required?: boolean | undefined;
@@ -6365,7 +6366,7 @@ export declare function init(config: AuthHeroConfig): {
6365
6366
  hint?: string | undefined;
6366
6367
  messages?: {
6367
6368
  text: string;
6368
- type: "error" | "success" | "info" | "warning";
6369
+ type: "success" | "error" | "info" | "warning";
6369
6370
  id?: number | undefined;
6370
6371
  }[] | undefined;
6371
6372
  required?: boolean | undefined;
@@ -6389,7 +6390,7 @@ export declare function init(config: AuthHeroConfig): {
6389
6390
  hint?: string | undefined;
6390
6391
  messages?: {
6391
6392
  text: string;
6392
- type: "error" | "success" | "info" | "warning";
6393
+ type: "success" | "error" | "info" | "warning";
6393
6394
  id?: number | undefined;
6394
6395
  }[] | undefined;
6395
6396
  required?: boolean | undefined;
@@ -6413,7 +6414,7 @@ export declare function init(config: AuthHeroConfig): {
6413
6414
  hint?: string | undefined;
6414
6415
  messages?: {
6415
6416
  text: string;
6416
- type: "error" | "success" | "info" | "warning";
6417
+ type: "success" | "error" | "info" | "warning";
6417
6418
  id?: number | undefined;
6418
6419
  }[] | undefined;
6419
6420
  required?: boolean | undefined;
@@ -6442,7 +6443,7 @@ export declare function init(config: AuthHeroConfig): {
6442
6443
  hint?: string | undefined;
6443
6444
  messages?: {
6444
6445
  text: string;
6445
- type: "error" | "success" | "info" | "warning";
6446
+ type: "success" | "error" | "info" | "warning";
6446
6447
  id?: number | undefined;
6447
6448
  }[] | undefined;
6448
6449
  required?: boolean | undefined;
@@ -6457,7 +6458,7 @@ export declare function init(config: AuthHeroConfig): {
6457
6458
  hint?: string | undefined;
6458
6459
  messages?: {
6459
6460
  text: string;
6460
- type: "error" | "success" | "info" | "warning";
6461
+ type: "success" | "error" | "info" | "warning";
6461
6462
  id?: number | undefined;
6462
6463
  }[] | undefined;
6463
6464
  required?: boolean | undefined;
@@ -6478,7 +6479,7 @@ export declare function init(config: AuthHeroConfig): {
6478
6479
  hint?: string | undefined;
6479
6480
  messages?: {
6480
6481
  text: string;
6481
- type: "error" | "success" | "info" | "warning";
6482
+ type: "success" | "error" | "info" | "warning";
6482
6483
  id?: number | undefined;
6483
6484
  }[] | undefined;
6484
6485
  required?: boolean | undefined;
@@ -6503,7 +6504,7 @@ export declare function init(config: AuthHeroConfig): {
6503
6504
  hint?: string | undefined;
6504
6505
  messages?: {
6505
6506
  text: string;
6506
- type: "error" | "success" | "info" | "warning";
6507
+ type: "success" | "error" | "info" | "warning";
6507
6508
  id?: number | undefined;
6508
6509
  }[] | undefined;
6509
6510
  required?: boolean | undefined;
@@ -6522,7 +6523,7 @@ export declare function init(config: AuthHeroConfig): {
6522
6523
  hint?: string | undefined;
6523
6524
  messages?: {
6524
6525
  text: string;
6525
- type: "error" | "success" | "info" | "warning";
6526
+ type: "success" | "error" | "info" | "warning";
6526
6527
  id?: number | undefined;
6527
6528
  }[] | undefined;
6528
6529
  required?: boolean | undefined;
@@ -6542,7 +6543,7 @@ export declare function init(config: AuthHeroConfig): {
6542
6543
  hint?: string | undefined;
6543
6544
  messages?: {
6544
6545
  text: string;
6545
- type: "error" | "success" | "info" | "warning";
6546
+ type: "success" | "error" | "info" | "warning";
6546
6547
  id?: number | undefined;
6547
6548
  }[] | undefined;
6548
6549
  required?: boolean | undefined;
@@ -6561,7 +6562,7 @@ export declare function init(config: AuthHeroConfig): {
6561
6562
  hint?: string | undefined;
6562
6563
  messages?: {
6563
6564
  text: string;
6564
- type: "error" | "success" | "info" | "warning";
6565
+ type: "success" | "error" | "info" | "warning";
6565
6566
  id?: number | undefined;
6566
6567
  }[] | undefined;
6567
6568
  required?: boolean | undefined;
@@ -6583,7 +6584,7 @@ export declare function init(config: AuthHeroConfig): {
6583
6584
  hint?: string | undefined;
6584
6585
  messages?: {
6585
6586
  text: string;
6586
- type: "error" | "success" | "info" | "warning";
6587
+ type: "success" | "error" | "info" | "warning";
6587
6588
  id?: number | undefined;
6588
6589
  }[] | undefined;
6589
6590
  required?: boolean | undefined;
@@ -6605,7 +6606,7 @@ export declare function init(config: AuthHeroConfig): {
6605
6606
  hint?: string | undefined;
6606
6607
  messages?: {
6607
6608
  text: string;
6608
- type: "error" | "success" | "info" | "warning";
6609
+ type: "success" | "error" | "info" | "warning";
6609
6610
  id?: number | undefined;
6610
6611
  }[] | undefined;
6611
6612
  required?: boolean | undefined;
@@ -6624,7 +6625,7 @@ export declare function init(config: AuthHeroConfig): {
6624
6625
  hint?: string | undefined;
6625
6626
  messages?: {
6626
6627
  text: string;
6627
- type: "error" | "success" | "info" | "warning";
6628
+ type: "success" | "error" | "info" | "warning";
6628
6629
  id?: number | undefined;
6629
6630
  }[] | undefined;
6630
6631
  required?: boolean | undefined;
@@ -6649,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
6649
6650
  hint?: string | undefined;
6650
6651
  messages?: {
6651
6652
  text: string;
6652
- type: "error" | "success" | "info" | "warning";
6653
+ type: "success" | "error" | "info" | "warning";
6653
6654
  id?: number | undefined;
6654
6655
  }[] | undefined;
6655
6656
  required?: boolean | undefined;
@@ -6670,7 +6671,7 @@ export declare function init(config: AuthHeroConfig): {
6670
6671
  hint?: string | undefined;
6671
6672
  messages?: {
6672
6673
  text: string;
6673
- type: "error" | "success" | "info" | "warning";
6674
+ type: "success" | "error" | "info" | "warning";
6674
6675
  id?: number | undefined;
6675
6676
  }[] | undefined;
6676
6677
  required?: boolean | undefined;
@@ -6691,7 +6692,7 @@ export declare function init(config: AuthHeroConfig): {
6691
6692
  hint?: string | undefined;
6692
6693
  messages?: {
6693
6694
  text: string;
6694
- type: "error" | "success" | "info" | "warning";
6695
+ type: "success" | "error" | "info" | "warning";
6695
6696
  id?: number | undefined;
6696
6697
  }[] | undefined;
6697
6698
  required?: boolean | undefined;
@@ -6921,7 +6922,7 @@ export declare function init(config: AuthHeroConfig): {
6921
6922
  };
6922
6923
  };
6923
6924
  output: {
6924
- prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
6925
+ 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";
6925
6926
  language: string;
6926
6927
  }[];
6927
6928
  outputFormat: "json";
@@ -6959,7 +6960,7 @@ export declare function init(config: AuthHeroConfig): {
6959
6960
  $get: {
6960
6961
  input: {
6961
6962
  param: {
6962
- prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
6963
+ 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";
6963
6964
  language: string;
6964
6965
  };
6965
6966
  } & {
@@ -6981,7 +6982,7 @@ export declare function init(config: AuthHeroConfig): {
6981
6982
  $put: {
6982
6983
  input: {
6983
6984
  param: {
6984
- prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
6985
+ 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";
6985
6986
  language: string;
6986
6987
  };
6987
6988
  } & {
@@ -7005,7 +7006,7 @@ export declare function init(config: AuthHeroConfig): {
7005
7006
  $delete: {
7006
7007
  input: {
7007
7008
  param: {
7008
- prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
7009
+ 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";
7009
7010
  language: string;
7010
7011
  };
7011
7012
  } & {
@@ -7097,7 +7098,7 @@ export declare function init(config: AuthHeroConfig): {
7097
7098
  active?: boolean | undefined;
7098
7099
  } | undefined;
7099
7100
  signup?: {
7100
- status?: "required" | "optional" | "disabled" | undefined;
7101
+ status?: "optional" | "required" | "disabled" | undefined;
7101
7102
  verification?: {
7102
7103
  active?: boolean | undefined;
7103
7104
  } | undefined;
@@ -7107,14 +7108,14 @@ export declare function init(config: AuthHeroConfig): {
7107
7108
  } | undefined;
7108
7109
  unique?: boolean | undefined;
7109
7110
  profile_required?: boolean | undefined;
7110
- verification_method?: "code" | "link" | undefined;
7111
+ verification_method?: "link" | "code" | undefined;
7111
7112
  } | undefined;
7112
7113
  username?: {
7113
7114
  identifier?: {
7114
7115
  active?: boolean | undefined;
7115
7116
  } | undefined;
7116
7117
  signup?: {
7117
- status?: "required" | "optional" | "disabled" | undefined;
7118
+ status?: "optional" | "required" | "disabled" | undefined;
7118
7119
  } | undefined;
7119
7120
  validation?: {
7120
7121
  max_length?: number | undefined;
@@ -7131,7 +7132,7 @@ export declare function init(config: AuthHeroConfig): {
7131
7132
  active?: boolean | undefined;
7132
7133
  } | undefined;
7133
7134
  signup?: {
7134
- status?: "required" | "optional" | "disabled" | undefined;
7135
+ status?: "optional" | "required" | "disabled" | undefined;
7135
7136
  } | undefined;
7136
7137
  } | undefined;
7137
7138
  } | undefined;
@@ -7231,7 +7232,7 @@ export declare function init(config: AuthHeroConfig): {
7231
7232
  active?: boolean | undefined;
7232
7233
  } | undefined;
7233
7234
  signup?: {
7234
- status?: "required" | "optional" | "disabled" | undefined;
7235
+ status?: "optional" | "required" | "disabled" | undefined;
7235
7236
  verification?: {
7236
7237
  active?: boolean | undefined;
7237
7238
  } | undefined;
@@ -7241,14 +7242,14 @@ export declare function init(config: AuthHeroConfig): {
7241
7242
  } | undefined;
7242
7243
  unique?: boolean | undefined;
7243
7244
  profile_required?: boolean | undefined;
7244
- verification_method?: "code" | "link" | undefined;
7245
+ verification_method?: "link" | "code" | undefined;
7245
7246
  } | undefined;
7246
7247
  username?: {
7247
7248
  identifier?: {
7248
7249
  active?: boolean | undefined;
7249
7250
  } | undefined;
7250
7251
  signup?: {
7251
- status?: "required" | "optional" | "disabled" | undefined;
7252
+ status?: "optional" | "required" | "disabled" | undefined;
7252
7253
  } | undefined;
7253
7254
  validation?: {
7254
7255
  max_length?: number | undefined;
@@ -7265,7 +7266,7 @@ export declare function init(config: AuthHeroConfig): {
7265
7266
  active?: boolean | undefined;
7266
7267
  } | undefined;
7267
7268
  signup?: {
7268
- status?: "required" | "optional" | "disabled" | undefined;
7269
+ status?: "optional" | "required" | "disabled" | undefined;
7269
7270
  } | undefined;
7270
7271
  } | undefined;
7271
7272
  } | undefined;
@@ -7381,7 +7382,7 @@ export declare function init(config: AuthHeroConfig): {
7381
7382
  active?: boolean | undefined;
7382
7383
  } | undefined;
7383
7384
  signup?: {
7384
- status?: "required" | "optional" | "disabled" | undefined;
7385
+ status?: "optional" | "required" | "disabled" | undefined;
7385
7386
  verification?: {
7386
7387
  active?: boolean | undefined;
7387
7388
  } | undefined;
@@ -7391,14 +7392,14 @@ export declare function init(config: AuthHeroConfig): {
7391
7392
  } | undefined;
7392
7393
  unique?: boolean | undefined;
7393
7394
  profile_required?: boolean | undefined;
7394
- verification_method?: "code" | "link" | undefined;
7395
+ verification_method?: "link" | "code" | undefined;
7395
7396
  } | undefined;
7396
7397
  username?: {
7397
7398
  identifier?: {
7398
7399
  active?: boolean | undefined;
7399
7400
  } | undefined;
7400
7401
  signup?: {
7401
- status?: "required" | "optional" | "disabled" | undefined;
7402
+ status?: "optional" | "required" | "disabled" | undefined;
7402
7403
  } | undefined;
7403
7404
  validation?: {
7404
7405
  max_length?: number | undefined;
@@ -7415,7 +7416,7 @@ export declare function init(config: AuthHeroConfig): {
7415
7416
  active?: boolean | undefined;
7416
7417
  } | undefined;
7417
7418
  signup?: {
7418
- status?: "required" | "optional" | "disabled" | undefined;
7419
+ status?: "optional" | "required" | "disabled" | undefined;
7419
7420
  } | undefined;
7420
7421
  } | undefined;
7421
7422
  } | undefined;
@@ -7560,7 +7561,7 @@ export declare function init(config: AuthHeroConfig): {
7560
7561
  active?: boolean | undefined;
7561
7562
  } | undefined;
7562
7563
  signup?: {
7563
- status?: "required" | "optional" | "disabled" | undefined;
7564
+ status?: "optional" | "required" | "disabled" | undefined;
7564
7565
  verification?: {
7565
7566
  active?: boolean | undefined;
7566
7567
  } | undefined;
@@ -7570,14 +7571,14 @@ export declare function init(config: AuthHeroConfig): {
7570
7571
  } | undefined;
7571
7572
  unique?: boolean | undefined;
7572
7573
  profile_required?: boolean | undefined;
7573
- verification_method?: "code" | "link" | undefined;
7574
+ verification_method?: "link" | "code" | undefined;
7574
7575
  } | undefined;
7575
7576
  username?: {
7576
7577
  identifier?: {
7577
7578
  active?: boolean | undefined;
7578
7579
  } | undefined;
7579
7580
  signup?: {
7580
- status?: "required" | "optional" | "disabled" | undefined;
7581
+ status?: "optional" | "required" | "disabled" | undefined;
7581
7582
  } | undefined;
7582
7583
  validation?: {
7583
7584
  max_length?: number | undefined;
@@ -7594,7 +7595,7 @@ export declare function init(config: AuthHeroConfig): {
7594
7595
  active?: boolean | undefined;
7595
7596
  } | undefined;
7596
7597
  signup?: {
7597
- status?: "required" | "optional" | "disabled" | undefined;
7598
+ status?: "optional" | "required" | "disabled" | undefined;
7598
7599
  } | undefined;
7599
7600
  } | undefined;
7600
7601
  } | undefined;
@@ -7718,7 +7719,7 @@ export declare function init(config: AuthHeroConfig): {
7718
7719
  active?: boolean | undefined;
7719
7720
  } | undefined;
7720
7721
  signup?: {
7721
- status?: "required" | "optional" | "disabled" | undefined;
7722
+ status?: "optional" | "required" | "disabled" | undefined;
7722
7723
  verification?: {
7723
7724
  active?: boolean | undefined;
7724
7725
  } | undefined;
@@ -7728,14 +7729,14 @@ export declare function init(config: AuthHeroConfig): {
7728
7729
  } | undefined;
7729
7730
  unique?: boolean | undefined;
7730
7731
  profile_required?: boolean | undefined;
7731
- verification_method?: "code" | "link" | undefined;
7732
+ verification_method?: "link" | "code" | undefined;
7732
7733
  } | undefined;
7733
7734
  username?: {
7734
7735
  identifier?: {
7735
7736
  active?: boolean | undefined;
7736
7737
  } | undefined;
7737
7738
  signup?: {
7738
- status?: "required" | "optional" | "disabled" | undefined;
7739
+ status?: "optional" | "required" | "disabled" | undefined;
7739
7740
  } | undefined;
7740
7741
  validation?: {
7741
7742
  max_length?: number | undefined;
@@ -7752,7 +7753,7 @@ export declare function init(config: AuthHeroConfig): {
7752
7753
  active?: boolean | undefined;
7753
7754
  } | undefined;
7754
7755
  signup?: {
7755
- status?: "required" | "optional" | "disabled" | undefined;
7756
+ status?: "optional" | "required" | "disabled" | undefined;
7756
7757
  } | undefined;
7757
7758
  } | undefined;
7758
7759
  } | undefined;
@@ -7868,7 +7869,7 @@ export declare function init(config: AuthHeroConfig): {
7868
7869
  };
7869
7870
  } | {
7870
7871
  mode: "inline";
7871
- status: "error" | "success";
7872
+ status: "success" | "error";
7872
7873
  connection_id: string;
7873
7874
  connection_name: string;
7874
7875
  strategy: string;
@@ -9158,7 +9159,7 @@ export declare function init(config: AuthHeroConfig): {
9158
9159
  };
9159
9160
  };
9160
9161
  output: {
9161
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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";
9162
+ type: "gd_send_sms" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9162
9163
  date: string;
9163
9164
  isMobile: boolean;
9164
9165
  log_id: string;
@@ -9197,7 +9198,7 @@ export declare function init(config: AuthHeroConfig): {
9197
9198
  limit: number;
9198
9199
  length: number;
9199
9200
  logs: {
9200
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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";
9201
+ type: "gd_send_sms" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9201
9202
  date: string;
9202
9203
  isMobile: boolean;
9203
9204
  log_id: string;
@@ -9234,6 +9235,44 @@ export declare function init(config: AuthHeroConfig): {
9234
9235
  }[];
9235
9236
  total?: number | undefined;
9236
9237
  next?: string | undefined;
9238
+ } | {
9239
+ logs: {
9240
+ type: "gd_send_sms" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9241
+ date: string;
9242
+ isMobile: boolean;
9243
+ log_id: string;
9244
+ description?: string | undefined;
9245
+ ip?: string | undefined;
9246
+ user_agent?: string | undefined;
9247
+ details?: any;
9248
+ user_id?: string | undefined;
9249
+ user_name?: string | undefined;
9250
+ connection?: string | undefined;
9251
+ connection_id?: string | undefined;
9252
+ client_id?: string | undefined;
9253
+ client_name?: string | undefined;
9254
+ audience?: string | undefined;
9255
+ scope?: string | undefined;
9256
+ strategy?: string | undefined;
9257
+ strategy_type?: string | undefined;
9258
+ hostname?: string | undefined;
9259
+ auth0_client?: {
9260
+ name: string;
9261
+ version: string;
9262
+ env?: {
9263
+ node?: string | undefined;
9264
+ } | undefined;
9265
+ } | undefined;
9266
+ location_info?: {
9267
+ country_code: string;
9268
+ city_name: string;
9269
+ latitude: string;
9270
+ longitude: string;
9271
+ time_zone: string;
9272
+ continent_code: string;
9273
+ } | undefined;
9274
+ }[];
9275
+ next?: string | undefined;
9237
9276
  };
9238
9277
  outputFormat: "json";
9239
9278
  status: 200;
@@ -9252,7 +9291,7 @@ export declare function init(config: AuthHeroConfig): {
9252
9291
  };
9253
9292
  };
9254
9293
  output: {
9255
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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";
9294
+ type: "gd_send_sms" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9256
9295
  date: string;
9257
9296
  isMobile: boolean;
9258
9297
  log_id: string;
@@ -9408,7 +9447,7 @@ export declare function init(config: AuthHeroConfig): {
9408
9447
  audience?: string | undefined;
9409
9448
  client_id?: string | undefined;
9410
9449
  allow_any_organization?: string | undefined;
9411
- subject_type?: "client" | "user" | undefined;
9450
+ subject_type?: "user" | "client" | undefined;
9412
9451
  };
9413
9452
  } & {
9414
9453
  header: {
@@ -9423,7 +9462,7 @@ export declare function init(config: AuthHeroConfig): {
9423
9462
  organization_usage?: "deny" | "allow" | "require" | undefined;
9424
9463
  allow_any_organization?: boolean | undefined;
9425
9464
  is_system?: boolean | undefined;
9426
- subject_type?: "client" | "user" | undefined;
9465
+ subject_type?: "user" | "client" | undefined;
9427
9466
  authorization_details_types?: string[] | undefined;
9428
9467
  created_at?: string | undefined;
9429
9468
  updated_at?: string | undefined;
@@ -9439,7 +9478,7 @@ export declare function init(config: AuthHeroConfig): {
9439
9478
  organization_usage?: "deny" | "allow" | "require" | undefined;
9440
9479
  allow_any_organization?: boolean | undefined;
9441
9480
  is_system?: boolean | undefined;
9442
- subject_type?: "client" | "user" | undefined;
9481
+ subject_type?: "user" | "client" | undefined;
9443
9482
  authorization_details_types?: string[] | undefined;
9444
9483
  created_at?: string | undefined;
9445
9484
  updated_at?: string | undefined;
@@ -9455,7 +9494,7 @@ export declare function init(config: AuthHeroConfig): {
9455
9494
  organization_usage?: "deny" | "allow" | "require" | undefined;
9456
9495
  allow_any_organization?: boolean | undefined;
9457
9496
  is_system?: boolean | undefined;
9458
- subject_type?: "client" | "user" | undefined;
9497
+ subject_type?: "user" | "client" | undefined;
9459
9498
  authorization_details_types?: string[] | undefined;
9460
9499
  created_at?: string | undefined;
9461
9500
  updated_at?: string | undefined;
@@ -9486,7 +9525,7 @@ export declare function init(config: AuthHeroConfig): {
9486
9525
  organization_usage?: "deny" | "allow" | "require" | undefined;
9487
9526
  allow_any_organization?: boolean | undefined;
9488
9527
  is_system?: boolean | undefined;
9489
- subject_type?: "client" | "user" | undefined;
9528
+ subject_type?: "user" | "client" | undefined;
9490
9529
  authorization_details_types?: string[] | undefined;
9491
9530
  created_at?: string | undefined;
9492
9531
  updated_at?: string | undefined;
@@ -9531,7 +9570,7 @@ export declare function init(config: AuthHeroConfig): {
9531
9570
  organization_usage?: "deny" | "allow" | "require" | undefined;
9532
9571
  allow_any_organization?: boolean | undefined;
9533
9572
  is_system?: boolean | undefined;
9534
- subject_type?: "client" | "user" | undefined;
9573
+ subject_type?: "user" | "client" | undefined;
9535
9574
  authorization_details_types?: string[] | undefined;
9536
9575
  };
9537
9576
  };
@@ -9543,7 +9582,7 @@ export declare function init(config: AuthHeroConfig): {
9543
9582
  organization_usage?: "deny" | "allow" | "require" | undefined;
9544
9583
  allow_any_organization?: boolean | undefined;
9545
9584
  is_system?: boolean | undefined;
9546
- subject_type?: "client" | "user" | undefined;
9585
+ subject_type?: "user" | "client" | undefined;
9547
9586
  authorization_details_types?: string[] | undefined;
9548
9587
  created_at?: string | undefined;
9549
9588
  updated_at?: string | undefined;
@@ -9567,7 +9606,7 @@ export declare function init(config: AuthHeroConfig): {
9567
9606
  organization_usage?: "deny" | "allow" | "require" | undefined;
9568
9607
  allow_any_organization?: boolean | undefined;
9569
9608
  is_system?: boolean | undefined;
9570
- subject_type?: "client" | "user" | undefined;
9609
+ subject_type?: "user" | "client" | undefined;
9571
9610
  authorization_details_types?: string[] | undefined;
9572
9611
  };
9573
9612
  };
@@ -9579,7 +9618,7 @@ export declare function init(config: AuthHeroConfig): {
9579
9618
  organization_usage?: "deny" | "allow" | "require" | undefined;
9580
9619
  allow_any_organization?: boolean | undefined;
9581
9620
  is_system?: boolean | undefined;
9582
- subject_type?: "client" | "user" | undefined;
9621
+ subject_type?: "user" | "client" | undefined;
9583
9622
  authorization_details_types?: string[] | undefined;
9584
9623
  created_at?: string | undefined;
9585
9624
  updated_at?: string | undefined;
@@ -9657,7 +9696,7 @@ export declare function init(config: AuthHeroConfig): {
9657
9696
  addons?: {
9658
9697
  [x: string]: any;
9659
9698
  } | undefined;
9660
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9699
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9661
9700
  client_metadata?: {
9662
9701
  [x: string]: string;
9663
9702
  } | undefined;
@@ -9753,7 +9792,7 @@ export declare function init(config: AuthHeroConfig): {
9753
9792
  addons?: {
9754
9793
  [x: string]: any;
9755
9794
  } | undefined;
9756
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9795
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9757
9796
  client_metadata?: {
9758
9797
  [x: string]: string;
9759
9798
  } | undefined;
@@ -9799,6 +9838,101 @@ export declare function init(config: AuthHeroConfig): {
9799
9838
  }[];
9800
9839
  total?: number | undefined;
9801
9840
  next?: string | undefined;
9841
+ } | {
9842
+ clients: {
9843
+ created_at: string;
9844
+ updated_at: string;
9845
+ name: string;
9846
+ global: boolean;
9847
+ is_first_party: boolean;
9848
+ oidc_conformant: boolean;
9849
+ auth0_conformant: boolean;
9850
+ sso: boolean;
9851
+ sso_disabled: boolean;
9852
+ cross_origin_authentication: boolean;
9853
+ custom_login_page_on: boolean;
9854
+ require_pushed_authorization_requests: boolean;
9855
+ require_proof_of_possession: boolean;
9856
+ client_id: string;
9857
+ description?: string | undefined;
9858
+ client_secret?: string | undefined;
9859
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9860
+ logo_uri?: string | undefined;
9861
+ callbacks?: string[] | undefined;
9862
+ allowed_origins?: string[] | undefined;
9863
+ web_origins?: string[] | undefined;
9864
+ client_aliases?: string[] | undefined;
9865
+ allowed_clients?: string[] | undefined;
9866
+ connections?: string[] | undefined;
9867
+ allowed_logout_urls?: string[] | undefined;
9868
+ session_transfer?: {
9869
+ [x: string]: any;
9870
+ } | undefined;
9871
+ oidc_logout?: {
9872
+ [x: string]: any;
9873
+ } | undefined;
9874
+ grant_types?: string[] | undefined;
9875
+ jwt_configuration?: {
9876
+ [x: string]: any;
9877
+ } | undefined;
9878
+ signing_keys?: {
9879
+ [x: string]: any;
9880
+ }[] | undefined;
9881
+ encryption_key?: {
9882
+ [x: string]: any;
9883
+ } | undefined;
9884
+ cross_origin_loc?: string | undefined;
9885
+ custom_login_page?: string | undefined;
9886
+ custom_login_page_preview?: string | undefined;
9887
+ form_template?: string | undefined;
9888
+ addons?: {
9889
+ [x: string]: any;
9890
+ } | undefined;
9891
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9892
+ client_metadata?: {
9893
+ [x: string]: string;
9894
+ } | undefined;
9895
+ hide_sign_up_disabled_error?: boolean | undefined;
9896
+ mobile?: {
9897
+ [x: string]: any;
9898
+ } | undefined;
9899
+ initiate_login_uri?: string | undefined;
9900
+ native_social_login?: {
9901
+ [x: string]: any;
9902
+ } | undefined;
9903
+ refresh_token?: {
9904
+ rotation_type?: "rotating" | "non-rotating" | undefined;
9905
+ leeway?: number | undefined;
9906
+ expiration_type?: "expiring" | "non-expiring" | undefined;
9907
+ token_lifetime?: number | undefined;
9908
+ infinite_token_lifetime?: boolean | undefined;
9909
+ idle_token_lifetime?: number | undefined;
9910
+ infinite_idle_token_lifetime?: boolean | undefined;
9911
+ } | undefined;
9912
+ default_organization?: {
9913
+ [x: string]: any;
9914
+ } | undefined;
9915
+ organization_usage?: "deny" | "allow" | "require" | undefined;
9916
+ organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
9917
+ client_authentication_methods?: {
9918
+ [x: string]: any;
9919
+ } | undefined;
9920
+ signed_request_object?: {
9921
+ [x: string]: any;
9922
+ } | undefined;
9923
+ compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
9924
+ par_request_expiry?: number | undefined;
9925
+ token_quota?: {
9926
+ [x: string]: any;
9927
+ } | undefined;
9928
+ owner_user_id?: string | undefined;
9929
+ registration_type?: "manual" | "open_dcr" | "iat_dcr" | undefined;
9930
+ registration_metadata?: {
9931
+ [x: string]: any;
9932
+ } | undefined;
9933
+ user_linking_mode?: "builtin" | "off" | undefined;
9934
+ }[];
9935
+ next?: string | undefined;
9802
9936
  };
9803
9937
  outputFormat: "json";
9804
9938
  status: 200;
@@ -9865,7 +9999,7 @@ export declare function init(config: AuthHeroConfig): {
9865
9999
  addons?: {
9866
10000
  [x: string]: any;
9867
10001
  } | undefined;
9868
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10002
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9869
10003
  client_metadata?: {
9870
10004
  [x: string]: string;
9871
10005
  } | undefined;
@@ -9975,7 +10109,7 @@ export declare function init(config: AuthHeroConfig): {
9975
10109
  custom_login_page_preview?: string | undefined;
9976
10110
  form_template?: string | undefined;
9977
10111
  addons?: Record<string, any> | undefined;
9978
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10112
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9979
10113
  client_metadata?: Record<string, string> | undefined;
9980
10114
  hide_sign_up_disabled_error?: boolean | undefined;
9981
10115
  mobile?: Record<string, any> | undefined;
@@ -10055,7 +10189,7 @@ export declare function init(config: AuthHeroConfig): {
10055
10189
  addons?: {
10056
10190
  [x: string]: any;
10057
10191
  } | undefined;
10058
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10192
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10059
10193
  client_metadata?: {
10060
10194
  [x: string]: string;
10061
10195
  } | undefined;
@@ -10144,7 +10278,7 @@ export declare function init(config: AuthHeroConfig): {
10144
10278
  custom_login_page_preview?: string | undefined;
10145
10279
  form_template?: string | undefined;
10146
10280
  addons?: Record<string, any> | undefined;
10147
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10281
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10148
10282
  client_metadata?: Record<string, string> | undefined;
10149
10283
  hide_sign_up_disabled_error?: boolean | undefined;
10150
10284
  mobile?: Record<string, any> | undefined;
@@ -10224,7 +10358,7 @@ export declare function init(config: AuthHeroConfig): {
10224
10358
  addons?: {
10225
10359
  [x: string]: any;
10226
10360
  } | undefined;
10227
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10361
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
10228
10362
  client_metadata?: {
10229
10363
  [x: string]: string;
10230
10364
  } | undefined;
@@ -10346,7 +10480,7 @@ export declare function init(config: AuthHeroConfig): {
10346
10480
  active?: boolean | undefined;
10347
10481
  } | undefined;
10348
10482
  signup?: {
10349
- status?: "required" | "optional" | "disabled" | undefined;
10483
+ status?: "optional" | "required" | "disabled" | undefined;
10350
10484
  verification?: {
10351
10485
  active?: boolean | undefined;
10352
10486
  } | undefined;
@@ -10356,14 +10490,14 @@ export declare function init(config: AuthHeroConfig): {
10356
10490
  } | undefined;
10357
10491
  unique?: boolean | undefined;
10358
10492
  profile_required?: boolean | undefined;
10359
- verification_method?: "code" | "link" | undefined;
10493
+ verification_method?: "link" | "code" | undefined;
10360
10494
  } | undefined;
10361
10495
  username?: {
10362
10496
  identifier?: {
10363
10497
  active?: boolean | undefined;
10364
10498
  } | undefined;
10365
10499
  signup?: {
10366
- status?: "required" | "optional" | "disabled" | undefined;
10500
+ status?: "optional" | "required" | "disabled" | undefined;
10367
10501
  } | undefined;
10368
10502
  validation?: {
10369
10503
  max_length?: number | undefined;
@@ -10380,7 +10514,7 @@ export declare function init(config: AuthHeroConfig): {
10380
10514
  active?: boolean | undefined;
10381
10515
  } | undefined;
10382
10516
  signup?: {
10383
- status?: "required" | "optional" | "disabled" | undefined;
10517
+ status?: "optional" | "required" | "disabled" | undefined;
10384
10518
  } | undefined;
10385
10519
  } | undefined;
10386
10520
  } | undefined;
@@ -10500,7 +10634,7 @@ export declare function init(config: AuthHeroConfig): {
10500
10634
  active?: boolean | undefined;
10501
10635
  } | undefined;
10502
10636
  signup?: {
10503
- status?: "required" | "optional" | "disabled" | undefined;
10637
+ status?: "optional" | "required" | "disabled" | undefined;
10504
10638
  verification?: {
10505
10639
  active?: boolean | undefined;
10506
10640
  } | undefined;
@@ -10510,14 +10644,14 @@ export declare function init(config: AuthHeroConfig): {
10510
10644
  } | undefined;
10511
10645
  unique?: boolean | undefined;
10512
10646
  profile_required?: boolean | undefined;
10513
- verification_method?: "code" | "link" | undefined;
10647
+ verification_method?: "link" | "code" | undefined;
10514
10648
  } | undefined;
10515
10649
  username?: {
10516
10650
  identifier?: {
10517
10651
  active?: boolean | undefined;
10518
10652
  } | undefined;
10519
10653
  signup?: {
10520
- status?: "required" | "optional" | "disabled" | undefined;
10654
+ status?: "optional" | "required" | "disabled" | undefined;
10521
10655
  } | undefined;
10522
10656
  validation?: {
10523
10657
  max_length?: number | undefined;
@@ -10534,7 +10668,7 @@ export declare function init(config: AuthHeroConfig): {
10534
10668
  active?: boolean | undefined;
10535
10669
  } | undefined;
10536
10670
  signup?: {
10537
- status?: "required" | "optional" | "disabled" | undefined;
10671
+ status?: "optional" | "required" | "disabled" | undefined;
10538
10672
  } | undefined;
10539
10673
  } | undefined;
10540
10674
  } | undefined;
@@ -11491,7 +11625,7 @@ export declare function init(config: AuthHeroConfig): {
11491
11625
  };
11492
11626
  };
11493
11627
  output: {
11494
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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";
11628
+ type: "gd_send_sms" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11495
11629
  date: string;
11496
11630
  isMobile: boolean;
11497
11631
  log_id: string;
@@ -11530,7 +11664,7 @@ export declare function init(config: AuthHeroConfig): {
11530
11664
  limit: number;
11531
11665
  length: number;
11532
11666
  logs: {
11533
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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";
11667
+ type: "gd_send_sms" | "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_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11534
11668
  date: string;
11535
11669
  isMobile: boolean;
11536
11670
  log_id: string;
@@ -11849,7 +11983,7 @@ export declare function init(config: AuthHeroConfig): {
11849
11983
  };
11850
11984
  } & {
11851
11985
  json: {
11852
- 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";
11986
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11853
11987
  body: string;
11854
11988
  from: string;
11855
11989
  subject: string;
@@ -11870,7 +12004,7 @@ export declare function init(config: AuthHeroConfig): {
11870
12004
  };
11871
12005
  } & {
11872
12006
  json: {
11873
- 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";
12007
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11874
12008
  body: string;
11875
12009
  from: string;
11876
12010
  subject: string;
@@ -11882,7 +12016,7 @@ export declare function init(config: AuthHeroConfig): {
11882
12016
  };
11883
12017
  };
11884
12018
  output: {
11885
- 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";
12019
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11886
12020
  body: string;
11887
12021
  from: string;
11888
12022
  subject: string;
@@ -11905,7 +12039,7 @@ export declare function init(config: AuthHeroConfig): {
11905
12039
  };
11906
12040
  };
11907
12041
  output: {
11908
- 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";
12042
+ name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11909
12043
  body: string;
11910
12044
  subject: string;
11911
12045
  }[];
@@ -11918,7 +12052,7 @@ export declare function init(config: AuthHeroConfig): {
11918
12052
  $get: {
11919
12053
  input: {
11920
12054
  param: {
11921
- 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";
12055
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11922
12056
  };
11923
12057
  } & {
11924
12058
  header: {
@@ -11931,7 +12065,7 @@ export declare function init(config: AuthHeroConfig): {
11931
12065
  } | {
11932
12066
  input: {
11933
12067
  param: {
11934
- 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";
12068
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11935
12069
  };
11936
12070
  } & {
11937
12071
  header: {
@@ -11939,7 +12073,7 @@ export declare function init(config: AuthHeroConfig): {
11939
12073
  };
11940
12074
  };
11941
12075
  output: {
11942
- 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";
12076
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11943
12077
  body: string;
11944
12078
  from: string;
11945
12079
  subject: string;
@@ -11958,7 +12092,7 @@ export declare function init(config: AuthHeroConfig): {
11958
12092
  $put: {
11959
12093
  input: {
11960
12094
  param: {
11961
- 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";
12095
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11962
12096
  };
11963
12097
  } & {
11964
12098
  header: {
@@ -11966,7 +12100,7 @@ export declare function init(config: AuthHeroConfig): {
11966
12100
  };
11967
12101
  } & {
11968
12102
  json: {
11969
- 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";
12103
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11970
12104
  body: string;
11971
12105
  subject: string;
11972
12106
  syntax?: "liquid" | undefined;
@@ -11978,7 +12112,7 @@ export declare function init(config: AuthHeroConfig): {
11978
12112
  };
11979
12113
  };
11980
12114
  output: {
11981
- 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";
12115
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11982
12116
  body: string;
11983
12117
  from: string;
11984
12118
  subject: string;
@@ -11997,7 +12131,7 @@ export declare function init(config: AuthHeroConfig): {
11997
12131
  $patch: {
11998
12132
  input: {
11999
12133
  param: {
12000
- 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";
12134
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12001
12135
  };
12002
12136
  } & {
12003
12137
  header: {
@@ -12005,7 +12139,7 @@ export declare function init(config: AuthHeroConfig): {
12005
12139
  };
12006
12140
  } & {
12007
12141
  json: {
12008
- 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;
12142
+ template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12009
12143
  body?: string | undefined;
12010
12144
  from?: string | undefined;
12011
12145
  subject?: string | undefined;
@@ -12022,7 +12156,7 @@ export declare function init(config: AuthHeroConfig): {
12022
12156
  } | {
12023
12157
  input: {
12024
12158
  param: {
12025
- 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";
12159
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12026
12160
  };
12027
12161
  } & {
12028
12162
  header: {
@@ -12030,7 +12164,7 @@ export declare function init(config: AuthHeroConfig): {
12030
12164
  };
12031
12165
  } & {
12032
12166
  json: {
12033
- 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;
12167
+ template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12034
12168
  body?: string | undefined;
12035
12169
  from?: string | undefined;
12036
12170
  subject?: string | undefined;
@@ -12042,7 +12176,7 @@ export declare function init(config: AuthHeroConfig): {
12042
12176
  };
12043
12177
  };
12044
12178
  output: {
12045
- 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";
12179
+ template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12046
12180
  body: string;
12047
12181
  from: string;
12048
12182
  subject: string;
@@ -12061,7 +12195,7 @@ export declare function init(config: AuthHeroConfig): {
12061
12195
  $delete: {
12062
12196
  input: {
12063
12197
  param: {
12064
- 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";
12198
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12065
12199
  };
12066
12200
  } & {
12067
12201
  header: {
@@ -12074,7 +12208,7 @@ export declare function init(config: AuthHeroConfig): {
12074
12208
  } | {
12075
12209
  input: {
12076
12210
  param: {
12077
- 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";
12211
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12078
12212
  };
12079
12213
  } & {
12080
12214
  header: {
@@ -12091,7 +12225,7 @@ export declare function init(config: AuthHeroConfig): {
12091
12225
  $post: {
12092
12226
  input: {
12093
12227
  param: {
12094
- 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";
12228
+ templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12095
12229
  };
12096
12230
  } & {
12097
12231
  header: {
@@ -13043,7 +13177,7 @@ export declare function init(config: AuthHeroConfig): {
13043
13177
  } & {
13044
13178
  json: {
13045
13179
  body?: string | undefined;
13046
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
13180
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
13047
13181
  branding?: {
13048
13182
  colors?: {
13049
13183
  primary: string;
@@ -13334,7 +13468,7 @@ export declare function init(config: AuthHeroConfig): {
13334
13468
  logs: {
13335
13469
  action_name: string;
13336
13470
  lines: {
13337
- level: "error" | "log" | "info" | "warn" | "debug";
13471
+ level: "log" | "error" | "info" | "warn" | "debug";
13338
13472
  message: string;
13339
13473
  }[];
13340
13474
  }[];
@@ -14003,7 +14137,7 @@ export declare function init(config: AuthHeroConfig): {
14003
14137
  args: import("hono/utils/types").JSONValue[];
14004
14138
  }[];
14005
14139
  logs: {
14006
- level: "error" | "log" | "info" | "warn" | "debug";
14140
+ level: "log" | "error" | "info" | "warn" | "debug";
14007
14141
  message: string;
14008
14142
  }[];
14009
14143
  error?: string | undefined;
@@ -14314,7 +14448,7 @@ export declare function init(config: AuthHeroConfig): {
14314
14448
  scope?: string | undefined;
14315
14449
  grant_types?: string[] | undefined;
14316
14450
  response_types?: string[] | undefined;
14317
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
14451
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14318
14452
  jwks_uri?: string | undefined;
14319
14453
  jwks?: Record<string, unknown> | undefined;
14320
14454
  software_id?: string | undefined;
@@ -14403,7 +14537,7 @@ export declare function init(config: AuthHeroConfig): {
14403
14537
  scope?: string | undefined;
14404
14538
  grant_types?: string[] | undefined;
14405
14539
  response_types?: string[] | undefined;
14406
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
14540
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14407
14541
  jwks_uri?: string | undefined;
14408
14542
  jwks?: Record<string, unknown> | undefined;
14409
14543
  software_id?: string | undefined;
@@ -14460,7 +14594,7 @@ export declare function init(config: AuthHeroConfig): {
14460
14594
  client_id: string;
14461
14595
  redirect_url?: string | undefined;
14462
14596
  login_hint?: string | undefined;
14463
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14597
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14464
14598
  };
14465
14599
  };
14466
14600
  output: {};
@@ -14472,7 +14606,7 @@ export declare function init(config: AuthHeroConfig): {
14472
14606
  client_id: string;
14473
14607
  redirect_url?: string | undefined;
14474
14608
  login_hint?: string | undefined;
14475
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
14609
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
14476
14610
  };
14477
14611
  };
14478
14612
  output: {
@@ -14549,9 +14683,17 @@ export declare function init(config: AuthHeroConfig): {
14549
14683
  request_uri?: string | undefined;
14550
14684
  };
14551
14685
  };
14552
- output: {};
14553
- outputFormat: string;
14554
- status: 302;
14686
+ output: string | {
14687
+ access_token: string;
14688
+ token_type: string;
14689
+ expires_in: number;
14690
+ id_token?: string | undefined;
14691
+ scope?: string | undefined;
14692
+ state?: string | undefined;
14693
+ refresh_token?: string | undefined;
14694
+ };
14695
+ outputFormat: "json";
14696
+ status: 200;
14555
14697
  } | {
14556
14698
  input: {
14557
14699
  query: {
@@ -14583,17 +14725,9 @@ export declare function init(config: AuthHeroConfig): {
14583
14725
  request_uri?: string | undefined;
14584
14726
  };
14585
14727
  };
14586
- output: string | {
14587
- access_token: string;
14588
- token_type: string;
14589
- expires_in: number;
14590
- id_token?: string | undefined;
14591
- scope?: string | undefined;
14592
- state?: string | undefined;
14593
- refresh_token?: string | undefined;
14594
- };
14595
- outputFormat: "json";
14596
- status: 200;
14728
+ output: {};
14729
+ outputFormat: string;
14730
+ status: 302;
14597
14731
  } | {
14598
14732
  input: {
14599
14733
  query: {
@@ -14747,21 +14881,21 @@ export declare function init(config: AuthHeroConfig): {
14747
14881
  connection: "email";
14748
14882
  client_id: string;
14749
14883
  email: string;
14750
- send: "code" | "link";
14884
+ send: "link" | "code";
14751
14885
  authParams: {
14752
- audience?: string | undefined;
14753
- scope?: string | undefined;
14754
- username?: string | undefined;
14755
- organization?: string | undefined;
14756
14886
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14757
14887
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14758
- state?: string | undefined;
14888
+ scope?: string | undefined;
14889
+ username?: string | undefined;
14759
14890
  nonce?: string | undefined;
14760
- act_as?: string | undefined;
14891
+ state?: string | undefined;
14892
+ audience?: string | undefined;
14893
+ code_challenge?: string | undefined;
14894
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14761
14895
  redirect_uri?: string | undefined;
14896
+ act_as?: string | undefined;
14897
+ organization?: string | undefined;
14762
14898
  prompt?: string | undefined;
14763
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14764
- code_challenge?: string | undefined;
14765
14899
  ui_locales?: string | undefined;
14766
14900
  max_age?: number | undefined;
14767
14901
  acr_values?: string | undefined;
@@ -14783,21 +14917,21 @@ export declare function init(config: AuthHeroConfig): {
14783
14917
  client_id: string;
14784
14918
  connection: "sms";
14785
14919
  phone_number: string;
14786
- send: "code" | "link";
14920
+ send: "link" | "code";
14787
14921
  authParams: {
14788
- audience?: string | undefined;
14789
- scope?: string | undefined;
14790
- username?: string | undefined;
14791
- organization?: string | undefined;
14792
14922
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14793
14923
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14794
- state?: string | undefined;
14924
+ scope?: string | undefined;
14925
+ username?: string | undefined;
14795
14926
  nonce?: string | undefined;
14796
- act_as?: string | undefined;
14927
+ state?: string | undefined;
14928
+ audience?: string | undefined;
14929
+ code_challenge?: string | undefined;
14930
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14797
14931
  redirect_uri?: string | undefined;
14932
+ act_as?: string | undefined;
14933
+ organization?: string | undefined;
14798
14934
  prompt?: string | undefined;
14799
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14800
- code_challenge?: string | undefined;
14801
14935
  ui_locales?: string | undefined;
14802
14936
  max_age?: number | undefined;
14803
14937
  acr_values?: string | undefined;
@@ -14929,14 +15063,14 @@ export declare function init(config: AuthHeroConfig): {
14929
15063
  input: {
14930
15064
  form: {
14931
15065
  token: string;
14932
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15066
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14933
15067
  client_id?: string | undefined;
14934
15068
  client_secret?: string | undefined;
14935
15069
  };
14936
15070
  } & {
14937
15071
  json: {
14938
15072
  token: string;
14939
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15073
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14940
15074
  client_id?: string | undefined;
14941
15075
  client_secret?: string | undefined;
14942
15076
  };
@@ -14948,14 +15082,14 @@ export declare function init(config: AuthHeroConfig): {
14948
15082
  input: {
14949
15083
  form: {
14950
15084
  token: string;
14951
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15085
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14952
15086
  client_id?: string | undefined;
14953
15087
  client_secret?: string | undefined;
14954
15088
  };
14955
15089
  } & {
14956
15090
  json: {
14957
15091
  token: string;
14958
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15092
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14959
15093
  client_id?: string | undefined;
14960
15094
  client_secret?: string | undefined;
14961
15095
  };
@@ -14970,14 +15104,14 @@ export declare function init(config: AuthHeroConfig): {
14970
15104
  input: {
14971
15105
  form: {
14972
15106
  token: string;
14973
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15107
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14974
15108
  client_id?: string | undefined;
14975
15109
  client_secret?: string | undefined;
14976
15110
  };
14977
15111
  } & {
14978
15112
  json: {
14979
15113
  token: string;
14980
- token_type_hint?: "access_token" | "refresh_token" | undefined;
15114
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
14981
15115
  client_id?: string | undefined;
14982
15116
  client_secret?: string | undefined;
14983
15117
  };
@@ -15512,8 +15646,8 @@ export declare function init(config: AuthHeroConfig): {
15512
15646
  input: {};
15513
15647
  output: {
15514
15648
  keys: {
15515
- alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
15516
- kty: "EC" | "RSA" | "oct";
15649
+ alg: "HS256" | "HS384" | "HS512" | "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512";
15650
+ kty: "RSA" | "EC" | "oct";
15517
15651
  kid?: string | undefined;
15518
15652
  use?: "sig" | "enc" | undefined;
15519
15653
  n?: string | undefined;
@@ -15702,7 +15836,7 @@ export declare function init(config: AuthHeroConfig): {
15702
15836
  };
15703
15837
  output: {};
15704
15838
  outputFormat: string;
15705
- status: 200;
15839
+ status: 302;
15706
15840
  } | {
15707
15841
  input: {
15708
15842
  query: {
@@ -15716,7 +15850,7 @@ export declare function init(config: AuthHeroConfig): {
15716
15850
  };
15717
15851
  output: {};
15718
15852
  outputFormat: string;
15719
- status: 302;
15853
+ status: 200;
15720
15854
  } | {
15721
15855
  input: {
15722
15856
  query: {
@@ -16325,7 +16459,7 @@ export declare function init(config: AuthHeroConfig): {
16325
16459
  } & {
16326
16460
  form: {
16327
16461
  username: string;
16328
- login_selection?: "password" | "code" | undefined;
16462
+ login_selection?: "code" | "password" | undefined;
16329
16463
  };
16330
16464
  };
16331
16465
  output: {};
@@ -16339,7 +16473,7 @@ export declare function init(config: AuthHeroConfig): {
16339
16473
  } & {
16340
16474
  form: {
16341
16475
  username: string;
16342
- login_selection?: "password" | "code" | undefined;
16476
+ login_selection?: "code" | "password" | undefined;
16343
16477
  };
16344
16478
  };
16345
16479
  output: {};
@@ -16704,7 +16838,7 @@ export declare function init(config: AuthHeroConfig): {
16704
16838
  $get: {
16705
16839
  input: {
16706
16840
  param: {
16707
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16841
+ screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16708
16842
  };
16709
16843
  } & {
16710
16844
  query: {
@@ -16720,7 +16854,7 @@ export declare function init(config: AuthHeroConfig): {
16720
16854
  } | {
16721
16855
  input: {
16722
16856
  param: {
16723
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16857
+ screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16724
16858
  };
16725
16859
  } & {
16726
16860
  query: {
@@ -16736,7 +16870,7 @@ export declare function init(config: AuthHeroConfig): {
16736
16870
  } | {
16737
16871
  input: {
16738
16872
  param: {
16739
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16873
+ screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16740
16874
  };
16741
16875
  } & {
16742
16876
  query: {
@@ -16756,7 +16890,7 @@ export declare function init(config: AuthHeroConfig): {
16756
16890
  $post: {
16757
16891
  input: {
16758
16892
  param: {
16759
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16893
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16760
16894
  };
16761
16895
  } & {
16762
16896
  query: {
@@ -16774,7 +16908,7 @@ export declare function init(config: AuthHeroConfig): {
16774
16908
  } | {
16775
16909
  input: {
16776
16910
  param: {
16777
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16911
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16778
16912
  };
16779
16913
  } & {
16780
16914
  query: {