authhero 6.0.0 → 7.1.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 (33) 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 +120 -84
  4. package/dist/authhero.mjs +12763 -10099
  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 +2 -2
  9. package/dist/types/index.d.ts +60 -77
  10. package/dist/types/routes/auth-api/index.d.ts +27 -27
  11. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  14. package/dist/types/routes/auth-api/token.d.ts +10 -10
  15. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  16. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  17. package/dist/types/routes/management-api/actions.d.ts +1 -1
  18. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  19. package/dist/types/routes/management-api/clients.d.ts +7 -7
  20. package/dist/types/routes/management-api/custom-domains.d.ts +7 -25
  21. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  22. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  23. package/dist/types/routes/management-api/index.d.ts +32 -50
  24. package/dist/types/routes/management-api/logs.d.ts +3 -3
  25. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  26. package/dist/types/routes/management-api/users.d.ts +2 -2
  27. package/dist/types/routes/proxy-control-plane/index.d.ts +16 -7
  28. package/dist/types/routes/proxy-control-plane/verify.d.ts +44 -0
  29. package/dist/types/routes/universal-login/common.d.ts +2 -2
  30. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  31. package/dist/types/types/AuthHeroConfig.d.ts +15 -5
  32. package/dist/types/utils/jwks.d.ts +2 -2
  33. 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: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
89
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
229
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
384
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
392
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
405
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "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: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
417
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
417
418
  enabled: boolean;
418
419
  trial_expired?: boolean | undefined;
419
420
  };
@@ -6649,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
6649
6650
  };
6650
6651
  };
6651
6652
  output: {
6652
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6653
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
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: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6691
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
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: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6713
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
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: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6737
+ prompt: "signup" | "status" | "mfa" | "organizations" | "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";
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;
@@ -8822,7 +8823,7 @@ export declare function init(config: AuthHeroConfig): {
8822
8823
  };
8823
8824
  };
8824
8825
  output: {
8825
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8826
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8865
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8919
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8919
8920
  date: string;
8920
8921
  isMobile: boolean;
8921
8922
  log_id: string;
@@ -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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9307
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9403
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9514
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9624
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9704
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9793
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_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" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9873
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_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: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11137
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
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: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11176
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11176
11177
  date: string;
11177
11178
  isMobile: boolean;
11178
11179
  log_id: string;
@@ -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?: {
@@ -12107,27 +12108,9 @@ export declare function init(config: AuthHeroConfig): {
12107
12108
  };
12108
12109
  } & {
12109
12110
  json: {
12110
- domain?: string | undefined;
12111
- type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
12112
- verification_method?: "txt" | undefined;
12111
+ tls_policy?: "recommended" | undefined;
12113
12112
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12114
12113
  domain_metadata?: Record<string, string> | undefined;
12115
- custom_domain_id?: string | undefined;
12116
- primary?: boolean | undefined;
12117
- status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
12118
- origin_domain_name?: string | undefined;
12119
- verification?: {
12120
- methods: ({
12121
- name: "txt";
12122
- record: string;
12123
- domain: string;
12124
- } | {
12125
- name: "http";
12126
- http_body: string;
12127
- http_url: string;
12128
- })[];
12129
- } | undefined;
12130
- tls_policy?: string | undefined;
12131
12114
  };
12132
12115
  };
12133
12116
  output: {
@@ -12135,7 +12118,7 @@ export declare function init(config: AuthHeroConfig): {
12135
12118
  type: "auth0_managed_certs" | "self_managed_certs";
12136
12119
  custom_domain_id: string;
12137
12120
  primary: boolean;
12138
- status: "pending" | "ready" | "disabled" | "pending_verification";
12121
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12139
12122
  verification_method?: "txt" | undefined;
12140
12123
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12141
12124
  domain_metadata?: {
@@ -12182,7 +12165,7 @@ export declare function init(config: AuthHeroConfig): {
12182
12165
  type: "auth0_managed_certs" | "self_managed_certs";
12183
12166
  custom_domain_id: string;
12184
12167
  primary: boolean;
12185
- status: "pending" | "ready" | "disabled" | "pending_verification";
12168
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12186
12169
  verification_method?: "txt" | undefined;
12187
12170
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12188
12171
  domain_metadata?: {
@@ -12228,7 +12211,7 @@ export declare function init(config: AuthHeroConfig): {
12228
12211
  type: "auth0_managed_certs" | "self_managed_certs";
12229
12212
  custom_domain_id: string;
12230
12213
  primary: boolean;
12231
- status: "pending" | "ready" | "disabled" | "pending_verification";
12214
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12232
12215
  verification_method?: "txt" | undefined;
12233
12216
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12234
12217
  domain_metadata?: {
@@ -12269,7 +12252,7 @@ export declare function init(config: AuthHeroConfig): {
12269
12252
  type: "auth0_managed_certs" | "self_managed_certs";
12270
12253
  custom_domain_id: string;
12271
12254
  primary: boolean;
12272
- status: "pending" | "ready" | "disabled" | "pending_verification";
12255
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12273
12256
  verification_method?: "txt" | undefined;
12274
12257
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12275
12258
  domain_metadata?: {
@@ -12876,7 +12859,7 @@ export declare function init(config: AuthHeroConfig): {
12876
12859
  logs: {
12877
12860
  action_name: string;
12878
12861
  lines: {
12879
- level: "log" | "error" | "info" | "warn" | "debug";
12862
+ level: "error" | "log" | "info" | "warn" | "debug";
12880
12863
  message: string;
12881
12864
  }[];
12882
12865
  }[];
@@ -13543,7 +13526,7 @@ export declare function init(config: AuthHeroConfig): {
13543
13526
  args: import("hono/utils/types").JSONValue[];
13544
13527
  }[];
13545
13528
  logs: {
13546
- level: "log" | "error" | "info" | "warn" | "debug";
13529
+ level: "error" | "log" | "info" | "warn" | "debug";
13547
13530
  message: string;
13548
13531
  }[];
13549
13532
  error?: string | undefined;
@@ -13841,7 +13824,7 @@ export declare function init(config: AuthHeroConfig): {
13841
13824
  scope?: string | undefined;
13842
13825
  grant_types?: string[] | undefined;
13843
13826
  response_types?: string[] | undefined;
13844
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13827
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13845
13828
  jwks_uri?: string | undefined;
13846
13829
  jwks?: Record<string, unknown> | undefined;
13847
13830
  software_id?: string | undefined;
@@ -13930,7 +13913,7 @@ export declare function init(config: AuthHeroConfig): {
13930
13913
  scope?: string | undefined;
13931
13914
  grant_types?: string[] | undefined;
13932
13915
  response_types?: string[] | undefined;
13933
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13916
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
13934
13917
  jwks_uri?: string | undefined;
13935
13918
  jwks?: Record<string, unknown> | undefined;
13936
13919
  software_id?: string | undefined;
@@ -14276,16 +14259,16 @@ export declare function init(config: AuthHeroConfig): {
14276
14259
  email: string;
14277
14260
  send: "code" | "link";
14278
14261
  authParams: {
14279
- username?: string | undefined;
14280
- state?: string | undefined;
14281
- audience?: string | undefined;
14282
14262
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14283
14263
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14284
14264
  scope?: string | undefined;
14265
+ username?: string | undefined;
14266
+ audience?: string | undefined;
14267
+ state?: string | undefined;
14285
14268
  organization?: string | undefined;
14286
14269
  nonce?: string | undefined;
14287
- redirect_uri?: string | undefined;
14288
14270
  act_as?: string | undefined;
14271
+ redirect_uri?: string | undefined;
14289
14272
  prompt?: string | undefined;
14290
14273
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14291
14274
  code_challenge?: string | undefined;
@@ -14312,16 +14295,16 @@ export declare function init(config: AuthHeroConfig): {
14312
14295
  phone_number: string;
14313
14296
  send: "code" | "link";
14314
14297
  authParams: {
14315
- username?: string | undefined;
14316
- state?: string | undefined;
14317
- audience?: string | undefined;
14318
14298
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14319
14299
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14320
14300
  scope?: string | undefined;
14301
+ username?: string | undefined;
14302
+ audience?: string | undefined;
14303
+ state?: string | undefined;
14321
14304
  organization?: string | undefined;
14322
14305
  nonce?: string | undefined;
14323
- redirect_uri?: string | undefined;
14324
14306
  act_as?: string | undefined;
14307
+ redirect_uri?: string | undefined;
14325
14308
  prompt?: string | undefined;
14326
14309
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14327
14310
  code_challenge?: string | undefined;
@@ -14456,14 +14439,14 @@ export declare function init(config: AuthHeroConfig): {
14456
14439
  input: {
14457
14440
  form: {
14458
14441
  token: string;
14459
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14442
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14460
14443
  client_id?: string | undefined;
14461
14444
  client_secret?: string | undefined;
14462
14445
  };
14463
14446
  } & {
14464
14447
  json: {
14465
14448
  token: string;
14466
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14449
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14467
14450
  client_id?: string | undefined;
14468
14451
  client_secret?: string | undefined;
14469
14452
  };
@@ -14475,14 +14458,14 @@ export declare function init(config: AuthHeroConfig): {
14475
14458
  input: {
14476
14459
  form: {
14477
14460
  token: string;
14478
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14461
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14479
14462
  client_id?: string | undefined;
14480
14463
  client_secret?: string | undefined;
14481
14464
  };
14482
14465
  } & {
14483
14466
  json: {
14484
14467
  token: string;
14485
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14468
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14486
14469
  client_id?: string | undefined;
14487
14470
  client_secret?: string | undefined;
14488
14471
  };
@@ -14497,14 +14480,14 @@ export declare function init(config: AuthHeroConfig): {
14497
14480
  input: {
14498
14481
  form: {
14499
14482
  token: string;
14500
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14483
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14501
14484
  client_id?: string | undefined;
14502
14485
  client_secret?: string | undefined;
14503
14486
  };
14504
14487
  } & {
14505
14488
  json: {
14506
14489
  token: string;
14507
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14490
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14508
14491
  client_id?: string | undefined;
14509
14492
  client_secret?: string | undefined;
14510
14493
  };
@@ -14554,7 +14537,7 @@ export declare function init(config: AuthHeroConfig): {
14554
14537
  client_id: string;
14555
14538
  username: string;
14556
14539
  otp: string;
14557
- realm: "sms" | "email";
14540
+ realm: "email" | "sms";
14558
14541
  } | {
14559
14542
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14560
14543
  subject_token: string;
@@ -14601,7 +14584,7 @@ export declare function init(config: AuthHeroConfig): {
14601
14584
  client_id: string;
14602
14585
  username: string;
14603
14586
  otp: string;
14604
- realm: "sms" | "email";
14587
+ realm: "email" | "sms";
14605
14588
  } | {
14606
14589
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14607
14590
  subject_token: string;
@@ -14653,7 +14636,7 @@ export declare function init(config: AuthHeroConfig): {
14653
14636
  client_id: string;
14654
14637
  username: string;
14655
14638
  otp: string;
14656
- realm: "sms" | "email";
14639
+ realm: "email" | "sms";
14657
14640
  } | {
14658
14641
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14659
14642
  subject_token: string;
@@ -14700,7 +14683,7 @@ export declare function init(config: AuthHeroConfig): {
14700
14683
  client_id: string;
14701
14684
  username: string;
14702
14685
  otp: string;
14703
- realm: "sms" | "email";
14686
+ realm: "email" | "sms";
14704
14687
  } | {
14705
14688
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14706
14689
  subject_token: string;
@@ -14760,7 +14743,7 @@ export declare function init(config: AuthHeroConfig): {
14760
14743
  client_id: string;
14761
14744
  username: string;
14762
14745
  otp: string;
14763
- realm: "sms" | "email";
14746
+ realm: "email" | "sms";
14764
14747
  } | {
14765
14748
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14766
14749
  subject_token: string;
@@ -14807,7 +14790,7 @@ export declare function init(config: AuthHeroConfig): {
14807
14790
  client_id: string;
14808
14791
  username: string;
14809
14792
  otp: string;
14810
- realm: "sms" | "email";
14793
+ realm: "email" | "sms";
14811
14794
  } | {
14812
14795
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14813
14796
  subject_token: string;
@@ -14862,7 +14845,7 @@ export declare function init(config: AuthHeroConfig): {
14862
14845
  client_id: string;
14863
14846
  username: string;
14864
14847
  otp: string;
14865
- realm: "sms" | "email";
14848
+ realm: "email" | "sms";
14866
14849
  } | {
14867
14850
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14868
14851
  subject_token: string;
@@ -14909,7 +14892,7 @@ export declare function init(config: AuthHeroConfig): {
14909
14892
  client_id: string;
14910
14893
  username: string;
14911
14894
  otp: string;
14912
- realm: "sms" | "email";
14895
+ realm: "email" | "sms";
14913
14896
  } | {
14914
14897
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14915
14898
  subject_token: string;
@@ -14964,7 +14947,7 @@ export declare function init(config: AuthHeroConfig): {
14964
14947
  client_id: string;
14965
14948
  username: string;
14966
14949
  otp: string;
14967
- realm: "sms" | "email";
14950
+ realm: "email" | "sms";
14968
14951
  } | {
14969
14952
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14970
14953
  subject_token: string;
@@ -15011,7 +14994,7 @@ export declare function init(config: AuthHeroConfig): {
15011
14994
  client_id: string;
15012
14995
  username: string;
15013
14996
  otp: string;
15014
- realm: "sms" | "email";
14997
+ realm: "email" | "sms";
15015
14998
  } | {
15016
14999
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15017
15000
  subject_token: string;
@@ -15040,7 +15023,7 @@ export declare function init(config: AuthHeroConfig): {
15040
15023
  output: {
15041
15024
  keys: {
15042
15025
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
15043
- kty: "EC" | "RSA" | "oct";
15026
+ kty: "RSA" | "EC" | "oct";
15044
15027
  kid?: string | undefined;
15045
15028
  use?: "sig" | "enc" | undefined;
15046
15029
  n?: string | undefined;