authhero 5.21.1 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +105 -105
  3. package/dist/authhero.d.ts +173 -122
  4. package/dist/authhero.mjs +13563 -10885
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  9. package/dist/types/index.d.ts +116 -115
  10. package/dist/types/routes/auth-api/index.d.ts +21 -21
  11. package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/actions.d.ts +3 -3
  16. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  17. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  18. package/dist/types/routes/management-api/clients.d.ts +7 -7
  19. package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
  20. package/dist/types/routes/management-api/email-templates.d.ts +20 -20
  21. package/dist/types/routes/management-api/emails.d.ts +2 -2
  22. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  23. package/dist/types/routes/management-api/forms.d.ts +7 -7
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/index.d.ts +82 -82
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  28. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  29. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  30. package/dist/types/routes/management-api/users.d.ts +2 -2
  31. package/dist/types/routes/proxy-control-plane/index.d.ts +21 -7
  32. package/dist/types/routes/proxy-control-plane/verify.d.ts +39 -0
  33. package/dist/types/routes/universal-login/common.d.ts +2 -2
  34. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  35. package/dist/types/routes/universal-login/form-node.d.ts +4 -4
  36. package/dist/types/routes/universal-login/index.d.ts +4 -4
  37. package/dist/types/routes/universal-login/u2-form-node.d.ts +2 -2
  38. package/dist/types/routes/universal-login/u2-index.d.ts +8 -8
  39. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  40. package/dist/types/strategies/microsoft-entra.d.ts +23 -0
  41. package/dist/types/strategies/waad.d.ts +24 -0
  42. package/dist/types/strategies/windowslive.d.ts +24 -0
  43. package/dist/types/types/AuthHeroConfig.d.ts +17 -5
  44. package/dist/types/utils/jwks.d.ts +2 -2
  45. package/package.json +5 -5
@@ -25,6 +25,7 @@ export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/
25
25
  export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
26
26
  export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
27
27
  export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
28
+ export { PROXY_RESOLVE_HOST_SCOPE, verifyControlPlaneToken, isAllowedIssuer, type VerifyControlPlaneTokenOptions, type VerifyControlPlaneTokenResult, } from "./routes/proxy-control-plane/verify";
28
29
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
29
30
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
30
31
  export type { SeedOptions, SeedResult } from "./seed";
@@ -85,7 +86,7 @@ export declare function init(config: AuthHeroConfig): {
85
86
  };
86
87
  } & {
87
88
  json: {
88
- type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
89
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
89
90
  phone_number?: string | undefined;
90
91
  totp_secret?: string | undefined;
91
92
  credential_id?: string | undefined;
@@ -225,7 +226,7 @@ export declare function init(config: AuthHeroConfig): {
225
226
  };
226
227
  };
227
228
  output: {
228
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
229
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
229
230
  enabled: boolean;
230
231
  trial_expired?: boolean | undefined;
231
232
  }[];
@@ -380,7 +381,7 @@ export declare function init(config: AuthHeroConfig): {
380
381
  $get: {
381
382
  input: {
382
383
  param: {
383
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
384
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
384
385
  };
385
386
  } & {
386
387
  header: {
@@ -388,7 +389,7 @@ export declare function init(config: AuthHeroConfig): {
388
389
  };
389
390
  };
390
391
  output: {
391
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
392
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
392
393
  enabled: boolean;
393
394
  trial_expired?: boolean | undefined;
394
395
  };
@@ -401,7 +402,7 @@ export declare function init(config: AuthHeroConfig): {
401
402
  $put: {
402
403
  input: {
403
404
  param: {
404
- factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
405
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
405
406
  };
406
407
  } & {
407
408
  header: {
@@ -413,7 +414,7 @@ export declare function init(config: AuthHeroConfig): {
413
414
  };
414
415
  };
415
416
  output: {
416
- name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
417
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
417
418
  enabled: boolean;
418
419
  trial_expired?: boolean | undefined;
419
420
  };
@@ -1158,10 +1159,10 @@ export declare function init(config: AuthHeroConfig): {
1158
1159
  invitee: {
1159
1160
  email?: string | undefined;
1160
1161
  };
1161
- connection_id?: string | undefined;
1162
1162
  id?: string | undefined;
1163
1163
  app_metadata?: Record<string, any> | undefined;
1164
1164
  user_metadata?: Record<string, any> | undefined;
1165
+ connection_id?: string | undefined;
1165
1166
  roles?: string[] | undefined;
1166
1167
  ttl_sec?: number | undefined;
1167
1168
  send_invitation_email?: boolean | undefined;
@@ -1211,7 +1212,7 @@ export declare function init(config: AuthHeroConfig): {
1211
1212
  };
1212
1213
  output: {};
1213
1214
  outputFormat: string;
1214
- status: 404;
1215
+ status: 204;
1215
1216
  } | {
1216
1217
  input: {
1217
1218
  param: {
@@ -1225,7 +1226,7 @@ export declare function init(config: AuthHeroConfig): {
1225
1226
  };
1226
1227
  output: {};
1227
1228
  outputFormat: string;
1228
- status: 204;
1229
+ status: 404;
1229
1230
  };
1230
1231
  };
1231
1232
  } & {
@@ -2641,7 +2642,7 @@ export declare function init(config: AuthHeroConfig): {
2641
2642
  value: string;
2642
2643
  label: string;
2643
2644
  }[] | undefined;
2644
- display?: "checkbox" | "radio" | undefined;
2645
+ display?: "radio" | "checkbox" | undefined;
2645
2646
  multiple?: boolean | undefined;
2646
2647
  default_value?: string | string[] | undefined;
2647
2648
  } | undefined;
@@ -3218,7 +3219,7 @@ export declare function init(config: AuthHeroConfig): {
3218
3219
  value: string;
3219
3220
  label: string;
3220
3221
  }[] | undefined;
3221
- display?: "checkbox" | "radio" | undefined;
3222
+ display?: "radio" | "checkbox" | undefined;
3222
3223
  multiple?: boolean | undefined;
3223
3224
  default_value?: string | string[] | undefined;
3224
3225
  } | undefined;
@@ -3810,7 +3811,7 @@ export declare function init(config: AuthHeroConfig): {
3810
3811
  value: string;
3811
3812
  label: string;
3812
3813
  }[] | undefined;
3813
- display?: "checkbox" | "radio" | undefined;
3814
+ display?: "radio" | "checkbox" | undefined;
3814
3815
  multiple?: boolean | undefined;
3815
3816
  default_value?: string | string[] | undefined;
3816
3817
  } | undefined;
@@ -4408,7 +4409,7 @@ export declare function init(config: AuthHeroConfig): {
4408
4409
  value: string;
4409
4410
  label: string;
4410
4411
  }[] | undefined;
4411
- display?: "checkbox" | "radio" | undefined;
4412
+ display?: "radio" | "checkbox" | undefined;
4412
4413
  multiple?: boolean | undefined;
4413
4414
  default_value?: string | string[] | undefined;
4414
4415
  } | undefined;
@@ -4979,7 +4980,7 @@ export declare function init(config: AuthHeroConfig): {
4979
4980
  value: string;
4980
4981
  label: string;
4981
4982
  }[] | undefined;
4982
- display?: "checkbox" | "radio" | undefined;
4983
+ display?: "radio" | "checkbox" | undefined;
4983
4984
  multiple?: boolean | undefined;
4984
4985
  default_value?: string | string[] | undefined;
4985
4986
  } | undefined;
@@ -5556,7 +5557,7 @@ export declare function init(config: AuthHeroConfig): {
5556
5557
  value: string;
5557
5558
  label: string;
5558
5559
  }[] | undefined;
5559
- display?: "checkbox" | "radio" | undefined;
5560
+ display?: "radio" | "checkbox" | undefined;
5560
5561
  multiple?: boolean | undefined;
5561
5562
  default_value?: string | string[] | undefined;
5562
5563
  } | undefined;
@@ -6127,7 +6128,7 @@ export declare function init(config: AuthHeroConfig): {
6127
6128
  value: string;
6128
6129
  label: string;
6129
6130
  }[] | undefined;
6130
- display?: "checkbox" | "radio" | undefined;
6131
+ display?: "radio" | "checkbox" | undefined;
6131
6132
  multiple?: boolean | undefined;
6132
6133
  default_value?: string | string[] | undefined;
6133
6134
  } | undefined;
@@ -6649,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
6649
6650
  };
6650
6651
  };
6651
6652
  output: {
6652
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6653
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6653
6654
  language: string;
6654
6655
  }[];
6655
6656
  outputFormat: "json";
@@ -6687,7 +6688,7 @@ export declare function init(config: AuthHeroConfig): {
6687
6688
  $get: {
6688
6689
  input: {
6689
6690
  param: {
6690
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6691
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6691
6692
  language: string;
6692
6693
  };
6693
6694
  } & {
@@ -6709,7 +6710,7 @@ export declare function init(config: AuthHeroConfig): {
6709
6710
  $put: {
6710
6711
  input: {
6711
6712
  param: {
6712
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6713
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6713
6714
  language: string;
6714
6715
  };
6715
6716
  } & {
@@ -6733,7 +6734,7 @@ export declare function init(config: AuthHeroConfig): {
6733
6734
  $delete: {
6734
6735
  input: {
6735
6736
  param: {
6736
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6737
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6737
6738
  language: string;
6738
6739
  };
6739
6740
  } & {
@@ -8174,7 +8175,7 @@ export declare function init(config: AuthHeroConfig): {
8174
8175
  log_type: string;
8175
8176
  category: "user_action" | "admin_action" | "system" | "api";
8176
8177
  actor: {
8177
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8178
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8178
8179
  id?: string | undefined;
8179
8180
  email?: string | undefined;
8180
8181
  org_id?: string | undefined;
@@ -8482,7 +8483,7 @@ export declare function init(config: AuthHeroConfig): {
8482
8483
  created_at: string;
8483
8484
  updated_at: string;
8484
8485
  name: string;
8485
- provider: "auth0" | "oidc" | "cognito" | "okta";
8486
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8486
8487
  connection: string;
8487
8488
  enabled: boolean;
8488
8489
  credentials: {
@@ -8514,7 +8515,7 @@ export declare function init(config: AuthHeroConfig): {
8514
8515
  created_at: string;
8515
8516
  updated_at: string;
8516
8517
  name: string;
8517
- provider: "auth0" | "oidc" | "cognito" | "okta";
8518
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8518
8519
  connection: string;
8519
8520
  enabled: boolean;
8520
8521
  credentials: {
@@ -8540,7 +8541,7 @@ export declare function init(config: AuthHeroConfig): {
8540
8541
  } & {
8541
8542
  json: {
8542
8543
  name: string;
8543
- provider: "auth0" | "oidc" | "cognito" | "okta";
8544
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8544
8545
  connection: string;
8545
8546
  credentials: {
8546
8547
  domain: string;
@@ -8557,7 +8558,7 @@ export declare function init(config: AuthHeroConfig): {
8557
8558
  created_at: string;
8558
8559
  updated_at: string;
8559
8560
  name: string;
8560
- provider: "auth0" | "oidc" | "cognito" | "okta";
8561
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8561
8562
  connection: string;
8562
8563
  enabled: boolean;
8563
8564
  credentials: {
@@ -8588,7 +8589,7 @@ export declare function init(config: AuthHeroConfig): {
8588
8589
  json: {
8589
8590
  id?: string | undefined;
8590
8591
  name?: string | undefined;
8591
- provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
8592
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8592
8593
  connection?: string | undefined;
8593
8594
  enabled?: boolean | undefined;
8594
8595
  credentials?: {
@@ -8604,7 +8605,7 @@ export declare function init(config: AuthHeroConfig): {
8604
8605
  created_at: string;
8605
8606
  updated_at: string;
8606
8607
  name: string;
8607
- provider: "auth0" | "oidc" | "cognito" | "okta";
8608
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8608
8609
  connection: string;
8609
8610
  enabled: boolean;
8610
8611
  credentials: {
@@ -8822,7 +8823,7 @@ export declare function init(config: AuthHeroConfig): {
8822
8823
  };
8823
8824
  };
8824
8825
  output: {
8825
- type: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
8826
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8826
8827
  date: string;
8827
8828
  isMobile: boolean;
8828
8829
  log_id: string;
@@ -8861,7 +8862,7 @@ export declare function init(config: AuthHeroConfig): {
8861
8862
  limit: number;
8862
8863
  length: number;
8863
8864
  logs: {
8864
- type: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
8865
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8865
8866
  date: string;
8866
8867
  isMobile: boolean;
8867
8868
  log_id: string;
@@ -8915,7 +8916,7 @@ export declare function init(config: AuthHeroConfig): {
8915
8916
  };
8916
8917
  };
8917
8918
  output: {
8918
- type: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
8919
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8919
8920
  date: string;
8920
8921
  isMobile: boolean;
8921
8922
  log_id: string;
@@ -9070,7 +9071,7 @@ export declare function init(config: AuthHeroConfig): {
9070
9071
  audience?: string | undefined;
9071
9072
  client_id?: string | undefined;
9072
9073
  allow_any_organization?: string | undefined;
9073
- subject_type?: "user" | "client" | undefined;
9074
+ subject_type?: "client" | "user" | undefined;
9074
9075
  };
9075
9076
  } & {
9076
9077
  header: {
@@ -9085,7 +9086,7 @@ export declare function init(config: AuthHeroConfig): {
9085
9086
  organization_usage?: "deny" | "allow" | "require" | undefined;
9086
9087
  allow_any_organization?: boolean | undefined;
9087
9088
  is_system?: boolean | undefined;
9088
- subject_type?: "user" | "client" | undefined;
9089
+ subject_type?: "client" | "user" | undefined;
9089
9090
  authorization_details_types?: string[] | undefined;
9090
9091
  created_at?: string | undefined;
9091
9092
  updated_at?: string | undefined;
@@ -9101,7 +9102,7 @@ export declare function init(config: AuthHeroConfig): {
9101
9102
  organization_usage?: "deny" | "allow" | "require" | undefined;
9102
9103
  allow_any_organization?: boolean | undefined;
9103
9104
  is_system?: boolean | undefined;
9104
- subject_type?: "user" | "client" | undefined;
9105
+ subject_type?: "client" | "user" | undefined;
9105
9106
  authorization_details_types?: string[] | undefined;
9106
9107
  created_at?: string | undefined;
9107
9108
  updated_at?: string | undefined;
@@ -9132,7 +9133,7 @@ export declare function init(config: AuthHeroConfig): {
9132
9133
  organization_usage?: "deny" | "allow" | "require" | undefined;
9133
9134
  allow_any_organization?: boolean | undefined;
9134
9135
  is_system?: boolean | undefined;
9135
- subject_type?: "user" | "client" | undefined;
9136
+ subject_type?: "client" | "user" | undefined;
9136
9137
  authorization_details_types?: string[] | undefined;
9137
9138
  created_at?: string | undefined;
9138
9139
  updated_at?: string | undefined;
@@ -9177,7 +9178,7 @@ export declare function init(config: AuthHeroConfig): {
9177
9178
  organization_usage?: "deny" | "allow" | "require" | undefined;
9178
9179
  allow_any_organization?: boolean | undefined;
9179
9180
  is_system?: boolean | undefined;
9180
- subject_type?: "user" | "client" | undefined;
9181
+ subject_type?: "client" | "user" | undefined;
9181
9182
  authorization_details_types?: string[] | undefined;
9182
9183
  };
9183
9184
  };
@@ -9189,7 +9190,7 @@ export declare function init(config: AuthHeroConfig): {
9189
9190
  organization_usage?: "deny" | "allow" | "require" | undefined;
9190
9191
  allow_any_organization?: boolean | undefined;
9191
9192
  is_system?: boolean | undefined;
9192
- subject_type?: "user" | "client" | undefined;
9193
+ subject_type?: "client" | "user" | undefined;
9193
9194
  authorization_details_types?: string[] | undefined;
9194
9195
  created_at?: string | undefined;
9195
9196
  updated_at?: string | undefined;
@@ -9213,7 +9214,7 @@ export declare function init(config: AuthHeroConfig): {
9213
9214
  organization_usage?: "deny" | "allow" | "require" | undefined;
9214
9215
  allow_any_organization?: boolean | undefined;
9215
9216
  is_system?: boolean | undefined;
9216
- subject_type?: "user" | "client" | undefined;
9217
+ subject_type?: "client" | "user" | undefined;
9217
9218
  authorization_details_types?: string[] | undefined;
9218
9219
  };
9219
9220
  };
@@ -9225,7 +9226,7 @@ export declare function init(config: AuthHeroConfig): {
9225
9226
  organization_usage?: "deny" | "allow" | "require" | undefined;
9226
9227
  allow_any_organization?: boolean | undefined;
9227
9228
  is_system?: boolean | undefined;
9228
- subject_type?: "user" | "client" | undefined;
9229
+ subject_type?: "client" | "user" | undefined;
9229
9230
  authorization_details_types?: string[] | undefined;
9230
9231
  created_at?: string | undefined;
9231
9232
  updated_at?: string | undefined;
@@ -9303,7 +9304,7 @@ export declare function init(config: AuthHeroConfig): {
9303
9304
  addons?: {
9304
9305
  [x: string]: any;
9305
9306
  } | undefined;
9306
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9307
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9307
9308
  client_metadata?: {
9308
9309
  [x: string]: string;
9309
9310
  } | undefined;
@@ -9399,7 +9400,7 @@ export declare function init(config: AuthHeroConfig): {
9399
9400
  addons?: {
9400
9401
  [x: string]: any;
9401
9402
  } | undefined;
9402
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9403
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9403
9404
  client_metadata?: {
9404
9405
  [x: string]: string;
9405
9406
  } | undefined;
@@ -9510,7 +9511,7 @@ export declare function init(config: AuthHeroConfig): {
9510
9511
  addons?: {
9511
9512
  [x: string]: any;
9512
9513
  } | undefined;
9513
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9514
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9514
9515
  client_metadata?: {
9515
9516
  [x: string]: string;
9516
9517
  } | undefined;
@@ -9620,7 +9621,7 @@ export declare function init(config: AuthHeroConfig): {
9620
9621
  custom_login_page_preview?: string | undefined;
9621
9622
  form_template?: string | undefined;
9622
9623
  addons?: Record<string, any> | undefined;
9623
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9624
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9624
9625
  client_metadata?: Record<string, string> | undefined;
9625
9626
  hide_sign_up_disabled_error?: boolean | undefined;
9626
9627
  mobile?: Record<string, any> | undefined;
@@ -9700,7 +9701,7 @@ export declare function init(config: AuthHeroConfig): {
9700
9701
  addons?: {
9701
9702
  [x: string]: any;
9702
9703
  } | undefined;
9703
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9704
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9704
9705
  client_metadata?: {
9705
9706
  [x: string]: string;
9706
9707
  } | undefined;
@@ -9789,7 +9790,7 @@ export declare function init(config: AuthHeroConfig): {
9789
9790
  custom_login_page_preview?: string | undefined;
9790
9791
  form_template?: string | undefined;
9791
9792
  addons?: Record<string, any> | undefined;
9792
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9793
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9793
9794
  client_metadata?: Record<string, string> | undefined;
9794
9795
  hide_sign_up_disabled_error?: boolean | undefined;
9795
9796
  mobile?: Record<string, any> | undefined;
@@ -9869,7 +9870,7 @@ export declare function init(config: AuthHeroConfig): {
9869
9870
  addons?: {
9870
9871
  [x: string]: any;
9871
9872
  } | undefined;
9872
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9873
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9873
9874
  client_metadata?: {
9874
9875
  [x: string]: string;
9875
9876
  } | undefined;
@@ -11133,7 +11134,7 @@ export declare function init(config: AuthHeroConfig): {
11133
11134
  };
11134
11135
  };
11135
11136
  output: {
11136
- type: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11137
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11137
11138
  date: string;
11138
11139
  isMobile: boolean;
11139
11140
  log_id: string;
@@ -11172,7 +11173,7 @@ export declare function init(config: AuthHeroConfig): {
11172
11173
  limit: number;
11173
11174
  length: number;
11174
11175
  logs: {
11175
- type: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11176
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11176
11177
  date: string;
11177
11178
  isMobile: boolean;
11178
11179
  log_id: string;
@@ -11487,7 +11488,7 @@ export declare function init(config: AuthHeroConfig): {
11487
11488
  };
11488
11489
  } & {
11489
11490
  json: {
11490
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11491
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11491
11492
  body: string;
11492
11493
  from: string;
11493
11494
  subject: string;
@@ -11508,7 +11509,7 @@ export declare function init(config: AuthHeroConfig): {
11508
11509
  };
11509
11510
  } & {
11510
11511
  json: {
11511
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11512
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11512
11513
  body: string;
11513
11514
  from: string;
11514
11515
  subject: string;
@@ -11520,7 +11521,7 @@ export declare function init(config: AuthHeroConfig): {
11520
11521
  };
11521
11522
  };
11522
11523
  output: {
11523
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11524
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11524
11525
  body: string;
11525
11526
  from: string;
11526
11527
  subject: string;
@@ -11543,7 +11544,7 @@ export declare function init(config: AuthHeroConfig): {
11543
11544
  };
11544
11545
  };
11545
11546
  output: {
11546
- name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11547
+ name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11547
11548
  body: string;
11548
11549
  subject: string;
11549
11550
  }[];
@@ -11556,7 +11557,7 @@ export declare function init(config: AuthHeroConfig): {
11556
11557
  $get: {
11557
11558
  input: {
11558
11559
  param: {
11559
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11560
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11560
11561
  };
11561
11562
  } & {
11562
11563
  header: {
@@ -11569,7 +11570,7 @@ export declare function init(config: AuthHeroConfig): {
11569
11570
  } | {
11570
11571
  input: {
11571
11572
  param: {
11572
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11573
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11573
11574
  };
11574
11575
  } & {
11575
11576
  header: {
@@ -11577,7 +11578,7 @@ export declare function init(config: AuthHeroConfig): {
11577
11578
  };
11578
11579
  };
11579
11580
  output: {
11580
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11581
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11581
11582
  body: string;
11582
11583
  from: string;
11583
11584
  subject: string;
@@ -11596,7 +11597,7 @@ export declare function init(config: AuthHeroConfig): {
11596
11597
  $put: {
11597
11598
  input: {
11598
11599
  param: {
11599
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11600
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11600
11601
  };
11601
11602
  } & {
11602
11603
  header: {
@@ -11604,7 +11605,7 @@ export declare function init(config: AuthHeroConfig): {
11604
11605
  };
11605
11606
  } & {
11606
11607
  json: {
11607
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11608
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11608
11609
  body: string;
11609
11610
  subject: string;
11610
11611
  syntax?: "liquid" | undefined;
@@ -11616,7 +11617,7 @@ export declare function init(config: AuthHeroConfig): {
11616
11617
  };
11617
11618
  };
11618
11619
  output: {
11619
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11620
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11620
11621
  body: string;
11621
11622
  from: string;
11622
11623
  subject: string;
@@ -11635,7 +11636,7 @@ export declare function init(config: AuthHeroConfig): {
11635
11636
  $patch: {
11636
11637
  input: {
11637
11638
  param: {
11638
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11639
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11639
11640
  };
11640
11641
  } & {
11641
11642
  header: {
@@ -11643,7 +11644,7 @@ export declare function init(config: AuthHeroConfig): {
11643
11644
  };
11644
11645
  } & {
11645
11646
  json: {
11646
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11647
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11647
11648
  body?: string | undefined;
11648
11649
  from?: string | undefined;
11649
11650
  subject?: string | undefined;
@@ -11660,7 +11661,7 @@ export declare function init(config: AuthHeroConfig): {
11660
11661
  } | {
11661
11662
  input: {
11662
11663
  param: {
11663
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11664
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11664
11665
  };
11665
11666
  } & {
11666
11667
  header: {
@@ -11668,7 +11669,7 @@ export declare function init(config: AuthHeroConfig): {
11668
11669
  };
11669
11670
  } & {
11670
11671
  json: {
11671
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11672
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11672
11673
  body?: string | undefined;
11673
11674
  from?: string | undefined;
11674
11675
  subject?: string | undefined;
@@ -11680,7 +11681,7 @@ export declare function init(config: AuthHeroConfig): {
11680
11681
  };
11681
11682
  };
11682
11683
  output: {
11683
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11684
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11684
11685
  body: string;
11685
11686
  from: string;
11686
11687
  subject: string;
@@ -11699,7 +11700,7 @@ export declare function init(config: AuthHeroConfig): {
11699
11700
  $delete: {
11700
11701
  input: {
11701
11702
  param: {
11702
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11703
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11703
11704
  };
11704
11705
  } & {
11705
11706
  header: {
@@ -11708,11 +11709,11 @@ export declare function init(config: AuthHeroConfig): {
11708
11709
  };
11709
11710
  output: {};
11710
11711
  outputFormat: string;
11711
- status: 404;
11712
+ status: 204;
11712
11713
  } | {
11713
11714
  input: {
11714
11715
  param: {
11715
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11716
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11716
11717
  };
11717
11718
  } & {
11718
11719
  header: {
@@ -11721,7 +11722,7 @@ export declare function init(config: AuthHeroConfig): {
11721
11722
  };
11722
11723
  output: {};
11723
11724
  outputFormat: string;
11724
- status: 204;
11725
+ status: 404;
11725
11726
  };
11726
11727
  };
11727
11728
  } & {
@@ -11729,7 +11730,7 @@ export declare function init(config: AuthHeroConfig): {
11729
11730
  $post: {
11730
11731
  input: {
11731
11732
  param: {
11732
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11733
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11733
11734
  };
11734
11735
  } & {
11735
11736
  header: {
@@ -11857,7 +11858,7 @@ export declare function init(config: AuthHeroConfig): {
11857
11858
  };
11858
11859
  output: {};
11859
11860
  outputFormat: string;
11860
- status: 404;
11861
+ status: 204;
11861
11862
  } | {
11862
11863
  input: {
11863
11864
  header: {
@@ -11866,7 +11867,7 @@ export declare function init(config: AuthHeroConfig): {
11866
11867
  };
11867
11868
  output: {};
11868
11869
  outputFormat: string;
11869
- status: 204;
11870
+ status: 404;
11870
11871
  };
11871
11872
  };
11872
11873
  }, "/emails/provider"> & import("hono/types").MergeSchemaPath<{
@@ -11975,7 +11976,7 @@ export declare function init(config: AuthHeroConfig): {
11975
11976
  };
11976
11977
  output: {};
11977
11978
  outputFormat: string;
11978
- status: 404;
11979
+ status: 204;
11979
11980
  } | {
11980
11981
  input: {
11981
11982
  header: {
@@ -11984,7 +11985,7 @@ export declare function init(config: AuthHeroConfig): {
11984
11985
  };
11985
11986
  output: {};
11986
11987
  outputFormat: string;
11987
- status: 204;
11988
+ status: 404;
11988
11989
  };
11989
11990
  };
11990
11991
  }, "/email/providers"> & import("hono/types").MergeSchemaPath<{
@@ -12012,7 +12013,7 @@ export declare function init(config: AuthHeroConfig): {
12012
12013
  type: "auth0_managed_certs" | "self_managed_certs";
12013
12014
  custom_domain_id: string;
12014
12015
  primary: boolean;
12015
- status: "pending" | "ready" | "disabled" | "pending_verification";
12016
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12016
12017
  verification_method?: "txt" | undefined;
12017
12018
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12018
12019
  domain_metadata?: {
@@ -12053,7 +12054,7 @@ export declare function init(config: AuthHeroConfig): {
12053
12054
  type: "auth0_managed_certs" | "self_managed_certs";
12054
12055
  custom_domain_id: string;
12055
12056
  primary: boolean;
12056
- status: "pending" | "ready" | "disabled" | "pending_verification";
12057
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12057
12058
  verification_method?: "txt" | undefined;
12058
12059
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12059
12060
  domain_metadata?: {
@@ -12114,7 +12115,7 @@ export declare function init(config: AuthHeroConfig): {
12114
12115
  domain_metadata?: Record<string, string> | undefined;
12115
12116
  custom_domain_id?: string | undefined;
12116
12117
  primary?: boolean | undefined;
12117
- status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
12118
+ status?: "disabled" | "pending" | "ready" | "pending_verification" | undefined;
12118
12119
  origin_domain_name?: string | undefined;
12119
12120
  verification?: {
12120
12121
  methods: ({
@@ -12135,7 +12136,7 @@ export declare function init(config: AuthHeroConfig): {
12135
12136
  type: "auth0_managed_certs" | "self_managed_certs";
12136
12137
  custom_domain_id: string;
12137
12138
  primary: boolean;
12138
- status: "pending" | "ready" | "disabled" | "pending_verification";
12139
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12139
12140
  verification_method?: "txt" | undefined;
12140
12141
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12141
12142
  domain_metadata?: {
@@ -12182,7 +12183,7 @@ export declare function init(config: AuthHeroConfig): {
12182
12183
  type: "auth0_managed_certs" | "self_managed_certs";
12183
12184
  custom_domain_id: string;
12184
12185
  primary: boolean;
12185
- status: "pending" | "ready" | "disabled" | "pending_verification";
12186
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12186
12187
  verification_method?: "txt" | undefined;
12187
12188
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12188
12189
  domain_metadata?: {
@@ -12228,7 +12229,7 @@ export declare function init(config: AuthHeroConfig): {
12228
12229
  type: "auth0_managed_certs" | "self_managed_certs";
12229
12230
  custom_domain_id: string;
12230
12231
  primary: boolean;
12231
- status: "pending" | "ready" | "disabled" | "pending_verification";
12232
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12232
12233
  verification_method?: "txt" | undefined;
12233
12234
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12234
12235
  domain_metadata?: {
@@ -12269,7 +12270,7 @@ export declare function init(config: AuthHeroConfig): {
12269
12270
  type: "auth0_managed_certs" | "self_managed_certs";
12270
12271
  custom_domain_id: string;
12271
12272
  primary: boolean;
12272
- status: "pending" | "ready" | "disabled" | "pending_verification";
12273
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12273
12274
  verification_method?: "txt" | undefined;
12274
12275
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12275
12276
  domain_metadata?: {
@@ -12876,7 +12877,7 @@ export declare function init(config: AuthHeroConfig): {
12876
12877
  logs: {
12877
12878
  action_name: string;
12878
12879
  lines: {
12879
- level: "log" | "error" | "info" | "warn" | "debug";
12880
+ level: "error" | "log" | "info" | "warn" | "debug";
12880
12881
  message: string;
12881
12882
  }[];
12882
12883
  }[];
@@ -13183,7 +13184,7 @@ export declare function init(config: AuthHeroConfig): {
13183
13184
  };
13184
13185
  output: {};
13185
13186
  outputFormat: string;
13186
- status: 404;
13187
+ status: 200;
13187
13188
  } | {
13188
13189
  input: {
13189
13190
  param: {
@@ -13196,7 +13197,7 @@ export declare function init(config: AuthHeroConfig): {
13196
13197
  };
13197
13198
  output: {};
13198
13199
  outputFormat: string;
13199
- status: 200;
13200
+ status: 404;
13200
13201
  } | {
13201
13202
  input: {
13202
13203
  param: {
@@ -13543,7 +13544,7 @@ export declare function init(config: AuthHeroConfig): {
13543
13544
  args: import("hono/utils/types").JSONValue[];
13544
13545
  }[];
13545
13546
  logs: {
13546
- level: "log" | "error" | "info" | "warn" | "debug";
13547
+ level: "error" | "log" | "info" | "warn" | "debug";
13547
13548
  message: string;
13548
13549
  }[];
13549
13550
  error?: string | undefined;
@@ -13841,7 +13842,7 @@ export declare function init(config: AuthHeroConfig): {
13841
13842
  scope?: string | undefined;
13842
13843
  grant_types?: string[] | undefined;
13843
13844
  response_types?: string[] | undefined;
13844
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13845
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13845
13846
  jwks_uri?: string | undefined;
13846
13847
  jwks?: Record<string, unknown> | undefined;
13847
13848
  software_id?: string | undefined;
@@ -13930,7 +13931,7 @@ export declare function init(config: AuthHeroConfig): {
13930
13931
  scope?: string | undefined;
13931
13932
  grant_types?: string[] | undefined;
13932
13933
  response_types?: string[] | undefined;
13933
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13934
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13934
13935
  jwks_uri?: string | undefined;
13935
13936
  jwks?: Record<string, unknown> | undefined;
13936
13937
  software_id?: string | undefined;
@@ -14276,20 +14277,20 @@ export declare function init(config: AuthHeroConfig): {
14276
14277
  email: string;
14277
14278
  send: "code" | "link";
14278
14279
  authParams: {
14279
- code_challenge?: string | undefined;
14280
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14281
- redirect_uri?: string | undefined;
14282
- nonce?: string | undefined;
14283
- state?: string | undefined;
14284
- act_as?: string | undefined;
14285
14280
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14286
14281
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14287
- audience?: string | undefined;
14288
- organization?: string | undefined;
14289
14282
  scope?: string | undefined;
14290
- prompt?: string | undefined;
14291
14283
  username?: string | undefined;
14284
+ audience?: string | undefined;
14285
+ state?: string | undefined;
14286
+ prompt?: string | undefined;
14292
14287
  ui_locales?: string | undefined;
14288
+ organization?: string | undefined;
14289
+ redirect_uri?: string | undefined;
14290
+ act_as?: string | undefined;
14291
+ nonce?: string | undefined;
14292
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14293
+ code_challenge?: string | undefined;
14293
14294
  max_age?: number | undefined;
14294
14295
  acr_values?: string | undefined;
14295
14296
  claims?: {
@@ -14312,20 +14313,20 @@ export declare function init(config: AuthHeroConfig): {
14312
14313
  phone_number: string;
14313
14314
  send: "code" | "link";
14314
14315
  authParams: {
14315
- code_challenge?: string | undefined;
14316
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14317
- redirect_uri?: string | undefined;
14318
- nonce?: string | undefined;
14319
- state?: string | undefined;
14320
- act_as?: string | undefined;
14321
14316
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14322
14317
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14323
- audience?: string | undefined;
14324
- organization?: string | undefined;
14325
14318
  scope?: string | undefined;
14326
- prompt?: string | undefined;
14327
14319
  username?: string | undefined;
14320
+ audience?: string | undefined;
14321
+ state?: string | undefined;
14322
+ prompt?: string | undefined;
14328
14323
  ui_locales?: string | undefined;
14324
+ organization?: string | undefined;
14325
+ redirect_uri?: string | undefined;
14326
+ act_as?: string | undefined;
14327
+ nonce?: string | undefined;
14328
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14329
+ code_challenge?: string | undefined;
14329
14330
  max_age?: number | undefined;
14330
14331
  acr_values?: string | undefined;
14331
14332
  claims?: {
@@ -15040,7 +15041,7 @@ export declare function init(config: AuthHeroConfig): {
15040
15041
  output: {
15041
15042
  keys: {
15042
15043
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
15043
- kty: "EC" | "RSA" | "oct";
15044
+ kty: "RSA" | "EC" | "oct";
15044
15045
  kid?: string | undefined;
15045
15046
  use?: "sig" | "enc" | undefined;
15046
15047
  n?: string | undefined;
@@ -15400,7 +15401,7 @@ export declare function init(config: AuthHeroConfig): {
15400
15401
  };
15401
15402
  output: {};
15402
15403
  outputFormat: string;
15403
- status: 404;
15404
+ status: 200;
15404
15405
  } | {
15405
15406
  input: {
15406
15407
  param: {
@@ -15414,7 +15415,7 @@ export declare function init(config: AuthHeroConfig): {
15414
15415
  };
15415
15416
  output: {};
15416
15417
  outputFormat: string;
15417
- status: 200;
15418
+ status: 404;
15418
15419
  };
15419
15420
  };
15420
15421
  } & {
@@ -15434,7 +15435,7 @@ export declare function init(config: AuthHeroConfig): {
15434
15435
  };
15435
15436
  output: {};
15436
15437
  outputFormat: string;
15437
- status: 404;
15438
+ status: 200;
15438
15439
  } | {
15439
15440
  input: {
15440
15441
  param: {
@@ -15450,7 +15451,7 @@ export declare function init(config: AuthHeroConfig): {
15450
15451
  };
15451
15452
  output: {};
15452
15453
  outputFormat: string;
15453
- status: 200;
15454
+ status: 404;
15454
15455
  };
15455
15456
  };
15456
15457
  }, "/forms"> & import("hono/types").MergeSchemaPath<{
@@ -16231,7 +16232,7 @@ export declare function init(config: AuthHeroConfig): {
16231
16232
  $get: {
16232
16233
  input: {
16233
16234
  param: {
16234
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "account" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16235
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16235
16236
  };
16236
16237
  } & {
16237
16238
  query: {
@@ -16247,7 +16248,7 @@ export declare function init(config: AuthHeroConfig): {
16247
16248
  } | {
16248
16249
  input: {
16249
16250
  param: {
16250
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "account" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16251
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16251
16252
  };
16252
16253
  } & {
16253
16254
  query: {
@@ -16263,7 +16264,7 @@ export declare function init(config: AuthHeroConfig): {
16263
16264
  } | {
16264
16265
  input: {
16265
16266
  param: {
16266
- screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "account" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16267
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16267
16268
  };
16268
16269
  } & {
16269
16270
  query: {
@@ -16283,7 +16284,7 @@ export declare function init(config: AuthHeroConfig): {
16283
16284
  $post: {
16284
16285
  input: {
16285
16286
  param: {
16286
- screen: "signup" | "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";
16287
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16287
16288
  };
16288
16289
  } & {
16289
16290
  query: {
@@ -16301,7 +16302,7 @@ export declare function init(config: AuthHeroConfig): {
16301
16302
  } | {
16302
16303
  input: {
16303
16304
  param: {
16304
- screen: "signup" | "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";
16305
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16305
16306
  };
16306
16307
  } & {
16307
16308
  query: {
@@ -16319,7 +16320,7 @@ export declare function init(config: AuthHeroConfig): {
16319
16320
  } | {
16320
16321
  input: {
16321
16322
  param: {
16322
- screen: "signup" | "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";
16323
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16323
16324
  };
16324
16325
  } & {
16325
16326
  query: {
@@ -16351,7 +16352,7 @@ export declare function init(config: AuthHeroConfig): {
16351
16352
  };
16352
16353
  output: {};
16353
16354
  outputFormat: string;
16354
- status: 404;
16355
+ status: 200;
16355
16356
  } | {
16356
16357
  input: {
16357
16358
  param: {
@@ -16365,7 +16366,7 @@ export declare function init(config: AuthHeroConfig): {
16365
16366
  };
16366
16367
  output: {};
16367
16368
  outputFormat: string;
16368
- status: 200;
16369
+ status: 404;
16369
16370
  };
16370
16371
  };
16371
16372
  } & {