authhero 5.20.0 → 5.21.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 (43) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +101 -101
  3. package/dist/authhero.d.ts +168 -102
  4. package/dist/authhero.mjs +8703 -8635
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/common.d.ts +1 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +12 -3
  9. package/dist/types/helpers/client.d.ts +23 -3
  10. package/dist/types/helpers/logging.d.ts +7 -0
  11. package/dist/types/index.d.ts +98 -96
  12. package/dist/types/provisioning/index.d.ts +2 -0
  13. package/dist/types/provisioning/noop-provisioner.d.ts +11 -0
  14. package/dist/types/provisioning/provisioner.d.ts +25 -0
  15. package/dist/types/routes/auth-api/index.d.ts +12 -12
  16. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  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 +3 -3
  20. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  21. package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
  22. package/dist/types/routes/management-api/email-templates.d.ts +35 -35
  23. package/dist/types/routes/management-api/emails.d.ts +2 -2
  24. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  25. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  26. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  27. package/dist/types/routes/management-api/index.d.ts +72 -72
  28. package/dist/types/routes/management-api/logs.d.ts +3 -3
  29. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  30. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  31. package/dist/types/routes/management-api/tenants.d.ts +33 -6
  32. package/dist/types/routes/management-api/users.d.ts +2 -2
  33. package/dist/types/routes/universal-login/common.d.ts +48 -12
  34. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  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/types/AuthHeroConfig.d.ts +12 -0
  41. package/dist/types/utils/email.d.ts +2 -0
  42. package/dist/types/utils/jwks.d.ts +4 -4
  43. package/package.json +5 -5
@@ -28,6 +28,8 @@ export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./rou
28
28
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
29
29
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
30
30
  export type { SeedOptions, SeedResult } from "./seed";
31
+ export { NoopTenantProvisioner } from "./provisioning";
32
+ export type { TenantProvisioner, TenantProvisionerContext, } from "./provisioning";
31
33
  export { createAuthMiddleware, MANAGEMENT_API_AUDIENCE, } from "./middlewares/authentication";
32
34
  export type { ManagementAudienceResolver } from "./middlewares/authentication";
33
35
  export { tenantMiddleware } from "./middlewares/tenant";
@@ -83,7 +85,7 @@ export declare function init(config: AuthHeroConfig): {
83
85
  };
84
86
  } & {
85
87
  json: {
86
- type: "push" | "email" | "phone" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
88
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
87
89
  phone_number?: string | undefined;
88
90
  totp_secret?: string | undefined;
89
91
  credential_id?: string | undefined;
@@ -223,7 +225,7 @@ export declare function init(config: AuthHeroConfig): {
223
225
  };
224
226
  };
225
227
  output: {
226
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
228
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
227
229
  enabled: boolean;
228
230
  trial_expired?: boolean | undefined;
229
231
  }[];
@@ -378,7 +380,7 @@ export declare function init(config: AuthHeroConfig): {
378
380
  $get: {
379
381
  input: {
380
382
  param: {
381
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
383
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
382
384
  };
383
385
  } & {
384
386
  header: {
@@ -386,7 +388,7 @@ export declare function init(config: AuthHeroConfig): {
386
388
  };
387
389
  };
388
390
  output: {
389
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
391
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
390
392
  enabled: boolean;
391
393
  trial_expired?: boolean | undefined;
392
394
  };
@@ -399,7 +401,7 @@ export declare function init(config: AuthHeroConfig): {
399
401
  $put: {
400
402
  input: {
401
403
  param: {
402
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
404
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
403
405
  };
404
406
  } & {
405
407
  header: {
@@ -411,7 +413,7 @@ export declare function init(config: AuthHeroConfig): {
411
413
  };
412
414
  };
413
415
  output: {
414
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
416
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
415
417
  enabled: boolean;
416
418
  trial_expired?: boolean | undefined;
417
419
  };
@@ -1156,10 +1158,10 @@ export declare function init(config: AuthHeroConfig): {
1156
1158
  invitee: {
1157
1159
  email?: string | undefined;
1158
1160
  };
1161
+ connection_id?: string | undefined;
1162
+ id?: string | undefined;
1159
1163
  app_metadata?: Record<string, any> | undefined;
1160
1164
  user_metadata?: Record<string, any> | undefined;
1161
- id?: string | undefined;
1162
- connection_id?: string | undefined;
1163
1165
  roles?: string[] | undefined;
1164
1166
  ttl_sec?: number | undefined;
1165
1167
  send_invitation_email?: boolean | undefined;
@@ -1209,7 +1211,7 @@ export declare function init(config: AuthHeroConfig): {
1209
1211
  };
1210
1212
  output: {};
1211
1213
  outputFormat: string;
1212
- status: 204;
1214
+ status: 404;
1213
1215
  } | {
1214
1216
  input: {
1215
1217
  param: {
@@ -1223,7 +1225,7 @@ export declare function init(config: AuthHeroConfig): {
1223
1225
  };
1224
1226
  output: {};
1225
1227
  outputFormat: string;
1226
- status: 404;
1228
+ status: 204;
1227
1229
  };
1228
1230
  };
1229
1231
  } & {
@@ -6647,7 +6649,7 @@ export declare function init(config: AuthHeroConfig): {
6647
6649
  };
6648
6650
  };
6649
6651
  output: {
6650
- prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
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";
6651
6653
  language: string;
6652
6654
  }[];
6653
6655
  outputFormat: "json";
@@ -6685,7 +6687,7 @@ export declare function init(config: AuthHeroConfig): {
6685
6687
  $get: {
6686
6688
  input: {
6687
6689
  param: {
6688
- prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
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";
6689
6691
  language: string;
6690
6692
  };
6691
6693
  } & {
@@ -6707,7 +6709,7 @@ export declare function init(config: AuthHeroConfig): {
6707
6709
  $put: {
6708
6710
  input: {
6709
6711
  param: {
6710
- prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
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";
6711
6713
  language: string;
6712
6714
  };
6713
6715
  } & {
@@ -6731,7 +6733,7 @@ export declare function init(config: AuthHeroConfig): {
6731
6733
  $delete: {
6732
6734
  input: {
6733
6735
  param: {
6734
- prompt: "mfa" | "organizations" | "status" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
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";
6735
6737
  language: string;
6736
6738
  };
6737
6739
  } & {
@@ -7629,7 +7631,7 @@ export declare function init(config: AuthHeroConfig): {
7629
7631
  tenant_id: string;
7630
7632
  created_at: string;
7631
7633
  updated_at: string;
7632
- deploymentStatus: "deployed" | "failed" | "not_required";
7634
+ deploymentStatus: "failed" | "deployed" | "not_required";
7633
7635
  secrets?: {
7634
7636
  [x: string]: string;
7635
7637
  } | undefined;
@@ -7719,7 +7721,7 @@ export declare function init(config: AuthHeroConfig): {
7719
7721
  tenant_id: string;
7720
7722
  created_at: string;
7721
7723
  updated_at: string;
7722
- deploymentStatus: "deployed" | "failed" | "not_required";
7724
+ deploymentStatus: "failed" | "deployed" | "not_required";
7723
7725
  secrets?: {
7724
7726
  [x: string]: string;
7725
7727
  } | undefined;
@@ -8172,7 +8174,7 @@ export declare function init(config: AuthHeroConfig): {
8172
8174
  log_type: string;
8173
8175
  category: "user_action" | "admin_action" | "system" | "api";
8174
8176
  actor: {
8175
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8177
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8176
8178
  id?: string | undefined;
8177
8179
  email?: string | undefined;
8178
8180
  org_id?: string | undefined;
@@ -8820,7 +8822,7 @@ export declare function init(config: AuthHeroConfig): {
8820
8822
  };
8821
8823
  };
8822
8824
  output: {
8823
- type: "s" | "w" | "fn" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
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";
8824
8826
  date: string;
8825
8827
  isMobile: boolean;
8826
8828
  log_id: string;
@@ -8859,7 +8861,7 @@ export declare function init(config: AuthHeroConfig): {
8859
8861
  limit: number;
8860
8862
  length: number;
8861
8863
  logs: {
8862
- type: "s" | "w" | "fn" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
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";
8863
8865
  date: string;
8864
8866
  isMobile: boolean;
8865
8867
  log_id: string;
@@ -8913,7 +8915,7 @@ export declare function init(config: AuthHeroConfig): {
8913
8915
  };
8914
8916
  };
8915
8917
  output: {
8916
- type: "s" | "w" | "fn" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
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";
8917
8919
  date: string;
8918
8920
  isMobile: boolean;
8919
8921
  log_id: string;
@@ -11131,7 +11133,7 @@ export declare function init(config: AuthHeroConfig): {
11131
11133
  };
11132
11134
  };
11133
11135
  output: {
11134
- type: "s" | "w" | "fn" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
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";
11135
11137
  date: string;
11136
11138
  isMobile: boolean;
11137
11139
  log_id: string;
@@ -11170,7 +11172,7 @@ export declare function init(config: AuthHeroConfig): {
11170
11172
  limit: number;
11171
11173
  length: number;
11172
11174
  logs: {
11173
- type: "s" | "w" | "fn" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
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";
11174
11176
  date: string;
11175
11177
  isMobile: boolean;
11176
11178
  log_id: string;
@@ -11485,7 +11487,7 @@ export declare function init(config: AuthHeroConfig): {
11485
11487
  };
11486
11488
  } & {
11487
11489
  json: {
11488
- 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";
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";
11489
11491
  body: string;
11490
11492
  from: string;
11491
11493
  subject: string;
@@ -11496,19 +11498,9 @@ export declare function init(config: AuthHeroConfig): {
11496
11498
  enabled?: boolean | undefined;
11497
11499
  };
11498
11500
  };
11499
- output: {
11500
- 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";
11501
- body: string;
11502
- from: string;
11503
- subject: string;
11504
- syntax: "liquid";
11505
- includeEmailInRedirect: boolean;
11506
- enabled: boolean;
11507
- resultUrl?: string | undefined;
11508
- urlLifetimeInSeconds?: number | undefined;
11509
- };
11510
- outputFormat: "json";
11511
- status: 201;
11501
+ output: {};
11502
+ outputFormat: string;
11503
+ status: 409;
11512
11504
  } | {
11513
11505
  input: {
11514
11506
  header: {
@@ -11516,7 +11508,7 @@ export declare function init(config: AuthHeroConfig): {
11516
11508
  };
11517
11509
  } & {
11518
11510
  json: {
11519
- 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";
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";
11520
11512
  body: string;
11521
11513
  from: string;
11522
11514
  subject: string;
@@ -11527,9 +11519,19 @@ export declare function init(config: AuthHeroConfig): {
11527
11519
  enabled?: boolean | undefined;
11528
11520
  };
11529
11521
  };
11530
- output: {};
11531
- outputFormat: string;
11532
- status: 409;
11522
+ 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
+ body: string;
11525
+ from: string;
11526
+ subject: string;
11527
+ syntax: "liquid";
11528
+ includeEmailInRedirect: boolean;
11529
+ enabled: boolean;
11530
+ resultUrl?: string | undefined;
11531
+ urlLifetimeInSeconds?: number | undefined;
11532
+ };
11533
+ outputFormat: "json";
11534
+ status: 201;
11533
11535
  };
11534
11536
  };
11535
11537
  } & {
@@ -11541,7 +11543,7 @@ export declare function init(config: AuthHeroConfig): {
11541
11543
  };
11542
11544
  };
11543
11545
  output: {
11544
- 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";
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";
11545
11547
  body: string;
11546
11548
  subject: string;
11547
11549
  }[];
@@ -11554,7 +11556,7 @@ export declare function init(config: AuthHeroConfig): {
11554
11556
  $get: {
11555
11557
  input: {
11556
11558
  param: {
11557
- 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";
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";
11558
11560
  };
11559
11561
  } & {
11560
11562
  header: {
@@ -11567,7 +11569,7 @@ export declare function init(config: AuthHeroConfig): {
11567
11569
  } | {
11568
11570
  input: {
11569
11571
  param: {
11570
- 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";
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";
11571
11573
  };
11572
11574
  } & {
11573
11575
  header: {
@@ -11575,7 +11577,7 @@ export declare function init(config: AuthHeroConfig): {
11575
11577
  };
11576
11578
  };
11577
11579
  output: {
11578
- 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";
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";
11579
11581
  body: string;
11580
11582
  from: string;
11581
11583
  subject: string;
@@ -11594,7 +11596,7 @@ export declare function init(config: AuthHeroConfig): {
11594
11596
  $put: {
11595
11597
  input: {
11596
11598
  param: {
11597
- 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";
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";
11598
11600
  };
11599
11601
  } & {
11600
11602
  header: {
@@ -11602,7 +11604,7 @@ export declare function init(config: AuthHeroConfig): {
11602
11604
  };
11603
11605
  } & {
11604
11606
  json: {
11605
- 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";
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";
11606
11608
  body: string;
11607
11609
  subject: string;
11608
11610
  syntax?: "liquid" | undefined;
@@ -11614,7 +11616,7 @@ export declare function init(config: AuthHeroConfig): {
11614
11616
  };
11615
11617
  };
11616
11618
  output: {
11617
- 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";
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";
11618
11620
  body: string;
11619
11621
  from: string;
11620
11622
  subject: string;
@@ -11633,7 +11635,7 @@ export declare function init(config: AuthHeroConfig): {
11633
11635
  $patch: {
11634
11636
  input: {
11635
11637
  param: {
11636
- 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";
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";
11637
11639
  };
11638
11640
  } & {
11639
11641
  header: {
@@ -11641,7 +11643,7 @@ export declare function init(config: AuthHeroConfig): {
11641
11643
  };
11642
11644
  } & {
11643
11645
  json: {
11644
- 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;
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;
11645
11647
  body?: string | undefined;
11646
11648
  from?: string | undefined;
11647
11649
  subject?: string | undefined;
@@ -11658,7 +11660,7 @@ export declare function init(config: AuthHeroConfig): {
11658
11660
  } | {
11659
11661
  input: {
11660
11662
  param: {
11661
- 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";
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";
11662
11664
  };
11663
11665
  } & {
11664
11666
  header: {
@@ -11666,7 +11668,7 @@ export declare function init(config: AuthHeroConfig): {
11666
11668
  };
11667
11669
  } & {
11668
11670
  json: {
11669
- 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;
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;
11670
11672
  body?: string | undefined;
11671
11673
  from?: string | undefined;
11672
11674
  subject?: string | undefined;
@@ -11678,7 +11680,7 @@ export declare function init(config: AuthHeroConfig): {
11678
11680
  };
11679
11681
  };
11680
11682
  output: {
11681
- 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";
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";
11682
11684
  body: string;
11683
11685
  from: string;
11684
11686
  subject: string;
@@ -11697,7 +11699,7 @@ export declare function init(config: AuthHeroConfig): {
11697
11699
  $delete: {
11698
11700
  input: {
11699
11701
  param: {
11700
- 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";
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";
11701
11703
  };
11702
11704
  } & {
11703
11705
  header: {
@@ -11706,11 +11708,11 @@ export declare function init(config: AuthHeroConfig): {
11706
11708
  };
11707
11709
  output: {};
11708
11710
  outputFormat: string;
11709
- status: 204;
11711
+ status: 404;
11710
11712
  } | {
11711
11713
  input: {
11712
11714
  param: {
11713
- 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";
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";
11714
11716
  };
11715
11717
  } & {
11716
11718
  header: {
@@ -11719,7 +11721,7 @@ export declare function init(config: AuthHeroConfig): {
11719
11721
  };
11720
11722
  output: {};
11721
11723
  outputFormat: string;
11722
- status: 404;
11724
+ status: 204;
11723
11725
  };
11724
11726
  };
11725
11727
  } & {
@@ -11727,7 +11729,7 @@ export declare function init(config: AuthHeroConfig): {
11727
11729
  $post: {
11728
11730
  input: {
11729
11731
  param: {
11730
- 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";
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";
11731
11733
  };
11732
11734
  } & {
11733
11735
  header: {
@@ -11855,7 +11857,7 @@ export declare function init(config: AuthHeroConfig): {
11855
11857
  };
11856
11858
  output: {};
11857
11859
  outputFormat: string;
11858
- status: 204;
11860
+ status: 404;
11859
11861
  } | {
11860
11862
  input: {
11861
11863
  header: {
@@ -11864,7 +11866,7 @@ export declare function init(config: AuthHeroConfig): {
11864
11866
  };
11865
11867
  output: {};
11866
11868
  outputFormat: string;
11867
- status: 404;
11869
+ status: 204;
11868
11870
  };
11869
11871
  };
11870
11872
  }, "/emails/provider"> & import("hono/types").MergeSchemaPath<{
@@ -11973,7 +11975,7 @@ export declare function init(config: AuthHeroConfig): {
11973
11975
  };
11974
11976
  output: {};
11975
11977
  outputFormat: string;
11976
- status: 204;
11978
+ status: 404;
11977
11979
  } | {
11978
11980
  input: {
11979
11981
  header: {
@@ -11982,7 +11984,7 @@ export declare function init(config: AuthHeroConfig): {
11982
11984
  };
11983
11985
  output: {};
11984
11986
  outputFormat: string;
11985
- status: 404;
11987
+ status: 204;
11986
11988
  };
11987
11989
  };
11988
11990
  }, "/email/providers"> & import("hono/types").MergeSchemaPath<{
@@ -12010,7 +12012,7 @@ export declare function init(config: AuthHeroConfig): {
12010
12012
  type: "auth0_managed_certs" | "self_managed_certs";
12011
12013
  custom_domain_id: string;
12012
12014
  primary: boolean;
12013
- status: "disabled" | "pending" | "pending_verification" | "ready";
12015
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12014
12016
  verification_method?: "txt" | undefined;
12015
12017
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12016
12018
  domain_metadata?: {
@@ -12051,7 +12053,7 @@ export declare function init(config: AuthHeroConfig): {
12051
12053
  type: "auth0_managed_certs" | "self_managed_certs";
12052
12054
  custom_domain_id: string;
12053
12055
  primary: boolean;
12054
- status: "disabled" | "pending" | "pending_verification" | "ready";
12056
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12055
12057
  verification_method?: "txt" | undefined;
12056
12058
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12057
12059
  domain_metadata?: {
@@ -12112,7 +12114,7 @@ export declare function init(config: AuthHeroConfig): {
12112
12114
  domain_metadata?: Record<string, string> | undefined;
12113
12115
  custom_domain_id?: string | undefined;
12114
12116
  primary?: boolean | undefined;
12115
- status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
12117
+ status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
12116
12118
  origin_domain_name?: string | undefined;
12117
12119
  verification?: {
12118
12120
  methods: ({
@@ -12133,7 +12135,7 @@ export declare function init(config: AuthHeroConfig): {
12133
12135
  type: "auth0_managed_certs" | "self_managed_certs";
12134
12136
  custom_domain_id: string;
12135
12137
  primary: boolean;
12136
- status: "disabled" | "pending" | "pending_verification" | "ready";
12138
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12137
12139
  verification_method?: "txt" | undefined;
12138
12140
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12139
12141
  domain_metadata?: {
@@ -12180,7 +12182,7 @@ export declare function init(config: AuthHeroConfig): {
12180
12182
  type: "auth0_managed_certs" | "self_managed_certs";
12181
12183
  custom_domain_id: string;
12182
12184
  primary: boolean;
12183
- status: "disabled" | "pending" | "pending_verification" | "ready";
12185
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12184
12186
  verification_method?: "txt" | undefined;
12185
12187
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12186
12188
  domain_metadata?: {
@@ -12226,7 +12228,7 @@ export declare function init(config: AuthHeroConfig): {
12226
12228
  type: "auth0_managed_certs" | "self_managed_certs";
12227
12229
  custom_domain_id: string;
12228
12230
  primary: boolean;
12229
- status: "disabled" | "pending" | "pending_verification" | "ready";
12231
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12230
12232
  verification_method?: "txt" | undefined;
12231
12233
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12232
12234
  domain_metadata?: {
@@ -12267,7 +12269,7 @@ export declare function init(config: AuthHeroConfig): {
12267
12269
  type: "auth0_managed_certs" | "self_managed_certs";
12268
12270
  custom_domain_id: string;
12269
12271
  primary: boolean;
12270
- status: "disabled" | "pending" | "pending_verification" | "ready";
12272
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12271
12273
  verification_method?: "txt" | undefined;
12272
12274
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12273
12275
  domain_metadata?: {
@@ -12874,7 +12876,7 @@ export declare function init(config: AuthHeroConfig): {
12874
12876
  logs: {
12875
12877
  action_name: string;
12876
12878
  lines: {
12877
- level: "error" | "log" | "info" | "warn" | "debug";
12879
+ level: "log" | "error" | "info" | "warn" | "debug";
12878
12880
  message: string;
12879
12881
  }[];
12880
12882
  }[];
@@ -13181,7 +13183,7 @@ export declare function init(config: AuthHeroConfig): {
13181
13183
  };
13182
13184
  output: {};
13183
13185
  outputFormat: string;
13184
- status: 409;
13186
+ status: 404;
13185
13187
  } | {
13186
13188
  input: {
13187
13189
  param: {
@@ -13207,7 +13209,7 @@ export declare function init(config: AuthHeroConfig): {
13207
13209
  };
13208
13210
  output: {};
13209
13211
  outputFormat: string;
13210
- status: 404;
13212
+ status: 409;
13211
13213
  };
13212
13214
  };
13213
13215
  } & {
@@ -13541,7 +13543,7 @@ export declare function init(config: AuthHeroConfig): {
13541
13543
  args: import("hono/utils/types").JSONValue[];
13542
13544
  }[];
13543
13545
  logs: {
13544
- level: "error" | "log" | "info" | "warn" | "debug";
13546
+ level: "log" | "error" | "info" | "warn" | "debug";
13545
13547
  message: string;
13546
13548
  }[];
13547
13549
  error?: string | undefined;
@@ -14274,19 +14276,19 @@ export declare function init(config: AuthHeroConfig): {
14274
14276
  email: string;
14275
14277
  send: "code" | "link";
14276
14278
  authParams: {
14277
- username?: string | undefined;
14279
+ code_challenge?: string | undefined;
14280
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14281
+ redirect_uri?: string | undefined;
14282
+ nonce?: string | undefined;
14278
14283
  state?: string | undefined;
14279
14284
  act_as?: string | undefined;
14280
14285
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14281
14286
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14282
- redirect_uri?: string | undefined;
14283
14287
  audience?: string | undefined;
14284
14288
  organization?: string | undefined;
14285
- nonce?: string | undefined;
14286
14289
  scope?: string | undefined;
14287
14290
  prompt?: string | undefined;
14288
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14289
- code_challenge?: string | undefined;
14291
+ username?: string | undefined;
14290
14292
  ui_locales?: string | undefined;
14291
14293
  max_age?: number | undefined;
14292
14294
  acr_values?: string | undefined;
@@ -14310,19 +14312,19 @@ export declare function init(config: AuthHeroConfig): {
14310
14312
  phone_number: string;
14311
14313
  send: "code" | "link";
14312
14314
  authParams: {
14313
- username?: string | undefined;
14315
+ code_challenge?: string | undefined;
14316
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14317
+ redirect_uri?: string | undefined;
14318
+ nonce?: string | undefined;
14314
14319
  state?: string | undefined;
14315
14320
  act_as?: string | undefined;
14316
14321
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14317
14322
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14318
- redirect_uri?: string | undefined;
14319
14323
  audience?: string | undefined;
14320
14324
  organization?: string | undefined;
14321
- nonce?: string | undefined;
14322
14325
  scope?: string | undefined;
14323
14326
  prompt?: string | undefined;
14324
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14325
- code_challenge?: string | undefined;
14327
+ username?: string | undefined;
14326
14328
  ui_locales?: string | undefined;
14327
14329
  max_age?: number | undefined;
14328
14330
  acr_values?: string | undefined;
@@ -15038,8 +15040,8 @@ export declare function init(config: AuthHeroConfig): {
15038
15040
  output: {
15039
15041
  keys: {
15040
15042
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
15041
- kid: string;
15042
- kty: "RSA" | "EC" | "oct";
15043
+ kty: "EC" | "RSA" | "oct";
15044
+ kid?: string | undefined;
15043
15045
  use?: "sig" | "enc" | undefined;
15044
15046
  n?: string | undefined;
15045
15047
  e?: string | undefined;
@@ -15398,7 +15400,7 @@ export declare function init(config: AuthHeroConfig): {
15398
15400
  };
15399
15401
  output: {};
15400
15402
  outputFormat: string;
15401
- status: 200;
15403
+ status: 404;
15402
15404
  } | {
15403
15405
  input: {
15404
15406
  param: {
@@ -15412,7 +15414,7 @@ export declare function init(config: AuthHeroConfig): {
15412
15414
  };
15413
15415
  output: {};
15414
15416
  outputFormat: string;
15415
- status: 404;
15417
+ status: 200;
15416
15418
  };
15417
15419
  };
15418
15420
  } & {
@@ -15432,7 +15434,7 @@ export declare function init(config: AuthHeroConfig): {
15432
15434
  };
15433
15435
  output: {};
15434
15436
  outputFormat: string;
15435
- status: 200;
15437
+ status: 404;
15436
15438
  } | {
15437
15439
  input: {
15438
15440
  param: {
@@ -15448,7 +15450,7 @@ export declare function init(config: AuthHeroConfig): {
15448
15450
  };
15449
15451
  output: {};
15450
15452
  outputFormat: string;
15451
- status: 404;
15453
+ status: 200;
15452
15454
  };
15453
15455
  };
15454
15456
  }, "/forms"> & import("hono/types").MergeSchemaPath<{
@@ -16229,7 +16231,7 @@ export declare function init(config: AuthHeroConfig): {
16229
16231
  $get: {
16230
16232
  input: {
16231
16233
  param: {
16232
- 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";
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";
16233
16235
  };
16234
16236
  } & {
16235
16237
  query: {
@@ -16245,7 +16247,7 @@ export declare function init(config: AuthHeroConfig): {
16245
16247
  } | {
16246
16248
  input: {
16247
16249
  param: {
16248
- 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";
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";
16249
16251
  };
16250
16252
  } & {
16251
16253
  query: {
@@ -16261,7 +16263,7 @@ export declare function init(config: AuthHeroConfig): {
16261
16263
  } | {
16262
16264
  input: {
16263
16265
  param: {
16264
- 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";
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";
16265
16267
  };
16266
16268
  } & {
16267
16269
  query: {
@@ -16281,7 +16283,7 @@ export declare function init(config: AuthHeroConfig): {
16281
16283
  $post: {
16282
16284
  input: {
16283
16285
  param: {
16284
- 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";
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";
16285
16287
  };
16286
16288
  } & {
16287
16289
  query: {
@@ -16299,7 +16301,7 @@ export declare function init(config: AuthHeroConfig): {
16299
16301
  } | {
16300
16302
  input: {
16301
16303
  param: {
16302
- 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";
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";
16303
16305
  };
16304
16306
  } & {
16305
16307
  query: {
@@ -16317,7 +16319,7 @@ export declare function init(config: AuthHeroConfig): {
16317
16319
  } | {
16318
16320
  input: {
16319
16321
  param: {
16320
- 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";
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";
16321
16323
  };
16322
16324
  } & {
16323
16325
  query: {
@@ -16349,7 +16351,7 @@ export declare function init(config: AuthHeroConfig): {
16349
16351
  };
16350
16352
  output: {};
16351
16353
  outputFormat: string;
16352
- status: 200;
16354
+ status: 404;
16353
16355
  } | {
16354
16356
  input: {
16355
16357
  param: {
@@ -16363,7 +16365,7 @@ export declare function init(config: AuthHeroConfig): {
16363
16365
  };
16364
16366
  output: {};
16365
16367
  outputFormat: string;
16366
- status: 404;
16368
+ status: 200;
16367
16369
  };
16368
16370
  };
16369
16371
  } & {