authhero 5.19.0 → 5.21.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 (53) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +2701 -107
  3. package/dist/authhero.d.ts +310 -77
  4. package/dist/authhero.mjs +7366 -7036
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/common.d.ts +8 -0
  8. package/dist/types/authentication-flows/passwordless.d.ts +12 -3
  9. package/dist/types/authentication-flows/token-exchange.d.ts +19 -0
  10. package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -0
  11. package/dist/types/emails/defaults/ChangePassword.d.ts +6 -0
  12. package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -0
  13. package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -0
  14. package/dist/types/emails/defaults/PasswordReset.d.ts +5 -0
  15. package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -0
  16. package/dist/types/emails/index.d.ts +21 -1
  17. package/dist/types/helpers/client.d.ts +20 -0
  18. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  19. package/dist/types/helpers/scopes-permissions.d.ts +1 -1
  20. package/dist/types/index.d.ts +243 -74
  21. package/dist/types/provisioning/index.d.ts +2 -0
  22. package/dist/types/provisioning/noop-provisioner.d.ts +11 -0
  23. package/dist/types/provisioning/provisioner.d.ts +25 -0
  24. package/dist/types/routes/auth-api/index.d.ts +129 -19
  25. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  26. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  27. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  28. package/dist/types/routes/auth-api/token.d.ts +110 -0
  29. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  30. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  31. package/dist/types/routes/management-api/actions.d.ts +1 -1
  32. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  33. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  34. package/dist/types/routes/management-api/clients.d.ts +7 -7
  35. package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
  36. package/dist/types/routes/management-api/email-templates.d.ts +58 -1
  37. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  38. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  39. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  40. package/dist/types/routes/management-api/index.d.ts +106 -49
  41. package/dist/types/routes/management-api/logs.d.ts +3 -3
  42. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  43. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  44. package/dist/types/routes/management-api/tenants.d.ts +27 -0
  45. package/dist/types/routes/management-api/users.d.ts +2 -2
  46. package/dist/types/routes/universal-login/common.d.ts +38 -2
  47. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  48. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  49. package/dist/types/types/AuthHeroConfig.d.ts +12 -0
  50. package/dist/types/types/GrantFlowResult.d.ts +8 -0
  51. package/dist/types/utils/jwks.d.ts +2 -2
  52. package/dist/types/utils/jwt.d.ts +4 -0
  53. package/package.json +5 -5
@@ -28,6 +28,8 @@ export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./rou
28
28
  export { addEntityHooks } from "./helpers/entity-hooks-wrapper";
29
29
  export { seed, MANAGEMENT_API_SCOPES } from "./seed";
30
30
  export type { SeedOptions, SeedResult } from "./seed";
31
+ export { NoopTenantProvisioner } from "./provisioning";
32
+ export type { TenantProvisioner, TenantProvisionerContext, } from "./provisioning";
31
33
  export { createAuthMiddleware, MANAGEMENT_API_AUDIENCE, } from "./middlewares/authentication";
32
34
  export type { ManagementAudienceResolver } from "./middlewares/authentication";
33
35
  export { tenantMiddleware } from "./middlewares/tenant";
@@ -83,7 +85,7 @@ export declare function init(config: AuthHeroConfig): {
83
85
  };
84
86
  } & {
85
87
  json: {
86
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
88
+ type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
87
89
  phone_number?: string | undefined;
88
90
  totp_secret?: string | undefined;
89
91
  credential_id?: string | undefined;
@@ -223,7 +225,7 @@ export declare function init(config: AuthHeroConfig): {
223
225
  };
224
226
  };
225
227
  output: {
226
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
228
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
227
229
  enabled: boolean;
228
230
  trial_expired?: boolean | undefined;
229
231
  }[];
@@ -378,7 +380,7 @@ export declare function init(config: AuthHeroConfig): {
378
380
  $get: {
379
381
  input: {
380
382
  param: {
381
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
383
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
382
384
  };
383
385
  } & {
384
386
  header: {
@@ -386,7 +388,7 @@ export declare function init(config: AuthHeroConfig): {
386
388
  };
387
389
  };
388
390
  output: {
389
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
391
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
390
392
  enabled: boolean;
391
393
  trial_expired?: boolean | undefined;
392
394
  };
@@ -399,7 +401,7 @@ export declare function init(config: AuthHeroConfig): {
399
401
  $put: {
400
402
  input: {
401
403
  param: {
402
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
404
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
403
405
  };
404
406
  } & {
405
407
  header: {
@@ -411,7 +413,7 @@ export declare function init(config: AuthHeroConfig): {
411
413
  };
412
414
  };
413
415
  output: {
414
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
416
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
415
417
  enabled: boolean;
416
418
  trial_expired?: boolean | undefined;
417
419
  };
@@ -6647,7 +6649,7 @@ export declare function init(config: AuthHeroConfig): {
6647
6649
  };
6648
6650
  };
6649
6651
  output: {
6650
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6652
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
6651
6653
  language: string;
6652
6654
  }[];
6653
6655
  outputFormat: "json";
@@ -6685,7 +6687,7 @@ export declare function init(config: AuthHeroConfig): {
6685
6687
  $get: {
6686
6688
  input: {
6687
6689
  param: {
6688
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6690
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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
6691
  language: string;
6690
6692
  };
6691
6693
  } & {
@@ -6707,7 +6709,7 @@ export declare function init(config: AuthHeroConfig): {
6707
6709
  $put: {
6708
6710
  input: {
6709
6711
  param: {
6710
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6712
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
6711
6713
  language: string;
6712
6714
  };
6713
6715
  } & {
@@ -6731,7 +6733,7 @@ export declare function init(config: AuthHeroConfig): {
6731
6733
  $delete: {
6732
6734
  input: {
6733
6735
  param: {
6734
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
6736
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
6735
6737
  language: string;
6736
6738
  };
6737
6739
  } & {
@@ -7629,7 +7631,7 @@ export declare function init(config: AuthHeroConfig): {
7629
7631
  tenant_id: string;
7630
7632
  created_at: string;
7631
7633
  updated_at: string;
7632
- deploymentStatus: "deployed" | "failed" | "not_required";
7634
+ deploymentStatus: "failed" | "deployed" | "not_required";
7633
7635
  secrets?: {
7634
7636
  [x: string]: string;
7635
7637
  } | undefined;
@@ -7719,7 +7721,7 @@ export declare function init(config: AuthHeroConfig): {
7719
7721
  tenant_id: string;
7720
7722
  created_at: string;
7721
7723
  updated_at: string;
7722
- deploymentStatus: "deployed" | "failed" | "not_required";
7724
+ deploymentStatus: "failed" | "deployed" | "not_required";
7723
7725
  secrets?: {
7724
7726
  [x: string]: string;
7725
7727
  } | undefined;
@@ -8172,7 +8174,7 @@ export declare function init(config: AuthHeroConfig): {
8172
8174
  log_type: string;
8173
8175
  category: "user_action" | "admin_action" | "system" | "api";
8174
8176
  actor: {
8175
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8177
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
8176
8178
  id?: string | undefined;
8177
8179
  email?: string | undefined;
8178
8180
  org_id?: string | undefined;
@@ -8480,7 +8482,7 @@ export declare function init(config: AuthHeroConfig): {
8480
8482
  created_at: string;
8481
8483
  updated_at: string;
8482
8484
  name: string;
8483
- provider: "auth0" | "oidc" | "cognito" | "okta";
8485
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8484
8486
  connection: string;
8485
8487
  enabled: boolean;
8486
8488
  credentials: {
@@ -8512,7 +8514,7 @@ export declare function init(config: AuthHeroConfig): {
8512
8514
  created_at: string;
8513
8515
  updated_at: string;
8514
8516
  name: string;
8515
- provider: "auth0" | "oidc" | "cognito" | "okta";
8517
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8516
8518
  connection: string;
8517
8519
  enabled: boolean;
8518
8520
  credentials: {
@@ -8538,7 +8540,7 @@ export declare function init(config: AuthHeroConfig): {
8538
8540
  } & {
8539
8541
  json: {
8540
8542
  name: string;
8541
- provider: "auth0" | "oidc" | "cognito" | "okta";
8543
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8542
8544
  connection: string;
8543
8545
  credentials: {
8544
8546
  domain: string;
@@ -8555,7 +8557,7 @@ export declare function init(config: AuthHeroConfig): {
8555
8557
  created_at: string;
8556
8558
  updated_at: string;
8557
8559
  name: string;
8558
- provider: "auth0" | "oidc" | "cognito" | "okta";
8560
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8559
8561
  connection: string;
8560
8562
  enabled: boolean;
8561
8563
  credentials: {
@@ -8586,7 +8588,7 @@ export declare function init(config: AuthHeroConfig): {
8586
8588
  json: {
8587
8589
  id?: string | undefined;
8588
8590
  name?: string | undefined;
8589
- provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
8591
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
8590
8592
  connection?: string | undefined;
8591
8593
  enabled?: boolean | undefined;
8592
8594
  credentials?: {
@@ -8602,7 +8604,7 @@ export declare function init(config: AuthHeroConfig): {
8602
8604
  created_at: string;
8603
8605
  updated_at: string;
8604
8606
  name: string;
8605
- provider: "auth0" | "oidc" | "cognito" | "okta";
8607
+ provider: "auth0" | "cognito" | "okta" | "oidc";
8606
8608
  connection: string;
8607
8609
  enabled: boolean;
8608
8610
  credentials: {
@@ -8820,7 +8822,7 @@ export declare function init(config: AuthHeroConfig): {
8820
8822
  };
8821
8823
  };
8822
8824
  output: {
8823
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8825
+ 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";
8824
8826
  date: string;
8825
8827
  isMobile: boolean;
8826
8828
  log_id: string;
@@ -8859,7 +8861,7 @@ export declare function init(config: AuthHeroConfig): {
8859
8861
  limit: number;
8860
8862
  length: number;
8861
8863
  logs: {
8862
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8864
+ 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";
8863
8865
  date: string;
8864
8866
  isMobile: boolean;
8865
8867
  log_id: string;
@@ -8913,7 +8915,7 @@ export declare function init(config: AuthHeroConfig): {
8913
8915
  };
8914
8916
  };
8915
8917
  output: {
8916
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
8918
+ 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";
8917
8919
  date: string;
8918
8920
  isMobile: boolean;
8919
8921
  log_id: string;
@@ -9068,7 +9070,7 @@ export declare function init(config: AuthHeroConfig): {
9068
9070
  audience?: string | undefined;
9069
9071
  client_id?: string | undefined;
9070
9072
  allow_any_organization?: string | undefined;
9071
- subject_type?: "user" | "client" | undefined;
9073
+ subject_type?: "client" | "user" | undefined;
9072
9074
  };
9073
9075
  } & {
9074
9076
  header: {
@@ -9083,7 +9085,7 @@ export declare function init(config: AuthHeroConfig): {
9083
9085
  organization_usage?: "deny" | "allow" | "require" | undefined;
9084
9086
  allow_any_organization?: boolean | undefined;
9085
9087
  is_system?: boolean | undefined;
9086
- subject_type?: "user" | "client" | undefined;
9088
+ subject_type?: "client" | "user" | undefined;
9087
9089
  authorization_details_types?: string[] | undefined;
9088
9090
  created_at?: string | undefined;
9089
9091
  updated_at?: string | undefined;
@@ -9099,7 +9101,7 @@ export declare function init(config: AuthHeroConfig): {
9099
9101
  organization_usage?: "deny" | "allow" | "require" | undefined;
9100
9102
  allow_any_organization?: boolean | undefined;
9101
9103
  is_system?: boolean | undefined;
9102
- subject_type?: "user" | "client" | undefined;
9104
+ subject_type?: "client" | "user" | undefined;
9103
9105
  authorization_details_types?: string[] | undefined;
9104
9106
  created_at?: string | undefined;
9105
9107
  updated_at?: string | undefined;
@@ -9130,7 +9132,7 @@ export declare function init(config: AuthHeroConfig): {
9130
9132
  organization_usage?: "deny" | "allow" | "require" | undefined;
9131
9133
  allow_any_organization?: boolean | undefined;
9132
9134
  is_system?: boolean | undefined;
9133
- subject_type?: "user" | "client" | undefined;
9135
+ subject_type?: "client" | "user" | undefined;
9134
9136
  authorization_details_types?: string[] | undefined;
9135
9137
  created_at?: string | undefined;
9136
9138
  updated_at?: string | undefined;
@@ -9175,7 +9177,7 @@ export declare function init(config: AuthHeroConfig): {
9175
9177
  organization_usage?: "deny" | "allow" | "require" | undefined;
9176
9178
  allow_any_organization?: boolean | undefined;
9177
9179
  is_system?: boolean | undefined;
9178
- subject_type?: "user" | "client" | undefined;
9180
+ subject_type?: "client" | "user" | undefined;
9179
9181
  authorization_details_types?: string[] | undefined;
9180
9182
  };
9181
9183
  };
@@ -9187,7 +9189,7 @@ export declare function init(config: AuthHeroConfig): {
9187
9189
  organization_usage?: "deny" | "allow" | "require" | undefined;
9188
9190
  allow_any_organization?: boolean | undefined;
9189
9191
  is_system?: boolean | undefined;
9190
- subject_type?: "user" | "client" | undefined;
9192
+ subject_type?: "client" | "user" | undefined;
9191
9193
  authorization_details_types?: string[] | undefined;
9192
9194
  created_at?: string | undefined;
9193
9195
  updated_at?: string | undefined;
@@ -9211,7 +9213,7 @@ export declare function init(config: AuthHeroConfig): {
9211
9213
  organization_usage?: "deny" | "allow" | "require" | undefined;
9212
9214
  allow_any_organization?: boolean | undefined;
9213
9215
  is_system?: boolean | undefined;
9214
- subject_type?: "user" | "client" | undefined;
9216
+ subject_type?: "client" | "user" | undefined;
9215
9217
  authorization_details_types?: string[] | undefined;
9216
9218
  };
9217
9219
  };
@@ -9223,7 +9225,7 @@ export declare function init(config: AuthHeroConfig): {
9223
9225
  organization_usage?: "deny" | "allow" | "require" | undefined;
9224
9226
  allow_any_organization?: boolean | undefined;
9225
9227
  is_system?: boolean | undefined;
9226
- subject_type?: "user" | "client" | undefined;
9228
+ subject_type?: "client" | "user" | undefined;
9227
9229
  authorization_details_types?: string[] | undefined;
9228
9230
  created_at?: string | undefined;
9229
9231
  updated_at?: string | undefined;
@@ -9301,7 +9303,7 @@ export declare function init(config: AuthHeroConfig): {
9301
9303
  addons?: {
9302
9304
  [x: string]: any;
9303
9305
  } | undefined;
9304
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9306
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9305
9307
  client_metadata?: {
9306
9308
  [x: string]: string;
9307
9309
  } | undefined;
@@ -9397,7 +9399,7 @@ export declare function init(config: AuthHeroConfig): {
9397
9399
  addons?: {
9398
9400
  [x: string]: any;
9399
9401
  } | undefined;
9400
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9402
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9401
9403
  client_metadata?: {
9402
9404
  [x: string]: string;
9403
9405
  } | undefined;
@@ -9508,7 +9510,7 @@ export declare function init(config: AuthHeroConfig): {
9508
9510
  addons?: {
9509
9511
  [x: string]: any;
9510
9512
  } | undefined;
9511
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9513
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9512
9514
  client_metadata?: {
9513
9515
  [x: string]: string;
9514
9516
  } | undefined;
@@ -9618,7 +9620,7 @@ export declare function init(config: AuthHeroConfig): {
9618
9620
  custom_login_page_preview?: string | undefined;
9619
9621
  form_template?: string | undefined;
9620
9622
  addons?: Record<string, any> | undefined;
9621
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9623
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9622
9624
  client_metadata?: Record<string, string> | undefined;
9623
9625
  hide_sign_up_disabled_error?: boolean | undefined;
9624
9626
  mobile?: Record<string, any> | undefined;
@@ -9698,7 +9700,7 @@ export declare function init(config: AuthHeroConfig): {
9698
9700
  addons?: {
9699
9701
  [x: string]: any;
9700
9702
  } | undefined;
9701
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9703
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9702
9704
  client_metadata?: {
9703
9705
  [x: string]: string;
9704
9706
  } | undefined;
@@ -9787,7 +9789,7 @@ export declare function init(config: AuthHeroConfig): {
9787
9789
  custom_login_page_preview?: string | undefined;
9788
9790
  form_template?: string | undefined;
9789
9791
  addons?: Record<string, any> | undefined;
9790
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9792
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9791
9793
  client_metadata?: Record<string, string> | undefined;
9792
9794
  hide_sign_up_disabled_error?: boolean | undefined;
9793
9795
  mobile?: Record<string, any> | undefined;
@@ -9867,7 +9869,7 @@ export declare function init(config: AuthHeroConfig): {
9867
9869
  addons?: {
9868
9870
  [x: string]: any;
9869
9871
  } | undefined;
9870
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9872
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
9871
9873
  client_metadata?: {
9872
9874
  [x: string]: string;
9873
9875
  } | undefined;
@@ -11131,7 +11133,7 @@ export declare function init(config: AuthHeroConfig): {
11131
11133
  };
11132
11134
  };
11133
11135
  output: {
11134
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11136
+ 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";
11135
11137
  date: string;
11136
11138
  isMobile: boolean;
11137
11139
  log_id: string;
@@ -11170,7 +11172,7 @@ export declare function init(config: AuthHeroConfig): {
11170
11172
  limit: number;
11171
11173
  length: number;
11172
11174
  logs: {
11173
- type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11175
+ 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";
11174
11176
  date: string;
11175
11177
  isMobile: boolean;
11176
11178
  log_id: string;
@@ -11604,13 +11606,13 @@ export declare function init(config: AuthHeroConfig): {
11604
11606
  json: {
11605
11607
  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";
11606
11608
  body: string;
11607
- from: string;
11608
11609
  subject: string;
11609
11610
  syntax?: "liquid" | undefined;
11610
11611
  resultUrl?: string | undefined;
11611
11612
  urlLifetimeInSeconds?: number | undefined;
11612
11613
  includeEmailInRedirect?: boolean | undefined;
11613
11614
  enabled?: boolean | undefined;
11615
+ from?: string | undefined;
11614
11616
  };
11615
11617
  };
11616
11618
  output: {
@@ -11692,6 +11694,63 @@ export declare function init(config: AuthHeroConfig): {
11692
11694
  status: 200;
11693
11695
  };
11694
11696
  };
11697
+ } & {
11698
+ "/:templateName": {
11699
+ $delete: {
11700
+ input: {
11701
+ param: {
11702
+ 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";
11703
+ };
11704
+ } & {
11705
+ header: {
11706
+ "tenant-id"?: string | undefined;
11707
+ };
11708
+ };
11709
+ output: {};
11710
+ outputFormat: string;
11711
+ status: 204;
11712
+ } | {
11713
+ input: {
11714
+ param: {
11715
+ 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";
11716
+ };
11717
+ } & {
11718
+ header: {
11719
+ "tenant-id"?: string | undefined;
11720
+ };
11721
+ };
11722
+ output: {};
11723
+ outputFormat: string;
11724
+ status: 404;
11725
+ };
11726
+ };
11727
+ } & {
11728
+ "/:templateName/try": {
11729
+ $post: {
11730
+ input: {
11731
+ param: {
11732
+ 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";
11733
+ };
11734
+ } & {
11735
+ header: {
11736
+ "tenant-id"?: string | undefined;
11737
+ };
11738
+ } & {
11739
+ json: {
11740
+ to: string;
11741
+ body?: string | undefined;
11742
+ subject?: string | undefined;
11743
+ from?: string | undefined;
11744
+ language?: string | undefined;
11745
+ };
11746
+ };
11747
+ output: {
11748
+ sent: boolean;
11749
+ };
11750
+ outputFormat: "json";
11751
+ status: 200;
11752
+ };
11753
+ };
11695
11754
  }, "/email-templates"> & import("hono/types").MergeSchemaPath<{
11696
11755
  "/": {
11697
11756
  $get: {
@@ -11953,7 +12012,7 @@ export declare function init(config: AuthHeroConfig): {
11953
12012
  type: "auth0_managed_certs" | "self_managed_certs";
11954
12013
  custom_domain_id: string;
11955
12014
  primary: boolean;
11956
- status: "disabled" | "pending" | "pending_verification" | "ready";
12015
+ status: "pending" | "ready" | "disabled" | "pending_verification";
11957
12016
  verification_method?: "txt" | undefined;
11958
12017
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
11959
12018
  domain_metadata?: {
@@ -11994,7 +12053,7 @@ export declare function init(config: AuthHeroConfig): {
11994
12053
  type: "auth0_managed_certs" | "self_managed_certs";
11995
12054
  custom_domain_id: string;
11996
12055
  primary: boolean;
11997
- status: "disabled" | "pending" | "pending_verification" | "ready";
12056
+ status: "pending" | "ready" | "disabled" | "pending_verification";
11998
12057
  verification_method?: "txt" | undefined;
11999
12058
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12000
12059
  domain_metadata?: {
@@ -12055,7 +12114,7 @@ export declare function init(config: AuthHeroConfig): {
12055
12114
  domain_metadata?: Record<string, string> | undefined;
12056
12115
  custom_domain_id?: string | undefined;
12057
12116
  primary?: boolean | undefined;
12058
- status?: "disabled" | "pending" | "pending_verification" | "ready" | undefined;
12117
+ status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
12059
12118
  origin_domain_name?: string | undefined;
12060
12119
  verification?: {
12061
12120
  methods: ({
@@ -12076,7 +12135,7 @@ export declare function init(config: AuthHeroConfig): {
12076
12135
  type: "auth0_managed_certs" | "self_managed_certs";
12077
12136
  custom_domain_id: string;
12078
12137
  primary: boolean;
12079
- status: "disabled" | "pending" | "pending_verification" | "ready";
12138
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12080
12139
  verification_method?: "txt" | undefined;
12081
12140
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12082
12141
  domain_metadata?: {
@@ -12123,7 +12182,7 @@ export declare function init(config: AuthHeroConfig): {
12123
12182
  type: "auth0_managed_certs" | "self_managed_certs";
12124
12183
  custom_domain_id: string;
12125
12184
  primary: boolean;
12126
- status: "disabled" | "pending" | "pending_verification" | "ready";
12185
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12127
12186
  verification_method?: "txt" | undefined;
12128
12187
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12129
12188
  domain_metadata?: {
@@ -12169,7 +12228,7 @@ export declare function init(config: AuthHeroConfig): {
12169
12228
  type: "auth0_managed_certs" | "self_managed_certs";
12170
12229
  custom_domain_id: string;
12171
12230
  primary: boolean;
12172
- status: "disabled" | "pending" | "pending_verification" | "ready";
12231
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12173
12232
  verification_method?: "txt" | undefined;
12174
12233
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12175
12234
  domain_metadata?: {
@@ -12210,7 +12269,7 @@ export declare function init(config: AuthHeroConfig): {
12210
12269
  type: "auth0_managed_certs" | "self_managed_certs";
12211
12270
  custom_domain_id: string;
12212
12271
  primary: boolean;
12213
- status: "disabled" | "pending" | "pending_verification" | "ready";
12272
+ status: "pending" | "ready" | "disabled" | "pending_verification";
12214
12273
  verification_method?: "txt" | undefined;
12215
12274
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
12216
12275
  domain_metadata?: {
@@ -12817,7 +12876,7 @@ export declare function init(config: AuthHeroConfig): {
12817
12876
  logs: {
12818
12877
  action_name: string;
12819
12878
  lines: {
12820
- level: "log" | "error" | "info" | "warn" | "debug";
12879
+ level: "error" | "log" | "info" | "warn" | "debug";
12821
12880
  message: string;
12822
12881
  }[];
12823
12882
  }[];
@@ -13484,7 +13543,7 @@ export declare function init(config: AuthHeroConfig): {
13484
13543
  args: import("hono/utils/types").JSONValue[];
13485
13544
  }[];
13486
13545
  logs: {
13487
- level: "log" | "error" | "info" | "warn" | "debug";
13546
+ level: "error" | "log" | "info" | "warn" | "debug";
13488
13547
  message: string;
13489
13548
  }[];
13490
13549
  error?: string | undefined;
@@ -13782,7 +13841,7 @@ export declare function init(config: AuthHeroConfig): {
13782
13841
  scope?: string | undefined;
13783
13842
  grant_types?: string[] | undefined;
13784
13843
  response_types?: string[] | undefined;
13785
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13844
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13786
13845
  jwks_uri?: string | undefined;
13787
13846
  jwks?: Record<string, unknown> | undefined;
13788
13847
  software_id?: string | undefined;
@@ -13871,7 +13930,7 @@ export declare function init(config: AuthHeroConfig): {
13871
13930
  scope?: string | undefined;
13872
13931
  grant_types?: string[] | undefined;
13873
13932
  response_types?: string[] | undefined;
13874
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13933
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
13875
13934
  jwks_uri?: string | undefined;
13876
13935
  jwks?: Record<string, unknown> | undefined;
13877
13936
  software_id?: string | undefined;
@@ -14217,20 +14276,20 @@ export declare function init(config: AuthHeroConfig): {
14217
14276
  email: string;
14218
14277
  send: "code" | "link";
14219
14278
  authParams: {
14220
- username?: string | undefined;
14221
- state?: string | undefined;
14222
14279
  audience?: string | undefined;
14223
14280
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14224
14281
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14225
14282
  scope?: string | undefined;
14283
+ username?: string | undefined;
14284
+ state?: string | undefined;
14285
+ prompt?: string | undefined;
14286
+ ui_locales?: string | undefined;
14226
14287
  organization?: string | undefined;
14227
- nonce?: string | undefined;
14228
14288
  redirect_uri?: string | undefined;
14229
14289
  act_as?: string | undefined;
14230
- prompt?: string | undefined;
14290
+ nonce?: string | undefined;
14231
14291
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14232
14292
  code_challenge?: string | undefined;
14233
- ui_locales?: string | undefined;
14234
14293
  max_age?: number | undefined;
14235
14294
  acr_values?: string | undefined;
14236
14295
  claims?: {
@@ -14253,20 +14312,20 @@ export declare function init(config: AuthHeroConfig): {
14253
14312
  phone_number: string;
14254
14313
  send: "code" | "link";
14255
14314
  authParams: {
14256
- username?: string | undefined;
14257
- state?: string | undefined;
14258
14315
  audience?: string | undefined;
14259
14316
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
14260
14317
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
14261
14318
  scope?: string | undefined;
14319
+ username?: string | undefined;
14320
+ state?: string | undefined;
14321
+ prompt?: string | undefined;
14322
+ ui_locales?: string | undefined;
14262
14323
  organization?: string | undefined;
14263
- nonce?: string | undefined;
14264
14324
  redirect_uri?: string | undefined;
14265
14325
  act_as?: string | undefined;
14266
- prompt?: string | undefined;
14326
+ nonce?: string | undefined;
14267
14327
  code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
14268
14328
  code_challenge?: string | undefined;
14269
- ui_locales?: string | undefined;
14270
14329
  max_age?: number | undefined;
14271
14330
  acr_values?: string | undefined;
14272
14331
  claims?: {
@@ -14397,14 +14456,14 @@ export declare function init(config: AuthHeroConfig): {
14397
14456
  input: {
14398
14457
  form: {
14399
14458
  token: string;
14400
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14459
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14401
14460
  client_id?: string | undefined;
14402
14461
  client_secret?: string | undefined;
14403
14462
  };
14404
14463
  } & {
14405
14464
  json: {
14406
14465
  token: string;
14407
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14466
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14408
14467
  client_id?: string | undefined;
14409
14468
  client_secret?: string | undefined;
14410
14469
  };
@@ -14416,14 +14475,14 @@ export declare function init(config: AuthHeroConfig): {
14416
14475
  input: {
14417
14476
  form: {
14418
14477
  token: string;
14419
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14478
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14420
14479
  client_id?: string | undefined;
14421
14480
  client_secret?: string | undefined;
14422
14481
  };
14423
14482
  } & {
14424
14483
  json: {
14425
14484
  token: string;
14426
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14485
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14427
14486
  client_id?: string | undefined;
14428
14487
  client_secret?: string | undefined;
14429
14488
  };
@@ -14438,14 +14497,14 @@ export declare function init(config: AuthHeroConfig): {
14438
14497
  input: {
14439
14498
  form: {
14440
14499
  token: string;
14441
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14500
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14442
14501
  client_id?: string | undefined;
14443
14502
  client_secret?: string | undefined;
14444
14503
  };
14445
14504
  } & {
14446
14505
  json: {
14447
14506
  token: string;
14448
- token_type_hint?: "refresh_token" | "access_token" | undefined;
14507
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
14449
14508
  client_id?: string | undefined;
14450
14509
  client_secret?: string | undefined;
14451
14510
  };
@@ -14496,6 +14555,17 @@ export declare function init(config: AuthHeroConfig): {
14496
14555
  username: string;
14497
14556
  otp: string;
14498
14557
  realm: "sms" | "email";
14558
+ } | {
14559
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14560
+ subject_token: string;
14561
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14562
+ organization: string;
14563
+ audience?: string | undefined;
14564
+ scope?: string | undefined;
14565
+ client_id?: string | undefined;
14566
+ client_secret?: string | undefined;
14567
+ client_assertion?: string | undefined;
14568
+ client_assertion_type?: string | undefined;
14499
14569
  };
14500
14570
  } & {
14501
14571
  json: {
@@ -14532,6 +14602,17 @@ export declare function init(config: AuthHeroConfig): {
14532
14602
  username: string;
14533
14603
  otp: string;
14534
14604
  realm: "sms" | "email";
14605
+ } | {
14606
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14607
+ subject_token: string;
14608
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14609
+ organization: string;
14610
+ audience?: string | undefined;
14611
+ scope?: string | undefined;
14612
+ client_id?: string | undefined;
14613
+ client_secret?: string | undefined;
14614
+ client_assertion?: string | undefined;
14615
+ client_assertion_type?: string | undefined;
14535
14616
  };
14536
14617
  };
14537
14618
  output: {};
@@ -14573,6 +14654,17 @@ export declare function init(config: AuthHeroConfig): {
14573
14654
  username: string;
14574
14655
  otp: string;
14575
14656
  realm: "sms" | "email";
14657
+ } | {
14658
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14659
+ subject_token: string;
14660
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14661
+ organization: string;
14662
+ audience?: string | undefined;
14663
+ scope?: string | undefined;
14664
+ client_id?: string | undefined;
14665
+ client_secret?: string | undefined;
14666
+ client_assertion?: string | undefined;
14667
+ client_assertion_type?: string | undefined;
14576
14668
  };
14577
14669
  } & {
14578
14670
  json: {
@@ -14609,6 +14701,17 @@ export declare function init(config: AuthHeroConfig): {
14609
14701
  username: string;
14610
14702
  otp: string;
14611
14703
  realm: "sms" | "email";
14704
+ } | {
14705
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14706
+ subject_token: string;
14707
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14708
+ organization: string;
14709
+ audience?: string | undefined;
14710
+ scope?: string | undefined;
14711
+ client_id?: string | undefined;
14712
+ client_secret?: string | undefined;
14713
+ client_assertion?: string | undefined;
14714
+ client_assertion_type?: string | undefined;
14612
14715
  };
14613
14716
  };
14614
14717
  output: {
@@ -14658,6 +14761,17 @@ export declare function init(config: AuthHeroConfig): {
14658
14761
  username: string;
14659
14762
  otp: string;
14660
14763
  realm: "sms" | "email";
14764
+ } | {
14765
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14766
+ subject_token: string;
14767
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14768
+ organization: string;
14769
+ audience?: string | undefined;
14770
+ scope?: string | undefined;
14771
+ client_id?: string | undefined;
14772
+ client_secret?: string | undefined;
14773
+ client_assertion?: string | undefined;
14774
+ client_assertion_type?: string | undefined;
14661
14775
  };
14662
14776
  } & {
14663
14777
  json: {
@@ -14694,6 +14808,17 @@ export declare function init(config: AuthHeroConfig): {
14694
14808
  username: string;
14695
14809
  otp: string;
14696
14810
  realm: "sms" | "email";
14811
+ } | {
14812
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14813
+ subject_token: string;
14814
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14815
+ organization: string;
14816
+ audience?: string | undefined;
14817
+ scope?: string | undefined;
14818
+ client_id?: string | undefined;
14819
+ client_secret?: string | undefined;
14820
+ client_assertion?: string | undefined;
14821
+ client_assertion_type?: string | undefined;
14697
14822
  };
14698
14823
  };
14699
14824
  output: {
@@ -14738,6 +14863,17 @@ export declare function init(config: AuthHeroConfig): {
14738
14863
  username: string;
14739
14864
  otp: string;
14740
14865
  realm: "sms" | "email";
14866
+ } | {
14867
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14868
+ subject_token: string;
14869
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14870
+ organization: string;
14871
+ audience?: string | undefined;
14872
+ scope?: string | undefined;
14873
+ client_id?: string | undefined;
14874
+ client_secret?: string | undefined;
14875
+ client_assertion?: string | undefined;
14876
+ client_assertion_type?: string | undefined;
14741
14877
  };
14742
14878
  } & {
14743
14879
  json: {
@@ -14774,6 +14910,17 @@ export declare function init(config: AuthHeroConfig): {
14774
14910
  username: string;
14775
14911
  otp: string;
14776
14912
  realm: "sms" | "email";
14913
+ } | {
14914
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14915
+ subject_token: string;
14916
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14917
+ organization: string;
14918
+ audience?: string | undefined;
14919
+ scope?: string | undefined;
14920
+ client_id?: string | undefined;
14921
+ client_secret?: string | undefined;
14922
+ client_assertion?: string | undefined;
14923
+ client_assertion_type?: string | undefined;
14777
14924
  };
14778
14925
  };
14779
14926
  output: {
@@ -14818,6 +14965,17 @@ export declare function init(config: AuthHeroConfig): {
14818
14965
  username: string;
14819
14966
  otp: string;
14820
14967
  realm: "sms" | "email";
14968
+ } | {
14969
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
14970
+ subject_token: string;
14971
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
14972
+ organization: string;
14973
+ audience?: string | undefined;
14974
+ scope?: string | undefined;
14975
+ client_id?: string | undefined;
14976
+ client_secret?: string | undefined;
14977
+ client_assertion?: string | undefined;
14978
+ client_assertion_type?: string | undefined;
14821
14979
  };
14822
14980
  } & {
14823
14981
  json: {
@@ -14854,6 +15012,17 @@ export declare function init(config: AuthHeroConfig): {
14854
15012
  username: string;
14855
15013
  otp: string;
14856
15014
  realm: "sms" | "email";
15015
+ } | {
15016
+ grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15017
+ subject_token: string;
15018
+ subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
15019
+ organization: string;
15020
+ audience?: string | undefined;
15021
+ scope?: string | undefined;
15022
+ client_id?: string | undefined;
15023
+ client_secret?: string | undefined;
15024
+ client_assertion?: string | undefined;
15025
+ client_assertion_type?: string | undefined;
14857
15026
  };
14858
15027
  };
14859
15028
  output: {
@@ -14871,8 +15040,8 @@ export declare function init(config: AuthHeroConfig): {
14871
15040
  output: {
14872
15041
  keys: {
14873
15042
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
14874
- kid: string;
14875
15043
  kty: "EC" | "RSA" | "oct";
15044
+ kid?: string | undefined;
14876
15045
  use?: "sig" | "enc" | undefined;
14877
15046
  n?: string | undefined;
14878
15047
  e?: string | undefined;
@@ -16062,7 +16231,7 @@ export declare function init(config: AuthHeroConfig): {
16062
16231
  $get: {
16063
16232
  input: {
16064
16233
  param: {
16065
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16234
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16066
16235
  };
16067
16236
  } & {
16068
16237
  query: {
@@ -16078,7 +16247,7 @@ export declare function init(config: AuthHeroConfig): {
16078
16247
  } | {
16079
16248
  input: {
16080
16249
  param: {
16081
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16250
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16082
16251
  };
16083
16252
  } & {
16084
16253
  query: {
@@ -16094,7 +16263,7 @@ export declare function init(config: AuthHeroConfig): {
16094
16263
  } | {
16095
16264
  input: {
16096
16265
  param: {
16097
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16266
+ screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16098
16267
  };
16099
16268
  } & {
16100
16269
  query: {
@@ -16114,7 +16283,7 @@ export declare function init(config: AuthHeroConfig): {
16114
16283
  $post: {
16115
16284
  input: {
16116
16285
  param: {
16117
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16286
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16118
16287
  };
16119
16288
  } & {
16120
16289
  query: {
@@ -16132,7 +16301,7 @@ export declare function init(config: AuthHeroConfig): {
16132
16301
  } | {
16133
16302
  input: {
16134
16303
  param: {
16135
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16304
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16136
16305
  };
16137
16306
  } & {
16138
16307
  query: {
@@ -16150,7 +16319,7 @@ export declare function init(config: AuthHeroConfig): {
16150
16319
  } | {
16151
16320
  input: {
16152
16321
  param: {
16153
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16322
+ screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
16154
16323
  };
16155
16324
  } & {
16156
16325
  query: {