authhero 9.11.0 → 9.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) 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 +292 -160
  4. package/dist/authhero.d.ts +121 -96
  5. package/dist/authhero.mjs +81495 -89257
  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 +19 -3
  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 +92 -92
  19. package/dist/types/routes/auth-api/index.d.ts +16 -16
  20. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  21. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  22. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  23. package/dist/types/routes/management-api/branding.d.ts +1 -1
  24. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  25. package/dist/types/routes/management-api/clients.d.ts +8 -8
  26. package/dist/types/routes/management-api/connections.d.ts +1 -1
  27. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  28. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  29. package/dist/types/routes/management-api/failed-events.d.ts +2 -2
  30. package/dist/types/routes/management-api/forms.d.ts +126 -126
  31. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  32. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  33. package/dist/types/routes/management-api/index.d.ts +62 -62
  34. package/dist/types/routes/management-api/keys.d.ts +16 -16
  35. package/dist/types/routes/management-api/logs.d.ts +4 -4
  36. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  37. package/dist/types/routes/management-api/organizations.d.ts +4 -4
  38. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  39. package/dist/types/routes/management-api/roles.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 +21 -21
  42. package/dist/types/routes/universal-login/common.d.ts +6 -6
  43. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  44. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  45. package/dist/types/routes/universal-login/index.d.ts +2 -2
  46. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  47. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  48. package/dist/types/routes/universal-login/u2-widget-page.d.ts +13 -42
  49. package/dist/types/routes/universal-login/universal-login-template.d.ts +1 -1
  50. package/dist/types/types/AuthHeroConfig.d.ts +21 -0
  51. package/dist/types/types/Bindings.d.ts +1 -0
  52. package/package.json +7 -7
@@ -1916,6 +1916,27 @@ interface AuthHeroConfig {
1916
1916
  * Defaults to Auth0's limit of 2; further submissions get a 429.
1917
1917
  */
1918
1918
  usersImportMaxConcurrentJobs?: number;
1919
+ /**
1920
+ * Let hooks write the `azp` claim, which the authorization server otherwise
1921
+ * owns. Defaults to `false`, and should stay that way in a new deployment.
1922
+ *
1923
+ * `azp` is reserved because `middlewares/authentication.ts` reads it as the
1924
+ * calling client's id, so a hook-supplied value lands in the request context
1925
+ * where a registered client id is expected.
1926
+ *
1927
+ * The flag exists because reserving the name is not a no-op for a deployment
1928
+ * that was already using it: the mint never emits `azp` itself, so a hook
1929
+ * was the only thing writing it, and reserving it deletes the claim from
1930
+ * every token rather than restoring a server-computed value. Turning this on
1931
+ * keeps those tokens intact while the services reading `azp` are moved onto
1932
+ * a claim the hook owns.
1933
+ *
1934
+ * **Transitional.** Enable it only where the hooks writing `azp` are
1935
+ * first-party code, and turn it off once the migration is done.
1936
+ *
1937
+ * @default false
1938
+ */
1939
+ unsafeAllowAzpCustomClaim?: boolean;
1919
1940
  /**
1920
1941
  * Optional powered-by logo to display at the bottom left of the login widget.
1921
1942
  * This is only configurable in code, not stored in the database.
@@ -2185,6 +2206,7 @@ type Bindings = {
2185
2206
  tenantOperationExecutor?: TenantOperationExecutorBinding;
2186
2207
  usersImportMaxBytes?: number;
2187
2208
  usersImportMaxConcurrentJobs?: number;
2209
+ unsafeAllowAzpCustomClaim?: boolean;
2188
2210
  outbox?: OutboxConfig;
2189
2211
  userLinkingMode?: UserLinkingModeOption;
2190
2212
  usernamePasswordProvider?: UsernamePasswordProviderResolver;
@@ -2863,12 +2885,15 @@ declare function cleanupCodes(codes: CodesAdapter, params?: CodesCleanupParams):
2863
2885
 
2864
2886
  interface ActionExecutionsCleanupParams {
2865
2887
  /**
2866
- * 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").
2867
2890
  *
2868
2891
  * Unlike `codes`, these rows have no expiry — they are diagnostic history,
2869
2892
  * referenced from logs when debugging an action. The window is a genuine
2870
2893
  * retention policy: long enough to investigate a report that arrives late,
2871
- * 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.
2872
2897
  */
2873
2898
  retentionDays?: number;
2874
2899
  }
@@ -2888,7 +2913,7 @@ interface ActionExecutionsCleanupParams {
2888
2913
  * // Cloudflare Workers scheduled handler
2889
2914
  * async scheduled(_event, env) {
2890
2915
  * await cleanupActionExecutions(dataAdapter.actionExecutions, {
2891
- * retentionDays: 30,
2916
+ * retentionDays: 10,
2892
2917
  * });
2893
2918
  * }
2894
2919
  * ```
@@ -3254,7 +3279,7 @@ interface RunRetentionConfig {
3254
3279
  codesRetentionDays?: number;
3255
3280
  /** Days to keep processed/dead-lettered outbox events. Default 7. */
3256
3281
  outboxRetentionDays?: number;
3257
- /** Days of action execution history to keep. Default 30. */
3282
+ /** Days of action execution history to keep. Default 10, matching Auth0. */
3258
3283
  actionExecutionsRetentionDays?: number;
3259
3284
  /**
3260
3285
  * Hours to keep finished bulk user-import jobs and their staged rows.
@@ -4887,7 +4912,7 @@ declare function init(config: AuthHeroConfig): {
4887
4912
  };
4888
4913
  };
4889
4914
  output: {
4890
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
4915
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
4891
4916
  enabled: boolean;
4892
4917
  trial_expired?: boolean | undefined;
4893
4918
  }[];
@@ -5042,7 +5067,7 @@ declare function init(config: AuthHeroConfig): {
5042
5067
  $get: {
5043
5068
  input: {
5044
5069
  param: {
5045
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
5070
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
5046
5071
  };
5047
5072
  } & {
5048
5073
  header: {
@@ -5050,7 +5075,7 @@ declare function init(config: AuthHeroConfig): {
5050
5075
  };
5051
5076
  };
5052
5077
  output: {
5053
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
5078
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
5054
5079
  enabled: boolean;
5055
5080
  trial_expired?: boolean | undefined;
5056
5081
  };
@@ -5063,7 +5088,7 @@ declare function init(config: AuthHeroConfig): {
5063
5088
  $put: {
5064
5089
  input: {
5065
5090
  param: {
5066
- factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
5091
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
5067
5092
  };
5068
5093
  } & {
5069
5094
  header: {
@@ -5075,7 +5100,7 @@ declare function init(config: AuthHeroConfig): {
5075
5100
  };
5076
5101
  };
5077
5102
  output: {
5078
- name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
5103
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
5079
5104
  enabled: boolean;
5080
5105
  trial_expired?: boolean | undefined;
5081
5106
  };
@@ -5847,19 +5872,19 @@ declare function init(config: AuthHeroConfig): {
5847
5872
  } & {
5848
5873
  json: {
5849
5874
  client_id: string;
5850
- inviter: {
5851
- name?: string | undefined;
5852
- };
5853
5875
  invitee: {
5854
5876
  email?: string | undefined;
5855
5877
  };
5878
+ inviter: {
5879
+ name?: string | undefined;
5880
+ };
5856
5881
  id?: string | undefined;
5857
5882
  app_metadata?: Record<string, any> | undefined;
5858
5883
  user_metadata?: Record<string, any> | undefined;
5859
5884
  connection_id?: string | undefined;
5860
5885
  roles?: string[] | undefined;
5861
- ttl_sec?: number | undefined;
5862
5886
  send_invitation_email?: boolean | undefined;
5887
+ ttl_sec?: number | undefined;
5863
5888
  };
5864
5889
  };
5865
5890
  output: {
@@ -11686,7 +11711,7 @@ declare function init(config: AuthHeroConfig): {
11686
11711
  };
11687
11712
  };
11688
11713
  output: {
11689
- prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11714
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11690
11715
  language: string;
11691
11716
  }[];
11692
11717
  outputFormat: "json";
@@ -11724,7 +11749,7 @@ declare function init(config: AuthHeroConfig): {
11724
11749
  $get: {
11725
11750
  input: {
11726
11751
  param: {
11727
- prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11752
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11728
11753
  language: string;
11729
11754
  };
11730
11755
  } & {
@@ -11746,7 +11771,7 @@ declare function init(config: AuthHeroConfig): {
11746
11771
  $put: {
11747
11772
  input: {
11748
11773
  param: {
11749
- prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11774
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11750
11775
  language: string;
11751
11776
  };
11752
11777
  } & {
@@ -11770,7 +11795,7 @@ declare function init(config: AuthHeroConfig): {
11770
11795
  $delete: {
11771
11796
  input: {
11772
11797
  param: {
11773
- prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
11798
+ prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
11774
11799
  language: string;
11775
11800
  };
11776
11801
  } & {
@@ -13380,9 +13405,9 @@ declare function init(config: AuthHeroConfig): {
13380
13405
  tenant_id: string;
13381
13406
  event_type: string;
13382
13407
  log_type: string;
13383
- category: "system" | "user_action" | "admin_action" | "api";
13408
+ category: "user_action" | "admin_action" | "system" | "api";
13384
13409
  actor: {
13385
- type: "user" | "system" | "client_credentials" | "admin" | "api_key";
13410
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
13386
13411
  id?: string | undefined;
13387
13412
  email?: string | undefined;
13388
13413
  org_id?: string | undefined;
@@ -13713,7 +13738,7 @@ declare function init(config: AuthHeroConfig): {
13713
13738
  created_at: string;
13714
13739
  updated_at: string;
13715
13740
  name: string;
13716
- provider: "auth0" | "cognito" | "okta" | "oidc";
13741
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13717
13742
  connection: string;
13718
13743
  enabled: boolean;
13719
13744
  credentials: {
@@ -13745,7 +13770,7 @@ declare function init(config: AuthHeroConfig): {
13745
13770
  created_at: string;
13746
13771
  updated_at: string;
13747
13772
  name: string;
13748
- provider: "auth0" | "cognito" | "okta" | "oidc";
13773
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13749
13774
  connection: string;
13750
13775
  enabled: boolean;
13751
13776
  credentials: {
@@ -13771,7 +13796,7 @@ declare function init(config: AuthHeroConfig): {
13771
13796
  } & {
13772
13797
  json: {
13773
13798
  name: string;
13774
- provider: "auth0" | "cognito" | "okta" | "oidc";
13799
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13775
13800
  connection: string;
13776
13801
  credentials: {
13777
13802
  domain: string;
@@ -13788,7 +13813,7 @@ declare function init(config: AuthHeroConfig): {
13788
13813
  created_at: string;
13789
13814
  updated_at: string;
13790
13815
  name: string;
13791
- provider: "auth0" | "cognito" | "okta" | "oidc";
13816
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13792
13817
  connection: string;
13793
13818
  enabled: boolean;
13794
13819
  credentials: {
@@ -13819,7 +13844,7 @@ declare function init(config: AuthHeroConfig): {
13819
13844
  json: {
13820
13845
  id?: string | undefined;
13821
13846
  name?: string | undefined;
13822
- provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
13847
+ provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
13823
13848
  connection?: string | undefined;
13824
13849
  enabled?: boolean | undefined;
13825
13850
  credentials?: {
@@ -13835,7 +13860,7 @@ declare function init(config: AuthHeroConfig): {
13835
13860
  created_at: string;
13836
13861
  updated_at: string;
13837
13862
  name: string;
13838
- provider: "auth0" | "cognito" | "okta" | "oidc";
13863
+ provider: "auth0" | "oidc" | "okta" | "cognito";
13839
13864
  connection: string;
13840
13865
  enabled: boolean;
13841
13866
  credentials: {
@@ -14053,7 +14078,7 @@ declare function init(config: AuthHeroConfig): {
14053
14078
  };
14054
14079
  };
14055
14080
  output: {
14056
- type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14081
+ type: "fn" | "sapi" | "i" | "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";
14057
14082
  date: string;
14058
14083
  isMobile: boolean;
14059
14084
  log_id: string;
@@ -14092,7 +14117,7 @@ declare function init(config: AuthHeroConfig): {
14092
14117
  limit: number;
14093
14118
  length: number;
14094
14119
  logs: {
14095
- type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14120
+ type: "fn" | "sapi" | "i" | "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";
14096
14121
  date: string;
14097
14122
  isMobile: boolean;
14098
14123
  log_id: string;
@@ -14131,7 +14156,7 @@ declare function init(config: AuthHeroConfig): {
14131
14156
  next?: string | undefined;
14132
14157
  } | {
14133
14158
  logs: {
14134
- type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14159
+ type: "fn" | "sapi" | "i" | "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";
14135
14160
  date: string;
14136
14161
  isMobile: boolean;
14137
14162
  log_id: string;
@@ -14185,7 +14210,7 @@ declare function init(config: AuthHeroConfig): {
14185
14210
  };
14186
14211
  };
14187
14212
  output: {
14188
- type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14213
+ type: "fn" | "sapi" | "i" | "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";
14189
14214
  date: string;
14190
14215
  isMobile: boolean;
14191
14216
  log_id: string;
@@ -14596,7 +14621,7 @@ declare function init(config: AuthHeroConfig): {
14596
14621
  addons?: {
14597
14622
  [x: string]: any;
14598
14623
  } | undefined;
14599
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14624
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14600
14625
  client_metadata?: {
14601
14626
  [x: string]: string;
14602
14627
  } | undefined;
@@ -14698,7 +14723,7 @@ declare function init(config: AuthHeroConfig): {
14698
14723
  addons?: {
14699
14724
  [x: string]: any;
14700
14725
  } | undefined;
14701
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14726
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14702
14727
  client_metadata?: {
14703
14728
  [x: string]: string;
14704
14729
  } | undefined;
@@ -14800,7 +14825,7 @@ declare function init(config: AuthHeroConfig): {
14800
14825
  addons?: {
14801
14826
  [x: string]: any;
14802
14827
  } | undefined;
14803
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14828
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14804
14829
  client_metadata?: {
14805
14830
  [x: string]: string;
14806
14831
  } | undefined;
@@ -14917,7 +14942,7 @@ declare function init(config: AuthHeroConfig): {
14917
14942
  addons?: {
14918
14943
  [x: string]: any;
14919
14944
  } | undefined;
14920
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
14945
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14921
14946
  client_metadata?: {
14922
14947
  [x: string]: string;
14923
14948
  } | undefined;
@@ -15035,7 +15060,7 @@ declare function init(config: AuthHeroConfig): {
15035
15060
  custom_login_page_preview?: string | undefined;
15036
15061
  form_template?: string | undefined;
15037
15062
  addons?: Record<string, any> | undefined;
15038
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15063
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
15039
15064
  client_metadata?: Record<string, string> | undefined;
15040
15065
  hide_sign_up_disabled_error?: boolean | undefined;
15041
15066
  mobile?: Record<string, any> | undefined;
@@ -15121,7 +15146,7 @@ declare function init(config: AuthHeroConfig): {
15121
15146
  addons?: {
15122
15147
  [x: string]: any;
15123
15148
  } | undefined;
15124
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15149
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
15125
15150
  client_metadata?: {
15126
15151
  [x: string]: string;
15127
15152
  } | undefined;
@@ -15218,7 +15243,7 @@ declare function init(config: AuthHeroConfig): {
15218
15243
  custom_login_page_preview?: string | undefined;
15219
15244
  form_template?: string | undefined;
15220
15245
  addons?: Record<string, any> | undefined;
15221
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15246
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
15222
15247
  client_metadata?: Record<string, string> | undefined;
15223
15248
  hide_sign_up_disabled_error?: boolean | undefined;
15224
15249
  mobile?: Record<string, any> | undefined;
@@ -15304,7 +15329,7 @@ declare function init(config: AuthHeroConfig): {
15304
15329
  addons?: {
15305
15330
  [x: string]: any;
15306
15331
  } | undefined;
15307
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
15332
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
15308
15333
  client_metadata?: {
15309
15334
  [x: string]: string;
15310
15335
  } | undefined;
@@ -15771,13 +15796,13 @@ declare function init(config: AuthHeroConfig): {
15771
15796
  thumbprint: string;
15772
15797
  connection?: string | undefined;
15773
15798
  tenant_id?: string | undefined;
15774
- next?: boolean | undefined;
15775
- revoked_at?: string | undefined;
15776
15799
  current?: boolean | undefined;
15800
+ next?: boolean | undefined;
15777
15801
  previous?: boolean | undefined;
15778
15802
  current_since?: string | undefined;
15779
15803
  current_until?: string | undefined;
15780
15804
  revoked?: boolean | undefined;
15805
+ revoked_at?: string | undefined;
15781
15806
  expires_at?: string | undefined;
15782
15807
  expired?: boolean | undefined;
15783
15808
  inherited?: boolean | undefined;
@@ -15810,13 +15835,13 @@ declare function init(config: AuthHeroConfig): {
15810
15835
  thumbprint: string;
15811
15836
  connection?: string | undefined;
15812
15837
  tenant_id?: string | undefined;
15813
- next?: boolean | undefined;
15814
- revoked_at?: string | undefined;
15815
15838
  current?: boolean | undefined;
15839
+ next?: boolean | undefined;
15816
15840
  previous?: boolean | undefined;
15817
15841
  current_since?: string | undefined;
15818
15842
  current_until?: string | undefined;
15819
15843
  revoked?: boolean | undefined;
15844
+ revoked_at?: string | undefined;
15820
15845
  expires_at?: string | undefined;
15821
15846
  expired?: boolean | undefined;
15822
15847
  inherited?: boolean | undefined;
@@ -15848,13 +15873,13 @@ declare function init(config: AuthHeroConfig): {
15848
15873
  thumbprint: string;
15849
15874
  connection?: string | undefined;
15850
15875
  tenant_id?: string | undefined;
15851
- next?: boolean | undefined;
15852
- revoked_at?: string | undefined;
15853
15876
  current?: boolean | undefined;
15877
+ next?: boolean | undefined;
15854
15878
  previous?: boolean | undefined;
15855
15879
  current_since?: string | undefined;
15856
15880
  current_until?: string | undefined;
15857
15881
  revoked?: boolean | undefined;
15882
+ revoked_at?: string | undefined;
15858
15883
  expires_at?: string | undefined;
15859
15884
  expired?: boolean | undefined;
15860
15885
  inherited?: boolean | undefined;
@@ -15888,13 +15913,13 @@ declare function init(config: AuthHeroConfig): {
15888
15913
  thumbprint: string;
15889
15914
  connection?: string | undefined;
15890
15915
  tenant_id?: string | undefined;
15891
- next?: boolean | undefined;
15892
- revoked_at?: string | undefined;
15893
15916
  current?: boolean | undefined;
15917
+ next?: boolean | undefined;
15894
15918
  previous?: boolean | undefined;
15895
15919
  current_since?: string | undefined;
15896
15920
  current_until?: string | undefined;
15897
15921
  revoked?: boolean | undefined;
15922
+ revoked_at?: string | undefined;
15898
15923
  expires_at?: string | undefined;
15899
15924
  expired?: boolean | undefined;
15900
15925
  inherited?: boolean | undefined;
@@ -16757,18 +16782,21 @@ declare function init(config: AuthHeroConfig): {
16757
16782
  audience: string;
16758
16783
  scopes: string;
16759
16784
  }[];
16760
- revoked_at?: string | undefined;
16761
16785
  expires_at?: string | undefined;
16762
- idle_expires_at?: string | undefined;
16763
16786
  session_id?: string | undefined;
16764
- organization?: string | undefined;
16765
16787
  auth_connection?: string | undefined;
16766
16788
  auth_strategy?: {
16767
16789
  strategy: string;
16768
16790
  strategy_type: string;
16769
16791
  } | undefined;
16792
+ organization?: string | undefined;
16793
+ revoked_at?: string | undefined;
16794
+ idle_expires_at?: string | undefined;
16770
16795
  last_exchanged_at?: string | undefined;
16771
16796
  }[] | {
16797
+ start: number;
16798
+ limit: number;
16799
+ length: number;
16772
16800
  tokens: {
16773
16801
  id: string;
16774
16802
  user_id: string;
@@ -16788,23 +16816,21 @@ declare function init(config: AuthHeroConfig): {
16788
16816
  audience: string;
16789
16817
  scopes: string;
16790
16818
  }[];
16791
- revoked_at?: string | undefined;
16792
16819
  expires_at?: string | undefined;
16793
- idle_expires_at?: string | undefined;
16794
16820
  session_id?: string | undefined;
16795
- organization?: string | undefined;
16796
16821
  auth_connection?: string | undefined;
16797
16822
  auth_strategy?: {
16798
16823
  strategy: string;
16799
16824
  strategy_type: string;
16800
16825
  } | undefined;
16826
+ organization?: string | undefined;
16827
+ revoked_at?: string | undefined;
16828
+ idle_expires_at?: string | undefined;
16801
16829
  last_exchanged_at?: string | undefined;
16802
16830
  }[];
16831
+ total?: number | undefined;
16803
16832
  next?: string | undefined;
16804
16833
  } | {
16805
- start: number;
16806
- limit: number;
16807
- length: number;
16808
16834
  tokens: {
16809
16835
  id: string;
16810
16836
  user_id: string;
@@ -16824,19 +16850,18 @@ declare function init(config: AuthHeroConfig): {
16824
16850
  audience: string;
16825
16851
  scopes: string;
16826
16852
  }[];
16827
- revoked_at?: string | undefined;
16828
16853
  expires_at?: string | undefined;
16829
- idle_expires_at?: string | undefined;
16830
16854
  session_id?: string | undefined;
16831
- organization?: string | undefined;
16832
16855
  auth_connection?: string | undefined;
16833
16856
  auth_strategy?: {
16834
16857
  strategy: string;
16835
16858
  strategy_type: string;
16836
16859
  } | undefined;
16860
+ organization?: string | undefined;
16861
+ revoked_at?: string | undefined;
16862
+ idle_expires_at?: string | undefined;
16837
16863
  last_exchanged_at?: string | undefined;
16838
16864
  }[];
16839
- total?: number | undefined;
16840
16865
  next?: string | undefined;
16841
16866
  };
16842
16867
  outputFormat: "json";
@@ -16885,7 +16910,7 @@ declare function init(config: AuthHeroConfig): {
16885
16910
  };
16886
16911
  };
16887
16912
  output: {
16888
- type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
16913
+ type: "fn" | "sapi" | "i" | "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";
16889
16914
  date: string;
16890
16915
  isMobile: boolean;
16891
16916
  log_id: string;
@@ -16924,7 +16949,7 @@ declare function init(config: AuthHeroConfig): {
16924
16949
  limit: number;
16925
16950
  length: number;
16926
16951
  logs: {
16927
- type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
16952
+ type: "fn" | "sapi" | "i" | "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";
16928
16953
  date: string;
16929
16954
  isMobile: boolean;
16930
16955
  log_id: string;
@@ -17768,7 +17793,7 @@ declare function init(config: AuthHeroConfig): {
17768
17793
  type: "auth0_managed_certs" | "self_managed_certs";
17769
17794
  custom_domain_id: string;
17770
17795
  primary: boolean;
17771
- status: "pending" | "disabled" | "ready" | "pending_verification";
17796
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17772
17797
  verification_method?: "txt" | undefined;
17773
17798
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17774
17799
  domain_metadata?: {
@@ -17809,7 +17834,7 @@ declare function init(config: AuthHeroConfig): {
17809
17834
  type: "auth0_managed_certs" | "self_managed_certs";
17810
17835
  custom_domain_id: string;
17811
17836
  primary: boolean;
17812
- status: "pending" | "disabled" | "ready" | "pending_verification";
17837
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17813
17838
  verification_method?: "txt" | undefined;
17814
17839
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17815
17840
  domain_metadata?: {
@@ -17873,7 +17898,7 @@ declare function init(config: AuthHeroConfig): {
17873
17898
  type: "auth0_managed_certs" | "self_managed_certs";
17874
17899
  custom_domain_id: string;
17875
17900
  primary: boolean;
17876
- status: "pending" | "disabled" | "ready" | "pending_verification";
17901
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17877
17902
  verification_method?: "txt" | undefined;
17878
17903
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17879
17904
  domain_metadata?: {
@@ -17920,7 +17945,7 @@ declare function init(config: AuthHeroConfig): {
17920
17945
  type: "auth0_managed_certs" | "self_managed_certs";
17921
17946
  custom_domain_id: string;
17922
17947
  primary: boolean;
17923
- status: "pending" | "disabled" | "ready" | "pending_verification";
17948
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17924
17949
  verification_method?: "txt" | undefined;
17925
17950
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17926
17951
  domain_metadata?: {
@@ -17966,7 +17991,7 @@ declare function init(config: AuthHeroConfig): {
17966
17991
  type: "auth0_managed_certs" | "self_managed_certs";
17967
17992
  custom_domain_id: string;
17968
17993
  primary: boolean;
17969
- status: "pending" | "disabled" | "ready" | "pending_verification";
17994
+ status: "pending" | "ready" | "disabled" | "pending_verification";
17970
17995
  verification_method?: "txt" | undefined;
17971
17996
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
17972
17997
  domain_metadata?: {
@@ -18007,7 +18032,7 @@ declare function init(config: AuthHeroConfig): {
18007
18032
  type: "auth0_managed_certs" | "self_managed_certs";
18008
18033
  custom_domain_id: string;
18009
18034
  primary: boolean;
18010
- status: "pending" | "disabled" | "ready" | "pending_verification";
18035
+ status: "pending" | "ready" | "disabled" | "pending_verification";
18011
18036
  verification_method?: "txt" | undefined;
18012
18037
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
18013
18038
  domain_metadata?: {
@@ -19449,7 +19474,7 @@ declare function init(config: AuthHeroConfig): {
19449
19474
  message: string;
19450
19475
  };
19451
19476
  outputFormat: "json";
19452
- status: 500;
19477
+ status: 400;
19453
19478
  } | {
19454
19479
  input: {
19455
19480
  query: {
@@ -19467,7 +19492,7 @@ declare function init(config: AuthHeroConfig): {
19467
19492
  message: string;
19468
19493
  };
19469
19494
  outputFormat: "json";
19470
- status: 400;
19495
+ status: 500;
19471
19496
  };
19472
19497
  };
19473
19498
  } & {
@@ -19505,7 +19530,7 @@ declare function init(config: AuthHeroConfig): {
19505
19530
  message: string;
19506
19531
  };
19507
19532
  outputFormat: "json";
19508
- status: 500;
19533
+ status: 400;
19509
19534
  } | {
19510
19535
  input: {
19511
19536
  form: {
@@ -19523,7 +19548,7 @@ declare function init(config: AuthHeroConfig): {
19523
19548
  message: string;
19524
19549
  };
19525
19550
  outputFormat: "json";
19526
- status: 400;
19551
+ status: 500;
19527
19552
  };
19528
19553
  };
19529
19554
  }, "/login/callback"> & hono_types.MergeSchemaPath<{
@@ -19561,7 +19586,7 @@ declare function init(config: AuthHeroConfig): {
19561
19586
  message: string;
19562
19587
  };
19563
19588
  outputFormat: "json";
19564
- status: 500;
19589
+ status: 400;
19565
19590
  } | {
19566
19591
  input: {
19567
19592
  query: {
@@ -19579,7 +19604,7 @@ declare function init(config: AuthHeroConfig): {
19579
19604
  message: string;
19580
19605
  };
19581
19606
  outputFormat: "json";
19582
- status: 400;
19607
+ status: 500;
19583
19608
  };
19584
19609
  };
19585
19610
  } & {
@@ -19617,7 +19642,7 @@ declare function init(config: AuthHeroConfig): {
19617
19642
  message: string;
19618
19643
  };
19619
19644
  outputFormat: "json";
19620
- status: 500;
19645
+ status: 400;
19621
19646
  } | {
19622
19647
  input: {
19623
19648
  form: {
@@ -19635,7 +19660,7 @@ declare function init(config: AuthHeroConfig): {
19635
19660
  message: string;
19636
19661
  };
19637
19662
  outputFormat: "json";
19638
- status: 400;
19663
+ status: 500;
19639
19664
  };
19640
19665
  };
19641
19666
  }, "/callback"> & hono_types.MergeSchemaPath<{
@@ -19699,7 +19724,7 @@ declare function init(config: AuthHeroConfig): {
19699
19724
  scope?: string | undefined;
19700
19725
  grant_types?: string[] | undefined;
19701
19726
  response_types?: string[] | undefined;
19702
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
19727
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
19703
19728
  jwks_uri?: string | undefined;
19704
19729
  jwks?: Record<string, unknown> | undefined;
19705
19730
  software_id?: string | undefined;
@@ -19788,7 +19813,7 @@ declare function init(config: AuthHeroConfig): {
19788
19813
  scope?: string | undefined;
19789
19814
  grant_types?: string[] | undefined;
19790
19815
  response_types?: string[] | undefined;
19791
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
19816
+ token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
19792
19817
  jwks_uri?: string | undefined;
19793
19818
  jwks?: Record<string, unknown> | undefined;
19794
19819
  software_id?: string | undefined;
@@ -20135,18 +20160,18 @@ declare function init(config: AuthHeroConfig): {
20135
20160
  send: "code" | "link";
20136
20161
  authParams: {
20137
20162
  username?: string | undefined;
20163
+ state?: string | undefined;
20164
+ audience?: string | undefined;
20138
20165
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
20139
20166
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
20140
20167
  scope?: string | undefined;
20141
- audience?: string | undefined;
20142
20168
  organization?: string | undefined;
20143
- state?: string | undefined;
20144
20169
  redirect_uri?: string | undefined;
20145
- prompt?: string | undefined;
20146
- act_as?: string | undefined;
20147
- nonce?: string | undefined;
20148
20170
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
20149
20171
  code_challenge?: string | undefined;
20172
+ nonce?: string | undefined;
20173
+ act_as?: string | undefined;
20174
+ prompt?: string | undefined;
20150
20175
  ui_locales?: string | undefined;
20151
20176
  max_age?: number | undefined;
20152
20177
  acr_values?: string | undefined;
@@ -20171,18 +20196,18 @@ declare function init(config: AuthHeroConfig): {
20171
20196
  send: "code" | "link";
20172
20197
  authParams: {
20173
20198
  username?: string | undefined;
20199
+ state?: string | undefined;
20200
+ audience?: string | undefined;
20174
20201
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
20175
20202
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
20176
20203
  scope?: string | undefined;
20177
- audience?: string | undefined;
20178
20204
  organization?: string | undefined;
20179
- state?: string | undefined;
20180
20205
  redirect_uri?: string | undefined;
20181
- prompt?: string | undefined;
20182
- act_as?: string | undefined;
20183
- nonce?: string | undefined;
20184
20206
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
20185
20207
  code_challenge?: string | undefined;
20208
+ nonce?: string | undefined;
20209
+ act_as?: string | undefined;
20210
+ prompt?: string | undefined;
20186
20211
  ui_locales?: string | undefined;
20187
20212
  max_age?: number | undefined;
20188
20213
  acr_values?: string | undefined;
@@ -20247,7 +20272,7 @@ declare function init(config: AuthHeroConfig): {
20247
20272
  error_description?: string | undefined;
20248
20273
  };
20249
20274
  outputFormat: "json";
20250
- status: 500;
20275
+ status: 400;
20251
20276
  } | {
20252
20277
  input: {
20253
20278
  query: {
@@ -20268,7 +20293,7 @@ declare function init(config: AuthHeroConfig): {
20268
20293
  error_description?: string | undefined;
20269
20294
  };
20270
20295
  outputFormat: "json";
20271
- status: 400;
20296
+ status: 500;
20272
20297
  };
20273
20298
  };
20274
20299
  }, "/passwordless"> & hono_types.MergeSchemaPath<{
@@ -21246,7 +21271,7 @@ declare function init(config: AuthHeroConfig): {
21246
21271
  };
21247
21272
  output: {};
21248
21273
  outputFormat: string;
21249
- status: 500;
21274
+ status: 302;
21250
21275
  } | {
21251
21276
  input: {
21252
21277
  query: {
@@ -21255,7 +21280,7 @@ declare function init(config: AuthHeroConfig): {
21255
21280
  };
21256
21281
  output: {};
21257
21282
  outputFormat: string;
21258
- status: 302;
21283
+ status: 400;
21259
21284
  } | {
21260
21285
  input: {
21261
21286
  query: {
@@ -21264,7 +21289,7 @@ declare function init(config: AuthHeroConfig): {
21264
21289
  };
21265
21290
  output: {};
21266
21291
  outputFormat: string;
21267
- status: 400;
21292
+ status: 500;
21268
21293
  };
21269
21294
  };
21270
21295
  }, "/continue"> & hono_types.MergeSchemaPath<{
@@ -22113,7 +22138,7 @@ declare function init(config: AuthHeroConfig): {
22113
22138
  $get: {
22114
22139
  input: {
22115
22140
  param: {
22116
- 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";
22141
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22117
22142
  };
22118
22143
  } & {
22119
22144
  query: {
@@ -22129,7 +22154,7 @@ declare function init(config: AuthHeroConfig): {
22129
22154
  } | {
22130
22155
  input: {
22131
22156
  param: {
22132
- 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";
22157
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22133
22158
  };
22134
22159
  } & {
22135
22160
  query: {
@@ -22145,7 +22170,7 @@ declare function init(config: AuthHeroConfig): {
22145
22170
  } | {
22146
22171
  input: {
22147
22172
  param: {
22148
- 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";
22173
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22149
22174
  };
22150
22175
  } & {
22151
22176
  query: {
@@ -22165,7 +22190,7 @@ declare function init(config: AuthHeroConfig): {
22165
22190
  $post: {
22166
22191
  input: {
22167
22192
  param: {
22168
- 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";
22193
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22169
22194
  };
22170
22195
  } & {
22171
22196
  query: {
@@ -22183,7 +22208,7 @@ declare function init(config: AuthHeroConfig): {
22183
22208
  } | {
22184
22209
  input: {
22185
22210
  param: {
22186
- 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";
22211
+ screen: "signup" | "impersonate" | "consent" | "login" | "reset-password" | "enter-password" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
22187
22212
  };
22188
22213
  } & {
22189
22214
  query: {