authhero 8.27.0 → 9.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/LICENSE +661 -21
  2. package/dist/assets/u/js/client.js +2 -2
  3. package/dist/assets/u/widget/index.esm.js +1 -1
  4. package/dist/authhero.cjs +265 -251
  5. package/dist/authhero.d.ts +125 -63
  6. package/dist/authhero.mjs +24322 -17681
  7. package/dist/client.js +2 -2
  8. package/dist/tsconfig.types.tsbuildinfo +1 -1
  9. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  10. package/dist/types/client/client-bundle.d.ts +1 -1
  11. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  12. package/dist/types/helpers/link-candidates.d.ts +28 -0
  13. package/dist/types/helpers/logging.d.ts +8 -0
  14. package/dist/types/helpers/scopes-permissions.d.ts +18 -0
  15. package/dist/types/helpers/signing-keys.d.ts +36 -0
  16. package/dist/types/helpers/users.d.ts +43 -0
  17. package/dist/types/hooks/codehooks.d.ts +9 -1
  18. package/dist/types/hooks/helpers/post-login-account-linking.d.ts +52 -0
  19. package/dist/types/hooks/pre-defined/account-linking.d.ts +20 -0
  20. package/dist/types/index.d.ts +62 -61
  21. package/dist/types/routes/auth-api/index.d.ts +28 -28
  22. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  23. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  24. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  25. package/dist/types/routes/auth-api/token.d.ts +10 -10
  26. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  27. package/dist/types/routes/management-api/actions.d.ts +1 -1
  28. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  29. package/dist/types/routes/management-api/clients.d.ts +8 -8
  30. package/dist/types/routes/management-api/failed-events.d.ts +2 -1
  31. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  32. package/dist/types/routes/management-api/index.d.ts +32 -31
  33. package/dist/types/routes/management-api/logs.d.ts +4 -4
  34. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  35. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  36. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  37. package/dist/types/routes/management-api/users.d.ts +5 -5
  38. package/dist/types/routes/universal-login/common.d.ts +2 -2
  39. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  40. package/dist/types/types/Hooks.d.ts +8 -1
  41. package/package.json +7 -6
@@ -59,8 +59,8 @@ export { HttpSamlSigner } from "@authhero/saml/core";
59
59
  export { fetchAll } from "./utils/fetchAll";
60
60
  export type { FetchAllOptions } from "./utils/fetchAll";
61
61
  export { deepMergePatch } from "./utils/deep-merge";
62
- export { listControlPlaneKeys, resolveSigningKeys, resolveSigningKeyMode, } from "./helpers/signing-keys";
63
- export type { ResolveSigningKeysOptions } from "./helpers/signing-keys";
62
+ export { listControlPlaneKeys, resolveSigningKeys, resolveSigningKeyMode, ensureSigningKey, } from "./helpers/signing-keys";
63
+ export type { ResolveSigningKeysOptions, EnsureSigningKeyOptions, EnsureSigningKeyResult, } from "./helpers/signing-keys";
64
64
  export { USERNAME_PASSWORD_PROVIDER } from "./constants";
65
65
  export * as preDefinedHooks from "./hooks/pre-defined";
66
66
  export type { EnsureUsernameOptions } from "./hooks/pre-defined";
@@ -166,7 +166,7 @@ export declare function init(config: AuthHeroConfig): {
166
166
  };
167
167
  } & {
168
168
  json: {
169
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
169
+ type: "email" | "phone" | "push" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
170
170
  phone_number?: string | undefined;
171
171
  totp_secret?: string | undefined;
172
172
  credential_id?: string | undefined;
@@ -306,7 +306,7 @@ export declare function init(config: AuthHeroConfig): {
306
306
  };
307
307
  };
308
308
  output: {
309
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
309
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
310
310
  enabled: boolean;
311
311
  trial_expired?: boolean | undefined;
312
312
  }[];
@@ -461,7 +461,7 @@ export declare function init(config: AuthHeroConfig): {
461
461
  $get: {
462
462
  input: {
463
463
  param: {
464
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
464
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
465
465
  };
466
466
  } & {
467
467
  header: {
@@ -469,7 +469,7 @@ export declare function init(config: AuthHeroConfig): {
469
469
  };
470
470
  };
471
471
  output: {
472
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
472
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
473
473
  enabled: boolean;
474
474
  trial_expired?: boolean | undefined;
475
475
  };
@@ -482,7 +482,7 @@ export declare function init(config: AuthHeroConfig): {
482
482
  $put: {
483
483
  input: {
484
484
  param: {
485
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
485
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
486
486
  };
487
487
  } & {
488
488
  header: {
@@ -494,7 +494,7 @@ export declare function init(config: AuthHeroConfig): {
494
494
  };
495
495
  };
496
496
  output: {
497
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
497
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
498
498
  enabled: boolean;
499
499
  trial_expired?: boolean | undefined;
500
500
  };
@@ -1461,8 +1461,8 @@ export declare function init(config: AuthHeroConfig): {
1461
1461
  };
1462
1462
  } & {
1463
1463
  json: {
1464
- show_as_button?: boolean | undefined;
1465
1464
  assign_membership_on_login?: boolean | undefined;
1465
+ show_as_button?: boolean | undefined;
1466
1466
  is_signup_enabled?: boolean | undefined;
1467
1467
  };
1468
1468
  };
@@ -6987,7 +6987,7 @@ export declare function init(config: AuthHeroConfig): {
6987
6987
  };
6988
6988
  };
6989
6989
  output: {
6990
- 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";
6990
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
6991
6991
  language: string;
6992
6992
  }[];
6993
6993
  outputFormat: "json";
@@ -7025,7 +7025,7 @@ export declare function init(config: AuthHeroConfig): {
7025
7025
  $get: {
7026
7026
  input: {
7027
7027
  param: {
7028
- 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";
7028
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
7029
7029
  language: string;
7030
7030
  };
7031
7031
  } & {
@@ -7047,7 +7047,7 @@ export declare function init(config: AuthHeroConfig): {
7047
7047
  $put: {
7048
7048
  input: {
7049
7049
  param: {
7050
- 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";
7050
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
7051
7051
  language: string;
7052
7052
  };
7053
7053
  } & {
@@ -7071,7 +7071,7 @@ export declare function init(config: AuthHeroConfig): {
7071
7071
  $delete: {
7072
7072
  input: {
7073
7073
  param: {
7074
- 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";
7074
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
7075
7075
  language: string;
7076
7076
  };
7077
7077
  } & {
@@ -8574,7 +8574,7 @@ export declare function init(config: AuthHeroConfig): {
8574
8574
  log_type: string;
8575
8575
  category: "user_action" | "admin_action" | "system" | "api";
8576
8576
  actor: {
8577
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8577
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8578
8578
  id?: string | undefined;
8579
8579
  email?: string | undefined;
8580
8580
  org_id?: string | undefined;
@@ -8608,6 +8608,7 @@ export declare function init(config: AuthHeroConfig): {
8608
8608
  body?: import("hono/utils/types").JSONValue | undefined;
8609
8609
  user_agent?: string | undefined;
8610
8610
  correlation_id?: string | undefined;
8611
+ redirect_uri?: string | undefined;
8611
8612
  };
8612
8613
  hostname: string;
8613
8614
  timestamp: string;
@@ -9224,7 +9225,7 @@ export declare function init(config: AuthHeroConfig): {
9224
9225
  };
9225
9226
  };
9226
9227
  output: {
9227
- 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";
9228
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9228
9229
  date: string;
9229
9230
  isMobile: boolean;
9230
9231
  log_id: string;
@@ -9263,7 +9264,7 @@ export declare function init(config: AuthHeroConfig): {
9263
9264
  limit: number;
9264
9265
  length: number;
9265
9266
  logs: {
9266
- 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";
9267
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9267
9268
  date: string;
9268
9269
  isMobile: boolean;
9269
9270
  log_id: string;
@@ -9302,7 +9303,7 @@ export declare function init(config: AuthHeroConfig): {
9302
9303
  next?: string | undefined;
9303
9304
  } | {
9304
9305
  logs: {
9305
- 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";
9306
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9306
9307
  date: string;
9307
9308
  isMobile: boolean;
9308
9309
  log_id: string;
@@ -9356,7 +9357,7 @@ export declare function init(config: AuthHeroConfig): {
9356
9357
  };
9357
9358
  };
9358
9359
  output: {
9359
- 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";
9360
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9360
9361
  date: string;
9361
9362
  isMobile: boolean;
9362
9363
  log_id: string;
@@ -9767,7 +9768,7 @@ export declare function init(config: AuthHeroConfig): {
9767
9768
  addons?: {
9768
9769
  [x: string]: any;
9769
9770
  } | undefined;
9770
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9771
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9771
9772
  client_metadata?: {
9772
9773
  [x: string]: string;
9773
9774
  } | 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?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9873
9874
  client_metadata?: {
9874
9875
  [x: string]: string;
9875
9876
  } | undefined;
@@ -9971,7 +9972,7 @@ export declare function init(config: AuthHeroConfig): {
9971
9972
  addons?: {
9972
9973
  [x: string]: any;
9973
9974
  } | undefined;
9974
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9975
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9975
9976
  client_metadata?: {
9976
9977
  [x: string]: string;
9977
9978
  } | undefined;
@@ -10088,7 +10089,7 @@ export declare function init(config: AuthHeroConfig): {
10088
10089
  addons?: {
10089
10090
  [x: string]: any;
10090
10091
  } | undefined;
10091
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10092
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10092
10093
  client_metadata?: {
10093
10094
  [x: string]: string;
10094
10095
  } | undefined;
@@ -10206,7 +10207,7 @@ export declare function init(config: AuthHeroConfig): {
10206
10207
  custom_login_page_preview?: string | undefined;
10207
10208
  form_template?: string | undefined;
10208
10209
  addons?: Record<string, any> | undefined;
10209
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10210
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10210
10211
  client_metadata?: Record<string, string> | undefined;
10211
10212
  hide_sign_up_disabled_error?: boolean | undefined;
10212
10213
  mobile?: Record<string, any> | undefined;
@@ -10292,7 +10293,7 @@ export declare function init(config: AuthHeroConfig): {
10292
10293
  addons?: {
10293
10294
  [x: string]: any;
10294
10295
  } | undefined;
10295
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10296
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10296
10297
  client_metadata?: {
10297
10298
  [x: string]: string;
10298
10299
  } | undefined;
@@ -10389,7 +10390,7 @@ export declare function init(config: AuthHeroConfig): {
10389
10390
  custom_login_page_preview?: string | undefined;
10390
10391
  form_template?: string | undefined;
10391
10392
  addons?: Record<string, any> | undefined;
10392
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10393
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10393
10394
  client_metadata?: Record<string, string> | undefined;
10394
10395
  hide_sign_up_disabled_error?: boolean | undefined;
10395
10396
  mobile?: Record<string, any> | undefined;
@@ -10475,7 +10476,7 @@ export declare function init(config: AuthHeroConfig): {
10475
10476
  addons?: {
10476
10477
  [x: string]: any;
10477
10478
  } | undefined;
10478
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10479
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10479
10480
  client_metadata?: {
10480
10481
  [x: string]: string;
10481
10482
  } | undefined;
@@ -11484,8 +11485,6 @@ export declare function init(config: AuthHeroConfig): {
11484
11485
  locale?: string | undefined;
11485
11486
  linked_to?: string | undefined;
11486
11487
  profileData?: string | undefined;
11487
- app_metadata?: any;
11488
- user_metadata?: any;
11489
11488
  middle_name?: string | undefined;
11490
11489
  preferred_username?: string | undefined;
11491
11490
  profile?: string | undefined;
@@ -11501,7 +11500,6 @@ export declare function init(config: AuthHeroConfig): {
11501
11500
  postal_code?: string | undefined;
11502
11501
  country?: string | undefined;
11503
11502
  } | undefined;
11504
- email_verified?: boolean | undefined;
11505
11503
  last_ip?: string | undefined;
11506
11504
  last_login?: string | undefined;
11507
11505
  user_id?: string | undefined;
@@ -11511,6 +11509,9 @@ export declare function init(config: AuthHeroConfig): {
11511
11509
  registration_completed_at?: string | undefined;
11512
11510
  verify_email?: boolean | undefined;
11513
11511
  password?: string | undefined;
11512
+ email_verified?: boolean | undefined;
11513
+ app_metadata?: any;
11514
+ user_metadata?: any;
11514
11515
  };
11515
11516
  };
11516
11517
  output: {};
@@ -11811,7 +11812,7 @@ export declare function init(config: AuthHeroConfig): {
11811
11812
  };
11812
11813
  };
11813
11814
  output: {
11814
- 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";
11815
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11815
11816
  date: string;
11816
11817
  isMobile: boolean;
11817
11818
  log_id: string;
@@ -11850,7 +11851,7 @@ export declare function init(config: AuthHeroConfig): {
11850
11851
  limit: number;
11851
11852
  length: number;
11852
11853
  logs: {
11853
- 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";
11854
+ type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11854
11855
  date: string;
11855
11856
  isMobile: boolean;
11856
11857
  log_id: string;
@@ -13654,7 +13655,7 @@ export declare function init(config: AuthHeroConfig): {
13654
13655
  logs: {
13655
13656
  action_name: string;
13656
13657
  lines: {
13657
- level: "log" | "error" | "info" | "warn" | "debug";
13658
+ level: "error" | "log" | "info" | "warn" | "debug";
13658
13659
  message: string;
13659
13660
  }[];
13660
13661
  }[];
@@ -14323,7 +14324,7 @@ export declare function init(config: AuthHeroConfig): {
14323
14324
  args: import("hono/utils/types").JSONValue[];
14324
14325
  }[];
14325
14326
  logs: {
14326
- level: "log" | "error" | "info" | "warn" | "debug";
14327
+ level: "error" | "log" | "info" | "warn" | "debug";
14327
14328
  message: string;
14328
14329
  }[];
14329
14330
  error?: string | undefined;
@@ -14634,7 +14635,7 @@ export declare function init(config: AuthHeroConfig): {
14634
14635
  scope?: string | undefined;
14635
14636
  grant_types?: string[] | undefined;
14636
14637
  response_types?: string[] | undefined;
14637
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14638
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14638
14639
  jwks_uri?: string | undefined;
14639
14640
  jwks?: Record<string, unknown> | undefined;
14640
14641
  software_id?: string | undefined;
@@ -14723,7 +14724,7 @@ export declare function init(config: AuthHeroConfig): {
14723
14724
  scope?: string | undefined;
14724
14725
  grant_types?: string[] | undefined;
14725
14726
  response_types?: string[] | undefined;
14726
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14727
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14727
14728
  jwks_uri?: string | undefined;
14728
14729
  jwks?: Record<string, unknown> | undefined;
14729
14730
  software_id?: string | undefined;
@@ -15069,16 +15070,16 @@ export declare function init(config: AuthHeroConfig): {
15069
15070
  email: string;
15070
15071
  send: "code" | "link";
15071
15072
  authParams: {
15073
+ audience?: string | undefined;
15074
+ scope?: string | undefined;
15075
+ redirect_uri?: string | undefined;
15076
+ organization?: string | undefined;
15072
15077
  username?: string | undefined;
15073
15078
  state?: string | undefined;
15074
- audience?: string | undefined;
15079
+ act_as?: string | undefined;
15075
15080
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15076
15081
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15077
- scope?: string | undefined;
15078
- organization?: string | undefined;
15079
15082
  nonce?: string | undefined;
15080
- redirect_uri?: string | undefined;
15081
- act_as?: string | undefined;
15082
15083
  prompt?: string | undefined;
15083
15084
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15084
15085
  code_challenge?: string | undefined;
@@ -15105,16 +15106,16 @@ export declare function init(config: AuthHeroConfig): {
15105
15106
  phone_number: string;
15106
15107
  send: "code" | "link";
15107
15108
  authParams: {
15109
+ audience?: string | undefined;
15110
+ scope?: string | undefined;
15111
+ redirect_uri?: string | undefined;
15112
+ organization?: string | undefined;
15108
15113
  username?: string | undefined;
15109
15114
  state?: string | undefined;
15110
- audience?: string | undefined;
15115
+ act_as?: string | undefined;
15111
15116
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15112
15117
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15113
- scope?: string | undefined;
15114
- organization?: string | undefined;
15115
15118
  nonce?: string | undefined;
15116
- redirect_uri?: string | undefined;
15117
- act_as?: string | undefined;
15118
15119
  prompt?: string | undefined;
15119
15120
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15120
15121
  code_challenge?: string | undefined;
@@ -15249,14 +15250,14 @@ export declare function init(config: AuthHeroConfig): {
15249
15250
  input: {
15250
15251
  form: {
15251
15252
  token: string;
15252
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15253
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15253
15254
  client_id?: string | undefined;
15254
15255
  client_secret?: string | undefined;
15255
15256
  };
15256
15257
  } & {
15257
15258
  json: {
15258
15259
  token: string;
15259
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15260
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15260
15261
  client_id?: string | undefined;
15261
15262
  client_secret?: string | undefined;
15262
15263
  };
@@ -15268,14 +15269,14 @@ export declare function init(config: AuthHeroConfig): {
15268
15269
  input: {
15269
15270
  form: {
15270
15271
  token: string;
15271
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15272
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15272
15273
  client_id?: string | undefined;
15273
15274
  client_secret?: string | undefined;
15274
15275
  };
15275
15276
  } & {
15276
15277
  json: {
15277
15278
  token: string;
15278
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15279
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15279
15280
  client_id?: string | undefined;
15280
15281
  client_secret?: string | undefined;
15281
15282
  };
@@ -15290,14 +15291,14 @@ export declare function init(config: AuthHeroConfig): {
15290
15291
  input: {
15291
15292
  form: {
15292
15293
  token: string;
15293
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15294
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15294
15295
  client_id?: string | undefined;
15295
15296
  client_secret?: string | undefined;
15296
15297
  };
15297
15298
  } & {
15298
15299
  json: {
15299
15300
  token: string;
15300
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15301
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15301
15302
  client_id?: string | undefined;
15302
15303
  client_secret?: string | undefined;
15303
15304
  };
@@ -15347,7 +15348,7 @@ export declare function init(config: AuthHeroConfig): {
15347
15348
  client_id: string;
15348
15349
  username: string;
15349
15350
  otp: string;
15350
- realm: "sms" | "email";
15351
+ realm: "email" | "sms";
15351
15352
  } | {
15352
15353
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15353
15354
  subject_token: string;
@@ -15394,7 +15395,7 @@ export declare function init(config: AuthHeroConfig): {
15394
15395
  client_id: string;
15395
15396
  username: string;
15396
15397
  otp: string;
15397
- realm: "sms" | "email";
15398
+ realm: "email" | "sms";
15398
15399
  } | {
15399
15400
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15400
15401
  subject_token: string;
@@ -15446,7 +15447,7 @@ export declare function init(config: AuthHeroConfig): {
15446
15447
  client_id: string;
15447
15448
  username: string;
15448
15449
  otp: string;
15449
- realm: "sms" | "email";
15450
+ realm: "email" | "sms";
15450
15451
  } | {
15451
15452
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15452
15453
  subject_token: string;
@@ -15493,7 +15494,7 @@ export declare function init(config: AuthHeroConfig): {
15493
15494
  client_id: string;
15494
15495
  username: string;
15495
15496
  otp: string;
15496
- realm: "sms" | "email";
15497
+ realm: "email" | "sms";
15497
15498
  } | {
15498
15499
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15499
15500
  subject_token: string;
@@ -15553,7 +15554,7 @@ export declare function init(config: AuthHeroConfig): {
15553
15554
  client_id: string;
15554
15555
  username: string;
15555
15556
  otp: string;
15556
- realm: "sms" | "email";
15557
+ realm: "email" | "sms";
15557
15558
  } | {
15558
15559
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15559
15560
  subject_token: string;
@@ -15600,7 +15601,7 @@ export declare function init(config: AuthHeroConfig): {
15600
15601
  client_id: string;
15601
15602
  username: string;
15602
15603
  otp: string;
15603
- realm: "sms" | "email";
15604
+ realm: "email" | "sms";
15604
15605
  } | {
15605
15606
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15606
15607
  subject_token: string;
@@ -15655,7 +15656,7 @@ export declare function init(config: AuthHeroConfig): {
15655
15656
  client_id: string;
15656
15657
  username: string;
15657
15658
  otp: string;
15658
- realm: "sms" | "email";
15659
+ realm: "email" | "sms";
15659
15660
  } | {
15660
15661
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15661
15662
  subject_token: string;
@@ -15702,7 +15703,7 @@ export declare function init(config: AuthHeroConfig): {
15702
15703
  client_id: string;
15703
15704
  username: string;
15704
15705
  otp: string;
15705
- realm: "sms" | "email";
15706
+ realm: "email" | "sms";
15706
15707
  } | {
15707
15708
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15708
15709
  subject_token: string;
@@ -15757,7 +15758,7 @@ export declare function init(config: AuthHeroConfig): {
15757
15758
  client_id: string;
15758
15759
  username: string;
15759
15760
  otp: string;
15760
- realm: "sms" | "email";
15761
+ realm: "email" | "sms";
15761
15762
  } | {
15762
15763
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15763
15764
  subject_token: string;
@@ -15804,7 +15805,7 @@ export declare function init(config: AuthHeroConfig): {
15804
15805
  client_id: string;
15805
15806
  username: string;
15806
15807
  otp: string;
15807
- realm: "sms" | "email";
15808
+ realm: "email" | "sms";
15808
15809
  } | {
15809
15810
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15810
15811
  subject_token: string;