authhero 9.4.0 → 9.4.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.
@@ -4265,8 +4265,8 @@ declare function init(config: AuthHeroConfig): {
4265
4265
  $get: {
4266
4266
  input: {
4267
4267
  query: {
4268
- include_password_hashes?: "true" | "false" | undefined;
4269
- gzip?: "true" | "false" | undefined;
4268
+ include_password_hashes?: "false" | "true" | undefined;
4269
+ gzip?: "false" | "true" | undefined;
4270
4270
  };
4271
4271
  } & {
4272
4272
  header: {
@@ -4279,8 +4279,8 @@ declare function init(config: AuthHeroConfig): {
4279
4279
  } | {
4280
4280
  input: {
4281
4281
  query: {
4282
- include_password_hashes?: "true" | "false" | undefined;
4283
- gzip?: "true" | "false" | undefined;
4282
+ include_password_hashes?: "false" | "true" | undefined;
4283
+ gzip?: "false" | "true" | undefined;
4284
4284
  };
4285
4285
  } & {
4286
4286
  header: {
@@ -4299,7 +4299,7 @@ declare function init(config: AuthHeroConfig): {
4299
4299
  $post: {
4300
4300
  input: {
4301
4301
  query: {
4302
- include_password_hashes?: "true" | "false" | undefined;
4302
+ include_password_hashes?: "false" | "true" | undefined;
4303
4303
  };
4304
4304
  } & {
4305
4305
  header: {
@@ -4353,7 +4353,7 @@ declare function init(config: AuthHeroConfig): {
4353
4353
  };
4354
4354
  } & {
4355
4355
  json: {
4356
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
4356
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
4357
4357
  phone_number?: string | undefined;
4358
4358
  totp_secret?: string | undefined;
4359
4359
  credential_id?: string | undefined;
@@ -4493,7 +4493,7 @@ declare function init(config: AuthHeroConfig): {
4493
4493
  };
4494
4494
  };
4495
4495
  output: {
4496
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4496
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4497
4497
  enabled: boolean;
4498
4498
  trial_expired?: boolean | undefined;
4499
4499
  }[];
@@ -4648,7 +4648,7 @@ declare function init(config: AuthHeroConfig): {
4648
4648
  $get: {
4649
4649
  input: {
4650
4650
  param: {
4651
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4651
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4652
4652
  };
4653
4653
  } & {
4654
4654
  header: {
@@ -4656,7 +4656,7 @@ declare function init(config: AuthHeroConfig): {
4656
4656
  };
4657
4657
  };
4658
4658
  output: {
4659
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4659
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4660
4660
  enabled: boolean;
4661
4661
  trial_expired?: boolean | undefined;
4662
4662
  };
@@ -4669,7 +4669,7 @@ declare function init(config: AuthHeroConfig): {
4669
4669
  $put: {
4670
4670
  input: {
4671
4671
  param: {
4672
- factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4672
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4673
4673
  };
4674
4674
  } & {
4675
4675
  header: {
@@ -4681,7 +4681,7 @@ declare function init(config: AuthHeroConfig): {
4681
4681
  };
4682
4682
  };
4683
4683
  output: {
4684
- name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4684
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4685
4685
  enabled: boolean;
4686
4686
  trial_expired?: boolean | undefined;
4687
4687
  };
@@ -5453,19 +5453,19 @@ declare function init(config: AuthHeroConfig): {
5453
5453
  } & {
5454
5454
  json: {
5455
5455
  client_id: string;
5456
- invitee: {
5457
- email?: string | undefined;
5458
- };
5459
5456
  inviter: {
5460
5457
  name?: string | undefined;
5461
5458
  };
5459
+ invitee: {
5460
+ email?: string | undefined;
5461
+ };
5462
5462
  id?: string | undefined;
5463
5463
  app_metadata?: Record<string, any> | undefined;
5464
5464
  user_metadata?: Record<string, any> | undefined;
5465
5465
  connection_id?: string | undefined;
5466
5466
  roles?: string[] | undefined;
5467
- send_invitation_email?: boolean | undefined;
5468
5467
  ttl_sec?: number | undefined;
5468
+ send_invitation_email?: boolean | undefined;
5469
5469
  };
5470
5470
  };
5471
5471
  output: {
@@ -6220,9 +6220,9 @@ declare function init(config: AuthHeroConfig): {
6220
6220
  };
6221
6221
  } & {
6222
6222
  query: {
6223
+ from?: string | undefined;
6223
6224
  page?: string | undefined;
6224
6225
  include_totals?: string | undefined;
6225
- from?: string | undefined;
6226
6226
  per_page?: string | undefined;
6227
6227
  take?: string | undefined;
6228
6228
  };
@@ -11178,7 +11178,7 @@ declare function init(config: AuthHeroConfig): {
11178
11178
  };
11179
11179
  };
11180
11180
  output: {
11181
- universal_login_experience: "new" | "classic";
11181
+ universal_login_experience: "classic" | "new";
11182
11182
  identifier_first: boolean;
11183
11183
  password_first: boolean;
11184
11184
  show_last_used_connection: boolean;
@@ -11197,7 +11197,7 @@ declare function init(config: AuthHeroConfig): {
11197
11197
  };
11198
11198
  } & {
11199
11199
  json: {
11200
- universal_login_experience?: "new" | "classic" | undefined;
11200
+ universal_login_experience?: "classic" | "new" | undefined;
11201
11201
  identifier_first?: boolean | undefined;
11202
11202
  password_first?: boolean | undefined;
11203
11203
  show_last_used_connection?: boolean | undefined;
@@ -11218,7 +11218,7 @@ declare function init(config: AuthHeroConfig): {
11218
11218
  };
11219
11219
  };
11220
11220
  output: {
11221
- prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11221
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "email-otp-challenge" | "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" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11222
11222
  language: string;
11223
11223
  }[];
11224
11224
  outputFormat: "json";
@@ -11256,7 +11256,7 @@ declare function init(config: AuthHeroConfig): {
11256
11256
  $get: {
11257
11257
  input: {
11258
11258
  param: {
11259
- prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11259
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "email-otp-challenge" | "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" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11260
11260
  language: string;
11261
11261
  };
11262
11262
  } & {
@@ -11278,7 +11278,7 @@ declare function init(config: AuthHeroConfig): {
11278
11278
  $put: {
11279
11279
  input: {
11280
11280
  param: {
11281
- prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11281
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "email-otp-challenge" | "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" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11282
11282
  language: string;
11283
11283
  };
11284
11284
  } & {
@@ -11302,7 +11302,7 @@ declare function init(config: AuthHeroConfig): {
11302
11302
  $delete: {
11303
11303
  input: {
11304
11304
  param: {
11305
- prompt: "common" | "status" | "login" | "mfa" | "organizations" | "signup" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11305
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "email-otp-challenge" | "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" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11306
11306
  language: string;
11307
11307
  };
11308
11308
  } & {
@@ -11445,7 +11445,7 @@ declare function init(config: AuthHeroConfig): {
11445
11445
  } | undefined;
11446
11446
  } | undefined;
11447
11447
  passkey_options?: {
11448
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11448
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11449
11449
  local_enrollment_enabled?: boolean | undefined;
11450
11450
  progressive_enrollment_enabled?: boolean | undefined;
11451
11451
  } | undefined;
@@ -11583,7 +11583,7 @@ declare function init(config: AuthHeroConfig): {
11583
11583
  } | undefined;
11584
11584
  } | undefined;
11585
11585
  passkey_options?: {
11586
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11586
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11587
11587
  local_enrollment_enabled?: boolean | undefined;
11588
11588
  progressive_enrollment_enabled?: boolean | undefined;
11589
11589
  } | undefined;
@@ -11737,7 +11737,7 @@ declare function init(config: AuthHeroConfig): {
11737
11737
  } | undefined;
11738
11738
  } | undefined;
11739
11739
  passkey_options?: {
11740
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11740
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11741
11741
  local_enrollment_enabled?: boolean | undefined;
11742
11742
  progressive_enrollment_enabled?: boolean | undefined;
11743
11743
  } | undefined;
@@ -11920,7 +11920,7 @@ declare function init(config: AuthHeroConfig): {
11920
11920
  } | undefined;
11921
11921
  } | undefined;
11922
11922
  passkey_options?: {
11923
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11923
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11924
11924
  local_enrollment_enabled?: boolean | undefined;
11925
11925
  progressive_enrollment_enabled?: boolean | undefined;
11926
11926
  } | undefined;
@@ -12082,7 +12082,7 @@ declare function init(config: AuthHeroConfig): {
12082
12082
  } | undefined;
12083
12083
  } | undefined;
12084
12084
  passkey_options?: {
12085
- challenge_ui?: "button" | "both" | "autofill" | undefined;
12085
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
12086
12086
  local_enrollment_enabled?: boolean | undefined;
12087
12087
  progressive_enrollment_enabled?: boolean | undefined;
12088
12088
  } | undefined;
@@ -12914,7 +12914,7 @@ declare function init(config: AuthHeroConfig): {
12914
12914
  log_type: string;
12915
12915
  category: "user_action" | "admin_action" | "system" | "api";
12916
12916
  actor: {
12917
- type: "user" | "api_key" | "client_credentials" | "system" | "admin";
12917
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
12918
12918
  id?: string | undefined;
12919
12919
  email?: string | undefined;
12920
12920
  org_id?: string | undefined;
@@ -13225,7 +13225,7 @@ declare function init(config: AuthHeroConfig): {
13225
13225
  created_at: string;
13226
13226
  updated_at: string;
13227
13227
  name: string;
13228
- provider: "auth0" | "oidc" | "okta" | "cognito";
13228
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13229
13229
  connection: string;
13230
13230
  enabled: boolean;
13231
13231
  credentials: {
@@ -13257,7 +13257,7 @@ declare function init(config: AuthHeroConfig): {
13257
13257
  created_at: string;
13258
13258
  updated_at: string;
13259
13259
  name: string;
13260
- provider: "auth0" | "oidc" | "okta" | "cognito";
13260
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13261
13261
  connection: string;
13262
13262
  enabled: boolean;
13263
13263
  credentials: {
@@ -13283,7 +13283,7 @@ declare function init(config: AuthHeroConfig): {
13283
13283
  } & {
13284
13284
  json: {
13285
13285
  name: string;
13286
- provider: "auth0" | "oidc" | "okta" | "cognito";
13286
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13287
13287
  connection: string;
13288
13288
  credentials: {
13289
13289
  domain: string;
@@ -13300,7 +13300,7 @@ declare function init(config: AuthHeroConfig): {
13300
13300
  created_at: string;
13301
13301
  updated_at: string;
13302
13302
  name: string;
13303
- provider: "auth0" | "oidc" | "okta" | "cognito";
13303
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13304
13304
  connection: string;
13305
13305
  enabled: boolean;
13306
13306
  credentials: {
@@ -13331,7 +13331,7 @@ declare function init(config: AuthHeroConfig): {
13331
13331
  json: {
13332
13332
  id?: string | undefined;
13333
13333
  name?: string | undefined;
13334
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
13334
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
13335
13335
  connection?: string | undefined;
13336
13336
  enabled?: boolean | undefined;
13337
13337
  credentials?: {
@@ -13347,7 +13347,7 @@ declare function init(config: AuthHeroConfig): {
13347
13347
  created_at: string;
13348
13348
  updated_at: string;
13349
13349
  name: string;
13350
- provider: "auth0" | "oidc" | "okta" | "cognito";
13350
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13351
13351
  connection: string;
13352
13352
  enabled: boolean;
13353
13353
  credentials: {
@@ -13565,7 +13565,7 @@ declare function init(config: AuthHeroConfig): {
13565
13565
  };
13566
13566
  };
13567
13567
  output: {
13568
- type: "i" | "fn" | "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";
13568
+ 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";
13569
13569
  date: string;
13570
13570
  isMobile: boolean;
13571
13571
  log_id: string;
@@ -13604,7 +13604,7 @@ declare function init(config: AuthHeroConfig): {
13604
13604
  limit: number;
13605
13605
  length: number;
13606
13606
  logs: {
13607
- type: "i" | "fn" | "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";
13607
+ 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";
13608
13608
  date: string;
13609
13609
  isMobile: boolean;
13610
13610
  log_id: string;
@@ -13643,7 +13643,7 @@ declare function init(config: AuthHeroConfig): {
13643
13643
  next?: string | undefined;
13644
13644
  } | {
13645
13645
  logs: {
13646
- type: "i" | "fn" | "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";
13646
+ 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";
13647
13647
  date: string;
13648
13648
  isMobile: boolean;
13649
13649
  log_id: string;
@@ -13697,7 +13697,7 @@ declare function init(config: AuthHeroConfig): {
13697
13697
  };
13698
13698
  };
13699
13699
  output: {
13700
- type: "i" | "fn" | "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";
13700
+ 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";
13701
13701
  date: string;
13702
13702
  isMobile: boolean;
13703
13703
  log_id: string;
@@ -14989,7 +14989,7 @@ declare function init(config: AuthHeroConfig): {
14989
14989
  } | undefined;
14990
14990
  } | undefined;
14991
14991
  passkey_options?: {
14992
- challenge_ui?: "button" | "both" | "autofill" | undefined;
14992
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
14993
14993
  local_enrollment_enabled?: boolean | undefined;
14994
14994
  progressive_enrollment_enabled?: boolean | undefined;
14995
14995
  } | undefined;
@@ -15147,7 +15147,7 @@ declare function init(config: AuthHeroConfig): {
15147
15147
  } | undefined;
15148
15148
  } | undefined;
15149
15149
  passkey_options?: {
15150
- challenge_ui?: "button" | "both" | "autofill" | undefined;
15150
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
15151
15151
  local_enrollment_enabled?: boolean | undefined;
15152
15152
  progressive_enrollment_enabled?: boolean | undefined;
15153
15153
  } | undefined;
@@ -16169,7 +16169,7 @@ declare function init(config: AuthHeroConfig): {
16169
16169
  };
16170
16170
  };
16171
16171
  output: {
16172
- type: "i" | "fn" | "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";
16172
+ 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";
16173
16173
  date: string;
16174
16174
  isMobile: boolean;
16175
16175
  log_id: string;
@@ -16208,7 +16208,7 @@ declare function init(config: AuthHeroConfig): {
16208
16208
  limit: number;
16209
16209
  length: number;
16210
16210
  logs: {
16211
- type: "i" | "fn" | "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";
16211
+ 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";
16212
16212
  date: string;
16213
16213
  isMobile: boolean;
16214
16214
  log_id: string;
@@ -16527,7 +16527,7 @@ declare function init(config: AuthHeroConfig): {
16527
16527
  };
16528
16528
  } & {
16529
16529
  json: {
16530
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16530
+ 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";
16531
16531
  body: string;
16532
16532
  from: string;
16533
16533
  subject: string;
@@ -16548,7 +16548,7 @@ declare function init(config: AuthHeroConfig): {
16548
16548
  };
16549
16549
  } & {
16550
16550
  json: {
16551
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16551
+ 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";
16552
16552
  body: string;
16553
16553
  from: string;
16554
16554
  subject: string;
@@ -16560,7 +16560,7 @@ declare function init(config: AuthHeroConfig): {
16560
16560
  };
16561
16561
  };
16562
16562
  output: {
16563
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16563
+ 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";
16564
16564
  body: string;
16565
16565
  from: string;
16566
16566
  subject: string;
@@ -16583,7 +16583,7 @@ declare function init(config: AuthHeroConfig): {
16583
16583
  };
16584
16584
  };
16585
16585
  output: {
16586
- name: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16586
+ 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";
16587
16587
  body: string;
16588
16588
  subject: string;
16589
16589
  }[];
@@ -16596,7 +16596,7 @@ declare function init(config: AuthHeroConfig): {
16596
16596
  $get: {
16597
16597
  input: {
16598
16598
  param: {
16599
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16599
+ 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";
16600
16600
  };
16601
16601
  } & {
16602
16602
  header: {
@@ -16609,7 +16609,7 @@ declare function init(config: AuthHeroConfig): {
16609
16609
  } | {
16610
16610
  input: {
16611
16611
  param: {
16612
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16612
+ 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";
16613
16613
  };
16614
16614
  } & {
16615
16615
  header: {
@@ -16617,7 +16617,7 @@ declare function init(config: AuthHeroConfig): {
16617
16617
  };
16618
16618
  };
16619
16619
  output: {
16620
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16620
+ 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";
16621
16621
  body: string;
16622
16622
  from: string;
16623
16623
  subject: string;
@@ -16636,7 +16636,7 @@ declare function init(config: AuthHeroConfig): {
16636
16636
  $put: {
16637
16637
  input: {
16638
16638
  param: {
16639
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16639
+ 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";
16640
16640
  };
16641
16641
  } & {
16642
16642
  header: {
@@ -16644,7 +16644,7 @@ declare function init(config: AuthHeroConfig): {
16644
16644
  };
16645
16645
  } & {
16646
16646
  json: {
16647
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16647
+ 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";
16648
16648
  body: string;
16649
16649
  subject: string;
16650
16650
  syntax?: "liquid" | undefined;
@@ -16656,7 +16656,7 @@ declare function init(config: AuthHeroConfig): {
16656
16656
  };
16657
16657
  };
16658
16658
  output: {
16659
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16659
+ 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";
16660
16660
  body: string;
16661
16661
  from: string;
16662
16662
  subject: string;
@@ -16675,7 +16675,7 @@ declare function init(config: AuthHeroConfig): {
16675
16675
  $patch: {
16676
16676
  input: {
16677
16677
  param: {
16678
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16678
+ 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";
16679
16679
  };
16680
16680
  } & {
16681
16681
  header: {
@@ -16683,7 +16683,7 @@ declare function init(config: AuthHeroConfig): {
16683
16683
  };
16684
16684
  } & {
16685
16685
  json: {
16686
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16686
+ 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;
16687
16687
  body?: string | undefined;
16688
16688
  from?: string | undefined;
16689
16689
  subject?: string | undefined;
@@ -16700,7 +16700,7 @@ declare function init(config: AuthHeroConfig): {
16700
16700
  } | {
16701
16701
  input: {
16702
16702
  param: {
16703
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16703
+ 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";
16704
16704
  };
16705
16705
  } & {
16706
16706
  header: {
@@ -16708,7 +16708,7 @@ declare function init(config: AuthHeroConfig): {
16708
16708
  };
16709
16709
  } & {
16710
16710
  json: {
16711
- template?: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
16711
+ 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;
16712
16712
  body?: string | undefined;
16713
16713
  from?: string | undefined;
16714
16714
  subject?: string | undefined;
@@ -16720,7 +16720,7 @@ declare function init(config: AuthHeroConfig): {
16720
16720
  };
16721
16721
  };
16722
16722
  output: {
16723
- template: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16723
+ 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";
16724
16724
  body: string;
16725
16725
  from: string;
16726
16726
  subject: string;
@@ -16739,7 +16739,7 @@ declare function init(config: AuthHeroConfig): {
16739
16739
  $delete: {
16740
16740
  input: {
16741
16741
  param: {
16742
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16742
+ 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";
16743
16743
  };
16744
16744
  } & {
16745
16745
  header: {
@@ -16752,7 +16752,7 @@ declare function init(config: AuthHeroConfig): {
16752
16752
  } | {
16753
16753
  input: {
16754
16754
  param: {
16755
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16755
+ 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";
16756
16756
  };
16757
16757
  } & {
16758
16758
  header: {
@@ -16769,7 +16769,7 @@ declare function init(config: AuthHeroConfig): {
16769
16769
  $post: {
16770
16770
  input: {
16771
16771
  param: {
16772
- templateName: "verify_email" | "password_reset" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
16772
+ 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";
16773
16773
  };
16774
16774
  } & {
16775
16775
  header: {
@@ -17052,7 +17052,7 @@ declare function init(config: AuthHeroConfig): {
17052
17052
  type: "auth0_managed_certs" | "self_managed_certs";
17053
17053
  custom_domain_id: string;
17054
17054
  primary: boolean;
17055
- status: "pending" | "ready" | "disabled" | "pending_verification";
17055
+ status: "disabled" | "pending" | "ready" | "pending_verification";
17056
17056
  verification_method?: "txt" | undefined;
17057
17057
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17058
17058
  domain_metadata?: {
@@ -17093,7 +17093,7 @@ declare function init(config: AuthHeroConfig): {
17093
17093
  type: "auth0_managed_certs" | "self_managed_certs";
17094
17094
  custom_domain_id: string;
17095
17095
  primary: boolean;
17096
- status: "pending" | "ready" | "disabled" | "pending_verification";
17096
+ status: "disabled" | "pending" | "ready" | "pending_verification";
17097
17097
  verification_method?: "txt" | undefined;
17098
17098
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17099
17099
  domain_metadata?: {
@@ -17157,7 +17157,7 @@ declare function init(config: AuthHeroConfig): {
17157
17157
  type: "auth0_managed_certs" | "self_managed_certs";
17158
17158
  custom_domain_id: string;
17159
17159
  primary: boolean;
17160
- status: "pending" | "ready" | "disabled" | "pending_verification";
17160
+ status: "disabled" | "pending" | "ready" | "pending_verification";
17161
17161
  verification_method?: "txt" | undefined;
17162
17162
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17163
17163
  domain_metadata?: {
@@ -17204,7 +17204,7 @@ declare function init(config: AuthHeroConfig): {
17204
17204
  type: "auth0_managed_certs" | "self_managed_certs";
17205
17205
  custom_domain_id: string;
17206
17206
  primary: boolean;
17207
- status: "pending" | "ready" | "disabled" | "pending_verification";
17207
+ status: "disabled" | "pending" | "ready" | "pending_verification";
17208
17208
  verification_method?: "txt" | undefined;
17209
17209
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17210
17210
  domain_metadata?: {
@@ -17250,7 +17250,7 @@ declare function init(config: AuthHeroConfig): {
17250
17250
  type: "auth0_managed_certs" | "self_managed_certs";
17251
17251
  custom_domain_id: string;
17252
17252
  primary: boolean;
17253
- status: "pending" | "ready" | "disabled" | "pending_verification";
17253
+ status: "disabled" | "pending" | "ready" | "pending_verification";
17254
17254
  verification_method?: "txt" | undefined;
17255
17255
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17256
17256
  domain_metadata?: {
@@ -17291,7 +17291,7 @@ declare function init(config: AuthHeroConfig): {
17291
17291
  type: "auth0_managed_certs" | "self_managed_certs";
17292
17292
  custom_domain_id: string;
17293
17293
  primary: boolean;
17294
- status: "pending" | "ready" | "disabled" | "pending_verification";
17294
+ status: "disabled" | "pending" | "ready" | "pending_verification";
17295
17295
  verification_method?: "txt" | undefined;
17296
17296
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17297
17297
  domain_metadata?: {
@@ -17339,7 +17339,7 @@ declare function init(config: AuthHeroConfig): {
17339
17339
  base_focus_color: string;
17340
17340
  base_hover_color: string;
17341
17341
  body_text: string;
17342
- captcha_widget_theme: "auto" | "light" | "dark";
17342
+ captcha_widget_theme: "dark" | "light" | "auto";
17343
17343
  error: string;
17344
17344
  header: string;
17345
17345
  icons: string;
@@ -17390,7 +17390,7 @@ declare function init(config: AuthHeroConfig): {
17390
17390
  background_color: string;
17391
17391
  background_image_url: string;
17392
17392
  page_layout: "center" | "left" | "right";
17393
- logo_placement?: "widget" | "chip" | "none" | undefined;
17393
+ logo_placement?: "none" | "widget" | "chip" | undefined;
17394
17394
  };
17395
17395
  widget: {
17396
17396
  header_text_alignment: "center" | "left" | "right";
@@ -17429,7 +17429,7 @@ declare function init(config: AuthHeroConfig): {
17429
17429
  base_focus_color: string;
17430
17430
  base_hover_color: string;
17431
17431
  body_text: string;
17432
- captcha_widget_theme: "auto" | "light" | "dark";
17432
+ captcha_widget_theme: "dark" | "light" | "auto";
17433
17433
  error: string;
17434
17434
  header: string;
17435
17435
  icons: string;
@@ -17480,7 +17480,7 @@ declare function init(config: AuthHeroConfig): {
17480
17480
  background_color: string;
17481
17481
  background_image_url: string;
17482
17482
  page_layout: "center" | "left" | "right";
17483
- logo_placement?: "widget" | "chip" | "none" | undefined;
17483
+ logo_placement?: "none" | "widget" | "chip" | undefined;
17484
17484
  };
17485
17485
  widget: {
17486
17486
  header_text_alignment: "center" | "left" | "right";
@@ -17508,7 +17508,7 @@ declare function init(config: AuthHeroConfig): {
17508
17508
  base_focus_color: string;
17509
17509
  base_hover_color: string;
17510
17510
  body_text: string;
17511
- captcha_widget_theme: "auto" | "light" | "dark";
17511
+ captcha_widget_theme: "dark" | "light" | "auto";
17512
17512
  error: string;
17513
17513
  header: string;
17514
17514
  icons: string;
@@ -17559,7 +17559,7 @@ declare function init(config: AuthHeroConfig): {
17559
17559
  background_color: string;
17560
17560
  background_image_url: string;
17561
17561
  page_layout: "center" | "left" | "right";
17562
- logo_placement?: "widget" | "chip" | "none" | undefined;
17562
+ logo_placement?: "none" | "widget" | "chip" | undefined;
17563
17563
  };
17564
17564
  widget: {
17565
17565
  header_text_alignment: "center" | "left" | "right";
@@ -17598,7 +17598,7 @@ declare function init(config: AuthHeroConfig): {
17598
17598
  font?: {
17599
17599
  url: string;
17600
17600
  } | undefined;
17601
- dark_mode?: "auto" | "light" | "dark" | undefined;
17601
+ dark_mode?: "dark" | "light" | "auto" | undefined;
17602
17602
  };
17603
17603
  outputFormat: "json";
17604
17604
  status: 200;
@@ -17628,7 +17628,7 @@ declare function init(config: AuthHeroConfig): {
17628
17628
  font?: {
17629
17629
  url: string;
17630
17630
  } | undefined;
17631
- dark_mode?: "auto" | "light" | "dark" | undefined;
17631
+ dark_mode?: "dark" | "light" | "auto" | undefined;
17632
17632
  };
17633
17633
  };
17634
17634
  output: {
@@ -17647,7 +17647,7 @@ declare function init(config: AuthHeroConfig): {
17647
17647
  font?: {
17648
17648
  url: string;
17649
17649
  } | undefined;
17650
- dark_mode?: "auto" | "light" | "dark" | undefined;
17650
+ dark_mode?: "dark" | "light" | "auto" | undefined;
17651
17651
  };
17652
17652
  outputFormat: "json";
17653
17653
  status: 200;
@@ -17721,7 +17721,7 @@ declare function init(config: AuthHeroConfig): {
17721
17721
  } & {
17722
17722
  json: {
17723
17723
  body?: string | undefined;
17724
- screen?: "password" | "login" | "signup" | "identifier" | undefined;
17724
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
17725
17725
  branding?: {
17726
17726
  colors?: {
17727
17727
  primary: string;
@@ -17738,7 +17738,7 @@ declare function init(config: AuthHeroConfig): {
17738
17738
  font?: {
17739
17739
  url: string;
17740
17740
  } | undefined;
17741
- dark_mode?: "auto" | "light" | "dark" | undefined;
17741
+ dark_mode?: "dark" | "light" | "auto" | undefined;
17742
17742
  } | undefined;
17743
17743
  theme?: {
17744
17744
  borders?: {
@@ -17756,7 +17756,7 @@ declare function init(config: AuthHeroConfig): {
17756
17756
  base_focus_color: string;
17757
17757
  base_hover_color: string;
17758
17758
  body_text: string;
17759
- captcha_widget_theme: "auto" | "light" | "dark";
17759
+ captcha_widget_theme: "dark" | "light" | "auto";
17760
17760
  error: string;
17761
17761
  header: string;
17762
17762
  icons: string;
@@ -17807,7 +17807,7 @@ declare function init(config: AuthHeroConfig): {
17807
17807
  background_color: string;
17808
17808
  background_image_url: string;
17809
17809
  page_layout: "center" | "left" | "right";
17810
- logo_placement?: "widget" | "chip" | "none" | undefined;
17810
+ logo_placement?: "none" | "widget" | "chip" | undefined;
17811
17811
  } | undefined;
17812
17812
  widget?: {
17813
17813
  header_text_alignment: "center" | "left" | "right";
@@ -18012,7 +18012,7 @@ declare function init(config: AuthHeroConfig): {
18012
18012
  logs: {
18013
18013
  action_name: string;
18014
18014
  lines: {
18015
- level: "error" | "log" | "info" | "warn" | "debug";
18015
+ level: "log" | "error" | "info" | "warn" | "debug";
18016
18016
  message: string;
18017
18017
  }[];
18018
18018
  }[];
@@ -18681,7 +18681,7 @@ declare function init(config: AuthHeroConfig): {
18681
18681
  args: hono_utils_types.JSONValue[];
18682
18682
  }[];
18683
18683
  logs: {
18684
- level: "error" | "log" | "info" | "warn" | "debug";
18684
+ level: "log" | "error" | "info" | "warn" | "debug";
18685
18685
  message: string;
18686
18686
  }[];
18687
18687
  error?: string | undefined;
@@ -19427,19 +19427,19 @@ declare function init(config: AuthHeroConfig): {
19427
19427
  email: string;
19428
19428
  send: "code" | "link";
19429
19429
  authParams: {
19430
- state?: string | undefined;
19431
19430
  username?: string | undefined;
19432
- code_challenge?: string | undefined;
19433
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19434
- redirect_uri?: string | undefined;
19435
- nonce?: string | undefined;
19436
- act_as?: string | undefined;
19437
19431
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19438
19432
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19433
+ scope?: string | undefined;
19439
19434
  audience?: string | undefined;
19435
+ act_as?: string | undefined;
19436
+ redirect_uri?: string | undefined;
19440
19437
  organization?: string | undefined;
19441
- scope?: string | undefined;
19438
+ state?: string | undefined;
19439
+ nonce?: string | undefined;
19442
19440
  prompt?: string | undefined;
19441
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19442
+ code_challenge?: string | undefined;
19443
19443
  ui_locales?: string | undefined;
19444
19444
  max_age?: number | undefined;
19445
19445
  acr_values?: string | undefined;
@@ -19463,19 +19463,19 @@ declare function init(config: AuthHeroConfig): {
19463
19463
  phone_number: string;
19464
19464
  send: "code" | "link";
19465
19465
  authParams: {
19466
- state?: string | undefined;
19467
19466
  username?: string | undefined;
19468
- code_challenge?: string | undefined;
19469
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19470
- redirect_uri?: string | undefined;
19471
- nonce?: string | undefined;
19472
- act_as?: string | undefined;
19473
19467
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19474
19468
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19469
+ scope?: string | undefined;
19475
19470
  audience?: string | undefined;
19471
+ act_as?: string | undefined;
19472
+ redirect_uri?: string | undefined;
19476
19473
  organization?: string | undefined;
19477
- scope?: string | undefined;
19474
+ state?: string | undefined;
19475
+ nonce?: string | undefined;
19478
19476
  prompt?: string | undefined;
19477
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19478
+ code_challenge?: string | undefined;
19479
19479
  ui_locales?: string | undefined;
19480
19480
  max_age?: number | undefined;
19481
19481
  acr_values?: string | undefined;
@@ -19607,14 +19607,14 @@ declare function init(config: AuthHeroConfig): {
19607
19607
  input: {
19608
19608
  form: {
19609
19609
  token: string;
19610
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19610
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19611
19611
  client_id?: string | undefined;
19612
19612
  client_secret?: string | undefined;
19613
19613
  };
19614
19614
  } & {
19615
19615
  json: {
19616
19616
  token: string;
19617
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19617
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19618
19618
  client_id?: string | undefined;
19619
19619
  client_secret?: string | undefined;
19620
19620
  };
@@ -19626,14 +19626,14 @@ declare function init(config: AuthHeroConfig): {
19626
19626
  input: {
19627
19627
  form: {
19628
19628
  token: string;
19629
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19629
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19630
19630
  client_id?: string | undefined;
19631
19631
  client_secret?: string | undefined;
19632
19632
  };
19633
19633
  } & {
19634
19634
  json: {
19635
19635
  token: string;
19636
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19636
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19637
19637
  client_id?: string | undefined;
19638
19638
  client_secret?: string | undefined;
19639
19639
  };
@@ -19648,14 +19648,14 @@ declare function init(config: AuthHeroConfig): {
19648
19648
  input: {
19649
19649
  form: {
19650
19650
  token: string;
19651
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19651
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19652
19652
  client_id?: string | undefined;
19653
19653
  client_secret?: string | undefined;
19654
19654
  };
19655
19655
  } & {
19656
19656
  json: {
19657
19657
  token: string;
19658
- token_type_hint?: "access_token" | "refresh_token" | undefined;
19658
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
19659
19659
  client_id?: string | undefined;
19660
19660
  client_secret?: string | undefined;
19661
19661
  };
@@ -20726,13 +20726,13 @@ declare function init(config: AuthHeroConfig): {
20726
20726
  $get: {
20727
20727
  input: {
20728
20728
  query: {
20729
- state: string;
20730
- code: string;
20729
+ state?: string | undefined;
20730
+ code?: string | undefined;
20731
20731
  };
20732
20732
  };
20733
- output: {};
20734
- outputFormat: string;
20735
- status: 200;
20733
+ output: Response;
20734
+ outputFormat: "json";
20735
+ status: hono_utils_http_status.StatusCode;
20736
20736
  };
20737
20737
  };
20738
20738
  }, "/validate-email"> & hono_types.MergeSchemaPath<{
@@ -21007,7 +21007,7 @@ declare function init(config: AuthHeroConfig): {
21007
21007
  } & {
21008
21008
  form: {
21009
21009
  username: string;
21010
- login_selection?: "password" | "code" | undefined;
21010
+ login_selection?: "code" | "password" | undefined;
21011
21011
  };
21012
21012
  };
21013
21013
  output: {};
@@ -21021,7 +21021,7 @@ declare function init(config: AuthHeroConfig): {
21021
21021
  } & {
21022
21022
  form: {
21023
21023
  username: string;
21024
- login_selection?: "password" | "code" | undefined;
21024
+ login_selection?: "code" | "password" | undefined;
21025
21025
  };
21026
21026
  };
21027
21027
  output: {};
@@ -21386,7 +21386,7 @@ declare function init(config: AuthHeroConfig): {
21386
21386
  $get: {
21387
21387
  input: {
21388
21388
  param: {
21389
- screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
21389
+ screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "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";
21390
21390
  };
21391
21391
  } & {
21392
21392
  query: {
@@ -21402,7 +21402,7 @@ declare function init(config: AuthHeroConfig): {
21402
21402
  } | {
21403
21403
  input: {
21404
21404
  param: {
21405
- screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
21405
+ screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "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";
21406
21406
  };
21407
21407
  } & {
21408
21408
  query: {
@@ -21418,7 +21418,7 @@ declare function init(config: AuthHeroConfig): {
21418
21418
  } | {
21419
21419
  input: {
21420
21420
  param: {
21421
- screen: "impersonate" | "account" | "login" | "signup" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
21421
+ screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "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";
21422
21422
  };
21423
21423
  } & {
21424
21424
  query: {
@@ -21438,7 +21438,7 @@ declare function init(config: AuthHeroConfig): {
21438
21438
  $post: {
21439
21439
  input: {
21440
21440
  param: {
21441
- screen: "impersonate" | "login" | "signup" | "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";
21441
+ screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "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";
21442
21442
  };
21443
21443
  } & {
21444
21444
  query: {
@@ -21456,7 +21456,7 @@ declare function init(config: AuthHeroConfig): {
21456
21456
  } | {
21457
21457
  input: {
21458
21458
  param: {
21459
- screen: "impersonate" | "login" | "signup" | "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";
21459
+ screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "enter-password" | "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";
21460
21460
  };
21461
21461
  } & {
21462
21462
  query: {