authhero 5.21.1 → 7.0.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 (45) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +105 -105
  3. package/dist/authhero.d.ts +173 -122
  4. package/dist/authhero.mjs +13563 -10885
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  9. package/dist/types/index.d.ts +116 -115
  10. package/dist/types/routes/auth-api/index.d.ts +21 -21
  11. package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  14. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  15. package/dist/types/routes/management-api/actions.d.ts +3 -3
  16. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  17. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  18. package/dist/types/routes/management-api/clients.d.ts +7 -7
  19. package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
  20. package/dist/types/routes/management-api/email-templates.d.ts +20 -20
  21. package/dist/types/routes/management-api/emails.d.ts +2 -2
  22. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  23. package/dist/types/routes/management-api/forms.d.ts +7 -7
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/index.d.ts +82 -82
  26. package/dist/types/routes/management-api/logs.d.ts +3 -3
  27. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  28. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  29. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  30. package/dist/types/routes/management-api/users.d.ts +2 -2
  31. package/dist/types/routes/proxy-control-plane/index.d.ts +21 -7
  32. package/dist/types/routes/proxy-control-plane/verify.d.ts +39 -0
  33. package/dist/types/routes/universal-login/common.d.ts +2 -2
  34. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  35. package/dist/types/routes/universal-login/form-node.d.ts +4 -4
  36. package/dist/types/routes/universal-login/index.d.ts +4 -4
  37. package/dist/types/routes/universal-login/u2-form-node.d.ts +2 -2
  38. package/dist/types/routes/universal-login/u2-index.d.ts +8 -8
  39. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  40. package/dist/types/strategies/microsoft-entra.d.ts +23 -0
  41. package/dist/types/strategies/waad.d.ts +24 -0
  42. package/dist/types/strategies/windowslive.d.ts +24 -0
  43. package/dist/types/types/AuthHeroConfig.d.ts +17 -5
  44. package/dist/types/utils/jwks.d.ts +2 -2
  45. 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" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
40
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
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: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
180
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
335
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
343
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
356
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
368
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
369
369
  enabled: boolean;
370
370
  trial_expired?: boolean | undefined;
371
371
  };
@@ -1110,10 +1110,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1110
1110
  invitee: {
1111
1111
  email?: string | undefined;
1112
1112
  };
1113
- connection_id?: string | undefined;
1114
1113
  id?: string | undefined;
1115
1114
  app_metadata?: Record<string, any> | undefined;
1116
1115
  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;
@@ -1163,7 +1163,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1163
1163
  };
1164
1164
  output: {};
1165
1165
  outputFormat: string;
1166
- status: 404;
1166
+ status: 204;
1167
1167
  } | {
1168
1168
  input: {
1169
1169
  param: {
@@ -1177,7 +1177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
1177
1177
  };
1178
1178
  output: {};
1179
1179
  outputFormat: string;
1180
- status: 204;
1180
+ status: 404;
1181
1181
  };
1182
1182
  };
1183
1183
  } & {
@@ -2593,7 +2593,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
2593
2593
  value: string;
2594
2594
  label: string;
2595
2595
  }[] | undefined;
2596
- display?: "checkbox" | "radio" | undefined;
2596
+ display?: "radio" | "checkbox" | undefined;
2597
2597
  multiple?: boolean | undefined;
2598
2598
  default_value?: string | string[] | undefined;
2599
2599
  } | undefined;
@@ -3170,7 +3170,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3170
3170
  value: string;
3171
3171
  label: string;
3172
3172
  }[] | undefined;
3173
- display?: "checkbox" | "radio" | undefined;
3173
+ display?: "radio" | "checkbox" | undefined;
3174
3174
  multiple?: boolean | undefined;
3175
3175
  default_value?: string | string[] | undefined;
3176
3176
  } | undefined;
@@ -3762,7 +3762,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
3762
3762
  value: string;
3763
3763
  label: string;
3764
3764
  }[] | undefined;
3765
- display?: "checkbox" | "radio" | undefined;
3765
+ display?: "radio" | "checkbox" | undefined;
3766
3766
  multiple?: boolean | undefined;
3767
3767
  default_value?: string | string[] | undefined;
3768
3768
  } | undefined;
@@ -4360,7 +4360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4360
4360
  value: string;
4361
4361
  label: string;
4362
4362
  }[] | undefined;
4363
- display?: "checkbox" | "radio" | undefined;
4363
+ display?: "radio" | "checkbox" | undefined;
4364
4364
  multiple?: boolean | undefined;
4365
4365
  default_value?: string | string[] | undefined;
4366
4366
  } | undefined;
@@ -4931,7 +4931,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
4931
4931
  value: string;
4932
4932
  label: string;
4933
4933
  }[] | undefined;
4934
- display?: "checkbox" | "radio" | undefined;
4934
+ display?: "radio" | "checkbox" | undefined;
4935
4935
  multiple?: boolean | undefined;
4936
4936
  default_value?: string | string[] | undefined;
4937
4937
  } | undefined;
@@ -5508,7 +5508,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
5508
5508
  value: string;
5509
5509
  label: string;
5510
5510
  }[] | undefined;
5511
- display?: "checkbox" | "radio" | undefined;
5511
+ display?: "radio" | "checkbox" | undefined;
5512
5512
  multiple?: boolean | undefined;
5513
5513
  default_value?: string | string[] | undefined;
5514
5514
  } | undefined;
@@ -6079,7 +6079,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6079
6079
  value: string;
6080
6080
  label: string;
6081
6081
  }[] | undefined;
6082
- display?: "checkbox" | "radio" | undefined;
6082
+ display?: "radio" | "checkbox" | undefined;
6083
6083
  multiple?: boolean | undefined;
6084
6084
  default_value?: string | string[] | undefined;
6085
6085
  } | undefined;
@@ -6601,7 +6601,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
6601
6601
  };
6602
6602
  };
6603
6603
  output: {
6604
- prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6604
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6642
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6664
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
6688
+ prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
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" | "system" | "admin" | "api_key";
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: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
8777
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
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: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
8816
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
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: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
8870
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
8871
8871
  date: string;
8872
8872
  isMobile: boolean;
8873
8873
  log_id: string;
@@ -9022,7 +9022,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9022
9022
  audience?: string | undefined;
9023
9023
  client_id?: string | undefined;
9024
9024
  allow_any_organization?: string | undefined;
9025
- subject_type?: "user" | "client" | undefined;
9025
+ subject_type?: "client" | "user" | undefined;
9026
9026
  };
9027
9027
  } & {
9028
9028
  header: {
@@ -9037,7 +9037,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9037
9037
  organization_usage?: "deny" | "allow" | "require" | undefined;
9038
9038
  allow_any_organization?: boolean | undefined;
9039
9039
  is_system?: boolean | undefined;
9040
- subject_type?: "user" | "client" | undefined;
9040
+ subject_type?: "client" | "user" | undefined;
9041
9041
  authorization_details_types?: string[] | undefined;
9042
9042
  created_at?: string | undefined;
9043
9043
  updated_at?: string | undefined;
@@ -9053,7 +9053,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9053
9053
  organization_usage?: "deny" | "allow" | "require" | undefined;
9054
9054
  allow_any_organization?: boolean | undefined;
9055
9055
  is_system?: boolean | undefined;
9056
- subject_type?: "user" | "client" | undefined;
9056
+ subject_type?: "client" | "user" | undefined;
9057
9057
  authorization_details_types?: string[] | undefined;
9058
9058
  created_at?: string | undefined;
9059
9059
  updated_at?: string | undefined;
@@ -9084,7 +9084,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9084
9084
  organization_usage?: "deny" | "allow" | "require" | undefined;
9085
9085
  allow_any_organization?: boolean | undefined;
9086
9086
  is_system?: boolean | undefined;
9087
- subject_type?: "user" | "client" | undefined;
9087
+ subject_type?: "client" | "user" | undefined;
9088
9088
  authorization_details_types?: string[] | undefined;
9089
9089
  created_at?: string | undefined;
9090
9090
  updated_at?: string | undefined;
@@ -9129,7 +9129,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9129
9129
  organization_usage?: "deny" | "allow" | "require" | undefined;
9130
9130
  allow_any_organization?: boolean | undefined;
9131
9131
  is_system?: boolean | undefined;
9132
- subject_type?: "user" | "client" | undefined;
9132
+ subject_type?: "client" | "user" | undefined;
9133
9133
  authorization_details_types?: string[] | undefined;
9134
9134
  };
9135
9135
  };
@@ -9141,7 +9141,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9141
9141
  organization_usage?: "deny" | "allow" | "require" | undefined;
9142
9142
  allow_any_organization?: boolean | undefined;
9143
9143
  is_system?: boolean | undefined;
9144
- subject_type?: "user" | "client" | undefined;
9144
+ subject_type?: "client" | "user" | undefined;
9145
9145
  authorization_details_types?: string[] | undefined;
9146
9146
  created_at?: string | undefined;
9147
9147
  updated_at?: string | undefined;
@@ -9165,7 +9165,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9165
9165
  organization_usage?: "deny" | "allow" | "require" | undefined;
9166
9166
  allow_any_organization?: boolean | undefined;
9167
9167
  is_system?: boolean | undefined;
9168
- subject_type?: "user" | "client" | undefined;
9168
+ subject_type?: "client" | "user" | undefined;
9169
9169
  authorization_details_types?: string[] | undefined;
9170
9170
  };
9171
9171
  };
@@ -9177,7 +9177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9177
9177
  organization_usage?: "deny" | "allow" | "require" | undefined;
9178
9178
  allow_any_organization?: boolean | undefined;
9179
9179
  is_system?: boolean | undefined;
9180
- subject_type?: "user" | "client" | undefined;
9180
+ subject_type?: "client" | "user" | undefined;
9181
9181
  authorization_details_types?: string[] | undefined;
9182
9182
  created_at?: string | undefined;
9183
9183
  updated_at?: string | undefined;
@@ -9255,7 +9255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9255
9255
  addons?: {
9256
9256
  [x: string]: any;
9257
9257
  } | undefined;
9258
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9258
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9259
9259
  client_metadata?: {
9260
9260
  [x: string]: string;
9261
9261
  } | undefined;
@@ -9351,7 +9351,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9351
9351
  addons?: {
9352
9352
  [x: string]: any;
9353
9353
  } | undefined;
9354
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9354
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9355
9355
  client_metadata?: {
9356
9356
  [x: string]: string;
9357
9357
  } | undefined;
@@ -9462,7 +9462,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9462
9462
  addons?: {
9463
9463
  [x: string]: any;
9464
9464
  } | undefined;
9465
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9465
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9466
9466
  client_metadata?: {
9467
9467
  [x: string]: string;
9468
9468
  } | undefined;
@@ -9572,7 +9572,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9572
9572
  custom_login_page_preview?: string | undefined;
9573
9573
  form_template?: string | undefined;
9574
9574
  addons?: Record<string, any> | undefined;
9575
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9575
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9576
9576
  client_metadata?: Record<string, string> | undefined;
9577
9577
  hide_sign_up_disabled_error?: boolean | undefined;
9578
9578
  mobile?: Record<string, any> | undefined;
@@ -9652,7 +9652,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9652
9652
  addons?: {
9653
9653
  [x: string]: any;
9654
9654
  } | undefined;
9655
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9655
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9656
9656
  client_metadata?: {
9657
9657
  [x: string]: string;
9658
9658
  } | undefined;
@@ -9741,7 +9741,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9741
9741
  custom_login_page_preview?: string | undefined;
9742
9742
  form_template?: string | undefined;
9743
9743
  addons?: Record<string, any> | undefined;
9744
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9744
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9745
9745
  client_metadata?: Record<string, string> | undefined;
9746
9746
  hide_sign_up_disabled_error?: boolean | undefined;
9747
9747
  mobile?: Record<string, any> | undefined;
@@ -9821,7 +9821,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
9821
9821
  addons?: {
9822
9822
  [x: string]: any;
9823
9823
  } | undefined;
9824
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9824
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9825
9825
  client_metadata?: {
9826
9826
  [x: string]: string;
9827
9827
  } | undefined;
@@ -11085,7 +11085,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11085
11085
  };
11086
11086
  };
11087
11087
  output: {
11088
- type: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11088
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
11089
11089
  date: string;
11090
11090
  isMobile: boolean;
11091
11091
  log_id: string;
@@ -11124,7 +11124,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11124
11124
  limit: number;
11125
11125
  length: number;
11126
11126
  logs: {
11127
- type: "s" | "w" | "i" | "fn" | "f" | "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" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
11127
+ type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
11128
11128
  date: string;
11129
11129
  isMobile: boolean;
11130
11130
  log_id: string;
@@ -11439,7 +11439,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11439
11439
  };
11440
11440
  } & {
11441
11441
  json: {
11442
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11442
+ 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";
11443
11443
  body: string;
11444
11444
  from: string;
11445
11445
  subject: string;
@@ -11460,7 +11460,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11460
11460
  };
11461
11461
  } & {
11462
11462
  json: {
11463
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11463
+ 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";
11464
11464
  body: string;
11465
11465
  from: string;
11466
11466
  subject: string;
@@ -11472,7 +11472,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11472
11472
  };
11473
11473
  };
11474
11474
  output: {
11475
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11475
+ 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";
11476
11476
  body: string;
11477
11477
  from: string;
11478
11478
  subject: string;
@@ -11495,7 +11495,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11495
11495
  };
11496
11496
  };
11497
11497
  output: {
11498
- name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11498
+ 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";
11499
11499
  body: string;
11500
11500
  subject: string;
11501
11501
  }[];
@@ -11508,7 +11508,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11508
11508
  $get: {
11509
11509
  input: {
11510
11510
  param: {
11511
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11511
+ 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";
11512
11512
  };
11513
11513
  } & {
11514
11514
  header: {
@@ -11521,7 +11521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11521
11521
  } | {
11522
11522
  input: {
11523
11523
  param: {
11524
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11524
+ 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";
11525
11525
  };
11526
11526
  } & {
11527
11527
  header: {
@@ -11529,7 +11529,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11529
11529
  };
11530
11530
  };
11531
11531
  output: {
11532
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11532
+ 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";
11533
11533
  body: string;
11534
11534
  from: string;
11535
11535
  subject: string;
@@ -11548,7 +11548,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11548
11548
  $put: {
11549
11549
  input: {
11550
11550
  param: {
11551
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11551
+ 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";
11552
11552
  };
11553
11553
  } & {
11554
11554
  header: {
@@ -11556,7 +11556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11556
11556
  };
11557
11557
  } & {
11558
11558
  json: {
11559
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11559
+ 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";
11560
11560
  body: string;
11561
11561
  subject: string;
11562
11562
  syntax?: "liquid" | undefined;
@@ -11568,7 +11568,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11568
11568
  };
11569
11569
  };
11570
11570
  output: {
11571
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11571
+ 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";
11572
11572
  body: string;
11573
11573
  from: string;
11574
11574
  subject: string;
@@ -11587,7 +11587,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11587
11587
  $patch: {
11588
11588
  input: {
11589
11589
  param: {
11590
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11590
+ 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";
11591
11591
  };
11592
11592
  } & {
11593
11593
  header: {
@@ -11595,7 +11595,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11595
11595
  };
11596
11596
  } & {
11597
11597
  json: {
11598
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11598
+ 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;
11599
11599
  body?: string | undefined;
11600
11600
  from?: string | undefined;
11601
11601
  subject?: string | undefined;
@@ -11612,7 +11612,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11612
11612
  } | {
11613
11613
  input: {
11614
11614
  param: {
11615
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11615
+ 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";
11616
11616
  };
11617
11617
  } & {
11618
11618
  header: {
@@ -11620,7 +11620,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11620
11620
  };
11621
11621
  } & {
11622
11622
  json: {
11623
- template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
11623
+ 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;
11624
11624
  body?: string | undefined;
11625
11625
  from?: string | undefined;
11626
11626
  subject?: string | undefined;
@@ -11632,7 +11632,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11632
11632
  };
11633
11633
  };
11634
11634
  output: {
11635
- template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11635
+ 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";
11636
11636
  body: string;
11637
11637
  from: string;
11638
11638
  subject: string;
@@ -11651,7 +11651,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11651
11651
  $delete: {
11652
11652
  input: {
11653
11653
  param: {
11654
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11654
+ 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";
11655
11655
  };
11656
11656
  } & {
11657
11657
  header: {
@@ -11660,11 +11660,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11660
11660
  };
11661
11661
  output: {};
11662
11662
  outputFormat: string;
11663
- status: 404;
11663
+ status: 204;
11664
11664
  } | {
11665
11665
  input: {
11666
11666
  param: {
11667
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11667
+ 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";
11668
11668
  };
11669
11669
  } & {
11670
11670
  header: {
@@ -11673,7 +11673,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11673
11673
  };
11674
11674
  output: {};
11675
11675
  outputFormat: string;
11676
- status: 204;
11676
+ status: 404;
11677
11677
  };
11678
11678
  };
11679
11679
  } & {
@@ -11681,7 +11681,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11681
11681
  $post: {
11682
11682
  input: {
11683
11683
  param: {
11684
- templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
11684
+ 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";
11685
11685
  };
11686
11686
  } & {
11687
11687
  header: {
@@ -11809,7 +11809,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11809
11809
  };
11810
11810
  output: {};
11811
11811
  outputFormat: string;
11812
- status: 404;
11812
+ status: 204;
11813
11813
  } | {
11814
11814
  input: {
11815
11815
  header: {
@@ -11818,7 +11818,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11818
11818
  };
11819
11819
  output: {};
11820
11820
  outputFormat: string;
11821
- status: 204;
11821
+ status: 404;
11822
11822
  };
11823
11823
  };
11824
11824
  }, "/emails/provider"> & import("hono/types").MergeSchemaPath<{
@@ -11927,7 +11927,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11927
11927
  };
11928
11928
  output: {};
11929
11929
  outputFormat: string;
11930
- status: 404;
11930
+ status: 204;
11931
11931
  } | {
11932
11932
  input: {
11933
11933
  header: {
@@ -11936,7 +11936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11936
11936
  };
11937
11937
  output: {};
11938
11938
  outputFormat: string;
11939
- status: 204;
11939
+ status: 404;
11940
11940
  };
11941
11941
  };
11942
11942
  }, "/email/providers"> & import("hono/types").MergeSchemaPath<{
@@ -11964,7 +11964,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
11964
11964
  type: "auth0_managed_certs" | "self_managed_certs";
11965
11965
  custom_domain_id: string;
11966
11966
  primary: boolean;
11967
- status: "pending" | "ready" | "disabled" | "pending_verification";
11967
+ status: "disabled" | "pending" | "ready" | "pending_verification";
11968
11968
  verification_method?: "txt" | undefined;
11969
11969
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11970
11970
  domain_metadata?: {
@@ -12005,7 +12005,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12005
12005
  type: "auth0_managed_certs" | "self_managed_certs";
12006
12006
  custom_domain_id: string;
12007
12007
  primary: boolean;
12008
- status: "pending" | "ready" | "disabled" | "pending_verification";
12008
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12009
12009
  verification_method?: "txt" | undefined;
12010
12010
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12011
12011
  domain_metadata?: {
@@ -12066,7 +12066,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12066
12066
  domain_metadata?: Record<string, string> | undefined;
12067
12067
  custom_domain_id?: string | undefined;
12068
12068
  primary?: boolean | undefined;
12069
- status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
12069
+ status?: "disabled" | "pending" | "ready" | "pending_verification" | undefined;
12070
12070
  origin_domain_name?: string | undefined;
12071
12071
  verification?: {
12072
12072
  methods: ({
@@ -12087,7 +12087,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12087
12087
  type: "auth0_managed_certs" | "self_managed_certs";
12088
12088
  custom_domain_id: string;
12089
12089
  primary: boolean;
12090
- status: "pending" | "ready" | "disabled" | "pending_verification";
12090
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12091
12091
  verification_method?: "txt" | undefined;
12092
12092
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12093
12093
  domain_metadata?: {
@@ -12134,7 +12134,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12134
12134
  type: "auth0_managed_certs" | "self_managed_certs";
12135
12135
  custom_domain_id: string;
12136
12136
  primary: boolean;
12137
- status: "pending" | "ready" | "disabled" | "pending_verification";
12137
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12138
12138
  verification_method?: "txt" | undefined;
12139
12139
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12140
12140
  domain_metadata?: {
@@ -12180,7 +12180,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12180
12180
  type: "auth0_managed_certs" | "self_managed_certs";
12181
12181
  custom_domain_id: string;
12182
12182
  primary: boolean;
12183
- status: "pending" | "ready" | "disabled" | "pending_verification";
12183
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12184
12184
  verification_method?: "txt" | undefined;
12185
12185
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12186
12186
  domain_metadata?: {
@@ -12221,7 +12221,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12221
12221
  type: "auth0_managed_certs" | "self_managed_certs";
12222
12222
  custom_domain_id: string;
12223
12223
  primary: boolean;
12224
- status: "pending" | "ready" | "disabled" | "pending_verification";
12224
+ status: "disabled" | "pending" | "ready" | "pending_verification";
12225
12225
  verification_method?: "txt" | undefined;
12226
12226
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12227
12227
  domain_metadata?: {
@@ -12828,7 +12828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
12828
12828
  logs: {
12829
12829
  action_name: string;
12830
12830
  lines: {
12831
- level: "log" | "error" | "info" | "warn" | "debug";
12831
+ level: "error" | "log" | "info" | "warn" | "debug";
12832
12832
  message: string;
12833
12833
  }[];
12834
12834
  }[];
@@ -13135,7 +13135,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13135
13135
  };
13136
13136
  output: {};
13137
13137
  outputFormat: string;
13138
- status: 404;
13138
+ status: 200;
13139
13139
  } | {
13140
13140
  input: {
13141
13141
  param: {
@@ -13148,7 +13148,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13148
13148
  };
13149
13149
  output: {};
13150
13150
  outputFormat: string;
13151
- status: 200;
13151
+ status: 404;
13152
13152
  } | {
13153
13153
  input: {
13154
13154
  param: {
@@ -13495,7 +13495,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
13495
13495
  args: import("hono/utils/types").JSONValue[];
13496
13496
  }[];
13497
13497
  logs: {
13498
- level: "log" | "error" | "info" | "warn" | "debug";
13498
+ level: "error" | "log" | "info" | "warn" | "debug";
13499
13499
  message: string;
13500
13500
  }[];
13501
13501
  error?: string | undefined;