authhero 8.21.0 → 8.22.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 (37) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +112 -112
  3. package/dist/authhero.d.ts +385 -132
  4. package/dist/authhero.mjs +11626 -11473
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  7. package/dist/types/errors/is-http-exception-like.d.ts +11 -0
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  9. package/dist/types/index.d.ts +263 -129
  10. package/dist/types/routes/auth-api/index.d.ts +16 -16
  11. package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/auth-api/token.d.ts +10 -10
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +9 -9
  17. package/dist/types/routes/management-api/client-grants.d.ts +9 -9
  18. package/dist/types/routes/management-api/clients.d.ts +102 -7
  19. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  20. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  21. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  22. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  23. package/dist/types/routes/management-api/index.d.ts +213 -80
  24. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  25. package/dist/types/routes/management-api/logs.d.ts +41 -3
  26. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  27. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  28. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  29. package/dist/types/routes/management-api/tenants.d.ts +6 -6
  30. package/dist/types/routes/management-api/themes.d.ts +6 -6
  31. package/dist/types/routes/management-api/users.d.ts +2 -2
  32. package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.d.ts +122 -0
  33. package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.test.d.ts +1 -0
  34. package/dist/types/routes/universal-login/common.d.ts +6 -6
  35. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  36. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  37. package/package.json +5 -5
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
96
96
  };
97
97
  } & {
98
98
  json: {
99
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
99
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
100
100
  phone_number?: string | undefined;
101
101
  totp_secret?: string | undefined;
102
102
  credential_id?: string | undefined;
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
236
236
  };
237
237
  };
238
238
  output: {
239
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
239
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
240
240
  enabled: boolean;
241
241
  trial_expired?: boolean | undefined;
242
242
  }[];
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
391
391
  $get: {
392
392
  input: {
393
393
  param: {
394
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
394
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
395
395
  };
396
396
  } & {
397
397
  header: {
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
399
399
  };
400
400
  };
401
401
  output: {
402
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
402
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
403
403
  enabled: boolean;
404
404
  trial_expired?: boolean | undefined;
405
405
  };
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
412
412
  $put: {
413
413
  input: {
414
414
  param: {
415
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
415
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
416
416
  };
417
417
  } & {
418
418
  header: {
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
424
424
  };
425
425
  };
426
426
  output: {
427
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
427
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
428
428
  enabled: boolean;
429
429
  trial_expired?: boolean | undefined;
430
430
  };
@@ -1204,9 +1204,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1204
1204
  };
1205
1205
  id?: string | undefined;
1206
1206
  connection_id?: string | undefined;
1207
- roles?: string[] | undefined;
1208
1207
  app_metadata?: Record<string, any> | undefined;
1209
1208
  user_metadata?: Record<string, any> | undefined;
1209
+ roles?: string[] | undefined;
1210
1210
  ttl_sec?: number | undefined;
1211
1211
  send_invitation_email?: boolean | undefined;
1212
1212
  };
@@ -6867,7 +6867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6867
6867
  };
6868
6868
  };
6869
6869
  output: {
6870
- prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
6870
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6871
6871
  language: string;
6872
6872
  }[];
6873
6873
  outputFormat: "json";
@@ -6905,7 +6905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6905
6905
  $get: {
6906
6906
  input: {
6907
6907
  param: {
6908
- prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
6908
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6909
6909
  language: string;
6910
6910
  };
6911
6911
  } & {
@@ -6927,7 +6927,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6927
6927
  $put: {
6928
6928
  input: {
6929
6929
  param: {
6930
- prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
6930
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6931
6931
  language: string;
6932
6932
  };
6933
6933
  } & {
@@ -6951,7 +6951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6951
6951
  $delete: {
6952
6952
  input: {
6953
6953
  param: {
6954
- prompt: "status" | "organizations" | "invitation" | "signup" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "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";
6954
+ prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6955
6955
  language: string;
6956
6956
  };
6957
6957
  } & {
@@ -7850,7 +7850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7850
7850
  tenant_id: string;
7851
7851
  created_at: string;
7852
7852
  updated_at: string;
7853
- deploymentStatus: "failed" | "deployed" | "not_required";
7853
+ deploymentStatus: "deployed" | "failed" | "not_required";
7854
7854
  secrets?: {
7855
7855
  [x: string]: string;
7856
7856
  } | undefined;
@@ -7940,7 +7940,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
7940
7940
  tenant_id: string;
7941
7941
  created_at: string;
7942
7942
  updated_at: string;
7943
- deploymentStatus: "failed" | "deployed" | "not_required";
7943
+ deploymentStatus: "deployed" | "failed" | "not_required";
7944
7944
  secrets?: {
7945
7945
  [x: string]: string;
7946
7946
  } | undefined;
@@ -8764,7 +8764,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8764
8764
  created_at: string;
8765
8765
  updated_at: string;
8766
8766
  name: string;
8767
- provider: "auth0" | "oidc" | "okta" | "cognito";
8767
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8768
8768
  connection: string;
8769
8769
  enabled: boolean;
8770
8770
  credentials: {
@@ -8796,7 +8796,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8796
8796
  created_at: string;
8797
8797
  updated_at: string;
8798
8798
  name: string;
8799
- provider: "auth0" | "oidc" | "okta" | "cognito";
8799
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8800
8800
  connection: string;
8801
8801
  enabled: boolean;
8802
8802
  credentials: {
@@ -8822,7 +8822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8822
8822
  } & {
8823
8823
  json: {
8824
8824
  name: string;
8825
- provider: "auth0" | "oidc" | "okta" | "cognito";
8825
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8826
8826
  connection: string;
8827
8827
  credentials: {
8828
8828
  domain: string;
@@ -8839,7 +8839,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8839
8839
  created_at: string;
8840
8840
  updated_at: string;
8841
8841
  name: string;
8842
- provider: "auth0" | "oidc" | "okta" | "cognito";
8842
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8843
8843
  connection: string;
8844
8844
  enabled: boolean;
8845
8845
  credentials: {
@@ -8870,7 +8870,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8870
8870
  json: {
8871
8871
  id?: string | undefined;
8872
8872
  name?: string | undefined;
8873
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
8873
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8874
8874
  connection?: string | undefined;
8875
8875
  enabled?: boolean | undefined;
8876
8876
  credentials?: {
@@ -8886,7 +8886,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8886
8886
  created_at: string;
8887
8887
  updated_at: string;
8888
8888
  name: string;
8889
- provider: "auth0" | "oidc" | "okta" | "cognito";
8889
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8890
8890
  connection: string;
8891
8891
  enabled: boolean;
8892
8892
  credentials: {
@@ -8934,7 +8934,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8934
8934
  [x: string]: import("hono/utils/types").JSONValue;
8935
8935
  };
8936
8936
  id: string;
8937
- status: "active" | "suspended" | "paused";
8937
+ status: "suspended" | "active" | "paused";
8938
8938
  filters?: {
8939
8939
  type: string;
8940
8940
  name: string;
@@ -8966,7 +8966,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8966
8966
  [x: string]: import("hono/utils/types").JSONValue;
8967
8967
  };
8968
8968
  id: string;
8969
- status: "active" | "suspended" | "paused";
8969
+ status: "suspended" | "active" | "paused";
8970
8970
  filters?: {
8971
8971
  type: string;
8972
8972
  name: string;
@@ -8991,7 +8991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
8991
8991
  name: string;
8992
8992
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
8993
8993
  sink: Record<string, unknown>;
8994
- status?: "active" | "suspended" | "paused" | undefined;
8994
+ status?: "suspended" | "active" | "paused" | undefined;
8995
8995
  filters?: {
8996
8996
  type: string;
8997
8997
  name: string;
@@ -9006,7 +9006,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9006
9006
  [x: string]: import("hono/utils/types").JSONValue;
9007
9007
  };
9008
9008
  id: string;
9009
- status: "active" | "suspended" | "paused";
9009
+ status: "suspended" | "active" | "paused";
9010
9010
  filters?: {
9011
9011
  type: string;
9012
9012
  name: string;
@@ -9041,7 +9041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9041
9041
  }[] | undefined;
9042
9042
  isPriority?: boolean | undefined;
9043
9043
  id?: string | undefined;
9044
- status?: "active" | "suspended" | "paused" | undefined;
9044
+ status?: "suspended" | "active" | "paused" | undefined;
9045
9045
  created_at?: string | undefined;
9046
9046
  updated_at?: string | undefined;
9047
9047
  };
@@ -9053,7 +9053,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9053
9053
  [x: string]: import("hono/utils/types").JSONValue;
9054
9054
  };
9055
9055
  id: string;
9056
- status: "active" | "suspended" | "paused";
9056
+ status: "suspended" | "active" | "paused";
9057
9057
  filters?: {
9058
9058
  type: string;
9059
9059
  name: string;
@@ -9104,7 +9104,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9104
9104
  };
9105
9105
  };
9106
9106
  output: {
9107
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9107
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9108
9108
  date: string;
9109
9109
  isMobile: boolean;
9110
9110
  log_id: string;
@@ -9143,7 +9143,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9143
9143
  limit: number;
9144
9144
  length: number;
9145
9145
  logs: {
9146
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9146
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9147
9147
  date: string;
9148
9148
  isMobile: boolean;
9149
9149
  log_id: string;
@@ -9180,6 +9180,44 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9180
9180
  }[];
9181
9181
  total?: number | undefined;
9182
9182
  next?: string | undefined;
9183
+ } | {
9184
+ logs: {
9185
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9186
+ date: string;
9187
+ isMobile: boolean;
9188
+ log_id: string;
9189
+ description?: string | undefined;
9190
+ ip?: string | undefined;
9191
+ user_agent?: string | undefined;
9192
+ details?: any;
9193
+ user_id?: string | undefined;
9194
+ user_name?: string | undefined;
9195
+ connection?: string | undefined;
9196
+ connection_id?: string | undefined;
9197
+ client_id?: string | undefined;
9198
+ client_name?: string | undefined;
9199
+ audience?: string | undefined;
9200
+ scope?: string | undefined;
9201
+ strategy?: string | undefined;
9202
+ strategy_type?: string | undefined;
9203
+ hostname?: string | undefined;
9204
+ auth0_client?: {
9205
+ name: string;
9206
+ version: string;
9207
+ env?: {
9208
+ node?: string | undefined;
9209
+ } | undefined;
9210
+ } | undefined;
9211
+ location_info?: {
9212
+ country_code: string;
9213
+ city_name: string;
9214
+ latitude: string;
9215
+ longitude: string;
9216
+ time_zone: string;
9217
+ continent_code: string;
9218
+ } | undefined;
9219
+ }[];
9220
+ next?: string | undefined;
9183
9221
  };
9184
9222
  outputFormat: "json";
9185
9223
  status: 200;
@@ -9198,7 +9236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9198
9236
  };
9199
9237
  };
9200
9238
  output: {
9201
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9239
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9202
9240
  date: string;
9203
9241
  isMobile: boolean;
9204
9242
  log_id: string;
@@ -9354,7 +9392,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9354
9392
  audience?: string | undefined;
9355
9393
  client_id?: string | undefined;
9356
9394
  allow_any_organization?: string | undefined;
9357
- subject_type?: "client" | "user" | undefined;
9395
+ subject_type?: "user" | "client" | undefined;
9358
9396
  };
9359
9397
  } & {
9360
9398
  header: {
@@ -9369,7 +9407,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9369
9407
  organization_usage?: "deny" | "allow" | "require" | undefined;
9370
9408
  allow_any_organization?: boolean | undefined;
9371
9409
  is_system?: boolean | undefined;
9372
- subject_type?: "client" | "user" | undefined;
9410
+ subject_type?: "user" | "client" | undefined;
9373
9411
  authorization_details_types?: string[] | undefined;
9374
9412
  created_at?: string | undefined;
9375
9413
  updated_at?: string | undefined;
@@ -9385,7 +9423,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9385
9423
  organization_usage?: "deny" | "allow" | "require" | undefined;
9386
9424
  allow_any_organization?: boolean | undefined;
9387
9425
  is_system?: boolean | undefined;
9388
- subject_type?: "client" | "user" | undefined;
9426
+ subject_type?: "user" | "client" | undefined;
9389
9427
  authorization_details_types?: string[] | undefined;
9390
9428
  created_at?: string | undefined;
9391
9429
  updated_at?: string | undefined;
@@ -9401,7 +9439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9401
9439
  organization_usage?: "deny" | "allow" | "require" | undefined;
9402
9440
  allow_any_organization?: boolean | undefined;
9403
9441
  is_system?: boolean | undefined;
9404
- subject_type?: "client" | "user" | undefined;
9442
+ subject_type?: "user" | "client" | undefined;
9405
9443
  authorization_details_types?: string[] | undefined;
9406
9444
  created_at?: string | undefined;
9407
9445
  updated_at?: string | undefined;
@@ -9432,7 +9470,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9432
9470
  organization_usage?: "deny" | "allow" | "require" | undefined;
9433
9471
  allow_any_organization?: boolean | undefined;
9434
9472
  is_system?: boolean | undefined;
9435
- subject_type?: "client" | "user" | undefined;
9473
+ subject_type?: "user" | "client" | undefined;
9436
9474
  authorization_details_types?: string[] | undefined;
9437
9475
  created_at?: string | undefined;
9438
9476
  updated_at?: string | undefined;
@@ -9477,7 +9515,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9477
9515
  organization_usage?: "deny" | "allow" | "require" | undefined;
9478
9516
  allow_any_organization?: boolean | undefined;
9479
9517
  is_system?: boolean | undefined;
9480
- subject_type?: "client" | "user" | undefined;
9518
+ subject_type?: "user" | "client" | undefined;
9481
9519
  authorization_details_types?: string[] | undefined;
9482
9520
  };
9483
9521
  };
@@ -9489,7 +9527,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9489
9527
  organization_usage?: "deny" | "allow" | "require" | undefined;
9490
9528
  allow_any_organization?: boolean | undefined;
9491
9529
  is_system?: boolean | undefined;
9492
- subject_type?: "client" | "user" | undefined;
9530
+ subject_type?: "user" | "client" | undefined;
9493
9531
  authorization_details_types?: string[] | undefined;
9494
9532
  created_at?: string | undefined;
9495
9533
  updated_at?: string | undefined;
@@ -9513,7 +9551,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9513
9551
  organization_usage?: "deny" | "allow" | "require" | undefined;
9514
9552
  allow_any_organization?: boolean | undefined;
9515
9553
  is_system?: boolean | undefined;
9516
- subject_type?: "client" | "user" | undefined;
9554
+ subject_type?: "user" | "client" | undefined;
9517
9555
  authorization_details_types?: string[] | undefined;
9518
9556
  };
9519
9557
  };
@@ -9525,7 +9563,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9525
9563
  organization_usage?: "deny" | "allow" | "require" | undefined;
9526
9564
  allow_any_organization?: boolean | undefined;
9527
9565
  is_system?: boolean | undefined;
9528
- subject_type?: "client" | "user" | undefined;
9566
+ subject_type?: "user" | "client" | undefined;
9529
9567
  authorization_details_types?: string[] | undefined;
9530
9568
  created_at?: string | undefined;
9531
9569
  updated_at?: string | undefined;
@@ -9603,7 +9641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9603
9641
  addons?: {
9604
9642
  [x: string]: any;
9605
9643
  } | undefined;
9606
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9644
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9607
9645
  client_metadata?: {
9608
9646
  [x: string]: string;
9609
9647
  } | undefined;
@@ -9699,7 +9737,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9699
9737
  addons?: {
9700
9738
  [x: string]: any;
9701
9739
  } | undefined;
9702
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9740
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9703
9741
  client_metadata?: {
9704
9742
  [x: string]: string;
9705
9743
  } | undefined;
@@ -9745,6 +9783,101 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9745
9783
  }[];
9746
9784
  total?: number | undefined;
9747
9785
  next?: string | undefined;
9786
+ } | {
9787
+ clients: {
9788
+ created_at: string;
9789
+ updated_at: string;
9790
+ name: string;
9791
+ global: boolean;
9792
+ is_first_party: boolean;
9793
+ oidc_conformant: boolean;
9794
+ auth0_conformant: boolean;
9795
+ sso: boolean;
9796
+ sso_disabled: boolean;
9797
+ cross_origin_authentication: boolean;
9798
+ custom_login_page_on: boolean;
9799
+ require_pushed_authorization_requests: boolean;
9800
+ require_proof_of_possession: boolean;
9801
+ client_id: string;
9802
+ description?: string | undefined;
9803
+ client_secret?: string | undefined;
9804
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
9805
+ logo_uri?: string | undefined;
9806
+ callbacks?: string[] | undefined;
9807
+ allowed_origins?: string[] | undefined;
9808
+ web_origins?: string[] | undefined;
9809
+ client_aliases?: string[] | undefined;
9810
+ allowed_clients?: string[] | undefined;
9811
+ connections?: string[] | undefined;
9812
+ allowed_logout_urls?: string[] | undefined;
9813
+ session_transfer?: {
9814
+ [x: string]: any;
9815
+ } | undefined;
9816
+ oidc_logout?: {
9817
+ [x: string]: any;
9818
+ } | undefined;
9819
+ grant_types?: string[] | undefined;
9820
+ jwt_configuration?: {
9821
+ [x: string]: any;
9822
+ } | undefined;
9823
+ signing_keys?: {
9824
+ [x: string]: any;
9825
+ }[] | undefined;
9826
+ encryption_key?: {
9827
+ [x: string]: any;
9828
+ } | undefined;
9829
+ cross_origin_loc?: string | undefined;
9830
+ custom_login_page?: string | undefined;
9831
+ custom_login_page_preview?: string | undefined;
9832
+ form_template?: string | undefined;
9833
+ addons?: {
9834
+ [x: string]: any;
9835
+ } | undefined;
9836
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9837
+ client_metadata?: {
9838
+ [x: string]: string;
9839
+ } | undefined;
9840
+ hide_sign_up_disabled_error?: boolean | undefined;
9841
+ mobile?: {
9842
+ [x: string]: any;
9843
+ } | undefined;
9844
+ initiate_login_uri?: string | undefined;
9845
+ native_social_login?: {
9846
+ [x: string]: any;
9847
+ } | undefined;
9848
+ refresh_token?: {
9849
+ rotation_type?: "rotating" | "non-rotating" | undefined;
9850
+ leeway?: number | undefined;
9851
+ expiration_type?: "expiring" | "non-expiring" | undefined;
9852
+ token_lifetime?: number | undefined;
9853
+ infinite_token_lifetime?: boolean | undefined;
9854
+ idle_token_lifetime?: number | undefined;
9855
+ infinite_idle_token_lifetime?: boolean | undefined;
9856
+ } | undefined;
9857
+ default_organization?: {
9858
+ [x: string]: any;
9859
+ } | undefined;
9860
+ organization_usage?: "deny" | "allow" | "require" | undefined;
9861
+ organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
9862
+ client_authentication_methods?: {
9863
+ [x: string]: any;
9864
+ } | undefined;
9865
+ signed_request_object?: {
9866
+ [x: string]: any;
9867
+ } | undefined;
9868
+ compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
9869
+ par_request_expiry?: number | undefined;
9870
+ token_quota?: {
9871
+ [x: string]: any;
9872
+ } | undefined;
9873
+ owner_user_id?: string | undefined;
9874
+ registration_type?: "manual" | "open_dcr" | "iat_dcr" | undefined;
9875
+ registration_metadata?: {
9876
+ [x: string]: any;
9877
+ } | undefined;
9878
+ user_linking_mode?: "builtin" | "off" | undefined;
9879
+ }[];
9880
+ next?: string | undefined;
9748
9881
  };
9749
9882
  outputFormat: "json";
9750
9883
  status: 200;
@@ -9811,7 +9944,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9811
9944
  addons?: {
9812
9945
  [x: string]: any;
9813
9946
  } | undefined;
9814
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
9947
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9815
9948
  client_metadata?: {
9816
9949
  [x: string]: string;
9817
9950
  } | undefined;
@@ -9921,7 +10054,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9921
10054
  custom_login_page_preview?: string | undefined;
9922
10055
  form_template?: string | undefined;
9923
10056
  addons?: Record<string, any> | undefined;
9924
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10057
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9925
10058
  client_metadata?: Record<string, string> | undefined;
9926
10059
  hide_sign_up_disabled_error?: boolean | undefined;
9927
10060
  mobile?: Record<string, any> | undefined;
@@ -10001,7 +10134,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10001
10134
  addons?: {
10002
10135
  [x: string]: any;
10003
10136
  } | undefined;
10004
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10137
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10005
10138
  client_metadata?: {
10006
10139
  [x: string]: string;
10007
10140
  } | undefined;
@@ -10090,7 +10223,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10090
10223
  custom_login_page_preview?: string | undefined;
10091
10224
  form_template?: string | undefined;
10092
10225
  addons?: Record<string, any> | undefined;
10093
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10226
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10094
10227
  client_metadata?: Record<string, string> | undefined;
10095
10228
  hide_sign_up_disabled_error?: boolean | undefined;
10096
10229
  mobile?: Record<string, any> | undefined;
@@ -10170,7 +10303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
10170
10303
  addons?: {
10171
10304
  [x: string]: any;
10172
10305
  } | undefined;
10173
- token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
10306
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10174
10307
  client_metadata?: {
10175
10308
  [x: string]: string;
10176
10309
  } | undefined;
@@ -11437,7 +11570,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11437
11570
  };
11438
11571
  };
11439
11572
  output: {
11440
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11573
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11441
11574
  date: string;
11442
11575
  isMobile: boolean;
11443
11576
  log_id: string;
@@ -11476,7 +11609,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11476
11609
  limit: number;
11477
11610
  length: number;
11478
11611
  logs: {
11479
- type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11612
+ type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11480
11613
  date: string;
11481
11614
  isMobile: boolean;
11482
11615
  log_id: string;
@@ -11795,7 +11928,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11795
11928
  };
11796
11929
  } & {
11797
11930
  json: {
11798
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11931
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11799
11932
  body: string;
11800
11933
  from: string;
11801
11934
  subject: string;
@@ -11816,7 +11949,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11816
11949
  };
11817
11950
  } & {
11818
11951
  json: {
11819
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11952
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11820
11953
  body: string;
11821
11954
  from: string;
11822
11955
  subject: string;
@@ -11828,7 +11961,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11828
11961
  };
11829
11962
  };
11830
11963
  output: {
11831
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11964
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11832
11965
  body: string;
11833
11966
  from: string;
11834
11967
  subject: string;
@@ -11851,7 +11984,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11851
11984
  };
11852
11985
  };
11853
11986
  output: {
11854
- name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11987
+ name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11855
11988
  body: string;
11856
11989
  subject: string;
11857
11990
  }[];
@@ -11864,7 +11997,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11864
11997
  $get: {
11865
11998
  input: {
11866
11999
  param: {
11867
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12000
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11868
12001
  };
11869
12002
  } & {
11870
12003
  header: {
@@ -11877,7 +12010,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11877
12010
  } | {
11878
12011
  input: {
11879
12012
  param: {
11880
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12013
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11881
12014
  };
11882
12015
  } & {
11883
12016
  header: {
@@ -11885,7 +12018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11885
12018
  };
11886
12019
  };
11887
12020
  output: {
11888
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12021
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11889
12022
  body: string;
11890
12023
  from: string;
11891
12024
  subject: string;
@@ -11904,7 +12037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11904
12037
  $put: {
11905
12038
  input: {
11906
12039
  param: {
11907
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12040
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11908
12041
  };
11909
12042
  } & {
11910
12043
  header: {
@@ -11912,7 +12045,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11912
12045
  };
11913
12046
  } & {
11914
12047
  json: {
11915
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12048
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11916
12049
  body: string;
11917
12050
  subject: string;
11918
12051
  syntax?: "liquid" | undefined;
@@ -11924,7 +12057,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11924
12057
  };
11925
12058
  };
11926
12059
  output: {
11927
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12060
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11928
12061
  body: string;
11929
12062
  from: string;
11930
12063
  subject: string;
@@ -11943,7 +12076,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11943
12076
  $patch: {
11944
12077
  input: {
11945
12078
  param: {
11946
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12079
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11947
12080
  };
11948
12081
  } & {
11949
12082
  header: {
@@ -11951,7 +12084,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11951
12084
  };
11952
12085
  } & {
11953
12086
  json: {
11954
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12087
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11955
12088
  body?: string | undefined;
11956
12089
  from?: string | undefined;
11957
12090
  subject?: string | undefined;
@@ -11968,7 +12101,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11968
12101
  } | {
11969
12102
  input: {
11970
12103
  param: {
11971
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12104
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11972
12105
  };
11973
12106
  } & {
11974
12107
  header: {
@@ -11976,7 +12109,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11976
12109
  };
11977
12110
  } & {
11978
12111
  json: {
11979
- template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
12112
+ template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11980
12113
  body?: string | undefined;
11981
12114
  from?: string | undefined;
11982
12115
  subject?: string | undefined;
@@ -11988,7 +12121,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11988
12121
  };
11989
12122
  };
11990
12123
  output: {
11991
- template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12124
+ template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11992
12125
  body: string;
11993
12126
  from: string;
11994
12127
  subject: string;
@@ -12007,7 +12140,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12007
12140
  $delete: {
12008
12141
  input: {
12009
12142
  param: {
12010
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12143
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12011
12144
  };
12012
12145
  } & {
12013
12146
  header: {
@@ -12020,7 +12153,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12020
12153
  } | {
12021
12154
  input: {
12022
12155
  param: {
12023
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12156
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12024
12157
  };
12025
12158
  } & {
12026
12159
  header: {
@@ -12037,7 +12170,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12037
12170
  $post: {
12038
12171
  input: {
12039
12172
  param: {
12040
- templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12173
+ templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
12041
12174
  };
12042
12175
  } & {
12043
12176
  header: {
@@ -12320,7 +12453,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12320
12453
  type: "auth0_managed_certs" | "self_managed_certs";
12321
12454
  custom_domain_id: string;
12322
12455
  primary: boolean;
12323
- status: "disabled" | "pending" | "ready" | "pending_verification";
12456
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12324
12457
  verification_method?: "txt" | undefined;
12325
12458
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12326
12459
  domain_metadata?: {
@@ -12361,7 +12494,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12361
12494
  type: "auth0_managed_certs" | "self_managed_certs";
12362
12495
  custom_domain_id: string;
12363
12496
  primary: boolean;
12364
- status: "disabled" | "pending" | "ready" | "pending_verification";
12497
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12365
12498
  verification_method?: "txt" | undefined;
12366
12499
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12367
12500
  domain_metadata?: {
@@ -12425,7 +12558,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12425
12558
  type: "auth0_managed_certs" | "self_managed_certs";
12426
12559
  custom_domain_id: string;
12427
12560
  primary: boolean;
12428
- status: "disabled" | "pending" | "ready" | "pending_verification";
12561
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12429
12562
  verification_method?: "txt" | undefined;
12430
12563
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12431
12564
  domain_metadata?: {
@@ -12472,7 +12605,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12472
12605
  type: "auth0_managed_certs" | "self_managed_certs";
12473
12606
  custom_domain_id: string;
12474
12607
  primary: boolean;
12475
- status: "disabled" | "pending" | "ready" | "pending_verification";
12608
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12476
12609
  verification_method?: "txt" | undefined;
12477
12610
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12478
12611
  domain_metadata?: {
@@ -12518,7 +12651,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12518
12651
  type: "auth0_managed_certs" | "self_managed_certs";
12519
12652
  custom_domain_id: string;
12520
12653
  primary: boolean;
12521
- status: "disabled" | "pending" | "ready" | "pending_verification";
12654
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12522
12655
  verification_method?: "txt" | undefined;
12523
12656
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12524
12657
  domain_metadata?: {
@@ -12559,7 +12692,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12559
12692
  type: "auth0_managed_certs" | "self_managed_certs";
12560
12693
  custom_domain_id: string;
12561
12694
  primary: boolean;
12562
- status: "disabled" | "pending" | "ready" | "pending_verification";
12695
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12563
12696
  verification_method?: "txt" | undefined;
12564
12697
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12565
12698
  domain_metadata?: {
@@ -12658,12 +12791,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12658
12791
  background_color: string;
12659
12792
  background_image_url: string;
12660
12793
  page_layout: "center" | "left" | "right";
12661
- logo_placement?: "none" | "widget" | "chip" | undefined;
12794
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12662
12795
  };
12663
12796
  widget: {
12664
12797
  header_text_alignment: "center" | "left" | "right";
12665
12798
  logo_height: number;
12666
- logo_position: "none" | "center" | "left" | "right";
12799
+ logo_position: "center" | "left" | "right" | "none";
12667
12800
  logo_url: string;
12668
12801
  social_buttons_layout: "bottom" | "top";
12669
12802
  };
@@ -12748,12 +12881,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12748
12881
  background_color: string;
12749
12882
  background_image_url: string;
12750
12883
  page_layout: "center" | "left" | "right";
12751
- logo_placement?: "none" | "widget" | "chip" | undefined;
12884
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12752
12885
  };
12753
12886
  widget: {
12754
12887
  header_text_alignment: "center" | "left" | "right";
12755
12888
  logo_height: number;
12756
- logo_position: "none" | "center" | "left" | "right";
12889
+ logo_position: "center" | "left" | "right" | "none";
12757
12890
  logo_url: string;
12758
12891
  social_buttons_layout: "bottom" | "top";
12759
12892
  };
@@ -12827,12 +12960,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12827
12960
  background_color: string;
12828
12961
  background_image_url: string;
12829
12962
  page_layout: "center" | "left" | "right";
12830
- logo_placement?: "none" | "widget" | "chip" | undefined;
12963
+ logo_placement?: "widget" | "none" | "chip" | undefined;
12831
12964
  };
12832
12965
  widget: {
12833
12966
  header_text_alignment: "center" | "left" | "right";
12834
12967
  logo_height: number;
12835
- logo_position: "none" | "center" | "left" | "right";
12968
+ logo_position: "center" | "left" | "right" | "none";
12836
12969
  logo_url: string;
12837
12970
  social_buttons_layout: "bottom" | "top";
12838
12971
  };
@@ -12989,7 +13122,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12989
13122
  } & {
12990
13123
  json: {
12991
13124
  body?: string | undefined;
12992
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
13125
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
12993
13126
  branding?: {
12994
13127
  colors?: {
12995
13128
  primary: string;
@@ -13075,12 +13208,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13075
13208
  background_color: string;
13076
13209
  background_image_url: string;
13077
13210
  page_layout: "center" | "left" | "right";
13078
- logo_placement?: "none" | "widget" | "chip" | undefined;
13211
+ logo_placement?: "widget" | "none" | "chip" | undefined;
13079
13212
  } | undefined;
13080
13213
  widget?: {
13081
13214
  header_text_alignment: "center" | "left" | "right";
13082
13215
  logo_height: number;
13083
- logo_position: "none" | "center" | "left" | "right";
13216
+ logo_position: "center" | "left" | "right" | "none";
13084
13217
  logo_url: string;
13085
13218
  social_buttons_layout: "bottom" | "top";
13086
13219
  } | undefined;
@@ -13233,7 +13366,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13233
13366
  output: {
13234
13367
  id: string;
13235
13368
  trigger_id: string;
13236
- status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
13369
+ status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
13237
13370
  results: {
13238
13371
  action_name: string;
13239
13372
  error: {