authhero 8.26.0 → 8.26.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/authhero.cjs +3 -3
  2. package/dist/authhero.d.ts +80 -80
  3. package/dist/authhero.mjs +48 -42
  4. package/dist/tsconfig.types.tsbuildinfo +1 -1
  5. package/dist/types/authentication-flows/passwordless.d.ts +5 -5
  6. package/dist/types/index.d.ts +80 -80
  7. package/dist/types/routes/auth-api/index.d.ts +22 -22
  8. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  9. package/dist/types/routes/auth-api/token.d.ts +10 -10
  10. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  11. package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
  12. package/dist/types/routes/management-api/actions.d.ts +1 -1
  13. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  14. package/dist/types/routes/management-api/branding.d.ts +9 -9
  15. package/dist/types/routes/management-api/clients.d.ts +6 -6
  16. package/dist/types/routes/management-api/connections.d.ts +15 -15
  17. package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
  18. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  19. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  20. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  21. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  22. package/dist/types/routes/management-api/index.d.ts +55 -55
  23. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  24. package/dist/types/routes/management-api/logs.d.ts +4 -4
  25. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  26. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  27. package/dist/types/routes/management-api/roles.d.ts +1 -1
  28. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  29. package/dist/types/routes/management-api/tenant-operations.d.ts +4 -4
  30. package/dist/types/routes/management-api/tenants.d.ts +5 -5
  31. package/dist/types/routes/management-api/themes.d.ts +6 -6
  32. package/dist/types/routes/management-api/users.d.ts +2 -2
  33. package/dist/types/routes/universal-login/common.d.ts +10 -10
  34. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  35. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  36. package/dist/types/routes/universal-login/index.d.ts +2 -2
  37. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  38. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  39. package/package.json +6 -6
@@ -304,7 +304,7 @@ export declare function init(config: AuthHeroConfig): {
304
304
  };
305
305
  };
306
306
  output: {
307
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
307
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
308
308
  enabled: boolean;
309
309
  trial_expired?: boolean | undefined;
310
310
  }[];
@@ -459,7 +459,7 @@ export declare function init(config: AuthHeroConfig): {
459
459
  $get: {
460
460
  input: {
461
461
  param: {
462
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
462
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
463
463
  };
464
464
  } & {
465
465
  header: {
@@ -467,7 +467,7 @@ export declare function init(config: AuthHeroConfig): {
467
467
  };
468
468
  };
469
469
  output: {
470
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
470
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
471
471
  enabled: boolean;
472
472
  trial_expired?: boolean | undefined;
473
473
  };
@@ -480,7 +480,7 @@ export declare function init(config: AuthHeroConfig): {
480
480
  $put: {
481
481
  input: {
482
482
  param: {
483
- factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
483
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
484
484
  };
485
485
  } & {
486
486
  header: {
@@ -492,7 +492,7 @@ export declare function init(config: AuthHeroConfig): {
492
492
  };
493
493
  };
494
494
  output: {
495
- name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
495
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
496
496
  enabled: boolean;
497
497
  trial_expired?: boolean | undefined;
498
498
  };
@@ -6985,7 +6985,7 @@ export declare function init(config: AuthHeroConfig): {
6985
6985
  };
6986
6986
  };
6987
6987
  output: {
6988
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
6988
+ prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
6989
6989
  language: string;
6990
6990
  }[];
6991
6991
  outputFormat: "json";
@@ -7023,7 +7023,7 @@ export declare function init(config: AuthHeroConfig): {
7023
7023
  $get: {
7024
7024
  input: {
7025
7025
  param: {
7026
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
7026
+ prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
7027
7027
  language: string;
7028
7028
  };
7029
7029
  } & {
@@ -7045,7 +7045,7 @@ export declare function init(config: AuthHeroConfig): {
7045
7045
  $put: {
7046
7046
  input: {
7047
7047
  param: {
7048
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
7048
+ prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
7049
7049
  language: string;
7050
7050
  };
7051
7051
  } & {
@@ -7069,7 +7069,7 @@ export declare function init(config: AuthHeroConfig): {
7069
7069
  $delete: {
7070
7070
  input: {
7071
7071
  param: {
7072
- prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
7072
+ prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "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";
7073
7073
  language: string;
7074
7074
  };
7075
7075
  } & {
@@ -8572,7 +8572,7 @@ export declare function init(config: AuthHeroConfig): {
8572
8572
  log_type: string;
8573
8573
  category: "user_action" | "admin_action" | "system" | "api";
8574
8574
  actor: {
8575
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8575
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8576
8576
  id?: string | undefined;
8577
8577
  email?: string | undefined;
8578
8578
  org_id?: string | undefined;
@@ -9052,7 +9052,7 @@ export declare function init(config: AuthHeroConfig): {
9052
9052
  [x: string]: import("hono/utils/types").JSONValue;
9053
9053
  };
9054
9054
  id: string;
9055
- status: "suspended" | "active" | "paused";
9055
+ status: "active" | "suspended" | "paused";
9056
9056
  filters?: {
9057
9057
  type: string;
9058
9058
  name: string;
@@ -9084,7 +9084,7 @@ export declare function init(config: AuthHeroConfig): {
9084
9084
  [x: string]: import("hono/utils/types").JSONValue;
9085
9085
  };
9086
9086
  id: string;
9087
- status: "suspended" | "active" | "paused";
9087
+ status: "active" | "suspended" | "paused";
9088
9088
  filters?: {
9089
9089
  type: string;
9090
9090
  name: string;
@@ -9109,7 +9109,7 @@ export declare function init(config: AuthHeroConfig): {
9109
9109
  name: string;
9110
9110
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
9111
9111
  sink: Record<string, unknown>;
9112
- status?: "suspended" | "active" | "paused" | undefined;
9112
+ status?: "active" | "suspended" | "paused" | undefined;
9113
9113
  filters?: {
9114
9114
  type: string;
9115
9115
  name: string;
@@ -9124,7 +9124,7 @@ export declare function init(config: AuthHeroConfig): {
9124
9124
  [x: string]: import("hono/utils/types").JSONValue;
9125
9125
  };
9126
9126
  id: string;
9127
- status: "suspended" | "active" | "paused";
9127
+ status: "active" | "suspended" | "paused";
9128
9128
  filters?: {
9129
9129
  type: string;
9130
9130
  name: string;
@@ -9159,7 +9159,7 @@ export declare function init(config: AuthHeroConfig): {
9159
9159
  }[] | undefined;
9160
9160
  isPriority?: boolean | undefined;
9161
9161
  id?: string | undefined;
9162
- status?: "suspended" | "active" | "paused" | undefined;
9162
+ status?: "active" | "suspended" | "paused" | undefined;
9163
9163
  created_at?: string | undefined;
9164
9164
  updated_at?: string | undefined;
9165
9165
  };
@@ -9171,7 +9171,7 @@ export declare function init(config: AuthHeroConfig): {
9171
9171
  [x: string]: import("hono/utils/types").JSONValue;
9172
9172
  };
9173
9173
  id: string;
9174
- status: "suspended" | "active" | "paused";
9174
+ status: "active" | "suspended" | "paused";
9175
9175
  filters?: {
9176
9176
  type: string;
9177
9177
  name: string;
@@ -9222,7 +9222,7 @@ export declare function init(config: AuthHeroConfig): {
9222
9222
  };
9223
9223
  };
9224
9224
  output: {
9225
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9225
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9226
9226
  date: string;
9227
9227
  isMobile: boolean;
9228
9228
  log_id: string;
@@ -9261,7 +9261,7 @@ export declare function init(config: AuthHeroConfig): {
9261
9261
  limit: number;
9262
9262
  length: number;
9263
9263
  logs: {
9264
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9264
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9265
9265
  date: string;
9266
9266
  isMobile: boolean;
9267
9267
  log_id: string;
@@ -9300,7 +9300,7 @@ export declare function init(config: AuthHeroConfig): {
9300
9300
  next?: string | undefined;
9301
9301
  } | {
9302
9302
  logs: {
9303
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9303
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9304
9304
  date: string;
9305
9305
  isMobile: boolean;
9306
9306
  log_id: string;
@@ -9354,7 +9354,7 @@ export declare function init(config: AuthHeroConfig): {
9354
9354
  };
9355
9355
  };
9356
9356
  output: {
9357
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9357
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9358
9358
  date: string;
9359
9359
  isMobile: boolean;
9360
9360
  log_id: string;
@@ -11809,7 +11809,7 @@ export declare function init(config: AuthHeroConfig): {
11809
11809
  };
11810
11810
  };
11811
11811
  output: {
11812
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11812
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11813
11813
  date: string;
11814
11814
  isMobile: boolean;
11815
11815
  log_id: string;
@@ -11848,7 +11848,7 @@ export declare function init(config: AuthHeroConfig): {
11848
11848
  limit: number;
11849
11849
  length: number;
11850
11850
  logs: {
11851
- type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11851
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11852
11852
  date: string;
11853
11853
  isMobile: boolean;
11854
11854
  log_id: string;
@@ -12167,7 +12167,7 @@ export declare function init(config: AuthHeroConfig): {
12167
12167
  };
12168
12168
  } & {
12169
12169
  json: {
12170
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12170
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12171
12171
  body: string;
12172
12172
  from: string;
12173
12173
  subject: string;
@@ -12188,7 +12188,7 @@ export declare function init(config: AuthHeroConfig): {
12188
12188
  };
12189
12189
  } & {
12190
12190
  json: {
12191
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12191
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12192
12192
  body: string;
12193
12193
  from: string;
12194
12194
  subject: string;
@@ -12200,7 +12200,7 @@ export declare function init(config: AuthHeroConfig): {
12200
12200
  };
12201
12201
  };
12202
12202
  output: {
12203
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12203
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12204
12204
  body: string;
12205
12205
  from: string;
12206
12206
  subject: string;
@@ -12223,7 +12223,7 @@ export declare function init(config: AuthHeroConfig): {
12223
12223
  };
12224
12224
  };
12225
12225
  output: {
12226
- name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12226
+ name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12227
12227
  body: string;
12228
12228
  subject: string;
12229
12229
  }[];
@@ -12236,7 +12236,7 @@ export declare function init(config: AuthHeroConfig): {
12236
12236
  $get: {
12237
12237
  input: {
12238
12238
  param: {
12239
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12239
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12240
12240
  };
12241
12241
  } & {
12242
12242
  header: {
@@ -12249,7 +12249,7 @@ export declare function init(config: AuthHeroConfig): {
12249
12249
  } | {
12250
12250
  input: {
12251
12251
  param: {
12252
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12252
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12253
12253
  };
12254
12254
  } & {
12255
12255
  header: {
@@ -12257,7 +12257,7 @@ export declare function init(config: AuthHeroConfig): {
12257
12257
  };
12258
12258
  };
12259
12259
  output: {
12260
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12260
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12261
12261
  body: string;
12262
12262
  from: string;
12263
12263
  subject: string;
@@ -12276,7 +12276,7 @@ export declare function init(config: AuthHeroConfig): {
12276
12276
  $put: {
12277
12277
  input: {
12278
12278
  param: {
12279
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12279
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12280
12280
  };
12281
12281
  } & {
12282
12282
  header: {
@@ -12284,7 +12284,7 @@ export declare function init(config: AuthHeroConfig): {
12284
12284
  };
12285
12285
  } & {
12286
12286
  json: {
12287
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12287
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12288
12288
  body: string;
12289
12289
  subject: string;
12290
12290
  syntax?: "liquid" | undefined;
@@ -12296,7 +12296,7 @@ export declare function init(config: AuthHeroConfig): {
12296
12296
  };
12297
12297
  };
12298
12298
  output: {
12299
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12299
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12300
12300
  body: string;
12301
12301
  from: string;
12302
12302
  subject: string;
@@ -12315,7 +12315,7 @@ export declare function init(config: AuthHeroConfig): {
12315
12315
  $patch: {
12316
12316
  input: {
12317
12317
  param: {
12318
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12318
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12319
12319
  };
12320
12320
  } & {
12321
12321
  header: {
@@ -12323,7 +12323,7 @@ export declare function init(config: AuthHeroConfig): {
12323
12323
  };
12324
12324
  } & {
12325
12325
  json: {
12326
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12326
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12327
12327
  body?: string | undefined;
12328
12328
  from?: string | undefined;
12329
12329
  subject?: string | undefined;
@@ -12340,7 +12340,7 @@ export declare function init(config: AuthHeroConfig): {
12340
12340
  } | {
12341
12341
  input: {
12342
12342
  param: {
12343
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12343
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12344
12344
  };
12345
12345
  } & {
12346
12346
  header: {
@@ -12348,7 +12348,7 @@ export declare function init(config: AuthHeroConfig): {
12348
12348
  };
12349
12349
  } & {
12350
12350
  json: {
12351
- template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12351
+ template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12352
12352
  body?: string | undefined;
12353
12353
  from?: string | undefined;
12354
12354
  subject?: string | undefined;
@@ -12360,7 +12360,7 @@ export declare function init(config: AuthHeroConfig): {
12360
12360
  };
12361
12361
  };
12362
12362
  output: {
12363
- template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12363
+ template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12364
12364
  body: string;
12365
12365
  from: string;
12366
12366
  subject: string;
@@ -12379,7 +12379,7 @@ export declare function init(config: AuthHeroConfig): {
12379
12379
  $delete: {
12380
12380
  input: {
12381
12381
  param: {
12382
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12382
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12383
12383
  };
12384
12384
  } & {
12385
12385
  header: {
@@ -12392,7 +12392,7 @@ export declare function init(config: AuthHeroConfig): {
12392
12392
  } | {
12393
12393
  input: {
12394
12394
  param: {
12395
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12395
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12396
12396
  };
12397
12397
  } & {
12398
12398
  header: {
@@ -12409,7 +12409,7 @@ export declare function init(config: AuthHeroConfig): {
12409
12409
  $post: {
12410
12410
  input: {
12411
12411
  param: {
12412
- templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12412
+ templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12413
12413
  };
12414
12414
  } & {
12415
12415
  header: {
@@ -12692,7 +12692,7 @@ export declare function init(config: AuthHeroConfig): {
12692
12692
  type: "auth0_managed_certs" | "self_managed_certs";
12693
12693
  custom_domain_id: string;
12694
12694
  primary: boolean;
12695
- status: "pending" | "ready" | "disabled" | "pending_verification";
12695
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12696
12696
  verification_method?: "txt" | undefined;
12697
12697
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12698
12698
  domain_metadata?: {
@@ -12733,7 +12733,7 @@ export declare function init(config: AuthHeroConfig): {
12733
12733
  type: "auth0_managed_certs" | "self_managed_certs";
12734
12734
  custom_domain_id: string;
12735
12735
  primary: boolean;
12736
- status: "pending" | "ready" | "disabled" | "pending_verification";
12736
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12737
12737
  verification_method?: "txt" | undefined;
12738
12738
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12739
12739
  domain_metadata?: {
@@ -12797,7 +12797,7 @@ export declare function init(config: AuthHeroConfig): {
12797
12797
  type: "auth0_managed_certs" | "self_managed_certs";
12798
12798
  custom_domain_id: string;
12799
12799
  primary: boolean;
12800
- status: "pending" | "ready" | "disabled" | "pending_verification";
12800
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12801
12801
  verification_method?: "txt" | undefined;
12802
12802
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12803
12803
  domain_metadata?: {
@@ -12844,7 +12844,7 @@ export declare function init(config: AuthHeroConfig): {
12844
12844
  type: "auth0_managed_certs" | "self_managed_certs";
12845
12845
  custom_domain_id: string;
12846
12846
  primary: boolean;
12847
- status: "pending" | "ready" | "disabled" | "pending_verification";
12847
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12848
12848
  verification_method?: "txt" | undefined;
12849
12849
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12850
12850
  domain_metadata?: {
@@ -12890,7 +12890,7 @@ export declare function init(config: AuthHeroConfig): {
12890
12890
  type: "auth0_managed_certs" | "self_managed_certs";
12891
12891
  custom_domain_id: string;
12892
12892
  primary: boolean;
12893
- status: "pending" | "ready" | "disabled" | "pending_verification";
12893
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12894
12894
  verification_method?: "txt" | undefined;
12895
12895
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12896
12896
  domain_metadata?: {
@@ -12931,7 +12931,7 @@ export declare function init(config: AuthHeroConfig): {
12931
12931
  type: "auth0_managed_certs" | "self_managed_certs";
12932
12932
  custom_domain_id: string;
12933
12933
  primary: boolean;
12934
- status: "pending" | "ready" | "disabled" | "pending_verification";
12934
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12935
12935
  verification_method?: "txt" | undefined;
12936
12936
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12937
12937
  domain_metadata?: {
@@ -13030,12 +13030,12 @@ export declare function init(config: AuthHeroConfig): {
13030
13030
  background_color: string;
13031
13031
  background_image_url: string;
13032
13032
  page_layout: "center" | "left" | "right";
13033
- logo_placement?: "widget" | "none" | "chip" | undefined;
13033
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13034
13034
  };
13035
13035
  widget: {
13036
13036
  header_text_alignment: "center" | "left" | "right";
13037
13037
  logo_height: number;
13038
- logo_position: "center" | "left" | "right" | "none";
13038
+ logo_position: "none" | "center" | "left" | "right";
13039
13039
  logo_url: string;
13040
13040
  social_buttons_layout: "bottom" | "top";
13041
13041
  };
@@ -13120,12 +13120,12 @@ export declare function init(config: AuthHeroConfig): {
13120
13120
  background_color: string;
13121
13121
  background_image_url: string;
13122
13122
  page_layout: "center" | "left" | "right";
13123
- logo_placement?: "widget" | "none" | "chip" | undefined;
13123
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13124
13124
  };
13125
13125
  widget: {
13126
13126
  header_text_alignment: "center" | "left" | "right";
13127
13127
  logo_height: number;
13128
- logo_position: "center" | "left" | "right" | "none";
13128
+ logo_position: "none" | "center" | "left" | "right";
13129
13129
  logo_url: string;
13130
13130
  social_buttons_layout: "bottom" | "top";
13131
13131
  };
@@ -13199,12 +13199,12 @@ export declare function init(config: AuthHeroConfig): {
13199
13199
  background_color: string;
13200
13200
  background_image_url: string;
13201
13201
  page_layout: "center" | "left" | "right";
13202
- logo_placement?: "widget" | "none" | "chip" | undefined;
13202
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13203
13203
  };
13204
13204
  widget: {
13205
13205
  header_text_alignment: "center" | "left" | "right";
13206
13206
  logo_height: number;
13207
- logo_position: "center" | "left" | "right" | "none";
13207
+ logo_position: "none" | "center" | "left" | "right";
13208
13208
  logo_url: string;
13209
13209
  social_buttons_layout: "bottom" | "top";
13210
13210
  };
@@ -13361,7 +13361,7 @@ export declare function init(config: AuthHeroConfig): {
13361
13361
  } & {
13362
13362
  json: {
13363
13363
  body?: string | undefined;
13364
- screen?: "password" | "login" | "identifier" | "signup" | undefined;
13364
+ screen?: "password" | "identifier" | "signup" | "login" | undefined;
13365
13365
  branding?: {
13366
13366
  colors?: {
13367
13367
  primary: string;
@@ -13447,12 +13447,12 @@ export declare function init(config: AuthHeroConfig): {
13447
13447
  background_color: string;
13448
13448
  background_image_url: string;
13449
13449
  page_layout: "center" | "left" | "right";
13450
- logo_placement?: "widget" | "none" | "chip" | undefined;
13450
+ logo_placement?: "none" | "widget" | "chip" | undefined;
13451
13451
  } | undefined;
13452
13452
  widget?: {
13453
13453
  header_text_alignment: "center" | "left" | "right";
13454
13454
  logo_height: number;
13455
- logo_position: "center" | "left" | "right" | "none";
13455
+ logo_position: "none" | "center" | "left" | "right";
13456
13456
  logo_url: string;
13457
13457
  social_buttons_layout: "bottom" | "top";
13458
13458
  } | undefined;
@@ -15067,20 +15067,20 @@ export declare function init(config: AuthHeroConfig): {
15067
15067
  email: string;
15068
15068
  send: "code" | "link";
15069
15069
  authParams: {
15070
- audience?: string | undefined;
15071
15070
  username?: string | undefined;
15071
+ audience?: string | undefined;
15072
15072
  scope?: string | undefined;
15073
+ state?: string | undefined;
15073
15074
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15074
15075
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15075
- state?: string | undefined;
15076
15076
  prompt?: string | undefined;
15077
- ui_locales?: string | undefined;
15078
- organization?: string | undefined;
15079
- redirect_uri?: string | undefined;
15080
15077
  act_as?: string | undefined;
15078
+ redirect_uri?: string | undefined;
15079
+ organization?: string | undefined;
15081
15080
  nonce?: string | undefined;
15082
15081
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15083
15082
  code_challenge?: string | undefined;
15083
+ ui_locales?: string | undefined;
15084
15084
  max_age?: number | undefined;
15085
15085
  acr_values?: string | undefined;
15086
15086
  claims?: {
@@ -15103,20 +15103,20 @@ export declare function init(config: AuthHeroConfig): {
15103
15103
  phone_number: string;
15104
15104
  send: "code" | "link";
15105
15105
  authParams: {
15106
- audience?: string | undefined;
15107
15106
  username?: string | undefined;
15107
+ audience?: string | undefined;
15108
15108
  scope?: string | undefined;
15109
+ state?: string | undefined;
15109
15110
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15110
15111
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15111
- state?: string | undefined;
15112
15112
  prompt?: string | undefined;
15113
- ui_locales?: string | undefined;
15114
- organization?: string | undefined;
15115
- redirect_uri?: string | undefined;
15116
15113
  act_as?: string | undefined;
15114
+ redirect_uri?: string | undefined;
15115
+ organization?: string | undefined;
15117
15116
  nonce?: string | undefined;
15118
15117
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15119
15118
  code_challenge?: string | undefined;
15119
+ ui_locales?: string | undefined;
15120
15120
  max_age?: number | undefined;
15121
15121
  acr_values?: string | undefined;
15122
15122
  claims?: {
@@ -15345,7 +15345,7 @@ export declare function init(config: AuthHeroConfig): {
15345
15345
  client_id: string;
15346
15346
  username: string;
15347
15347
  otp: string;
15348
- realm: "sms" | "email";
15348
+ realm: "email" | "sms";
15349
15349
  } | {
15350
15350
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15351
15351
  subject_token: string;
@@ -15392,7 +15392,7 @@ export declare function init(config: AuthHeroConfig): {
15392
15392
  client_id: string;
15393
15393
  username: string;
15394
15394
  otp: string;
15395
- realm: "sms" | "email";
15395
+ realm: "email" | "sms";
15396
15396
  } | {
15397
15397
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15398
15398
  subject_token: string;
@@ -15444,7 +15444,7 @@ export declare function init(config: AuthHeroConfig): {
15444
15444
  client_id: string;
15445
15445
  username: string;
15446
15446
  otp: string;
15447
- realm: "sms" | "email";
15447
+ realm: "email" | "sms";
15448
15448
  } | {
15449
15449
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15450
15450
  subject_token: string;
@@ -15491,7 +15491,7 @@ export declare function init(config: AuthHeroConfig): {
15491
15491
  client_id: string;
15492
15492
  username: string;
15493
15493
  otp: string;
15494
- realm: "sms" | "email";
15494
+ realm: "email" | "sms";
15495
15495
  } | {
15496
15496
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15497
15497
  subject_token: string;
@@ -15551,7 +15551,7 @@ export declare function init(config: AuthHeroConfig): {
15551
15551
  client_id: string;
15552
15552
  username: string;
15553
15553
  otp: string;
15554
- realm: "sms" | "email";
15554
+ realm: "email" | "sms";
15555
15555
  } | {
15556
15556
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15557
15557
  subject_token: string;
@@ -15598,7 +15598,7 @@ export declare function init(config: AuthHeroConfig): {
15598
15598
  client_id: string;
15599
15599
  username: string;
15600
15600
  otp: string;
15601
- realm: "sms" | "email";
15601
+ realm: "email" | "sms";
15602
15602
  } | {
15603
15603
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15604
15604
  subject_token: string;
@@ -15653,7 +15653,7 @@ export declare function init(config: AuthHeroConfig): {
15653
15653
  client_id: string;
15654
15654
  username: string;
15655
15655
  otp: string;
15656
- realm: "sms" | "email";
15656
+ realm: "email" | "sms";
15657
15657
  } | {
15658
15658
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15659
15659
  subject_token: string;
@@ -15700,7 +15700,7 @@ export declare function init(config: AuthHeroConfig): {
15700
15700
  client_id: string;
15701
15701
  username: string;
15702
15702
  otp: string;
15703
- realm: "sms" | "email";
15703
+ realm: "email" | "sms";
15704
15704
  } | {
15705
15705
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15706
15706
  subject_token: string;
@@ -15755,7 +15755,7 @@ export declare function init(config: AuthHeroConfig): {
15755
15755
  client_id: string;
15756
15756
  username: string;
15757
15757
  otp: string;
15758
- realm: "sms" | "email";
15758
+ realm: "email" | "sms";
15759
15759
  } | {
15760
15760
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15761
15761
  subject_token: string;
@@ -15802,7 +15802,7 @@ export declare function init(config: AuthHeroConfig): {
15802
15802
  client_id: string;
15803
15803
  username: string;
15804
15804
  otp: string;
15805
- realm: "sms" | "email";
15805
+ realm: "email" | "sms";
15806
15806
  } | {
15807
15807
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15808
15808
  subject_token: string;
@@ -17026,7 +17026,7 @@ export declare function init(config: AuthHeroConfig): {
17026
17026
  $get: {
17027
17027
  input: {
17028
17028
  param: {
17029
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17029
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17030
17030
  };
17031
17031
  } & {
17032
17032
  query: {
@@ -17042,7 +17042,7 @@ export declare function init(config: AuthHeroConfig): {
17042
17042
  } | {
17043
17043
  input: {
17044
17044
  param: {
17045
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17045
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17046
17046
  };
17047
17047
  } & {
17048
17048
  query: {
@@ -17058,7 +17058,7 @@ export declare function init(config: AuthHeroConfig): {
17058
17058
  } | {
17059
17059
  input: {
17060
17060
  param: {
17061
- screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17061
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17062
17062
  };
17063
17063
  } & {
17064
17064
  query: {
@@ -17078,7 +17078,7 @@ export declare function init(config: AuthHeroConfig): {
17078
17078
  $post: {
17079
17079
  input: {
17080
17080
  param: {
17081
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17081
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17082
17082
  };
17083
17083
  } & {
17084
17084
  query: {
@@ -17096,7 +17096,7 @@ export declare function init(config: AuthHeroConfig): {
17096
17096
  } | {
17097
17097
  input: {
17098
17098
  param: {
17099
- screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17099
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
17100
17100
  };
17101
17101
  } & {
17102
17102
  query: {