authhero 5.14.1 → 5.16.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 (46) hide show
  1. package/dist/assets/u/js/client.js +1 -1
  2. package/dist/assets/u/widget/index.esm.js +1 -1
  3. package/dist/authhero.cjs +129 -129
  4. package/dist/authhero.d.ts +160 -109
  5. package/dist/authhero.mjs +5646 -5472
  6. package/dist/client.js +1 -1
  7. package/dist/stats.html +1 -1
  8. package/dist/tsconfig.types.tsbuildinfo +1 -1
  9. package/dist/types/adapters/createEncryptedDataAdapter.d.ts +4 -0
  10. package/dist/types/authentication-flows/passwordless.d.ts +3 -2
  11. package/dist/types/client/client-bundle.d.ts +1 -1
  12. package/dist/types/helpers/client.d.ts +1 -0
  13. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  14. package/dist/types/index.d.ts +155 -109
  15. package/dist/types/routes/auth-api/account.d.ts +2 -2
  16. package/dist/types/routes/auth-api/authorize.d.ts +12 -12
  17. package/dist/types/routes/auth-api/index.d.ts +43 -43
  18. package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
  19. package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
  20. package/dist/types/routes/auth-api/token.d.ts +21 -21
  21. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  22. package/dist/types/routes/management-api/actions.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 +8 -8
  25. package/dist/types/routes/management-api/custom-domains.d.ts +53 -7
  26. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  27. package/dist/types/routes/management-api/flows.d.ts +7 -7
  28. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  29. package/dist/types/routes/management-api/index.d.ts +94 -48
  30. package/dist/types/routes/management-api/logs.d.ts +3 -3
  31. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  32. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  33. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  34. package/dist/types/routes/management-api/tenants.d.ts +3 -0
  35. package/dist/types/routes/management-api/themes.d.ts +3 -3
  36. package/dist/types/routes/management-api/users.d.ts +2 -2
  37. package/dist/types/routes/universal-login/common.d.ts +8 -4
  38. package/dist/types/routes/universal-login/continue.d.ts +2 -2
  39. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  40. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  41. package/dist/types/routes/universal-login/impersonate.d.ts +4 -4
  42. package/dist/types/routes/universal-login/index.d.ts +8 -8
  43. package/dist/types/routes/universal-login/u2-index.d.ts +10 -10
  44. package/dist/types/routes/universal-login/u2-routes.d.ts +10 -10
  45. package/dist/types/types/IdToken.d.ts +1 -1
  46. package/package.json +5 -5
@@ -37,7 +37,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
37
37
  };
38
38
  } & {
39
39
  json: {
40
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
40
+ type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
41
41
  phone_number?: string | undefined;
42
42
  totp_secret?: string | undefined;
43
43
  credential_id?: string | undefined;
@@ -177,7 +177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
177
177
  };
178
178
  };
179
179
  output: {
180
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
180
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
181
181
  enabled: boolean;
182
182
  trial_expired?: boolean | undefined;
183
183
  }[];
@@ -332,7 +332,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
332
332
  $get: {
333
333
  input: {
334
334
  param: {
335
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
335
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
336
336
  };
337
337
  } & {
338
338
  header: {
@@ -340,7 +340,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
340
340
  };
341
341
  };
342
342
  output: {
343
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
343
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
344
344
  enabled: boolean;
345
345
  trial_expired?: boolean | undefined;
346
346
  };
@@ -353,7 +353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
353
353
  $put: {
354
354
  input: {
355
355
  param: {
356
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
356
+ factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
357
357
  };
358
358
  } & {
359
359
  header: {
@@ -365,7 +365,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
365
365
  };
366
366
  };
367
367
  output: {
368
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
368
+ name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
369
369
  enabled: boolean;
370
370
  trial_expired?: boolean | undefined;
371
371
  };
@@ -1111,9 +1111,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1111
1111
  email?: string | undefined;
1112
1112
  };
1113
1113
  id?: string | undefined;
1114
+ connection_id?: string | undefined;
1114
1115
  app_metadata?: Record<string, any> | undefined;
1115
1116
  user_metadata?: Record<string, any> | undefined;
1116
- connection_id?: string | undefined;
1117
1117
  roles?: string[] | undefined;
1118
1118
  ttl_sec?: number | undefined;
1119
1119
  send_invitation_email?: boolean | undefined;
@@ -1965,7 +1965,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1965
1965
  type: "REDIRECT";
1966
1966
  action: "REDIRECT_USER";
1967
1967
  params: {
1968
- target: "custom" | "account" | "change-email";
1968
+ target: "custom" | "change-email" | "account";
1969
1969
  custom_url?: string | undefined;
1970
1970
  };
1971
1971
  alias?: string | undefined;
@@ -2018,7 +2018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2018
2018
  type: "REDIRECT";
2019
2019
  action: "REDIRECT_USER";
2020
2020
  params: {
2021
- target: "custom" | "account" | "change-email";
2021
+ target: "custom" | "change-email" | "account";
2022
2022
  custom_url?: string | undefined;
2023
2023
  };
2024
2024
  alias?: string | undefined;
@@ -2086,7 +2086,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2086
2086
  type: "REDIRECT";
2087
2087
  action: "REDIRECT_USER";
2088
2088
  params: {
2089
- target: "custom" | "account" | "change-email";
2089
+ target: "custom" | "change-email" | "account";
2090
2090
  custom_url?: string | undefined;
2091
2091
  };
2092
2092
  alias?: string | undefined;
@@ -2167,7 +2167,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2167
2167
  type: "REDIRECT";
2168
2168
  action: "REDIRECT_USER";
2169
2169
  params: {
2170
- target: "custom" | "account" | "change-email";
2170
+ target: "custom" | "change-email" | "account";
2171
2171
  custom_url?: string | undefined;
2172
2172
  };
2173
2173
  alias?: string | undefined;
@@ -2215,7 +2215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2215
2215
  type: "REDIRECT";
2216
2216
  action: "REDIRECT_USER";
2217
2217
  params: {
2218
- target: "custom" | "account" | "change-email";
2218
+ target: "custom" | "change-email" | "account";
2219
2219
  custom_url?: string | undefined;
2220
2220
  };
2221
2221
  alias?: string | undefined;
@@ -2275,7 +2275,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2275
2275
  type: "REDIRECT";
2276
2276
  action: "REDIRECT_USER";
2277
2277
  params: {
2278
- target: "custom" | "account" | "change-email";
2278
+ target: "custom" | "change-email" | "account";
2279
2279
  custom_url?: string | undefined;
2280
2280
  };
2281
2281
  alias?: string | undefined;
@@ -2323,7 +2323,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2323
2323
  type: "REDIRECT";
2324
2324
  action: "REDIRECT_USER";
2325
2325
  params: {
2326
- target: "custom" | "account" | "change-email";
2326
+ target: "custom" | "change-email" | "account";
2327
2327
  custom_url?: string | undefined;
2328
2328
  };
2329
2329
  alias?: string | undefined;
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6601
6601
  };
6602
6602
  };
6603
6603
  output: {
6604
- prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6604
+ 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";
6605
6605
  language: string;
6606
6606
  }[];
6607
6607
  outputFormat: "json";
@@ -6639,7 +6639,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6639
6639
  $get: {
6640
6640
  input: {
6641
6641
  param: {
6642
- prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6642
+ 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";
6643
6643
  language: string;
6644
6644
  };
6645
6645
  } & {
@@ -6661,7 +6661,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6661
6661
  $put: {
6662
6662
  input: {
6663
6663
  param: {
6664
- prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6664
+ 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";
6665
6665
  language: string;
6666
6666
  };
6667
6667
  } & {
@@ -6685,7 +6685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6685
6685
  $delete: {
6686
6686
  input: {
6687
6687
  param: {
6688
- prompt: "signup" | "status" | "mfa" | "organizations" | "reset-password" | "login" | "mfa-phone" | "invitation" | "email-otp-challenge" | "mfa-login-options" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
6688
+ 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";
6689
6689
  language: string;
6690
6690
  };
6691
6691
  } & {
@@ -8126,7 +8126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8126
8126
  log_type: string;
8127
8127
  category: "user_action" | "admin_action" | "system" | "api";
8128
8128
  actor: {
8129
- type: "user" | "client_credentials" | "api_key" | "system" | "admin";
8129
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8130
8130
  id?: string | undefined;
8131
8131
  email?: string | undefined;
8132
8132
  org_id?: string | undefined;
@@ -8434,7 +8434,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8434
8434
  created_at: string;
8435
8435
  updated_at: string;
8436
8436
  name: string;
8437
- provider: "auth0" | "oidc" | "cognito" | "okta";
8437
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8438
8438
  connection: string;
8439
8439
  enabled: boolean;
8440
8440
  credentials: {
@@ -8466,7 +8466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8466
8466
  created_at: string;
8467
8467
  updated_at: string;
8468
8468
  name: string;
8469
- provider: "auth0" | "oidc" | "cognito" | "okta";
8469
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8470
8470
  connection: string;
8471
8471
  enabled: boolean;
8472
8472
  credentials: {
@@ -8492,7 +8492,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8492
8492
  } & {
8493
8493
  json: {
8494
8494
  name: string;
8495
- provider: "auth0" | "oidc" | "cognito" | "okta";
8495
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8496
8496
  connection: string;
8497
8497
  credentials: {
8498
8498
  domain: string;
@@ -8509,7 +8509,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8509
8509
  created_at: string;
8510
8510
  updated_at: string;
8511
8511
  name: string;
8512
- provider: "auth0" | "oidc" | "cognito" | "okta";
8512
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8513
8513
  connection: string;
8514
8514
  enabled: boolean;
8515
8515
  credentials: {
@@ -8540,7 +8540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8540
8540
  json: {
8541
8541
  id?: string | undefined;
8542
8542
  name?: string | undefined;
8543
- provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
8543
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8544
8544
  connection?: string | undefined;
8545
8545
  enabled?: boolean | undefined;
8546
8546
  credentials?: {
@@ -8556,7 +8556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8556
8556
  created_at: string;
8557
8557
  updated_at: string;
8558
8558
  name: string;
8559
- provider: "auth0" | "oidc" | "cognito" | "okta";
8559
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8560
8560
  connection: string;
8561
8561
  enabled: boolean;
8562
8562
  credentials: {
@@ -8774,7 +8774,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8774
8774
  };
8775
8775
  };
8776
8776
  output: {
8777
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8777
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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";
8778
8778
  date: string;
8779
8779
  isMobile: boolean;
8780
8780
  log_id: string;
@@ -8813,7 +8813,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8813
8813
  limit: number;
8814
8814
  length: number;
8815
8815
  logs: {
8816
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8816
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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";
8817
8817
  date: string;
8818
8818
  isMobile: boolean;
8819
8819
  log_id: string;
@@ -8867,7 +8867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8867
8867
  };
8868
8868
  };
8869
8869
  output: {
8870
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
8870
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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";
8871
8871
  date: string;
8872
8872
  isMobile: boolean;
8873
8873
  log_id: string;
@@ -11011,7 +11011,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11011
11011
  };
11012
11012
  };
11013
11013
  output: {
11014
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11014
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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";
11015
11015
  date: string;
11016
11016
  isMobile: boolean;
11017
11017
  log_id: string;
@@ -11050,7 +11050,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11050
11050
  limit: number;
11051
11051
  length: number;
11052
11052
  logs: {
11053
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
11053
+ type: "fc" | "fd" | "i" | "fn" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "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";
11054
11054
  date: string;
11055
11055
  isMobile: boolean;
11056
11056
  log_id: string;
@@ -11818,7 +11818,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11818
11818
  primary: boolean;
11819
11819
  status: "disabled" | "pending" | "pending_verification" | "ready";
11820
11820
  verification_method?: "txt" | undefined;
11821
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
11821
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11822
11822
  domain_metadata?: {
11823
11823
  [x: string]: string;
11824
11824
  } | undefined;
@@ -11859,7 +11859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11859
11859
  primary: boolean;
11860
11860
  status: "disabled" | "pending" | "pending_verification" | "ready";
11861
11861
  verification_method?: "txt" | undefined;
11862
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
11862
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11863
11863
  domain_metadata?: {
11864
11864
  [x: string]: string;
11865
11865
  } | undefined;
@@ -11914,7 +11914,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11914
11914
  domain?: string | undefined;
11915
11915
  type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
11916
11916
  verification_method?: "txt" | undefined;
11917
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
11917
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11918
11918
  domain_metadata?: Record<string, string> | undefined;
11919
11919
  custom_domain_id?: string | undefined;
11920
11920
  primary?: boolean | undefined;
@@ -11941,7 +11941,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11941
11941
  primary: boolean;
11942
11942
  status: "disabled" | "pending" | "pending_verification" | "ready";
11943
11943
  verification_method?: "txt" | undefined;
11944
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
11944
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11945
11945
  domain_metadata?: {
11946
11946
  [x: string]: string;
11947
11947
  } | undefined;
@@ -11977,7 +11977,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11977
11977
  custom_domain_id?: string | undefined;
11978
11978
  verification_method?: "txt" | undefined;
11979
11979
  tls_policy?: "recommended" | undefined;
11980
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
11980
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11981
11981
  domain_metadata?: Record<string, string> | undefined;
11982
11982
  };
11983
11983
  };
@@ -11988,7 +11988,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11988
11988
  primary: boolean;
11989
11989
  status: "disabled" | "pending" | "pending_verification" | "ready";
11990
11990
  verification_method?: "txt" | undefined;
11991
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
11991
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11992
11992
  domain_metadata?: {
11993
11993
  [x: string]: string;
11994
11994
  } | undefined;
@@ -12010,6 +12010,52 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12010
12010
  status: 201;
12011
12011
  };
12012
12012
  };
12013
+ } & {
12014
+ "/:id/certificate": {
12015
+ $put: {
12016
+ input: {
12017
+ param: {
12018
+ id: string;
12019
+ };
12020
+ } & {
12021
+ header: {
12022
+ "tenant-id"?: string | undefined;
12023
+ };
12024
+ } & {
12025
+ json: {
12026
+ certificate: string;
12027
+ private_key: string;
12028
+ };
12029
+ };
12030
+ output: {
12031
+ domain: string;
12032
+ type: "auth0_managed_certs" | "self_managed_certs";
12033
+ custom_domain_id: string;
12034
+ primary: boolean;
12035
+ status: "disabled" | "pending" | "pending_verification" | "ready";
12036
+ verification_method?: "txt" | undefined;
12037
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12038
+ domain_metadata?: {
12039
+ [x: string]: string;
12040
+ } | undefined;
12041
+ origin_domain_name?: string | undefined;
12042
+ verification?: {
12043
+ methods: ({
12044
+ name: "txt";
12045
+ record: string;
12046
+ domain: string;
12047
+ } | {
12048
+ name: "http";
12049
+ http_body: string;
12050
+ http_url: string;
12051
+ })[];
12052
+ } | undefined;
12053
+ tls_policy?: string | undefined;
12054
+ };
12055
+ outputFormat: "json";
12056
+ status: 200;
12057
+ };
12058
+ };
12013
12059
  } & {
12014
12060
  "/:id/verify": {
12015
12061
  $post: {
@@ -12029,7 +12075,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12029
12075
  primary: boolean;
12030
12076
  status: "disabled" | "pending" | "pending_verification" | "ready";
12031
12077
  verification_method?: "txt" | undefined;
12032
- custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
12078
+ custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12033
12079
  domain_metadata?: {
12034
12080
  [x: string]: string;
12035
12081
  } | undefined;
@@ -12075,7 +12121,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12075
12121
  base_focus_color: string;
12076
12122
  base_hover_color: string;
12077
12123
  body_text: string;
12078
- captcha_widget_theme: "dark" | "light" | "auto";
12124
+ captcha_widget_theme: "auto" | "light" | "dark";
12079
12125
  error: string;
12080
12126
  header: string;
12081
12127
  icons: string;
@@ -12165,7 +12211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12165
12211
  base_focus_color: string;
12166
12212
  base_hover_color: string;
12167
12213
  body_text: string;
12168
- captcha_widget_theme: "dark" | "light" | "auto";
12214
+ captcha_widget_theme: "auto" | "light" | "dark";
12169
12215
  error: string;
12170
12216
  header: string;
12171
12217
  icons: string;
@@ -12244,7 +12290,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12244
12290
  base_focus_color: string;
12245
12291
  base_hover_color: string;
12246
12292
  body_text: string;
12247
- captcha_widget_theme: "dark" | "light" | "auto";
12293
+ captcha_widget_theme: "auto" | "light" | "dark";
12248
12294
  error: string;
12249
12295
  header: string;
12250
12296
  icons: string;
@@ -12334,7 +12380,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12334
12380
  font?: {
12335
12381
  url: string;
12336
12382
  } | undefined;
12337
- dark_mode?: "dark" | "light" | "auto" | undefined;
12383
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12338
12384
  };
12339
12385
  outputFormat: "json";
12340
12386
  status: 200;
@@ -12364,7 +12410,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12364
12410
  font?: {
12365
12411
  url: string;
12366
12412
  } | undefined;
12367
- dark_mode?: "dark" | "light" | "auto" | undefined;
12413
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12368
12414
  };
12369
12415
  };
12370
12416
  output: {
@@ -12383,7 +12429,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12383
12429
  font?: {
12384
12430
  url: string;
12385
12431
  } | undefined;
12386
- dark_mode?: "dark" | "light" | "auto" | undefined;
12432
+ dark_mode?: "auto" | "light" | "dark" | undefined;
12387
12433
  };
12388
12434
  outputFormat: "json";
12389
12435
  status: 200;
@@ -12418,7 +12464,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12418
12464
  };
12419
12465
  output: {};
12420
12466
  outputFormat: string;
12421
- status: 204;
12467
+ status: 400;
12422
12468
  } | {
12423
12469
  input: {
12424
12470
  header: {
@@ -12431,7 +12477,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12431
12477
  };
12432
12478
  output: {};
12433
12479
  outputFormat: string;
12434
- status: 400;
12480
+ status: 204;
12435
12481
  };
12436
12482
  };
12437
12483
  } & {
@@ -12587,7 +12633,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12587
12633
  output: {
12588
12634
  id: string;
12589
12635
  trigger_id: string;
12590
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
12636
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
12591
12637
  results: {
12592
12638
  action_name: string;
12593
12639
  error: {
@@ -12634,7 +12680,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12634
12680
  logs: {
12635
12681
  action_name: string;
12636
12682
  lines: {
12637
- level: "log" | "error" | "info" | "warn" | "debug";
12683
+ level: "error" | "log" | "info" | "warn" | "debug";
12638
12684
  message: string;
12639
12685
  }[];
12640
12686
  }[];
@@ -13301,7 +13347,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13301
13347
  args: import("hono/utils/types").JSONValue[];
13302
13348
  }[];
13303
13349
  logs: {
13304
- level: "log" | "error" | "info" | "warn" | "debug";
13350
+ level: "error" | "log" | "info" | "warn" | "debug";
13305
13351
  message: string;
13306
13352
  }[];
13307
13353
  error?: string | undefined;