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
@@ -308,7 +308,7 @@ export declare function init(config: AuthHeroConfig): {
308
308
  };
309
309
  };
310
310
  output: {
311
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
311
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
312
312
  enabled: boolean;
313
313
  trial_expired?: boolean | undefined;
314
314
  }[];
@@ -463,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
463
463
  $get: {
464
464
  input: {
465
465
  param: {
466
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
466
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
467
467
  };
468
468
  } & {
469
469
  header: {
@@ -471,7 +471,7 @@ export declare function init(config: AuthHeroConfig): {
471
471
  };
472
472
  };
473
473
  output: {
474
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
474
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
475
475
  enabled: boolean;
476
476
  trial_expired?: boolean | undefined;
477
477
  };
@@ -484,7 +484,7 @@ export declare function init(config: AuthHeroConfig): {
484
484
  $put: {
485
485
  input: {
486
486
  param: {
487
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
487
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
488
488
  };
489
489
  } & {
490
490
  header: {
@@ -496,7 +496,7 @@ export declare function init(config: AuthHeroConfig): {
496
496
  };
497
497
  };
498
498
  output: {
499
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
499
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
500
500
  enabled: boolean;
501
501
  trial_expired?: boolean | undefined;
502
502
  };
@@ -1268,19 +1268,19 @@ export declare function init(config: AuthHeroConfig): {
1268
1268
  } & {
1269
1269
  json: {
1270
1270
  client_id: string;
1271
- inviter: {
1272
- name?: string | undefined;
1273
- };
1274
1271
  invitee: {
1275
1272
  email?: string | undefined;
1276
1273
  };
1274
+ inviter: {
1275
+ name?: string | undefined;
1276
+ };
1277
1277
  id?: string | undefined;
1278
- roles?: string[] | undefined;
1279
1278
  app_metadata?: Record<string, any> | undefined;
1280
1279
  user_metadata?: Record<string, any> | undefined;
1281
1280
  connection_id?: string | undefined;
1282
- ttl_sec?: number | undefined;
1281
+ roles?: string[] | undefined;
1283
1282
  send_invitation_email?: boolean | undefined;
1283
+ ttl_sec?: number | undefined;
1284
1284
  };
1285
1285
  };
1286
1286
  output: {
@@ -7107,7 +7107,7 @@ export declare function init(config: AuthHeroConfig): {
7107
7107
  };
7108
7108
  };
7109
7109
  output: {
7110
- 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";
7110
+ 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";
7111
7111
  language: string;
7112
7112
  }[];
7113
7113
  outputFormat: "json";
@@ -7145,7 +7145,7 @@ export declare function init(config: AuthHeroConfig): {
7145
7145
  $get: {
7146
7146
  input: {
7147
7147
  param: {
7148
- 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";
7148
+ 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";
7149
7149
  language: string;
7150
7150
  };
7151
7151
  } & {
@@ -7167,7 +7167,7 @@ export declare function init(config: AuthHeroConfig): {
7167
7167
  $put: {
7168
7168
  input: {
7169
7169
  param: {
7170
- 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";
7170
+ 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";
7171
7171
  language: string;
7172
7172
  };
7173
7173
  } & {
@@ -7191,7 +7191,7 @@ export declare function init(config: AuthHeroConfig): {
7191
7191
  $delete: {
7192
7192
  input: {
7193
7193
  param: {
7194
- 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";
7194
+ 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";
7195
7195
  language: string;
7196
7196
  };
7197
7197
  } & {
@@ -9454,7 +9454,7 @@ export declare function init(config: AuthHeroConfig): {
9454
9454
  };
9455
9455
  };
9456
9456
  output: {
9457
- 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";
9457
+ 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";
9458
9458
  date: string;
9459
9459
  isMobile: boolean;
9460
9460
  log_id: string;
@@ -9493,7 +9493,7 @@ export declare function init(config: AuthHeroConfig): {
9493
9493
  limit: number;
9494
9494
  length: number;
9495
9495
  logs: {
9496
- 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";
9496
+ 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";
9497
9497
  date: string;
9498
9498
  isMobile: boolean;
9499
9499
  log_id: string;
@@ -9532,7 +9532,7 @@ export declare function init(config: AuthHeroConfig): {
9532
9532
  next?: string | undefined;
9533
9533
  } | {
9534
9534
  logs: {
9535
- 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";
9535
+ 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";
9536
9536
  date: string;
9537
9537
  isMobile: boolean;
9538
9538
  log_id: string;
@@ -9586,7 +9586,7 @@ export declare function init(config: AuthHeroConfig): {
9586
9586
  };
9587
9587
  };
9588
9588
  output: {
9589
- 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";
9589
+ 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";
9590
9590
  date: string;
9591
9591
  isMobile: boolean;
9592
9592
  log_id: string;
@@ -11165,20 +11165,20 @@ export declare function init(config: AuthHeroConfig): {
11165
11165
  };
11166
11166
  };
11167
11167
  output: {
11168
+ type: "jwt_signing" | "saml_encryption";
11168
11169
  kid: string;
11169
11170
  cert: string;
11170
11171
  fingerprint: string;
11171
11172
  thumbprint: string;
11172
- type: "jwt_signing" | "saml_encryption";
11173
+ revoked_at?: string | undefined;
11173
11174
  tenant_id?: string | undefined;
11175
+ connection?: string | undefined;
11174
11176
  current?: boolean | undefined;
11175
11177
  next?: boolean | undefined;
11176
11178
  previous?: boolean | undefined;
11177
11179
  current_since?: string | undefined;
11178
11180
  current_until?: string | undefined;
11179
11181
  revoked?: boolean | undefined;
11180
- revoked_at?: string | undefined;
11181
- connection?: string | undefined;
11182
11182
  expires_at?: string | undefined;
11183
11183
  expired?: boolean | undefined;
11184
11184
  inherited?: boolean | undefined;
@@ -11204,20 +11204,20 @@ export declare function init(config: AuthHeroConfig): {
11204
11204
  };
11205
11205
  };
11206
11206
  output: {
11207
+ type: "jwt_signing" | "saml_encryption";
11207
11208
  kid: string;
11208
11209
  cert: string;
11209
11210
  fingerprint: string;
11210
11211
  thumbprint: string;
11211
- type: "jwt_signing" | "saml_encryption";
11212
+ revoked_at?: string | undefined;
11212
11213
  tenant_id?: string | undefined;
11214
+ connection?: string | undefined;
11213
11215
  current?: boolean | undefined;
11214
11216
  next?: boolean | undefined;
11215
11217
  previous?: boolean | undefined;
11216
11218
  current_since?: string | undefined;
11217
11219
  current_until?: string | undefined;
11218
11220
  revoked?: boolean | undefined;
11219
- revoked_at?: string | undefined;
11220
- connection?: string | undefined;
11221
11221
  expires_at?: string | undefined;
11222
11222
  expired?: boolean | undefined;
11223
11223
  inherited?: boolean | undefined;
@@ -11242,20 +11242,20 @@ export declare function init(config: AuthHeroConfig): {
11242
11242
  };
11243
11243
  };
11244
11244
  output: {
11245
+ type: "jwt_signing" | "saml_encryption";
11245
11246
  kid: string;
11246
11247
  cert: string;
11247
11248
  fingerprint: string;
11248
11249
  thumbprint: string;
11249
- type: "jwt_signing" | "saml_encryption";
11250
+ revoked_at?: string | undefined;
11250
11251
  tenant_id?: string | undefined;
11252
+ connection?: string | undefined;
11251
11253
  current?: boolean | undefined;
11252
11254
  next?: boolean | undefined;
11253
11255
  previous?: boolean | undefined;
11254
11256
  current_since?: string | undefined;
11255
11257
  current_until?: string | undefined;
11256
11258
  revoked?: boolean | undefined;
11257
- revoked_at?: string | undefined;
11258
- connection?: string | undefined;
11259
11259
  expires_at?: string | undefined;
11260
11260
  expired?: boolean | undefined;
11261
11261
  inherited?: boolean | undefined;
@@ -11282,20 +11282,20 @@ export declare function init(config: AuthHeroConfig): {
11282
11282
  };
11283
11283
  };
11284
11284
  output: {
11285
+ type: "jwt_signing" | "saml_encryption";
11285
11286
  kid: string;
11286
11287
  cert: string;
11287
11288
  fingerprint: string;
11288
11289
  thumbprint: string;
11289
- type: "jwt_signing" | "saml_encryption";
11290
+ revoked_at?: string | undefined;
11290
11291
  tenant_id?: string | undefined;
11292
+ connection?: string | undefined;
11291
11293
  current?: boolean | undefined;
11292
11294
  next?: boolean | undefined;
11293
11295
  previous?: boolean | undefined;
11294
11296
  current_since?: string | undefined;
11295
11297
  current_until?: string | undefined;
11296
11298
  revoked?: boolean | undefined;
11297
- revoked_at?: string | undefined;
11298
- connection?: string | undefined;
11299
11299
  expires_at?: string | undefined;
11300
11300
  expired?: boolean | undefined;
11301
11301
  inherited?: boolean | undefined;
@@ -12142,9 +12142,7 @@ export declare function init(config: AuthHeroConfig): {
12142
12142
  output: {
12143
12143
  created_at: string;
12144
12144
  id: string;
12145
- client_id: string;
12146
12145
  user_id: string;
12147
- rotating: boolean;
12148
12146
  device: {
12149
12147
  initial_user_agent: string;
12150
12148
  initial_ip: string;
@@ -12153,6 +12151,8 @@ export declare function init(config: AuthHeroConfig): {
12153
12151
  last_ip: string;
12154
12152
  last_asn: string;
12155
12153
  };
12154
+ client_id: string;
12155
+ rotating: boolean;
12156
12156
  login_id: string;
12157
12157
  resource_servers: {
12158
12158
  audience: string;
@@ -12160,14 +12160,14 @@ export declare function init(config: AuthHeroConfig): {
12160
12160
  }[];
12161
12161
  revoked_at?: string | undefined;
12162
12162
  expires_at?: string | undefined;
12163
- organization?: string | undefined;
12163
+ idle_expires_at?: string | undefined;
12164
12164
  session_id?: string | undefined;
12165
12165
  auth_connection?: string | undefined;
12166
12166
  auth_strategy?: {
12167
12167
  strategy: string;
12168
12168
  strategy_type: string;
12169
12169
  } | undefined;
12170
- idle_expires_at?: string | undefined;
12170
+ organization?: string | undefined;
12171
12171
  last_exchanged_at?: string | undefined;
12172
12172
  }[] | {
12173
12173
  start: number;
@@ -12176,9 +12176,7 @@ export declare function init(config: AuthHeroConfig): {
12176
12176
  tokens: {
12177
12177
  created_at: string;
12178
12178
  id: string;
12179
- client_id: string;
12180
12179
  user_id: string;
12181
- rotating: boolean;
12182
12180
  device: {
12183
12181
  initial_user_agent: string;
12184
12182
  initial_ip: string;
@@ -12187,6 +12185,8 @@ export declare function init(config: AuthHeroConfig): {
12187
12185
  last_ip: string;
12188
12186
  last_asn: string;
12189
12187
  };
12188
+ client_id: string;
12189
+ rotating: boolean;
12190
12190
  login_id: string;
12191
12191
  resource_servers: {
12192
12192
  audience: string;
@@ -12194,14 +12194,14 @@ export declare function init(config: AuthHeroConfig): {
12194
12194
  }[];
12195
12195
  revoked_at?: string | undefined;
12196
12196
  expires_at?: string | undefined;
12197
- organization?: string | undefined;
12197
+ idle_expires_at?: string | undefined;
12198
12198
  session_id?: string | undefined;
12199
12199
  auth_connection?: string | undefined;
12200
12200
  auth_strategy?: {
12201
12201
  strategy: string;
12202
12202
  strategy_type: string;
12203
12203
  } | undefined;
12204
- idle_expires_at?: string | undefined;
12204
+ organization?: string | undefined;
12205
12205
  last_exchanged_at?: string | undefined;
12206
12206
  }[];
12207
12207
  total?: number | undefined;
@@ -12210,9 +12210,7 @@ export declare function init(config: AuthHeroConfig): {
12210
12210
  tokens: {
12211
12211
  created_at: string;
12212
12212
  id: string;
12213
- client_id: string;
12214
12213
  user_id: string;
12215
- rotating: boolean;
12216
12214
  device: {
12217
12215
  initial_user_agent: string;
12218
12216
  initial_ip: string;
@@ -12221,6 +12219,8 @@ export declare function init(config: AuthHeroConfig): {
12221
12219
  last_ip: string;
12222
12220
  last_asn: string;
12223
12221
  };
12222
+ client_id: string;
12223
+ rotating: boolean;
12224
12224
  login_id: string;
12225
12225
  resource_servers: {
12226
12226
  audience: string;
@@ -12228,14 +12228,14 @@ export declare function init(config: AuthHeroConfig): {
12228
12228
  }[];
12229
12229
  revoked_at?: string | undefined;
12230
12230
  expires_at?: string | undefined;
12231
- organization?: string | undefined;
12231
+ idle_expires_at?: string | undefined;
12232
12232
  session_id?: string | undefined;
12233
12233
  auth_connection?: string | undefined;
12234
12234
  auth_strategy?: {
12235
12235
  strategy: string;
12236
12236
  strategy_type: string;
12237
12237
  } | undefined;
12238
- idle_expires_at?: string | undefined;
12238
+ organization?: string | undefined;
12239
12239
  last_exchanged_at?: string | undefined;
12240
12240
  }[];
12241
12241
  next?: string | undefined;
@@ -12286,7 +12286,7 @@ export declare function init(config: AuthHeroConfig): {
12286
12286
  };
12287
12287
  };
12288
12288
  output: {
12289
- 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";
12289
+ 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";
12290
12290
  date: string;
12291
12291
  isMobile: boolean;
12292
12292
  log_id: string;
@@ -12325,7 +12325,7 @@ export declare function init(config: AuthHeroConfig): {
12325
12325
  limit: number;
12326
12326
  length: number;
12327
12327
  logs: {
12328
- 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";
12328
+ 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";
12329
12329
  date: string;
12330
12330
  isMobile: boolean;
12331
12331
  log_id: string;
@@ -15544,15 +15544,15 @@ export declare function init(config: AuthHeroConfig): {
15544
15544
  email: string;
15545
15545
  send: "code" | "link";
15546
15546
  authParams: {
15547
- scope?: string | undefined;
15548
15547
  username?: string | undefined;
15548
+ scope?: string | undefined;
15549
+ audience?: string | undefined;
15550
+ state?: string | undefined;
15549
15551
  act_as?: string | undefined;
15550
15552
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15551
15553
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15552
15554
  redirect_uri?: string | undefined;
15553
- audience?: string | undefined;
15554
15555
  organization?: string | undefined;
15555
- state?: string | undefined;
15556
15556
  nonce?: string | undefined;
15557
15557
  prompt?: string | undefined;
15558
15558
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
@@ -15580,15 +15580,15 @@ export declare function init(config: AuthHeroConfig): {
15580
15580
  phone_number: string;
15581
15581
  send: "code" | "link";
15582
15582
  authParams: {
15583
- scope?: string | undefined;
15584
15583
  username?: string | undefined;
15584
+ scope?: string | undefined;
15585
+ audience?: string | undefined;
15586
+ state?: string | undefined;
15585
15587
  act_as?: string | undefined;
15586
15588
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15587
15589
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15588
15590
  redirect_uri?: string | undefined;
15589
- audience?: string | undefined;
15590
15591
  organization?: string | undefined;
15591
- state?: string | undefined;
15592
15592
  nonce?: string | undefined;
15593
15593
  prompt?: string | undefined;
15594
15594
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
@@ -15724,14 +15724,14 @@ export declare function init(config: AuthHeroConfig): {
15724
15724
  input: {
15725
15725
  form: {
15726
15726
  token: string;
15727
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15727
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15728
15728
  client_id?: string | undefined;
15729
15729
  client_secret?: string | undefined;
15730
15730
  };
15731
15731
  } & {
15732
15732
  json: {
15733
15733
  token: string;
15734
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15734
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15735
15735
  client_id?: string | undefined;
15736
15736
  client_secret?: string | undefined;
15737
15737
  };
@@ -15743,14 +15743,14 @@ export declare function init(config: AuthHeroConfig): {
15743
15743
  input: {
15744
15744
  form: {
15745
15745
  token: string;
15746
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15746
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15747
15747
  client_id?: string | undefined;
15748
15748
  client_secret?: string | undefined;
15749
15749
  };
15750
15750
  } & {
15751
15751
  json: {
15752
15752
  token: string;
15753
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15753
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15754
15754
  client_id?: string | undefined;
15755
15755
  client_secret?: string | undefined;
15756
15756
  };
@@ -15765,14 +15765,14 @@ export declare function init(config: AuthHeroConfig): {
15765
15765
  input: {
15766
15766
  form: {
15767
15767
  token: string;
15768
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15768
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15769
15769
  client_id?: string | undefined;
15770
15770
  client_secret?: string | undefined;
15771
15771
  };
15772
15772
  } & {
15773
15773
  json: {
15774
15774
  token: string;
15775
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15775
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15776
15776
  client_id?: string | undefined;
15777
15777
  client_secret?: string | undefined;
15778
15778
  };
@@ -15823,6 +15823,8 @@ export declare function init(config: AuthHeroConfig): {
15823
15823
  username: string;
15824
15824
  otp: string;
15825
15825
  realm: "email" | "sms";
15826
+ scope?: string | undefined;
15827
+ audience?: string | undefined;
15826
15828
  } | {
15827
15829
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15828
15830
  subject_token: string;
@@ -15870,6 +15872,8 @@ export declare function init(config: AuthHeroConfig): {
15870
15872
  username: string;
15871
15873
  otp: string;
15872
15874
  realm: "email" | "sms";
15875
+ scope?: string | undefined;
15876
+ audience?: string | undefined;
15873
15877
  } | {
15874
15878
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15875
15879
  subject_token: string;
@@ -15922,6 +15926,8 @@ export declare function init(config: AuthHeroConfig): {
15922
15926
  username: string;
15923
15927
  otp: string;
15924
15928
  realm: "email" | "sms";
15929
+ scope?: string | undefined;
15930
+ audience?: string | undefined;
15925
15931
  } | {
15926
15932
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15927
15933
  subject_token: string;
@@ -15969,6 +15975,8 @@ export declare function init(config: AuthHeroConfig): {
15969
15975
  username: string;
15970
15976
  otp: string;
15971
15977
  realm: "email" | "sms";
15978
+ scope?: string | undefined;
15979
+ audience?: string | undefined;
15972
15980
  } | {
15973
15981
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15974
15982
  subject_token: string;
@@ -16029,6 +16037,8 @@ export declare function init(config: AuthHeroConfig): {
16029
16037
  username: string;
16030
16038
  otp: string;
16031
16039
  realm: "email" | "sms";
16040
+ scope?: string | undefined;
16041
+ audience?: string | undefined;
16032
16042
  } | {
16033
16043
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16034
16044
  subject_token: string;
@@ -16076,6 +16086,8 @@ export declare function init(config: AuthHeroConfig): {
16076
16086
  username: string;
16077
16087
  otp: string;
16078
16088
  realm: "email" | "sms";
16089
+ scope?: string | undefined;
16090
+ audience?: string | undefined;
16079
16091
  } | {
16080
16092
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16081
16093
  subject_token: string;
@@ -16131,6 +16143,8 @@ export declare function init(config: AuthHeroConfig): {
16131
16143
  username: string;
16132
16144
  otp: string;
16133
16145
  realm: "email" | "sms";
16146
+ scope?: string | undefined;
16147
+ audience?: string | undefined;
16134
16148
  } | {
16135
16149
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16136
16150
  subject_token: string;
@@ -16178,6 +16192,8 @@ export declare function init(config: AuthHeroConfig): {
16178
16192
  username: string;
16179
16193
  otp: string;
16180
16194
  realm: "email" | "sms";
16195
+ scope?: string | undefined;
16196
+ audience?: string | undefined;
16181
16197
  } | {
16182
16198
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16183
16199
  subject_token: string;
@@ -16233,6 +16249,8 @@ export declare function init(config: AuthHeroConfig): {
16233
16249
  username: string;
16234
16250
  otp: string;
16235
16251
  realm: "email" | "sms";
16252
+ scope?: string | undefined;
16253
+ audience?: string | undefined;
16236
16254
  } | {
16237
16255
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16238
16256
  subject_token: string;
@@ -16280,6 +16298,8 @@ export declare function init(config: AuthHeroConfig): {
16280
16298
  username: string;
16281
16299
  otp: string;
16282
16300
  realm: "email" | "sms";
16301
+ scope?: string | undefined;
16302
+ audience?: string | undefined;
16283
16303
  } | {
16284
16304
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
16285
16305
  subject_token: string;
@@ -16308,7 +16328,7 @@ export declare function init(config: AuthHeroConfig): {
16308
16328
  output: {
16309
16329
  keys: {
16310
16330
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
16311
- kty: "RSA" | "EC" | "oct";
16331
+ kty: "EC" | "RSA" | "oct";
16312
16332
  kid?: string | undefined;
16313
16333
  use?: "sig" | "enc" | undefined;
16314
16334
  n?: string | undefined;
@@ -17124,7 +17144,7 @@ export declare function init(config: AuthHeroConfig): {
17124
17144
  } & {
17125
17145
  form: {
17126
17146
  username: string;
17127
- login_selection?: "password" | "code" | undefined;
17147
+ login_selection?: "code" | "password" | undefined;
17128
17148
  };
17129
17149
  };
17130
17150
  output: {};
@@ -17138,7 +17158,7 @@ export declare function init(config: AuthHeroConfig): {
17138
17158
  } & {
17139
17159
  form: {
17140
17160
  username: string;
17141
- login_selection?: "password" | "code" | undefined;
17161
+ login_selection?: "code" | "password" | undefined;
17142
17162
  };
17143
17163
  };
17144
17164
  output: {};
@@ -17503,7 +17523,7 @@ export declare function init(config: AuthHeroConfig): {
17503
17523
  $get: {
17504
17524
  input: {
17505
17525
  param: {
17506
- 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";
17526
+ 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";
17507
17527
  };
17508
17528
  } & {
17509
17529
  query: {
@@ -17519,7 +17539,7 @@ export declare function init(config: AuthHeroConfig): {
17519
17539
  } | {
17520
17540
  input: {
17521
17541
  param: {
17522
- 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";
17542
+ 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";
17523
17543
  };
17524
17544
  } & {
17525
17545
  query: {
@@ -17535,7 +17555,7 @@ export declare function init(config: AuthHeroConfig): {
17535
17555
  } | {
17536
17556
  input: {
17537
17557
  param: {
17538
- 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";
17558
+ 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";
17539
17559
  };
17540
17560
  } & {
17541
17561
  query: {
@@ -17555,7 +17575,7 @@ export declare function init(config: AuthHeroConfig): {
17555
17575
  $post: {
17556
17576
  input: {
17557
17577
  param: {
17558
- 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";
17578
+ 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";
17559
17579
  };
17560
17580
  } & {
17561
17581
  query: {
@@ -17573,7 +17593,7 @@ export declare function init(config: AuthHeroConfig): {
17573
17593
  } | {
17574
17594
  input: {
17575
17595
  param: {
17576
- 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";
17596
+ 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";
17577
17597
  };
17578
17598
  } & {
17579
17599
  query: {