authhero 9.11.1 → 9.12.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 (50) hide show
  1. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  2. package/dist/assets/u/widget/{p-f94037cd.entry.js → p-74f95441.entry.js} +1 -1
  3. package/dist/authhero.cjs +313 -167
  4. package/dist/authhero.d.ts +122 -119
  5. package/dist/authhero.mjs +81419 -89178
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +2 -2
  8. package/dist/types/emails/render.d.ts +2 -0
  9. package/dist/types/helpers/action-executions-cleanup.d.ts +6 -3
  10. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  11. package/dist/types/helpers/logging.d.ts +11 -3
  12. package/dist/types/helpers/reserved-claims.d.ts +2 -2
  13. package/dist/types/helpers/run-retention.d.ts +1 -1
  14. package/dist/types/helpers/saml.d.ts +1 -1
  15. package/dist/types/helpers/scopes-permissions.d.ts +16 -0
  16. package/dist/types/helpers/users-import/map.d.ts +14 -0
  17. package/dist/types/hooks/codehooks.d.ts +28 -1
  18. package/dist/types/index.d.ts +115 -115
  19. package/dist/types/routes/auth-api/index.d.ts +15 -15
  20. package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
  21. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  22. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  23. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  24. package/dist/types/routes/management-api/branding.d.ts +5 -5
  25. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  26. package/dist/types/routes/management-api/clients.d.ts +8 -8
  27. package/dist/types/routes/management-api/connections.d.ts +1 -1
  28. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  29. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  30. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  31. package/dist/types/routes/management-api/forms.d.ts +126 -126
  32. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  33. package/dist/types/routes/management-api/index.d.ts +83 -83
  34. package/dist/types/routes/management-api/keys.d.ts +8 -8
  35. package/dist/types/routes/management-api/logs.d.ts +4 -4
  36. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  37. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  38. package/dist/types/routes/management-api/roles.d.ts +1 -1
  39. package/dist/types/routes/management-api/tenant-operations.d.ts +1 -1
  40. package/dist/types/routes/management-api/tenants.d.ts +12 -12
  41. package/dist/types/routes/management-api/users.d.ts +14 -14
  42. package/dist/types/routes/universal-login/common.d.ts +6 -6
  43. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  44. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  45. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  46. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  47. package/dist/types/routes/universal-login/u2-widget-page.d.ts +13 -42
  48. package/dist/types/routes/universal-login/universal-login-template.d.ts +1 -1
  49. package/dist/types/utils/jwks.d.ts +2 -2
  50. package/package.json +7 -7
@@ -2885,12 +2885,15 @@ declare function cleanupCodes(codes: CodesAdapter, params?: CodesCleanupParams):
2885
2885
 
2886
2886
  interface ActionExecutionsCleanupParams {
2887
2887
  /**
2888
- * Days of execution history to keep. Defaults to 30.
2888
+ * Days of execution history to keep. Defaults to 10, matching Auth0
2889
+ * ("Executions will only be stored for 10 days after their creation").
2889
2890
  *
2890
2891
  * Unlike `codes`, these rows have no expiry — they are diagnostic history,
2891
2892
  * referenced from logs when debugging an action. The window is a genuine
2892
2893
  * retention policy: long enough to investigate a report that arrives late,
2893
- * short enough that the table stops growing without bound.
2894
+ * short enough that the table stops growing without bound. Rows can carry
2895
+ * whatever a tenant's action wrote to `console`, so a shorter window is also
2896
+ * the safer one.
2894
2897
  */
2895
2898
  retentionDays?: number;
2896
2899
  }
@@ -2910,7 +2913,7 @@ interface ActionExecutionsCleanupParams {
2910
2913
  * // Cloudflare Workers scheduled handler
2911
2914
  * async scheduled(_event, env) {
2912
2915
  * await cleanupActionExecutions(dataAdapter.actionExecutions, {
2913
- * retentionDays: 30,
2916
+ * retentionDays: 10,
2914
2917
  * });
2915
2918
  * }
2916
2919
  * ```
@@ -3276,7 +3279,7 @@ interface RunRetentionConfig {
3276
3279
  codesRetentionDays?: number;
3277
3280
  /** Days to keep processed/dead-lettered outbox events. Default 7. */
3278
3281
  outboxRetentionDays?: number;
3279
- /** Days of action execution history to keep. Default 30. */
3282
+ /** Days of action execution history to keep. Default 10, matching Auth0. */
3280
3283
  actionExecutionsRetentionDays?: number;
3281
3284
  /**
3282
3285
  * Hours to keep finished bulk user-import jobs and their staged rows.
@@ -4769,7 +4772,7 @@ declare function init(config: AuthHeroConfig): {
4769
4772
  };
4770
4773
  } & {
4771
4774
  json: {
4772
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
4775
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
4773
4776
  phone_number?: string | undefined;
4774
4777
  totp_secret?: string | undefined;
4775
4778
  credential_id?: string | undefined;
@@ -4909,7 +4912,7 @@ declare function init(config: AuthHeroConfig): {
4909
4912
  };
4910
4913
  };
4911
4914
  output: {
4912
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4915
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4913
4916
  enabled: boolean;
4914
4917
  trial_expired?: boolean | undefined;
4915
4918
  }[];
@@ -5064,7 +5067,7 @@ declare function init(config: AuthHeroConfig): {
5064
5067
  $get: {
5065
5068
  input: {
5066
5069
  param: {
5067
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
5070
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
5068
5071
  };
5069
5072
  } & {
5070
5073
  header: {
@@ -5072,7 +5075,7 @@ declare function init(config: AuthHeroConfig): {
5072
5075
  };
5073
5076
  };
5074
5077
  output: {
5075
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
5078
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
5076
5079
  enabled: boolean;
5077
5080
  trial_expired?: boolean | undefined;
5078
5081
  };
@@ -5085,7 +5088,7 @@ declare function init(config: AuthHeroConfig): {
5085
5088
  $put: {
5086
5089
  input: {
5087
5090
  param: {
5088
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
5091
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
5089
5092
  };
5090
5093
  } & {
5091
5094
  header: {
@@ -5097,7 +5100,7 @@ declare function init(config: AuthHeroConfig): {
5097
5100
  };
5098
5101
  };
5099
5102
  output: {
5100
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
5103
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
5101
5104
  enabled: boolean;
5102
5105
  trial_expired?: boolean | undefined;
5103
5106
  };
@@ -5876,9 +5879,9 @@ declare function init(config: AuthHeroConfig): {
5876
5879
  email?: string | undefined;
5877
5880
  };
5878
5881
  id?: string | undefined;
5882
+ connection_id?: string | undefined;
5879
5883
  app_metadata?: Record<string, any> | undefined;
5880
5884
  user_metadata?: Record<string, any> | undefined;
5881
- connection_id?: string | undefined;
5882
5885
  roles?: string[] | undefined;
5883
5886
  ttl_sec?: number | undefined;
5884
5887
  send_invitation_email?: boolean | undefined;
@@ -6064,8 +6067,8 @@ declare function init(config: AuthHeroConfig): {
6064
6067
  };
6065
6068
  } & {
6066
6069
  json: {
6067
- show_as_button?: boolean | undefined;
6068
6070
  assign_membership_on_login?: boolean | undefined;
6071
+ show_as_button?: boolean | undefined;
6069
6072
  is_signup_enabled?: boolean | undefined;
6070
6073
  };
6071
6074
  };
@@ -11708,7 +11711,7 @@ declare function init(config: AuthHeroConfig): {
11708
11711
  };
11709
11712
  };
11710
11713
  output: {
11711
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11714
+ prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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";
11712
11715
  language: string;
11713
11716
  }[];
11714
11717
  outputFormat: "json";
@@ -11746,7 +11749,7 @@ declare function init(config: AuthHeroConfig): {
11746
11749
  $get: {
11747
11750
  input: {
11748
11751
  param: {
11749
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11752
+ prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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";
11750
11753
  language: string;
11751
11754
  };
11752
11755
  } & {
@@ -11768,7 +11771,7 @@ declare function init(config: AuthHeroConfig): {
11768
11771
  $put: {
11769
11772
  input: {
11770
11773
  param: {
11771
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11774
+ prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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";
11772
11775
  language: string;
11773
11776
  };
11774
11777
  } & {
@@ -11792,7 +11795,7 @@ declare function init(config: AuthHeroConfig): {
11792
11795
  $delete: {
11793
11796
  input: {
11794
11797
  param: {
11795
- prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11798
+ prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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";
11796
11799
  language: string;
11797
11800
  };
11798
11801
  } & {
@@ -13735,7 +13738,7 @@ declare function init(config: AuthHeroConfig): {
13735
13738
  created_at: string;
13736
13739
  updated_at: string;
13737
13740
  name: string;
13738
- provider: "auth0" | "oidc" | "okta" | "cognito";
13741
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13739
13742
  connection: string;
13740
13743
  enabled: boolean;
13741
13744
  credentials: {
@@ -13767,7 +13770,7 @@ declare function init(config: AuthHeroConfig): {
13767
13770
  created_at: string;
13768
13771
  updated_at: string;
13769
13772
  name: string;
13770
- provider: "auth0" | "oidc" | "okta" | "cognito";
13773
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13771
13774
  connection: string;
13772
13775
  enabled: boolean;
13773
13776
  credentials: {
@@ -13793,7 +13796,7 @@ declare function init(config: AuthHeroConfig): {
13793
13796
  } & {
13794
13797
  json: {
13795
13798
  name: string;
13796
- provider: "auth0" | "oidc" | "okta" | "cognito";
13799
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13797
13800
  connection: string;
13798
13801
  credentials: {
13799
13802
  domain: string;
@@ -13810,7 +13813,7 @@ declare function init(config: AuthHeroConfig): {
13810
13813
  created_at: string;
13811
13814
  updated_at: string;
13812
13815
  name: string;
13813
- provider: "auth0" | "oidc" | "okta" | "cognito";
13816
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13814
13817
  connection: string;
13815
13818
  enabled: boolean;
13816
13819
  credentials: {
@@ -13841,7 +13844,7 @@ declare function init(config: AuthHeroConfig): {
13841
13844
  json: {
13842
13845
  id?: string | undefined;
13843
13846
  name?: string | undefined;
13844
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
13847
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
13845
13848
  connection?: string | undefined;
13846
13849
  enabled?: boolean | undefined;
13847
13850
  credentials?: {
@@ -13857,7 +13860,7 @@ declare function init(config: AuthHeroConfig): {
13857
13860
  created_at: string;
13858
13861
  updated_at: string;
13859
13862
  name: string;
13860
- provider: "auth0" | "oidc" | "okta" | "cognito";
13863
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13861
13864
  connection: string;
13862
13865
  enabled: boolean;
13863
13866
  credentials: {
@@ -13905,7 +13908,7 @@ declare function init(config: AuthHeroConfig): {
13905
13908
  [x: string]: hono_utils_types.JSONValue;
13906
13909
  };
13907
13910
  id: string;
13908
- status: "active" | "suspended" | "paused";
13911
+ status: "suspended" | "active" | "paused";
13909
13912
  filters?: {
13910
13913
  type: string;
13911
13914
  name: string;
@@ -13937,7 +13940,7 @@ declare function init(config: AuthHeroConfig): {
13937
13940
  [x: string]: hono_utils_types.JSONValue;
13938
13941
  };
13939
13942
  id: string;
13940
- status: "active" | "suspended" | "paused";
13943
+ status: "suspended" | "active" | "paused";
13941
13944
  filters?: {
13942
13945
  type: string;
13943
13946
  name: string;
@@ -13962,7 +13965,7 @@ declare function init(config: AuthHeroConfig): {
13962
13965
  name: string;
13963
13966
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
13964
13967
  sink: Record<string, unknown>;
13965
- status?: "active" | "suspended" | "paused" | undefined;
13968
+ status?: "suspended" | "active" | "paused" | undefined;
13966
13969
  filters?: {
13967
13970
  type: string;
13968
13971
  name: string;
@@ -13977,7 +13980,7 @@ declare function init(config: AuthHeroConfig): {
13977
13980
  [x: string]: hono_utils_types.JSONValue;
13978
13981
  };
13979
13982
  id: string;
13980
- status: "active" | "suspended" | "paused";
13983
+ status: "suspended" | "active" | "paused";
13981
13984
  filters?: {
13982
13985
  type: string;
13983
13986
  name: string;
@@ -14012,7 +14015,7 @@ declare function init(config: AuthHeroConfig): {
14012
14015
  }[] | undefined;
14013
14016
  isPriority?: boolean | undefined;
14014
14017
  id?: string | undefined;
14015
- status?: "active" | "suspended" | "paused" | undefined;
14018
+ status?: "suspended" | "active" | "paused" | undefined;
14016
14019
  created_at?: string | undefined;
14017
14020
  updated_at?: string | undefined;
14018
14021
  };
@@ -14024,7 +14027,7 @@ declare function init(config: AuthHeroConfig): {
14024
14027
  [x: string]: hono_utils_types.JSONValue;
14025
14028
  };
14026
14029
  id: string;
14027
- status: "active" | "suspended" | "paused";
14030
+ status: "suspended" | "active" | "paused";
14028
14031
  filters?: {
14029
14032
  type: string;
14030
14033
  name: string;
@@ -14075,7 +14078,7 @@ declare function init(config: AuthHeroConfig): {
14075
14078
  };
14076
14079
  };
14077
14080
  output: {
14078
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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" | "wn" | "wum";
14081
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
14079
14082
  date: string;
14080
14083
  isMobile: boolean;
14081
14084
  log_id: string;
@@ -14114,7 +14117,7 @@ declare function init(config: AuthHeroConfig): {
14114
14117
  limit: number;
14115
14118
  length: number;
14116
14119
  logs: {
14117
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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" | "wn" | "wum";
14120
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
14118
14121
  date: string;
14119
14122
  isMobile: boolean;
14120
14123
  log_id: string;
@@ -14153,7 +14156,7 @@ declare function init(config: AuthHeroConfig): {
14153
14156
  next?: string | undefined;
14154
14157
  } | {
14155
14158
  logs: {
14156
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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" | "wn" | "wum";
14159
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
14157
14160
  date: string;
14158
14161
  isMobile: boolean;
14159
14162
  log_id: string;
@@ -14207,7 +14210,7 @@ declare function init(config: AuthHeroConfig): {
14207
14210
  };
14208
14211
  };
14209
14212
  output: {
14210
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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" | "wn" | "wum";
14213
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
14211
14214
  date: string;
14212
14215
  isMobile: boolean;
14213
14216
  log_id: string;
@@ -14363,7 +14366,7 @@ declare function init(config: AuthHeroConfig): {
14363
14366
  audience?: string | undefined;
14364
14367
  client_id?: string | undefined;
14365
14368
  allow_any_organization?: string | undefined;
14366
- subject_type?: "client" | "user" | undefined;
14369
+ subject_type?: "user" | "client" | undefined;
14367
14370
  };
14368
14371
  } & {
14369
14372
  header: {
@@ -14378,7 +14381,7 @@ declare function init(config: AuthHeroConfig): {
14378
14381
  organization_usage?: "deny" | "allow" | "require" | undefined;
14379
14382
  allow_any_organization?: boolean | undefined;
14380
14383
  is_system?: boolean | undefined;
14381
- subject_type?: "client" | "user" | undefined;
14384
+ subject_type?: "user" | "client" | undefined;
14382
14385
  authorization_details_types?: string[] | undefined;
14383
14386
  created_at?: string | undefined;
14384
14387
  updated_at?: string | undefined;
@@ -14394,7 +14397,7 @@ declare function init(config: AuthHeroConfig): {
14394
14397
  organization_usage?: "deny" | "allow" | "require" | undefined;
14395
14398
  allow_any_organization?: boolean | undefined;
14396
14399
  is_system?: boolean | undefined;
14397
- subject_type?: "client" | "user" | undefined;
14400
+ subject_type?: "user" | "client" | undefined;
14398
14401
  authorization_details_types?: string[] | undefined;
14399
14402
  created_at?: string | undefined;
14400
14403
  updated_at?: string | undefined;
@@ -14410,7 +14413,7 @@ declare function init(config: AuthHeroConfig): {
14410
14413
  organization_usage?: "deny" | "allow" | "require" | undefined;
14411
14414
  allow_any_organization?: boolean | undefined;
14412
14415
  is_system?: boolean | undefined;
14413
- subject_type?: "client" | "user" | undefined;
14416
+ subject_type?: "user" | "client" | undefined;
14414
14417
  authorization_details_types?: string[] | undefined;
14415
14418
  created_at?: string | undefined;
14416
14419
  updated_at?: string | undefined;
@@ -14441,7 +14444,7 @@ declare function init(config: AuthHeroConfig): {
14441
14444
  organization_usage?: "deny" | "allow" | "require" | undefined;
14442
14445
  allow_any_organization?: boolean | undefined;
14443
14446
  is_system?: boolean | undefined;
14444
- subject_type?: "client" | "user" | undefined;
14447
+ subject_type?: "user" | "client" | undefined;
14445
14448
  authorization_details_types?: string[] | undefined;
14446
14449
  created_at?: string | undefined;
14447
14450
  updated_at?: string | undefined;
@@ -14486,7 +14489,7 @@ declare function init(config: AuthHeroConfig): {
14486
14489
  organization_usage?: "deny" | "allow" | "require" | undefined;
14487
14490
  allow_any_organization?: boolean | undefined;
14488
14491
  is_system?: boolean | undefined;
14489
- subject_type?: "client" | "user" | undefined;
14492
+ subject_type?: "user" | "client" | undefined;
14490
14493
  authorization_details_types?: string[] | undefined;
14491
14494
  };
14492
14495
  };
@@ -14498,7 +14501,7 @@ declare function init(config: AuthHeroConfig): {
14498
14501
  organization_usage?: "deny" | "allow" | "require" | undefined;
14499
14502
  allow_any_organization?: boolean | undefined;
14500
14503
  is_system?: boolean | undefined;
14501
- subject_type?: "client" | "user" | undefined;
14504
+ subject_type?: "user" | "client" | undefined;
14502
14505
  authorization_details_types?: string[] | undefined;
14503
14506
  created_at?: string | undefined;
14504
14507
  updated_at?: string | undefined;
@@ -14522,7 +14525,7 @@ declare function init(config: AuthHeroConfig): {
14522
14525
  organization_usage?: "deny" | "allow" | "require" | undefined;
14523
14526
  allow_any_organization?: boolean | undefined;
14524
14527
  is_system?: boolean | undefined;
14525
- subject_type?: "client" | "user" | undefined;
14528
+ subject_type?: "user" | "client" | undefined;
14526
14529
  authorization_details_types?: string[] | undefined;
14527
14530
  };
14528
14531
  };
@@ -14534,7 +14537,7 @@ declare function init(config: AuthHeroConfig): {
14534
14537
  organization_usage?: "deny" | "allow" | "require" | undefined;
14535
14538
  allow_any_organization?: boolean | undefined;
14536
14539
  is_system?: boolean | undefined;
14537
- subject_type?: "client" | "user" | undefined;
14540
+ subject_type?: "user" | "client" | undefined;
14538
14541
  authorization_details_types?: string[] | undefined;
14539
14542
  created_at?: string | undefined;
14540
14543
  updated_at?: string | undefined;
@@ -14618,7 +14621,7 @@ declare function init(config: AuthHeroConfig): {
14618
14621
  addons?: {
14619
14622
  [x: string]: any;
14620
14623
  } | undefined;
14621
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14624
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14622
14625
  client_metadata?: {
14623
14626
  [x: string]: string;
14624
14627
  } | undefined;
@@ -14720,7 +14723,7 @@ declare function init(config: AuthHeroConfig): {
14720
14723
  addons?: {
14721
14724
  [x: string]: any;
14722
14725
  } | undefined;
14723
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14726
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14724
14727
  client_metadata?: {
14725
14728
  [x: string]: string;
14726
14729
  } | undefined;
@@ -14822,7 +14825,7 @@ declare function init(config: AuthHeroConfig): {
14822
14825
  addons?: {
14823
14826
  [x: string]: any;
14824
14827
  } | undefined;
14825
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14828
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14826
14829
  client_metadata?: {
14827
14830
  [x: string]: string;
14828
14831
  } | undefined;
@@ -14939,7 +14942,7 @@ declare function init(config: AuthHeroConfig): {
14939
14942
  addons?: {
14940
14943
  [x: string]: any;
14941
14944
  } | undefined;
14942
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14945
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14943
14946
  client_metadata?: {
14944
14947
  [x: string]: string;
14945
14948
  } | undefined;
@@ -15057,7 +15060,7 @@ declare function init(config: AuthHeroConfig): {
15057
15060
  custom_login_page_preview?: string | undefined;
15058
15061
  form_template?: string | undefined;
15059
15062
  addons?: Record<string, any> | undefined;
15060
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15063
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
15061
15064
  client_metadata?: Record<string, string> | undefined;
15062
15065
  hide_sign_up_disabled_error?: boolean | undefined;
15063
15066
  mobile?: Record<string, any> | undefined;
@@ -15143,7 +15146,7 @@ declare function init(config: AuthHeroConfig): {
15143
15146
  addons?: {
15144
15147
  [x: string]: any;
15145
15148
  } | undefined;
15146
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15149
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
15147
15150
  client_metadata?: {
15148
15151
  [x: string]: string;
15149
15152
  } | undefined;
@@ -15240,7 +15243,7 @@ declare function init(config: AuthHeroConfig): {
15240
15243
  custom_login_page_preview?: string | undefined;
15241
15244
  form_template?: string | undefined;
15242
15245
  addons?: Record<string, any> | undefined;
15243
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15246
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
15244
15247
  client_metadata?: Record<string, string> | undefined;
15245
15248
  hide_sign_up_disabled_error?: boolean | undefined;
15246
15249
  mobile?: Record<string, any> | undefined;
@@ -15326,7 +15329,7 @@ declare function init(config: AuthHeroConfig): {
15326
15329
  addons?: {
15327
15330
  [x: string]: any;
15328
15331
  } | undefined;
15329
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15332
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
15330
15333
  client_metadata?: {
15331
15334
  [x: string]: string;
15332
15335
  } | undefined;
@@ -15786,20 +15789,20 @@ declare function init(config: AuthHeroConfig): {
15786
15789
  };
15787
15790
  };
15788
15791
  output: {
15792
+ type: "jwt_signing" | "saml_encryption";
15789
15793
  kid: string;
15790
15794
  cert: string;
15791
15795
  fingerprint: string;
15792
15796
  thumbprint: string;
15793
- type: "jwt_signing" | "saml_encryption";
15794
15797
  tenant_id?: string | undefined;
15795
15798
  connection?: string | undefined;
15796
- current?: boolean | undefined;
15797
15799
  next?: boolean | undefined;
15800
+ revoked_at?: string | undefined;
15801
+ current?: boolean | undefined;
15798
15802
  previous?: boolean | undefined;
15799
15803
  current_since?: string | undefined;
15800
15804
  current_until?: string | undefined;
15801
15805
  revoked?: boolean | undefined;
15802
- revoked_at?: string | undefined;
15803
15806
  expires_at?: string | undefined;
15804
15807
  expired?: boolean | undefined;
15805
15808
  inherited?: boolean | undefined;
@@ -15825,20 +15828,20 @@ declare function init(config: AuthHeroConfig): {
15825
15828
  };
15826
15829
  };
15827
15830
  output: {
15831
+ type: "jwt_signing" | "saml_encryption";
15828
15832
  kid: string;
15829
15833
  cert: string;
15830
15834
  fingerprint: string;
15831
15835
  thumbprint: string;
15832
- type: "jwt_signing" | "saml_encryption";
15833
15836
  tenant_id?: string | undefined;
15834
15837
  connection?: string | undefined;
15835
- current?: boolean | undefined;
15836
15838
  next?: boolean | undefined;
15839
+ revoked_at?: string | undefined;
15840
+ current?: boolean | undefined;
15837
15841
  previous?: boolean | undefined;
15838
15842
  current_since?: string | undefined;
15839
15843
  current_until?: string | undefined;
15840
15844
  revoked?: boolean | undefined;
15841
- revoked_at?: string | undefined;
15842
15845
  expires_at?: string | undefined;
15843
15846
  expired?: boolean | undefined;
15844
15847
  inherited?: boolean | undefined;
@@ -15863,20 +15866,20 @@ declare function init(config: AuthHeroConfig): {
15863
15866
  };
15864
15867
  };
15865
15868
  output: {
15869
+ type: "jwt_signing" | "saml_encryption";
15866
15870
  kid: string;
15867
15871
  cert: string;
15868
15872
  fingerprint: string;
15869
15873
  thumbprint: string;
15870
- type: "jwt_signing" | "saml_encryption";
15871
15874
  tenant_id?: string | undefined;
15872
15875
  connection?: string | undefined;
15873
- current?: boolean | undefined;
15874
15876
  next?: boolean | undefined;
15877
+ revoked_at?: string | undefined;
15878
+ current?: boolean | undefined;
15875
15879
  previous?: boolean | undefined;
15876
15880
  current_since?: string | undefined;
15877
15881
  current_until?: string | undefined;
15878
15882
  revoked?: boolean | undefined;
15879
- revoked_at?: string | undefined;
15880
15883
  expires_at?: string | undefined;
15881
15884
  expired?: boolean | undefined;
15882
15885
  inherited?: boolean | undefined;
@@ -15903,20 +15906,20 @@ declare function init(config: AuthHeroConfig): {
15903
15906
  };
15904
15907
  };
15905
15908
  output: {
15909
+ type: "jwt_signing" | "saml_encryption";
15906
15910
  kid: string;
15907
15911
  cert: string;
15908
15912
  fingerprint: string;
15909
15913
  thumbprint: string;
15910
- type: "jwt_signing" | "saml_encryption";
15911
15914
  tenant_id?: string | undefined;
15912
15915
  connection?: string | undefined;
15913
- current?: boolean | undefined;
15914
15916
  next?: boolean | undefined;
15917
+ revoked_at?: string | undefined;
15918
+ current?: boolean | undefined;
15915
15919
  previous?: boolean | undefined;
15916
15920
  current_since?: string | undefined;
15917
15921
  current_until?: string | undefined;
15918
15922
  revoked?: boolean | undefined;
15919
- revoked_at?: string | undefined;
15920
15923
  expires_at?: string | undefined;
15921
15924
  expired?: boolean | undefined;
15922
15925
  inherited?: boolean | undefined;
@@ -16761,8 +16764,8 @@ declare function init(config: AuthHeroConfig): {
16761
16764
  };
16762
16765
  };
16763
16766
  output: {
16764
- created_at: string;
16765
16767
  id: string;
16768
+ created_at: string;
16766
16769
  client_id: string;
16767
16770
  user_id: string;
16768
16771
  rotating: boolean;
@@ -16779,24 +16782,21 @@ declare function init(config: AuthHeroConfig): {
16779
16782
  audience: string;
16780
16783
  scopes: string;
16781
16784
  }[];
16782
- organization?: string | undefined;
16783
16785
  revoked_at?: string | undefined;
16784
16786
  expires_at?: string | undefined;
16787
+ idle_expires_at?: string | undefined;
16785
16788
  session_id?: string | undefined;
16789
+ organization?: string | undefined;
16786
16790
  auth_connection?: string | undefined;
16787
16791
  auth_strategy?: {
16788
16792
  strategy: string;
16789
16793
  strategy_type: string;
16790
16794
  } | undefined;
16791
- idle_expires_at?: string | undefined;
16792
16795
  last_exchanged_at?: string | undefined;
16793
16796
  }[] | {
16794
- start: number;
16795
- limit: number;
16796
- length: number;
16797
16797
  tokens: {
16798
- created_at: string;
16799
16798
  id: string;
16799
+ created_at: string;
16800
16800
  client_id: string;
16801
16801
  user_id: string;
16802
16802
  rotating: boolean;
@@ -16813,24 +16813,26 @@ declare function init(config: AuthHeroConfig): {
16813
16813
  audience: string;
16814
16814
  scopes: string;
16815
16815
  }[];
16816
- organization?: string | undefined;
16817
16816
  revoked_at?: string | undefined;
16818
16817
  expires_at?: string | undefined;
16818
+ idle_expires_at?: string | undefined;
16819
16819
  session_id?: string | undefined;
16820
+ organization?: string | undefined;
16820
16821
  auth_connection?: string | undefined;
16821
16822
  auth_strategy?: {
16822
16823
  strategy: string;
16823
16824
  strategy_type: string;
16824
16825
  } | undefined;
16825
- idle_expires_at?: string | undefined;
16826
16826
  last_exchanged_at?: string | undefined;
16827
16827
  }[];
16828
- total?: number | undefined;
16829
16828
  next?: string | undefined;
16830
16829
  } | {
16830
+ start: number;
16831
+ limit: number;
16832
+ length: number;
16831
16833
  tokens: {
16832
- created_at: string;
16833
16834
  id: string;
16835
+ created_at: string;
16834
16836
  client_id: string;
16835
16837
  user_id: string;
16836
16838
  rotating: boolean;
@@ -16847,18 +16849,19 @@ declare function init(config: AuthHeroConfig): {
16847
16849
  audience: string;
16848
16850
  scopes: string;
16849
16851
  }[];
16850
- organization?: string | undefined;
16851
16852
  revoked_at?: string | undefined;
16852
16853
  expires_at?: string | undefined;
16854
+ idle_expires_at?: string | undefined;
16853
16855
  session_id?: string | undefined;
16856
+ organization?: string | undefined;
16854
16857
  auth_connection?: string | undefined;
16855
16858
  auth_strategy?: {
16856
16859
  strategy: string;
16857
16860
  strategy_type: string;
16858
16861
  } | undefined;
16859
- idle_expires_at?: string | undefined;
16860
16862
  last_exchanged_at?: string | undefined;
16861
16863
  }[];
16864
+ total?: number | undefined;
16862
16865
  next?: string | undefined;
16863
16866
  };
16864
16867
  outputFormat: "json";
@@ -16907,7 +16910,7 @@ declare function init(config: AuthHeroConfig): {
16907
16910
  };
16908
16911
  };
16909
16912
  output: {
16910
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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" | "wn" | "wum";
16913
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
16911
16914
  date: string;
16912
16915
  isMobile: boolean;
16913
16916
  log_id: string;
@@ -16946,7 +16949,7 @@ declare function init(config: AuthHeroConfig): {
16946
16949
  limit: number;
16947
16950
  length: number;
16948
16951
  logs: {
16949
- type: "w" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "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" | "wn" | "wum";
16952
+ type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
16950
16953
  date: string;
16951
16954
  isMobile: boolean;
16952
16955
  log_id: string;
@@ -17790,7 +17793,7 @@ declare function init(config: AuthHeroConfig): {
17790
17793
  type: "auth0_managed_certs" | "self_managed_certs";
17791
17794
  custom_domain_id: string;
17792
17795
  primary: boolean;
17793
- status: "disabled" | "pending" | "ready" | "pending_verification";
17796
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17794
17797
  verification_method?: "txt" | undefined;
17795
17798
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17796
17799
  domain_metadata?: {
@@ -17831,7 +17834,7 @@ declare function init(config: AuthHeroConfig): {
17831
17834
  type: "auth0_managed_certs" | "self_managed_certs";
17832
17835
  custom_domain_id: string;
17833
17836
  primary: boolean;
17834
- status: "disabled" | "pending" | "ready" | "pending_verification";
17837
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17835
17838
  verification_method?: "txt" | undefined;
17836
17839
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17837
17840
  domain_metadata?: {
@@ -17895,7 +17898,7 @@ declare function init(config: AuthHeroConfig): {
17895
17898
  type: "auth0_managed_certs" | "self_managed_certs";
17896
17899
  custom_domain_id: string;
17897
17900
  primary: boolean;
17898
- status: "disabled" | "pending" | "ready" | "pending_verification";
17901
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17899
17902
  verification_method?: "txt" | undefined;
17900
17903
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17901
17904
  domain_metadata?: {
@@ -17942,7 +17945,7 @@ declare function init(config: AuthHeroConfig): {
17942
17945
  type: "auth0_managed_certs" | "self_managed_certs";
17943
17946
  custom_domain_id: string;
17944
17947
  primary: boolean;
17945
- status: "disabled" | "pending" | "ready" | "pending_verification";
17948
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17946
17949
  verification_method?: "txt" | undefined;
17947
17950
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17948
17951
  domain_metadata?: {
@@ -17988,7 +17991,7 @@ declare function init(config: AuthHeroConfig): {
17988
17991
  type: "auth0_managed_certs" | "self_managed_certs";
17989
17992
  custom_domain_id: string;
17990
17993
  primary: boolean;
17991
- status: "disabled" | "pending" | "ready" | "pending_verification";
17994
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17992
17995
  verification_method?: "txt" | undefined;
17993
17996
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17994
17997
  domain_metadata?: {
@@ -18029,7 +18032,7 @@ declare function init(config: AuthHeroConfig): {
18029
18032
  type: "auth0_managed_certs" | "self_managed_certs";
18030
18033
  custom_domain_id: string;
18031
18034
  primary: boolean;
18032
- status: "disabled" | "pending" | "ready" | "pending_verification";
18035
+ status: "pending" | "ready" | "disabled" | "pending_verification";
18033
18036
  verification_method?: "txt" | undefined;
18034
18037
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
18035
18038
  domain_metadata?: {
@@ -18128,7 +18131,7 @@ declare function init(config: AuthHeroConfig): {
18128
18131
  background_color: string;
18129
18132
  background_image_url: string;
18130
18133
  page_layout: "center" | "left" | "right";
18131
- logo_placement?: "none" | "widget" | "chip" | undefined;
18134
+ logo_placement?: "widget" | "chip" | "none" | undefined;
18132
18135
  };
18133
18136
  widget: {
18134
18137
  header_text_alignment: "center" | "left" | "right";
@@ -18218,7 +18221,7 @@ declare function init(config: AuthHeroConfig): {
18218
18221
  background_color: string;
18219
18222
  background_image_url: string;
18220
18223
  page_layout: "center" | "left" | "right";
18221
- logo_placement?: "none" | "widget" | "chip" | undefined;
18224
+ logo_placement?: "widget" | "chip" | "none" | undefined;
18222
18225
  };
18223
18226
  widget: {
18224
18227
  header_text_alignment: "center" | "left" | "right";
@@ -18297,7 +18300,7 @@ declare function init(config: AuthHeroConfig): {
18297
18300
  background_color: string;
18298
18301
  background_image_url: string;
18299
18302
  page_layout: "center" | "left" | "right";
18300
- logo_placement?: "none" | "widget" | "chip" | undefined;
18303
+ logo_placement?: "widget" | "chip" | "none" | undefined;
18301
18304
  };
18302
18305
  widget: {
18303
18306
  header_text_alignment: "center" | "left" | "right";
@@ -18459,7 +18462,7 @@ declare function init(config: AuthHeroConfig): {
18459
18462
  } & {
18460
18463
  json: {
18461
18464
  body?: string | undefined;
18462
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
18465
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
18463
18466
  branding?: {
18464
18467
  colors?: {
18465
18468
  primary: string;
@@ -18545,7 +18548,7 @@ declare function init(config: AuthHeroConfig): {
18545
18548
  background_color: string;
18546
18549
  background_image_url: string;
18547
18550
  page_layout: "center" | "left" | "right";
18548
- logo_placement?: "none" | "widget" | "chip" | undefined;
18551
+ logo_placement?: "widget" | "chip" | "none" | undefined;
18549
18552
  } | undefined;
18550
18553
  widget?: {
18551
18554
  header_text_alignment: "center" | "left" | "right";
@@ -19721,7 +19724,7 @@ declare function init(config: AuthHeroConfig): {
19721
19724
  scope?: string | undefined;
19722
19725
  grant_types?: string[] | undefined;
19723
19726
  response_types?: string[] | undefined;
19724
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
19727
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
19725
19728
  jwks_uri?: string | undefined;
19726
19729
  jwks?: Record<string, unknown> | undefined;
19727
19730
  software_id?: string | undefined;
@@ -19810,7 +19813,7 @@ declare function init(config: AuthHeroConfig): {
19810
19813
  scope?: string | undefined;
19811
19814
  grant_types?: string[] | undefined;
19812
19815
  response_types?: string[] | undefined;
19813
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
19816
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
19814
19817
  jwks_uri?: string | undefined;
19815
19818
  jwks?: Record<string, unknown> | undefined;
19816
19819
  software_id?: string | undefined;
@@ -20156,17 +20159,17 @@ declare function init(config: AuthHeroConfig): {
20156
20159
  email: string;
20157
20160
  send: "code" | "link";
20158
20161
  authParams: {
20159
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
20160
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
20161
- scope?: string | undefined;
20162
- username?: string | undefined;
20162
+ state?: string | undefined;
20163
20163
  audience?: string | undefined;
20164
- nonce?: string | undefined;
20164
+ username?: string | undefined;
20165
+ scope?: string | undefined;
20165
20166
  organization?: string | undefined;
20167
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
20168
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
20166
20169
  redirect_uri?: string | undefined;
20167
- state?: string | undefined;
20168
- act_as?: string | undefined;
20169
20170
  prompt?: string | undefined;
20171
+ act_as?: string | undefined;
20172
+ nonce?: string | undefined;
20170
20173
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
20171
20174
  code_challenge?: string | undefined;
20172
20175
  ui_locales?: string | undefined;
@@ -20192,17 +20195,17 @@ declare function init(config: AuthHeroConfig): {
20192
20195
  phone_number: string;
20193
20196
  send: "code" | "link";
20194
20197
  authParams: {
20195
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
20196
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
20197
- scope?: string | undefined;
20198
- username?: string | undefined;
20198
+ state?: string | undefined;
20199
20199
  audience?: string | undefined;
20200
- nonce?: string | undefined;
20200
+ username?: string | undefined;
20201
+ scope?: string | undefined;
20201
20202
  organization?: string | undefined;
20203
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
20204
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
20202
20205
  redirect_uri?: string | undefined;
20203
- state?: string | undefined;
20204
- act_as?: string | undefined;
20205
20206
  prompt?: string | undefined;
20207
+ act_as?: string | undefined;
20208
+ nonce?: string | undefined;
20206
20209
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
20207
20210
  code_challenge?: string | undefined;
20208
20211
  ui_locales?: string | undefined;
@@ -20434,7 +20437,7 @@ declare function init(config: AuthHeroConfig): {
20434
20437
  client_id: string;
20435
20438
  username: string;
20436
20439
  otp: string;
20437
- realm: "email" | "sms";
20440
+ realm: "sms" | "email";
20438
20441
  scope?: string | undefined;
20439
20442
  audience?: string | undefined;
20440
20443
  } | {
@@ -20483,7 +20486,7 @@ declare function init(config: AuthHeroConfig): {
20483
20486
  client_id: string;
20484
20487
  username: string;
20485
20488
  otp: string;
20486
- realm: "email" | "sms";
20489
+ realm: "sms" | "email";
20487
20490
  scope?: string | undefined;
20488
20491
  audience?: string | undefined;
20489
20492
  } | {
@@ -20537,7 +20540,7 @@ declare function init(config: AuthHeroConfig): {
20537
20540
  client_id: string;
20538
20541
  username: string;
20539
20542
  otp: string;
20540
- realm: "email" | "sms";
20543
+ realm: "sms" | "email";
20541
20544
  scope?: string | undefined;
20542
20545
  audience?: string | undefined;
20543
20546
  } | {
@@ -20586,7 +20589,7 @@ declare function init(config: AuthHeroConfig): {
20586
20589
  client_id: string;
20587
20590
  username: string;
20588
20591
  otp: string;
20589
- realm: "email" | "sms";
20592
+ realm: "sms" | "email";
20590
20593
  scope?: string | undefined;
20591
20594
  audience?: string | undefined;
20592
20595
  } | {
@@ -20648,7 +20651,7 @@ declare function init(config: AuthHeroConfig): {
20648
20651
  client_id: string;
20649
20652
  username: string;
20650
20653
  otp: string;
20651
- realm: "email" | "sms";
20654
+ realm: "sms" | "email";
20652
20655
  scope?: string | undefined;
20653
20656
  audience?: string | undefined;
20654
20657
  } | {
@@ -20697,7 +20700,7 @@ declare function init(config: AuthHeroConfig): {
20697
20700
  client_id: string;
20698
20701
  username: string;
20699
20702
  otp: string;
20700
- realm: "email" | "sms";
20703
+ realm: "sms" | "email";
20701
20704
  scope?: string | undefined;
20702
20705
  audience?: string | undefined;
20703
20706
  } | {
@@ -20754,7 +20757,7 @@ declare function init(config: AuthHeroConfig): {
20754
20757
  client_id: string;
20755
20758
  username: string;
20756
20759
  otp: string;
20757
- realm: "email" | "sms";
20760
+ realm: "sms" | "email";
20758
20761
  scope?: string | undefined;
20759
20762
  audience?: string | undefined;
20760
20763
  } | {
@@ -20803,7 +20806,7 @@ declare function init(config: AuthHeroConfig): {
20803
20806
  client_id: string;
20804
20807
  username: string;
20805
20808
  otp: string;
20806
- realm: "email" | "sms";
20809
+ realm: "sms" | "email";
20807
20810
  scope?: string | undefined;
20808
20811
  audience?: string | undefined;
20809
20812
  } | {
@@ -20860,7 +20863,7 @@ declare function init(config: AuthHeroConfig): {
20860
20863
  client_id: string;
20861
20864
  username: string;
20862
20865
  otp: string;
20863
- realm: "email" | "sms";
20866
+ realm: "sms" | "email";
20864
20867
  scope?: string | undefined;
20865
20868
  audience?: string | undefined;
20866
20869
  } | {
@@ -20909,7 +20912,7 @@ declare function init(config: AuthHeroConfig): {
20909
20912
  client_id: string;
20910
20913
  username: string;
20911
20914
  otp: string;
20912
- realm: "email" | "sms";
20915
+ realm: "sms" | "email";
20913
20916
  scope?: string | undefined;
20914
20917
  audience?: string | undefined;
20915
20918
  } | {
@@ -20940,7 +20943,7 @@ declare function init(config: AuthHeroConfig): {
20940
20943
  output: {
20941
20944
  keys: {
20942
20945
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
20943
- kty: "RSA" | "EC" | "oct";
20946
+ kty: "EC" | "RSA" | "oct";
20944
20947
  kid?: string | undefined;
20945
20948
  use?: "sig" | "enc" | undefined;
20946
20949
  n?: string | undefined;
@@ -22135,7 +22138,7 @@ declare function init(config: AuthHeroConfig): {
22135
22138
  $get: {
22136
22139
  input: {
22137
22140
  param: {
22138
- screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22141
+ screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "account" | "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";
22139
22142
  };
22140
22143
  } & {
22141
22144
  query: {
@@ -22151,7 +22154,7 @@ declare function init(config: AuthHeroConfig): {
22151
22154
  } | {
22152
22155
  input: {
22153
22156
  param: {
22154
- screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22157
+ screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "account" | "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";
22155
22158
  };
22156
22159
  } & {
22157
22160
  query: {
@@ -22167,7 +22170,7 @@ declare function init(config: AuthHeroConfig): {
22167
22170
  } | {
22168
22171
  input: {
22169
22172
  param: {
22170
- screen: "impersonate" | "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22173
+ screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "account" | "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";
22171
22174
  };
22172
22175
  } & {
22173
22176
  query: {
@@ -22187,7 +22190,7 @@ declare function init(config: AuthHeroConfig): {
22187
22190
  $post: {
22188
22191
  input: {
22189
22192
  param: {
22190
- screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22193
+ screen: "login" | "signup" | "impersonate" | "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";
22191
22194
  };
22192
22195
  } & {
22193
22196
  query: {
@@ -22205,7 +22208,7 @@ declare function init(config: AuthHeroConfig): {
22205
22208
  } | {
22206
22209
  input: {
22207
22210
  param: {
22208
- screen: "impersonate" | "signup" | "login" | "reset-password" | "consent" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22211
+ screen: "login" | "signup" | "impersonate" | "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";
22209
22212
  };
22210
22213
  } & {
22211
22214
  query: {