authhero 9.8.0 → 9.9.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 (28) hide show
  1. package/dist/authhero.cjs +139 -139
  2. package/dist/authhero.d.ts +84 -64
  3. package/dist/authhero.mjs +8107 -8052
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +26 -3
  6. package/dist/types/helpers/revoke-session-refresh-tokens.d.ts +33 -0
  7. package/dist/types/index.d.ts +84 -64
  8. package/dist/types/routes/auth-api/index.d.ts +33 -13
  9. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  10. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  11. package/dist/types/routes/auth-api/token.d.ts +20 -0
  12. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  13. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  14. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  15. package/dist/types/routes/management-api/index.d.ts +44 -44
  16. package/dist/types/routes/management-api/keys.d.ts +12 -12
  17. package/dist/types/routes/management-api/logs.d.ts +4 -4
  18. package/dist/types/routes/management-api/organizations.d.ts +5 -5
  19. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  20. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  21. package/dist/types/routes/management-api/users.d.ts +14 -14
  22. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  23. package/dist/types/routes/universal-login/index.d.ts +2 -2
  24. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  25. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  26. package/dist/types/state-machines/login-session.d.ts +1 -1
  27. package/dist/types/utils/jwks.d.ts +2 -2
  28. package/package.json +6 -6
@@ -4503,7 +4503,7 @@ declare function init(config: AuthHeroConfig): {
4503
4503
  };
4504
4504
  };
4505
4505
  output: {
4506
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4506
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4507
4507
  enabled: boolean;
4508
4508
  trial_expired?: boolean | undefined;
4509
4509
  }[];
@@ -4658,7 +4658,7 @@ declare function init(config: AuthHeroConfig): {
4658
4658
  $get: {
4659
4659
  input: {
4660
4660
  param: {
4661
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4661
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4662
4662
  };
4663
4663
  } & {
4664
4664
  header: {
@@ -4666,7 +4666,7 @@ declare function init(config: AuthHeroConfig): {
4666
4666
  };
4667
4667
  };
4668
4668
  output: {
4669
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4669
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4670
4670
  enabled: boolean;
4671
4671
  trial_expired?: boolean | undefined;
4672
4672
  };
@@ -4679,7 +4679,7 @@ declare function init(config: AuthHeroConfig): {
4679
4679
  $put: {
4680
4680
  input: {
4681
4681
  param: {
4682
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4682
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4683
4683
  };
4684
4684
  } & {
4685
4685
  header: {
@@ -4691,7 +4691,7 @@ declare function init(config: AuthHeroConfig): {
4691
4691
  };
4692
4692
  };
4693
4693
  output: {
4694
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4694
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4695
4695
  enabled: boolean;
4696
4696
  trial_expired?: boolean | undefined;
4697
4697
  };
@@ -5463,19 +5463,19 @@ declare function init(config: AuthHeroConfig): {
5463
5463
  } & {
5464
5464
  json: {
5465
5465
  client_id: string;
5466
- inviter: {
5467
- name?: string | undefined;
5468
- };
5469
5466
  invitee: {
5470
5467
  email?: string | undefined;
5471
5468
  };
5469
+ inviter: {
5470
+ name?: string | undefined;
5471
+ };
5472
5472
  id?: string | undefined;
5473
- roles?: string[] | undefined;
5474
5473
  app_metadata?: Record<string, any> | undefined;
5475
5474
  user_metadata?: Record<string, any> | undefined;
5476
5475
  connection_id?: string | undefined;
5477
- ttl_sec?: number | undefined;
5476
+ roles?: string[] | undefined;
5478
5477
  send_invitation_email?: boolean | undefined;
5478
+ ttl_sec?: number | undefined;
5479
5479
  };
5480
5480
  };
5481
5481
  output: {
@@ -11302,7 +11302,7 @@ declare function init(config: AuthHeroConfig): {
11302
11302
  };
11303
11303
  };
11304
11304
  output: {
11305
- prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11305
+ 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";
11306
11306
  language: string;
11307
11307
  }[];
11308
11308
  outputFormat: "json";
@@ -11340,7 +11340,7 @@ declare function init(config: AuthHeroConfig): {
11340
11340
  $get: {
11341
11341
  input: {
11342
11342
  param: {
11343
- prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11343
+ 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";
11344
11344
  language: string;
11345
11345
  };
11346
11346
  } & {
@@ -11362,7 +11362,7 @@ declare function init(config: AuthHeroConfig): {
11362
11362
  $put: {
11363
11363
  input: {
11364
11364
  param: {
11365
- prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11365
+ 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";
11366
11366
  language: string;
11367
11367
  };
11368
11368
  } & {
@@ -11386,7 +11386,7 @@ declare function init(config: AuthHeroConfig): {
11386
11386
  $delete: {
11387
11387
  input: {
11388
11388
  param: {
11389
- prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11389
+ 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";
11390
11390
  language: string;
11391
11391
  };
11392
11392
  } & {
@@ -13649,7 +13649,7 @@ declare function init(config: AuthHeroConfig): {
13649
13649
  };
13650
13650
  };
13651
13651
  output: {
13652
- 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";
13652
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "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" | "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";
13653
13653
  date: string;
13654
13654
  isMobile: boolean;
13655
13655
  log_id: string;
@@ -13688,7 +13688,7 @@ declare function init(config: AuthHeroConfig): {
13688
13688
  limit: number;
13689
13689
  length: number;
13690
13690
  logs: {
13691
- 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";
13691
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "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" | "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";
13692
13692
  date: string;
13693
13693
  isMobile: boolean;
13694
13694
  log_id: string;
@@ -13727,7 +13727,7 @@ declare function init(config: AuthHeroConfig): {
13727
13727
  next?: string | undefined;
13728
13728
  } | {
13729
13729
  logs: {
13730
- 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";
13730
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "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" | "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";
13731
13731
  date: string;
13732
13732
  isMobile: boolean;
13733
13733
  log_id: string;
@@ -13781,7 +13781,7 @@ declare function init(config: AuthHeroConfig): {
13781
13781
  };
13782
13782
  };
13783
13783
  output: {
13784
- 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";
13784
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "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" | "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";
13785
13785
  date: string;
13786
13786
  isMobile: boolean;
13787
13787
  log_id: string;
@@ -15360,20 +15360,20 @@ declare function init(config: AuthHeroConfig): {
15360
15360
  };
15361
15361
  };
15362
15362
  output: {
15363
+ type: "jwt_signing" | "saml_encryption";
15363
15364
  kid: string;
15364
15365
  cert: string;
15365
15366
  fingerprint: string;
15366
15367
  thumbprint: string;
15367
- type: "jwt_signing" | "saml_encryption";
15368
+ revoked_at?: string | undefined;
15368
15369
  tenant_id?: string | undefined;
15370
+ connection?: string | undefined;
15369
15371
  current?: boolean | undefined;
15370
15372
  next?: boolean | undefined;
15371
15373
  previous?: boolean | undefined;
15372
15374
  current_since?: string | undefined;
15373
15375
  current_until?: string | undefined;
15374
15376
  revoked?: boolean | undefined;
15375
- revoked_at?: string | undefined;
15376
- connection?: string | undefined;
15377
15377
  expires_at?: string | undefined;
15378
15378
  expired?: boolean | undefined;
15379
15379
  inherited?: boolean | undefined;
@@ -15399,20 +15399,20 @@ declare function init(config: AuthHeroConfig): {
15399
15399
  };
15400
15400
  };
15401
15401
  output: {
15402
+ type: "jwt_signing" | "saml_encryption";
15402
15403
  kid: string;
15403
15404
  cert: string;
15404
15405
  fingerprint: string;
15405
15406
  thumbprint: string;
15406
- type: "jwt_signing" | "saml_encryption";
15407
+ revoked_at?: string | undefined;
15407
15408
  tenant_id?: string | undefined;
15409
+ connection?: string | undefined;
15408
15410
  current?: boolean | undefined;
15409
15411
  next?: boolean | undefined;
15410
15412
  previous?: boolean | undefined;
15411
15413
  current_since?: string | undefined;
15412
15414
  current_until?: string | undefined;
15413
15415
  revoked?: boolean | undefined;
15414
- revoked_at?: string | undefined;
15415
- connection?: string | undefined;
15416
15416
  expires_at?: string | undefined;
15417
15417
  expired?: boolean | undefined;
15418
15418
  inherited?: boolean | undefined;
@@ -15437,20 +15437,20 @@ declare function init(config: AuthHeroConfig): {
15437
15437
  };
15438
15438
  };
15439
15439
  output: {
15440
+ type: "jwt_signing" | "saml_encryption";
15440
15441
  kid: string;
15441
15442
  cert: string;
15442
15443
  fingerprint: string;
15443
15444
  thumbprint: string;
15444
- type: "jwt_signing" | "saml_encryption";
15445
+ revoked_at?: string | undefined;
15445
15446
  tenant_id?: string | undefined;
15447
+ connection?: string | undefined;
15446
15448
  current?: boolean | undefined;
15447
15449
  next?: boolean | undefined;
15448
15450
  previous?: boolean | undefined;
15449
15451
  current_since?: string | undefined;
15450
15452
  current_until?: string | undefined;
15451
15453
  revoked?: boolean | undefined;
15452
- revoked_at?: string | undefined;
15453
- connection?: string | undefined;
15454
15454
  expires_at?: string | undefined;
15455
15455
  expired?: boolean | undefined;
15456
15456
  inherited?: boolean | undefined;
@@ -15477,20 +15477,20 @@ declare function init(config: AuthHeroConfig): {
15477
15477
  };
15478
15478
  };
15479
15479
  output: {
15480
+ type: "jwt_signing" | "saml_encryption";
15480
15481
  kid: string;
15481
15482
  cert: string;
15482
15483
  fingerprint: string;
15483
15484
  thumbprint: string;
15484
- type: "jwt_signing" | "saml_encryption";
15485
+ revoked_at?: string | undefined;
15485
15486
  tenant_id?: string | undefined;
15487
+ connection?: string | undefined;
15486
15488
  current?: boolean | undefined;
15487
15489
  next?: boolean | undefined;
15488
15490
  previous?: boolean | undefined;
15489
15491
  current_since?: string | undefined;
15490
15492
  current_until?: string | undefined;
15491
15493
  revoked?: boolean | undefined;
15492
- revoked_at?: string | undefined;
15493
- connection?: string | undefined;
15494
15494
  expires_at?: string | undefined;
15495
15495
  expired?: boolean | undefined;
15496
15496
  inherited?: boolean | undefined;
@@ -16337,9 +16337,7 @@ declare function init(config: AuthHeroConfig): {
16337
16337
  output: {
16338
16338
  created_at: string;
16339
16339
  id: string;
16340
- client_id: string;
16341
16340
  user_id: string;
16342
- rotating: boolean;
16343
16341
  device: {
16344
16342
  initial_user_agent: string;
16345
16343
  initial_ip: string;
@@ -16348,6 +16346,8 @@ declare function init(config: AuthHeroConfig): {
16348
16346
  last_ip: string;
16349
16347
  last_asn: string;
16350
16348
  };
16349
+ client_id: string;
16350
+ rotating: boolean;
16351
16351
  login_id: string;
16352
16352
  resource_servers: {
16353
16353
  audience: string;
@@ -16355,14 +16355,14 @@ declare function init(config: AuthHeroConfig): {
16355
16355
  }[];
16356
16356
  revoked_at?: string | undefined;
16357
16357
  expires_at?: string | undefined;
16358
- organization?: string | undefined;
16358
+ idle_expires_at?: string | undefined;
16359
16359
  session_id?: string | undefined;
16360
16360
  auth_connection?: string | undefined;
16361
16361
  auth_strategy?: {
16362
16362
  strategy: string;
16363
16363
  strategy_type: string;
16364
16364
  } | undefined;
16365
- idle_expires_at?: string | undefined;
16365
+ organization?: string | undefined;
16366
16366
  last_exchanged_at?: string | undefined;
16367
16367
  }[] | {
16368
16368
  start: number;
@@ -16371,9 +16371,7 @@ declare function init(config: AuthHeroConfig): {
16371
16371
  tokens: {
16372
16372
  created_at: string;
16373
16373
  id: string;
16374
- client_id: string;
16375
16374
  user_id: string;
16376
- rotating: boolean;
16377
16375
  device: {
16378
16376
  initial_user_agent: string;
16379
16377
  initial_ip: string;
@@ -16382,6 +16380,8 @@ declare function init(config: AuthHeroConfig): {
16382
16380
  last_ip: string;
16383
16381
  last_asn: string;
16384
16382
  };
16383
+ client_id: string;
16384
+ rotating: boolean;
16385
16385
  login_id: string;
16386
16386
  resource_servers: {
16387
16387
  audience: string;
@@ -16389,14 +16389,14 @@ declare function init(config: AuthHeroConfig): {
16389
16389
  }[];
16390
16390
  revoked_at?: string | undefined;
16391
16391
  expires_at?: string | undefined;
16392
- organization?: string | undefined;
16392
+ idle_expires_at?: string | undefined;
16393
16393
  session_id?: string | undefined;
16394
16394
  auth_connection?: string | undefined;
16395
16395
  auth_strategy?: {
16396
16396
  strategy: string;
16397
16397
  strategy_type: string;
16398
16398
  } | undefined;
16399
- idle_expires_at?: string | undefined;
16399
+ organization?: string | undefined;
16400
16400
  last_exchanged_at?: string | undefined;
16401
16401
  }[];
16402
16402
  total?: number | undefined;
@@ -16405,9 +16405,7 @@ declare function init(config: AuthHeroConfig): {
16405
16405
  tokens: {
16406
16406
  created_at: string;
16407
16407
  id: string;
16408
- client_id: string;
16409
16408
  user_id: string;
16410
- rotating: boolean;
16411
16409
  device: {
16412
16410
  initial_user_agent: string;
16413
16411
  initial_ip: string;
@@ -16416,6 +16414,8 @@ declare function init(config: AuthHeroConfig): {
16416
16414
  last_ip: string;
16417
16415
  last_asn: string;
16418
16416
  };
16417
+ client_id: string;
16418
+ rotating: boolean;
16419
16419
  login_id: string;
16420
16420
  resource_servers: {
16421
16421
  audience: string;
@@ -16423,14 +16423,14 @@ declare function init(config: AuthHeroConfig): {
16423
16423
  }[];
16424
16424
  revoked_at?: string | undefined;
16425
16425
  expires_at?: string | undefined;
16426
- organization?: string | undefined;
16426
+ idle_expires_at?: string | undefined;
16427
16427
  session_id?: string | undefined;
16428
16428
  auth_connection?: string | undefined;
16429
16429
  auth_strategy?: {
16430
16430
  strategy: string;
16431
16431
  strategy_type: string;
16432
16432
  } | undefined;
16433
- idle_expires_at?: string | undefined;
16433
+ organization?: string | undefined;
16434
16434
  last_exchanged_at?: string | undefined;
16435
16435
  }[];
16436
16436
  next?: string | undefined;
@@ -16481,7 +16481,7 @@ declare function init(config: AuthHeroConfig): {
16481
16481
  };
16482
16482
  };
16483
16483
  output: {
16484
- 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";
16484
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "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" | "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";
16485
16485
  date: string;
16486
16486
  isMobile: boolean;
16487
16487
  log_id: string;
@@ -16520,7 +16520,7 @@ declare function init(config: AuthHeroConfig): {
16520
16520
  limit: number;
16521
16521
  length: number;
16522
16522
  logs: {
16523
- 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";
16523
+ type: "srrt" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "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" | "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";
16524
16524
  date: string;
16525
16525
  isMobile: boolean;
16526
16526
  log_id: string;
@@ -19739,15 +19739,15 @@ declare function init(config: AuthHeroConfig): {
19739
19739
  email: string;
19740
19740
  send: "code" | "link";
19741
19741
  authParams: {
19742
- scope?: string | undefined;
19743
19742
  username?: string | undefined;
19743
+ scope?: string | undefined;
19744
+ audience?: string | undefined;
19745
+ state?: string | undefined;
19744
19746
  act_as?: string | undefined;
19745
19747
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19746
19748
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19747
19749
  redirect_uri?: string | undefined;
19748
- audience?: string | undefined;
19749
19750
  organization?: string | undefined;
19750
- state?: string | undefined;
19751
19751
  nonce?: string | undefined;
19752
19752
  prompt?: string | undefined;
19753
19753
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
@@ -19775,15 +19775,15 @@ declare function init(config: AuthHeroConfig): {
19775
19775
  phone_number: string;
19776
19776
  send: "code" | "link";
19777
19777
  authParams: {
19778
- scope?: string | undefined;
19779
19778
  username?: string | undefined;
19779
+ scope?: string | undefined;
19780
+ audience?: string | undefined;
19781
+ state?: string | undefined;
19780
19782
  act_as?: string | undefined;
19781
19783
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19782
19784
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19783
19785
  redirect_uri?: string | undefined;
19784
- audience?: string | undefined;
19785
19786
  organization?: string | undefined;
19786
- state?: string | undefined;
19787
19787
  nonce?: string | undefined;
19788
19788
  prompt?: string | undefined;
19789
19789
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
@@ -19919,14 +19919,14 @@ declare function init(config: AuthHeroConfig): {
19919
19919
  input: {
19920
19920
  form: {
19921
19921
  token: string;
19922
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19922
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19923
19923
  client_id?: string | undefined;
19924
19924
  client_secret?: string | undefined;
19925
19925
  };
19926
19926
  } & {
19927
19927
  json: {
19928
19928
  token: string;
19929
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19929
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19930
19930
  client_id?: string | undefined;
19931
19931
  client_secret?: string | undefined;
19932
19932
  };
@@ -19938,14 +19938,14 @@ declare function init(config: AuthHeroConfig): {
19938
19938
  input: {
19939
19939
  form: {
19940
19940
  token: string;
19941
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19941
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19942
19942
  client_id?: string | undefined;
19943
19943
  client_secret?: string | undefined;
19944
19944
  };
19945
19945
  } & {
19946
19946
  json: {
19947
19947
  token: string;
19948
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19948
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19949
19949
  client_id?: string | undefined;
19950
19950
  client_secret?: string | undefined;
19951
19951
  };
@@ -19960,14 +19960,14 @@ declare function init(config: AuthHeroConfig): {
19960
19960
  input: {
19961
19961
  form: {
19962
19962
  token: string;
19963
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19963
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19964
19964
  client_id?: string | undefined;
19965
19965
  client_secret?: string | undefined;
19966
19966
  };
19967
19967
  } & {
19968
19968
  json: {
19969
19969
  token: string;
19970
- token_type_hint?: "refresh_token" | "access_token" | undefined;
19970
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
19971
19971
  client_id?: string | undefined;
19972
19972
  client_secret?: string | undefined;
19973
19973
  };
@@ -20018,6 +20018,8 @@ declare function init(config: AuthHeroConfig): {
20018
20018
  username: string;
20019
20019
  otp: string;
20020
20020
  realm: "email" | "sms";
20021
+ scope?: string | undefined;
20022
+ audience?: string | undefined;
20021
20023
  } | {
20022
20024
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20023
20025
  subject_token: string;
@@ -20065,6 +20067,8 @@ declare function init(config: AuthHeroConfig): {
20065
20067
  username: string;
20066
20068
  otp: string;
20067
20069
  realm: "email" | "sms";
20070
+ scope?: string | undefined;
20071
+ audience?: string | undefined;
20068
20072
  } | {
20069
20073
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20070
20074
  subject_token: string;
@@ -20117,6 +20121,8 @@ declare function init(config: AuthHeroConfig): {
20117
20121
  username: string;
20118
20122
  otp: string;
20119
20123
  realm: "email" | "sms";
20124
+ scope?: string | undefined;
20125
+ audience?: string | undefined;
20120
20126
  } | {
20121
20127
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20122
20128
  subject_token: string;
@@ -20164,6 +20170,8 @@ declare function init(config: AuthHeroConfig): {
20164
20170
  username: string;
20165
20171
  otp: string;
20166
20172
  realm: "email" | "sms";
20173
+ scope?: string | undefined;
20174
+ audience?: string | undefined;
20167
20175
  } | {
20168
20176
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20169
20177
  subject_token: string;
@@ -20224,6 +20232,8 @@ declare function init(config: AuthHeroConfig): {
20224
20232
  username: string;
20225
20233
  otp: string;
20226
20234
  realm: "email" | "sms";
20235
+ scope?: string | undefined;
20236
+ audience?: string | undefined;
20227
20237
  } | {
20228
20238
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20229
20239
  subject_token: string;
@@ -20271,6 +20281,8 @@ declare function init(config: AuthHeroConfig): {
20271
20281
  username: string;
20272
20282
  otp: string;
20273
20283
  realm: "email" | "sms";
20284
+ scope?: string | undefined;
20285
+ audience?: string | undefined;
20274
20286
  } | {
20275
20287
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20276
20288
  subject_token: string;
@@ -20326,6 +20338,8 @@ declare function init(config: AuthHeroConfig): {
20326
20338
  username: string;
20327
20339
  otp: string;
20328
20340
  realm: "email" | "sms";
20341
+ scope?: string | undefined;
20342
+ audience?: string | undefined;
20329
20343
  } | {
20330
20344
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20331
20345
  subject_token: string;
@@ -20373,6 +20387,8 @@ declare function init(config: AuthHeroConfig): {
20373
20387
  username: string;
20374
20388
  otp: string;
20375
20389
  realm: "email" | "sms";
20390
+ scope?: string | undefined;
20391
+ audience?: string | undefined;
20376
20392
  } | {
20377
20393
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20378
20394
  subject_token: string;
@@ -20428,6 +20444,8 @@ declare function init(config: AuthHeroConfig): {
20428
20444
  username: string;
20429
20445
  otp: string;
20430
20446
  realm: "email" | "sms";
20447
+ scope?: string | undefined;
20448
+ audience?: string | undefined;
20431
20449
  } | {
20432
20450
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20433
20451
  subject_token: string;
@@ -20475,6 +20493,8 @@ declare function init(config: AuthHeroConfig): {
20475
20493
  username: string;
20476
20494
  otp: string;
20477
20495
  realm: "email" | "sms";
20496
+ scope?: string | undefined;
20497
+ audience?: string | undefined;
20478
20498
  } | {
20479
20499
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
20480
20500
  subject_token: string;
@@ -20503,7 +20523,7 @@ declare function init(config: AuthHeroConfig): {
20503
20523
  output: {
20504
20524
  keys: {
20505
20525
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
20506
- kty: "RSA" | "EC" | "oct";
20526
+ kty: "EC" | "RSA" | "oct";
20507
20527
  kid?: string | undefined;
20508
20528
  use?: "sig" | "enc" | undefined;
20509
20529
  n?: string | undefined;
@@ -21319,7 +21339,7 @@ declare function init(config: AuthHeroConfig): {
21319
21339
  } & {
21320
21340
  form: {
21321
21341
  username: string;
21322
- login_selection?: "password" | "code" | undefined;
21342
+ login_selection?: "code" | "password" | undefined;
21323
21343
  };
21324
21344
  };
21325
21345
  output: {};
@@ -21333,7 +21353,7 @@ declare function init(config: AuthHeroConfig): {
21333
21353
  } & {
21334
21354
  form: {
21335
21355
  username: string;
21336
- login_selection?: "password" | "code" | undefined;
21356
+ login_selection?: "code" | "password" | undefined;
21337
21357
  };
21338
21358
  };
21339
21359
  output: {};
@@ -21698,7 +21718,7 @@ declare function init(config: AuthHeroConfig): {
21698
21718
  $get: {
21699
21719
  input: {
21700
21720
  param: {
21701
- screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21721
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21702
21722
  };
21703
21723
  } & {
21704
21724
  query: {
@@ -21714,7 +21734,7 @@ declare function init(config: AuthHeroConfig): {
21714
21734
  } | {
21715
21735
  input: {
21716
21736
  param: {
21717
- screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21737
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21718
21738
  };
21719
21739
  } & {
21720
21740
  query: {
@@ -21730,7 +21750,7 @@ declare function init(config: AuthHeroConfig): {
21730
21750
  } | {
21731
21751
  input: {
21732
21752
  param: {
21733
- screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21753
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21734
21754
  };
21735
21755
  } & {
21736
21756
  query: {
@@ -21750,7 +21770,7 @@ declare function init(config: AuthHeroConfig): {
21750
21770
  $post: {
21751
21771
  input: {
21752
21772
  param: {
21753
- screen: "signup" | "impersonate" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21773
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21754
21774
  };
21755
21775
  } & {
21756
21776
  query: {
@@ -21768,7 +21788,7 @@ declare function init(config: AuthHeroConfig): {
21768
21788
  } | {
21769
21789
  input: {
21770
21790
  param: {
21771
- screen: "signup" | "impersonate" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21791
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21772
21792
  };
21773
21793
  } & {
21774
21794
  query: {