authhero 8.27.0 → 9.1.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 (68) hide show
  1. package/LICENSE +661 -21
  2. package/dist/assets/u/js/client.js +2 -2
  3. package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
  4. package/dist/assets/u/widget/index.esm.js +1 -1
  5. package/dist/assets/u/widget/{p-52a70476.entry.js → p-cdfc4555.entry.js} +1 -1
  6. package/dist/assets/u/widget/{p-f6babd26.entry.js → p-eca60302.entry.js} +1 -1
  7. package/dist/authhero.cjs +268 -251
  8. package/dist/authhero.d.ts +186 -95
  9. package/dist/authhero.mjs +26150 -18257
  10. package/dist/client.js +2 -2
  11. package/dist/tsconfig.types.tsbuildinfo +1 -1
  12. package/dist/types/authentication-flows/passwordless.d.ts +4 -3
  13. package/dist/types/client/client-bundle.d.ts +1 -1
  14. package/dist/types/constants.d.ts +2 -0
  15. package/dist/types/generated/locale-types.d.ts +2 -0
  16. package/dist/types/helpers/client.d.ts +2 -2
  17. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  18. package/dist/types/helpers/link-candidates.d.ts +28 -0
  19. package/dist/types/helpers/logging.d.ts +8 -0
  20. package/dist/types/helpers/revoke-user-sessions.d.ts +15 -0
  21. package/dist/types/helpers/scim/default-mapping.d.ts +10 -0
  22. package/dist/types/helpers/scim/discovery.d.ts +49 -0
  23. package/dist/types/helpers/scim/filter.d.ts +58 -0
  24. package/dist/types/helpers/scim/mint-token.d.ts +11 -0
  25. package/dist/types/helpers/scim/patch.d.ts +23 -0
  26. package/dist/types/helpers/scim/responses.d.ts +36 -0
  27. package/dist/types/helpers/scim/user-mapping.d.ts +76 -0
  28. package/dist/types/helpers/scopes-permissions.d.ts +18 -0
  29. package/dist/types/helpers/signing-keys.d.ts +36 -0
  30. package/dist/types/helpers/users.d.ts +116 -1
  31. package/dist/types/hooks/codehooks.d.ts +9 -1
  32. package/dist/types/hooks/helpers/post-login-account-linking.d.ts +52 -0
  33. package/dist/types/hooks/pre-defined/account-linking.d.ts +20 -0
  34. package/dist/types/hooks/user-registration.d.ts +1 -0
  35. package/dist/types/index.d.ts +121 -91
  36. package/dist/types/middlewares/scim-auth.d.ts +19 -0
  37. package/dist/types/routes/auth-api/index.d.ts +34 -34
  38. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  39. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  40. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  41. package/dist/types/routes/auth-api/token.d.ts +10 -10
  42. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  43. package/dist/types/routes/management-api/actions.d.ts +1 -1
  44. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  45. package/dist/types/routes/management-api/branding.d.ts +1 -1
  46. package/dist/types/routes/management-api/clients.d.ts +8 -8
  47. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  48. package/dist/types/routes/management-api/failed-events.d.ts +2 -1
  49. package/dist/types/routes/management-api/forms.d.ts +14 -0
  50. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  51. package/dist/types/routes/management-api/index.d.ts +76 -50
  52. package/dist/types/routes/management-api/logs.d.ts +4 -4
  53. package/dist/types/routes/management-api/organizations.d.ts +1 -1
  54. package/dist/types/routes/management-api/prompts.d.ts +6 -4
  55. package/dist/types/routes/management-api/scim.d.ts +187 -0
  56. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  57. package/dist/types/routes/management-api/users-by-email.d.ts +1 -0
  58. package/dist/types/routes/management-api/users.d.ts +13 -5
  59. package/dist/types/routes/scim/index.d.ts +6 -0
  60. package/dist/types/routes/universal-login/common.d.ts +3 -2
  61. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  62. package/dist/types/routes/universal-login/screens/types.d.ts +9 -0
  63. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  64. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  65. package/dist/types/types/AuthError.d.ts +1 -1
  66. package/dist/types/types/Hooks.d.ts +8 -1
  67. package/dist/types/utils/cookies.d.ts +11 -0
  68. package/package.json +7 -6
@@ -59,8 +59,8 @@ export { HttpSamlSigner } from "@authhero/saml/core";
59
59
  export { fetchAll } from "./utils/fetchAll";
60
60
  export type { FetchAllOptions } from "./utils/fetchAll";
61
61
  export { deepMergePatch } from "./utils/deep-merge";
62
- export { listControlPlaneKeys, resolveSigningKeys, resolveSigningKeyMode, } from "./helpers/signing-keys";
63
- export type { ResolveSigningKeysOptions } from "./helpers/signing-keys";
62
+ export { listControlPlaneKeys, resolveSigningKeys, resolveSigningKeyMode, ensureSigningKey, } from "./helpers/signing-keys";
63
+ export type { ResolveSigningKeysOptions, EnsureSigningKeyOptions, EnsureSigningKeyResult, } from "./helpers/signing-keys";
64
64
  export { USERNAME_PASSWORD_PROVIDER } from "./constants";
65
65
  export * as preDefinedHooks from "./hooks/pre-defined";
66
66
  export type { EnsureUsernameOptions } from "./hooks/pre-defined";
@@ -166,7 +166,7 @@ export declare function init(config: AuthHeroConfig): {
166
166
  };
167
167
  } & {
168
168
  json: {
169
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
169
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
170
170
  phone_number?: string | undefined;
171
171
  totp_secret?: string | undefined;
172
172
  credential_id?: string | undefined;
@@ -306,7 +306,7 @@ export declare function init(config: AuthHeroConfig): {
306
306
  };
307
307
  };
308
308
  output: {
309
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
309
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
310
310
  enabled: boolean;
311
311
  trial_expired?: boolean | undefined;
312
312
  }[];
@@ -461,7 +461,7 @@ export declare function init(config: AuthHeroConfig): {
461
461
  $get: {
462
462
  input: {
463
463
  param: {
464
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
464
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
465
465
  };
466
466
  } & {
467
467
  header: {
@@ -469,7 +469,7 @@ export declare function init(config: AuthHeroConfig): {
469
469
  };
470
470
  };
471
471
  output: {
472
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
472
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
473
473
  enabled: boolean;
474
474
  trial_expired?: boolean | undefined;
475
475
  };
@@ -482,7 +482,7 @@ export declare function init(config: AuthHeroConfig): {
482
482
  $put: {
483
483
  input: {
484
484
  param: {
485
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
485
+ factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
486
486
  };
487
487
  } & {
488
488
  header: {
@@ -494,7 +494,7 @@ export declare function init(config: AuthHeroConfig): {
494
494
  };
495
495
  };
496
496
  output: {
497
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
497
+ name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
498
498
  enabled: boolean;
499
499
  trial_expired?: boolean | undefined;
500
500
  };
@@ -1272,10 +1272,10 @@ export declare function init(config: AuthHeroConfig): {
1272
1272
  inviter: {
1273
1273
  name?: string | undefined;
1274
1274
  };
1275
+ connection_id?: string | undefined;
1275
1276
  id?: string | undefined;
1276
1277
  app_metadata?: Record<string, any> | undefined;
1277
1278
  user_metadata?: Record<string, any> | undefined;
1278
- connection_id?: string | undefined;
1279
1279
  roles?: string[] | undefined;
1280
1280
  send_invitation_email?: boolean | undefined;
1281
1281
  ttl_sec?: number | undefined;
@@ -3072,6 +3072,8 @@ export declare function init(config: AuthHeroConfig): {
3072
3072
  display_name?: string | undefined;
3073
3073
  icon_url?: string | undefined;
3074
3074
  href?: string | undefined;
3075
+ last_used?: boolean | undefined;
3076
+ last_used_label?: string | undefined;
3075
3077
  }[] | undefined;
3076
3078
  } | undefined;
3077
3079
  } | {
@@ -3673,6 +3675,8 @@ export declare function init(config: AuthHeroConfig): {
3673
3675
  display_name?: string | undefined;
3674
3676
  icon_url?: string | undefined;
3675
3677
  href?: string | undefined;
3678
+ last_used?: boolean | undefined;
3679
+ last_used_label?: string | undefined;
3676
3680
  }[] | undefined;
3677
3681
  } | undefined;
3678
3682
  } | {
@@ -4290,6 +4294,8 @@ export declare function init(config: AuthHeroConfig): {
4290
4294
  display_name?: string | undefined;
4291
4295
  icon_url?: string | undefined;
4292
4296
  href?: string | undefined;
4297
+ last_used?: boolean | undefined;
4298
+ last_used_label?: string | undefined;
4293
4299
  }[] | undefined;
4294
4300
  } | undefined;
4295
4301
  } | {
@@ -4908,6 +4914,8 @@ export declare function init(config: AuthHeroConfig): {
4908
4914
  display_name?: string | undefined;
4909
4915
  icon_url?: string | undefined;
4910
4916
  href?: string | undefined;
4917
+ last_used?: boolean | undefined;
4918
+ last_used_label?: string | undefined;
4911
4919
  }[] | undefined;
4912
4920
  } | undefined;
4913
4921
  } | {
@@ -5507,6 +5515,8 @@ export declare function init(config: AuthHeroConfig): {
5507
5515
  display_name?: string | undefined;
5508
5516
  icon_url?: string | undefined;
5509
5517
  href?: string | undefined;
5518
+ last_used?: boolean | undefined;
5519
+ last_used_label?: string | undefined;
5510
5520
  }[] | undefined;
5511
5521
  } | undefined;
5512
5522
  } | {
@@ -6104,6 +6114,8 @@ export declare function init(config: AuthHeroConfig): {
6104
6114
  display_name?: string | undefined;
6105
6115
  icon_url?: string | undefined;
6106
6116
  href?: string | undefined;
6117
+ last_used?: boolean | undefined;
6118
+ last_used_label?: string | undefined;
6107
6119
  }[] | undefined;
6108
6120
  } | undefined;
6109
6121
  } | {
@@ -6703,6 +6715,8 @@ export declare function init(config: AuthHeroConfig): {
6703
6715
  display_name?: string | undefined;
6704
6716
  icon_url?: string | undefined;
6705
6717
  href?: string | undefined;
6718
+ last_used?: boolean | undefined;
6719
+ last_used_label?: string | undefined;
6706
6720
  }[] | undefined;
6707
6721
  } | undefined;
6708
6722
  } | {
@@ -6952,6 +6966,7 @@ export declare function init(config: AuthHeroConfig): {
6952
6966
  universal_login_experience: "new" | "classic";
6953
6967
  identifier_first: boolean;
6954
6968
  password_first: boolean;
6969
+ show_last_used_connection: boolean;
6955
6970
  webauthn_platform_first_factor: boolean;
6956
6971
  };
6957
6972
  outputFormat: "json";
@@ -6970,6 +6985,7 @@ export declare function init(config: AuthHeroConfig): {
6970
6985
  universal_login_experience?: "new" | "classic" | undefined;
6971
6986
  identifier_first?: boolean | undefined;
6972
6987
  password_first?: boolean | undefined;
6988
+ show_last_used_connection?: boolean | undefined;
6973
6989
  webauthn_platform_first_factor?: boolean | undefined;
6974
6990
  };
6975
6991
  };
@@ -6987,7 +7003,7 @@ export declare function init(config: AuthHeroConfig): {
6987
7003
  };
6988
7004
  };
6989
7005
  output: {
6990
- 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";
7006
+ prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
6991
7007
  language: string;
6992
7008
  }[];
6993
7009
  outputFormat: "json";
@@ -7025,7 +7041,7 @@ export declare function init(config: AuthHeroConfig): {
7025
7041
  $get: {
7026
7042
  input: {
7027
7043
  param: {
7028
- 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";
7044
+ prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
7029
7045
  language: string;
7030
7046
  };
7031
7047
  } & {
@@ -7047,7 +7063,7 @@ export declare function init(config: AuthHeroConfig): {
7047
7063
  $put: {
7048
7064
  input: {
7049
7065
  param: {
7050
- 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";
7066
+ prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
7051
7067
  language: string;
7052
7068
  };
7053
7069
  } & {
@@ -7071,7 +7087,7 @@ export declare function init(config: AuthHeroConfig): {
7071
7087
  $delete: {
7072
7088
  input: {
7073
7089
  param: {
7074
- 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";
7090
+ prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "login-id" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "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";
7075
7091
  language: string;
7076
7092
  };
7077
7093
  } & {
@@ -8574,7 +8590,7 @@ export declare function init(config: AuthHeroConfig): {
8574
8590
  log_type: string;
8575
8591
  category: "user_action" | "admin_action" | "system" | "api";
8576
8592
  actor: {
8577
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
8593
+ type: "user" | "client_credentials" | "api_key" | "system" | "admin";
8578
8594
  id?: string | undefined;
8579
8595
  email?: string | undefined;
8580
8596
  org_id?: string | undefined;
@@ -8608,6 +8624,7 @@ export declare function init(config: AuthHeroConfig): {
8608
8624
  body?: import("hono/utils/types").JSONValue | undefined;
8609
8625
  user_agent?: string | undefined;
8610
8626
  correlation_id?: string | undefined;
8627
+ redirect_uri?: string | undefined;
8611
8628
  };
8612
8629
  hostname: string;
8613
8630
  timestamp: string;
@@ -9224,7 +9241,7 @@ export declare function init(config: AuthHeroConfig): {
9224
9241
  };
9225
9242
  };
9226
9243
  output: {
9227
- 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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9244
+ type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9228
9245
  date: string;
9229
9246
  isMobile: boolean;
9230
9247
  log_id: string;
@@ -9263,7 +9280,7 @@ export declare function init(config: AuthHeroConfig): {
9263
9280
  limit: number;
9264
9281
  length: number;
9265
9282
  logs: {
9266
- 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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9283
+ type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9267
9284
  date: string;
9268
9285
  isMobile: boolean;
9269
9286
  log_id: string;
@@ -9302,7 +9319,7 @@ export declare function init(config: AuthHeroConfig): {
9302
9319
  next?: string | undefined;
9303
9320
  } | {
9304
9321
  logs: {
9305
- 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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9322
+ type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9306
9323
  date: string;
9307
9324
  isMobile: boolean;
9308
9325
  log_id: string;
@@ -9356,7 +9373,7 @@ export declare function init(config: AuthHeroConfig): {
9356
9373
  };
9357
9374
  };
9358
9375
  output: {
9359
- 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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9376
+ type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
9360
9377
  date: string;
9361
9378
  isMobile: boolean;
9362
9379
  log_id: string;
@@ -9767,7 +9784,7 @@ export declare function init(config: AuthHeroConfig): {
9767
9784
  addons?: {
9768
9785
  [x: string]: any;
9769
9786
  } | undefined;
9770
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9787
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9771
9788
  client_metadata?: {
9772
9789
  [x: string]: string;
9773
9790
  } | undefined;
@@ -9869,7 +9886,7 @@ export declare function init(config: AuthHeroConfig): {
9869
9886
  addons?: {
9870
9887
  [x: string]: any;
9871
9888
  } | undefined;
9872
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9889
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9873
9890
  client_metadata?: {
9874
9891
  [x: string]: string;
9875
9892
  } | undefined;
@@ -9971,7 +9988,7 @@ export declare function init(config: AuthHeroConfig): {
9971
9988
  addons?: {
9972
9989
  [x: string]: any;
9973
9990
  } | undefined;
9974
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
9991
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
9975
9992
  client_metadata?: {
9976
9993
  [x: string]: string;
9977
9994
  } | undefined;
@@ -10088,7 +10105,7 @@ export declare function init(config: AuthHeroConfig): {
10088
10105
  addons?: {
10089
10106
  [x: string]: any;
10090
10107
  } | undefined;
10091
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10108
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10092
10109
  client_metadata?: {
10093
10110
  [x: string]: string;
10094
10111
  } | undefined;
@@ -10206,7 +10223,7 @@ export declare function init(config: AuthHeroConfig): {
10206
10223
  custom_login_page_preview?: string | undefined;
10207
10224
  form_template?: string | undefined;
10208
10225
  addons?: Record<string, any> | undefined;
10209
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10226
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10210
10227
  client_metadata?: Record<string, string> | undefined;
10211
10228
  hide_sign_up_disabled_error?: boolean | undefined;
10212
10229
  mobile?: Record<string, any> | undefined;
@@ -10292,7 +10309,7 @@ export declare function init(config: AuthHeroConfig): {
10292
10309
  addons?: {
10293
10310
  [x: string]: any;
10294
10311
  } | undefined;
10295
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10312
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10296
10313
  client_metadata?: {
10297
10314
  [x: string]: string;
10298
10315
  } | undefined;
@@ -10389,7 +10406,7 @@ export declare function init(config: AuthHeroConfig): {
10389
10406
  custom_login_page_preview?: string | undefined;
10390
10407
  form_template?: string | undefined;
10391
10408
  addons?: Record<string, any> | undefined;
10392
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10409
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10393
10410
  client_metadata?: Record<string, string> | undefined;
10394
10411
  hide_sign_up_disabled_error?: boolean | undefined;
10395
10412
  mobile?: Record<string, any> | undefined;
@@ -10475,7 +10492,7 @@ export declare function init(config: AuthHeroConfig): {
10475
10492
  addons?: {
10476
10493
  [x: string]: any;
10477
10494
  } | undefined;
10478
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
10495
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
10479
10496
  client_metadata?: {
10480
10497
  [x: string]: string;
10481
10498
  } | undefined;
@@ -10881,6 +10898,7 @@ export declare function init(config: AuthHeroConfig): {
10881
10898
  verify_email?: boolean | undefined;
10882
10899
  last_ip?: string | undefined;
10883
10900
  last_login?: string | undefined;
10901
+ blocked?: boolean | undefined;
10884
10902
  registration_completed_at?: string | undefined;
10885
10903
  email?: string | undefined;
10886
10904
  identities?: {
@@ -11066,6 +11084,7 @@ export declare function init(config: AuthHeroConfig): {
11066
11084
  verify_email?: boolean | undefined;
11067
11085
  last_ip?: string | undefined;
11068
11086
  last_login?: string | undefined;
11087
+ blocked?: boolean | undefined;
11069
11088
  identities?: {
11070
11089
  connection: string;
11071
11090
  user_id: string;
@@ -11136,6 +11155,7 @@ export declare function init(config: AuthHeroConfig): {
11136
11155
  verify_email?: boolean | undefined;
11137
11156
  last_ip?: string | undefined;
11138
11157
  last_login?: string | undefined;
11158
+ blocked?: boolean | undefined;
11139
11159
  identities?: {
11140
11160
  connection: string;
11141
11161
  user_id: string;
@@ -11206,6 +11226,7 @@ export declare function init(config: AuthHeroConfig): {
11206
11226
  verify_email?: boolean | undefined;
11207
11227
  last_ip?: string | undefined;
11208
11228
  last_login?: string | undefined;
11229
+ blocked?: boolean | undefined;
11209
11230
  identities?: {
11210
11231
  connection: string;
11211
11232
  user_id: string;
@@ -11291,6 +11312,7 @@ export declare function init(config: AuthHeroConfig): {
11291
11312
  verify_email?: boolean | undefined;
11292
11313
  last_ip?: string | undefined;
11293
11314
  last_login?: string | undefined;
11315
+ blocked?: boolean | undefined;
11294
11316
  identities?: {
11295
11317
  connection: string;
11296
11318
  user_id: string;
@@ -11384,6 +11406,7 @@ export declare function init(config: AuthHeroConfig): {
11384
11406
  user_id?: string | undefined;
11385
11407
  provider?: string | undefined;
11386
11408
  is_social?: boolean | undefined;
11409
+ blocked?: boolean | undefined;
11387
11410
  registration_completed_at?: string | undefined;
11388
11411
  password?: string | undefined;
11389
11412
  };
@@ -11429,6 +11452,7 @@ export declare function init(config: AuthHeroConfig): {
11429
11452
  verify_email?: boolean | undefined;
11430
11453
  last_ip?: string | undefined;
11431
11454
  last_login?: string | undefined;
11455
+ blocked?: boolean | undefined;
11432
11456
  identities?: {
11433
11457
  connection: string;
11434
11458
  user_id: string;
@@ -11484,8 +11508,6 @@ export declare function init(config: AuthHeroConfig): {
11484
11508
  locale?: string | undefined;
11485
11509
  linked_to?: string | undefined;
11486
11510
  profileData?: string | undefined;
11487
- app_metadata?: any;
11488
- user_metadata?: any;
11489
11511
  middle_name?: string | undefined;
11490
11512
  preferred_username?: string | undefined;
11491
11513
  profile?: string | undefined;
@@ -11501,16 +11523,19 @@ export declare function init(config: AuthHeroConfig): {
11501
11523
  postal_code?: string | undefined;
11502
11524
  country?: string | undefined;
11503
11525
  } | undefined;
11504
- email_verified?: boolean | undefined;
11505
11526
  last_ip?: string | undefined;
11506
11527
  last_login?: string | undefined;
11507
11528
  user_id?: string | undefined;
11508
11529
  provider?: string | undefined;
11509
11530
  connection?: string | undefined;
11510
11531
  is_social?: boolean | undefined;
11532
+ blocked?: boolean | undefined;
11511
11533
  registration_completed_at?: string | undefined;
11512
11534
  verify_email?: boolean | undefined;
11513
11535
  password?: string | undefined;
11536
+ email_verified?: boolean | undefined;
11537
+ app_metadata?: any;
11538
+ user_metadata?: any;
11514
11539
  };
11515
11540
  };
11516
11541
  output: {};
@@ -11622,6 +11647,7 @@ export declare function init(config: AuthHeroConfig): {
11622
11647
  verify_email?: boolean | undefined;
11623
11648
  last_ip?: string | undefined;
11624
11649
  last_login?: string | undefined;
11650
+ blocked?: boolean | undefined;
11625
11651
  identities?: {
11626
11652
  connection: string;
11627
11653
  user_id: string;
@@ -11811,7 +11837,7 @@ export declare function init(config: AuthHeroConfig): {
11811
11837
  };
11812
11838
  };
11813
11839
  output: {
11814
- 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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11840
+ type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11815
11841
  date: string;
11816
11842
  isMobile: boolean;
11817
11843
  log_id: string;
@@ -11850,7 +11876,7 @@ export declare function init(config: AuthHeroConfig): {
11850
11876
  limit: number;
11851
11877
  length: number;
11852
11878
  logs: {
11853
- 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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11879
+ type: "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11854
11880
  date: string;
11855
11881
  isMobile: boolean;
11856
11882
  log_id: string;
@@ -12169,7 +12195,7 @@ export declare function init(config: AuthHeroConfig): {
12169
12195
  };
12170
12196
  } & {
12171
12197
  json: {
12172
- 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";
12198
+ 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";
12173
12199
  body: string;
12174
12200
  from: string;
12175
12201
  subject: string;
@@ -12190,7 +12216,7 @@ export declare function init(config: AuthHeroConfig): {
12190
12216
  };
12191
12217
  } & {
12192
12218
  json: {
12193
- 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";
12219
+ 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";
12194
12220
  body: string;
12195
12221
  from: string;
12196
12222
  subject: string;
@@ -12202,7 +12228,7 @@ export declare function init(config: AuthHeroConfig): {
12202
12228
  };
12203
12229
  };
12204
12230
  output: {
12205
- 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";
12231
+ 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";
12206
12232
  body: string;
12207
12233
  from: string;
12208
12234
  subject: string;
@@ -12225,7 +12251,7 @@ export declare function init(config: AuthHeroConfig): {
12225
12251
  };
12226
12252
  };
12227
12253
  output: {
12228
- 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";
12254
+ 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";
12229
12255
  body: string;
12230
12256
  subject: string;
12231
12257
  }[];
@@ -12238,7 +12264,7 @@ export declare function init(config: AuthHeroConfig): {
12238
12264
  $get: {
12239
12265
  input: {
12240
12266
  param: {
12241
- 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";
12267
+ 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";
12242
12268
  };
12243
12269
  } & {
12244
12270
  header: {
@@ -12251,7 +12277,7 @@ export declare function init(config: AuthHeroConfig): {
12251
12277
  } | {
12252
12278
  input: {
12253
12279
  param: {
12254
- 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";
12280
+ 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";
12255
12281
  };
12256
12282
  } & {
12257
12283
  header: {
@@ -12259,7 +12285,7 @@ export declare function init(config: AuthHeroConfig): {
12259
12285
  };
12260
12286
  };
12261
12287
  output: {
12262
- 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";
12288
+ 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";
12263
12289
  body: string;
12264
12290
  from: string;
12265
12291
  subject: string;
@@ -12278,7 +12304,7 @@ export declare function init(config: AuthHeroConfig): {
12278
12304
  $put: {
12279
12305
  input: {
12280
12306
  param: {
12281
- 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";
12307
+ 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";
12282
12308
  };
12283
12309
  } & {
12284
12310
  header: {
@@ -12286,7 +12312,7 @@ export declare function init(config: AuthHeroConfig): {
12286
12312
  };
12287
12313
  } & {
12288
12314
  json: {
12289
- 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";
12315
+ 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";
12290
12316
  body: string;
12291
12317
  subject: string;
12292
12318
  syntax?: "liquid" | undefined;
@@ -12298,7 +12324,7 @@ export declare function init(config: AuthHeroConfig): {
12298
12324
  };
12299
12325
  };
12300
12326
  output: {
12301
- 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";
12327
+ 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";
12302
12328
  body: string;
12303
12329
  from: string;
12304
12330
  subject: string;
@@ -12317,7 +12343,7 @@ export declare function init(config: AuthHeroConfig): {
12317
12343
  $patch: {
12318
12344
  input: {
12319
12345
  param: {
12320
- 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";
12346
+ 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";
12321
12347
  };
12322
12348
  } & {
12323
12349
  header: {
@@ -12325,7 +12351,7 @@ export declare function init(config: AuthHeroConfig): {
12325
12351
  };
12326
12352
  } & {
12327
12353
  json: {
12328
- 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;
12354
+ 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;
12329
12355
  body?: string | undefined;
12330
12356
  from?: string | undefined;
12331
12357
  subject?: string | undefined;
@@ -12342,7 +12368,7 @@ export declare function init(config: AuthHeroConfig): {
12342
12368
  } | {
12343
12369
  input: {
12344
12370
  param: {
12345
- 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";
12371
+ 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";
12346
12372
  };
12347
12373
  } & {
12348
12374
  header: {
@@ -12350,7 +12376,7 @@ export declare function init(config: AuthHeroConfig): {
12350
12376
  };
12351
12377
  } & {
12352
12378
  json: {
12353
- 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;
12379
+ 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;
12354
12380
  body?: string | undefined;
12355
12381
  from?: string | undefined;
12356
12382
  subject?: string | undefined;
@@ -12362,7 +12388,7 @@ export declare function init(config: AuthHeroConfig): {
12362
12388
  };
12363
12389
  };
12364
12390
  output: {
12365
- 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";
12391
+ 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";
12366
12392
  body: string;
12367
12393
  from: string;
12368
12394
  subject: string;
@@ -12381,7 +12407,7 @@ export declare function init(config: AuthHeroConfig): {
12381
12407
  $delete: {
12382
12408
  input: {
12383
12409
  param: {
12384
- 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";
12410
+ 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";
12385
12411
  };
12386
12412
  } & {
12387
12413
  header: {
@@ -12394,7 +12420,7 @@ export declare function init(config: AuthHeroConfig): {
12394
12420
  } | {
12395
12421
  input: {
12396
12422
  param: {
12397
- 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";
12423
+ 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";
12398
12424
  };
12399
12425
  } & {
12400
12426
  header: {
@@ -12411,7 +12437,7 @@ export declare function init(config: AuthHeroConfig): {
12411
12437
  $post: {
12412
12438
  input: {
12413
12439
  param: {
12414
- 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";
12440
+ 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";
12415
12441
  };
12416
12442
  } & {
12417
12443
  header: {
@@ -13363,7 +13389,7 @@ export declare function init(config: AuthHeroConfig): {
13363
13389
  } & {
13364
13390
  json: {
13365
13391
  body?: string | undefined;
13366
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
13392
+ screen?: "login" | "identifier" | "signup" | "password" | undefined;
13367
13393
  branding?: {
13368
13394
  colors?: {
13369
13395
  primary: string;
@@ -13654,7 +13680,7 @@ export declare function init(config: AuthHeroConfig): {
13654
13680
  logs: {
13655
13681
  action_name: string;
13656
13682
  lines: {
13657
- level: "log" | "error" | "info" | "warn" | "debug";
13683
+ level: "error" | "log" | "info" | "warn" | "debug";
13658
13684
  message: string;
13659
13685
  }[];
13660
13686
  }[];
@@ -14323,7 +14349,7 @@ export declare function init(config: AuthHeroConfig): {
14323
14349
  args: import("hono/utils/types").JSONValue[];
14324
14350
  }[];
14325
14351
  logs: {
14326
- level: "log" | "error" | "info" | "warn" | "debug";
14352
+ level: "error" | "log" | "info" | "warn" | "debug";
14327
14353
  message: string;
14328
14354
  }[];
14329
14355
  error?: string | undefined;
@@ -14634,7 +14660,7 @@ export declare function init(config: AuthHeroConfig): {
14634
14660
  scope?: string | undefined;
14635
14661
  grant_types?: string[] | undefined;
14636
14662
  response_types?: string[] | undefined;
14637
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14663
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14638
14664
  jwks_uri?: string | undefined;
14639
14665
  jwks?: Record<string, unknown> | undefined;
14640
14666
  software_id?: string | undefined;
@@ -14723,7 +14749,7 @@ export declare function init(config: AuthHeroConfig): {
14723
14749
  scope?: string | undefined;
14724
14750
  grant_types?: string[] | undefined;
14725
14751
  response_types?: string[] | undefined;
14726
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
14752
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
14727
14753
  jwks_uri?: string | undefined;
14728
14754
  jwks?: Record<string, unknown> | undefined;
14729
14755
  software_id?: string | undefined;
@@ -15069,19 +15095,19 @@ export declare function init(config: AuthHeroConfig): {
15069
15095
  email: string;
15070
15096
  send: "code" | "link";
15071
15097
  authParams: {
15072
- username?: string | undefined;
15098
+ code_challenge?: string | undefined;
15099
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15100
+ redirect_uri?: string | undefined;
15101
+ nonce?: string | undefined;
15073
15102
  state?: string | undefined;
15074
- audience?: string | undefined;
15103
+ act_as?: string | undefined;
15075
15104
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15076
15105
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15077
- scope?: string | undefined;
15106
+ audience?: string | undefined;
15078
15107
  organization?: string | undefined;
15079
- nonce?: string | undefined;
15080
- redirect_uri?: string | undefined;
15081
- act_as?: string | undefined;
15108
+ scope?: string | undefined;
15082
15109
  prompt?: string | undefined;
15083
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15084
- code_challenge?: string | undefined;
15110
+ username?: string | undefined;
15085
15111
  ui_locales?: string | undefined;
15086
15112
  max_age?: number | undefined;
15087
15113
  acr_values?: string | undefined;
@@ -15105,19 +15131,19 @@ export declare function init(config: AuthHeroConfig): {
15105
15131
  phone_number: string;
15106
15132
  send: "code" | "link";
15107
15133
  authParams: {
15108
- username?: string | undefined;
15134
+ code_challenge?: string | undefined;
15135
+ code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15136
+ redirect_uri?: string | undefined;
15137
+ nonce?: string | undefined;
15109
15138
  state?: string | undefined;
15110
- audience?: string | undefined;
15139
+ act_as?: string | undefined;
15111
15140
  response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
15112
15141
  response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
15113
- scope?: string | undefined;
15142
+ audience?: string | undefined;
15114
15143
  organization?: string | undefined;
15115
- nonce?: string | undefined;
15116
- redirect_uri?: string | undefined;
15117
- act_as?: string | undefined;
15144
+ scope?: string | undefined;
15118
15145
  prompt?: string | undefined;
15119
- code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
15120
- code_challenge?: string | undefined;
15146
+ username?: string | undefined;
15121
15147
  ui_locales?: string | undefined;
15122
15148
  max_age?: number | undefined;
15123
15149
  acr_values?: string | undefined;
@@ -15249,14 +15275,14 @@ export declare function init(config: AuthHeroConfig): {
15249
15275
  input: {
15250
15276
  form: {
15251
15277
  token: string;
15252
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15278
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15253
15279
  client_id?: string | undefined;
15254
15280
  client_secret?: string | undefined;
15255
15281
  };
15256
15282
  } & {
15257
15283
  json: {
15258
15284
  token: string;
15259
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15285
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15260
15286
  client_id?: string | undefined;
15261
15287
  client_secret?: string | undefined;
15262
15288
  };
@@ -15268,14 +15294,14 @@ export declare function init(config: AuthHeroConfig): {
15268
15294
  input: {
15269
15295
  form: {
15270
15296
  token: string;
15271
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15297
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15272
15298
  client_id?: string | undefined;
15273
15299
  client_secret?: string | undefined;
15274
15300
  };
15275
15301
  } & {
15276
15302
  json: {
15277
15303
  token: string;
15278
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15304
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15279
15305
  client_id?: string | undefined;
15280
15306
  client_secret?: string | undefined;
15281
15307
  };
@@ -15290,14 +15316,14 @@ export declare function init(config: AuthHeroConfig): {
15290
15316
  input: {
15291
15317
  form: {
15292
15318
  token: string;
15293
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15319
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15294
15320
  client_id?: string | undefined;
15295
15321
  client_secret?: string | undefined;
15296
15322
  };
15297
15323
  } & {
15298
15324
  json: {
15299
15325
  token: string;
15300
- token_type_hint?: "refresh_token" | "access_token" | undefined;
15326
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
15301
15327
  client_id?: string | undefined;
15302
15328
  client_secret?: string | undefined;
15303
15329
  };
@@ -15347,7 +15373,7 @@ export declare function init(config: AuthHeroConfig): {
15347
15373
  client_id: string;
15348
15374
  username: string;
15349
15375
  otp: string;
15350
- realm: "sms" | "email";
15376
+ realm: "email" | "sms";
15351
15377
  } | {
15352
15378
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15353
15379
  subject_token: string;
@@ -15394,7 +15420,7 @@ export declare function init(config: AuthHeroConfig): {
15394
15420
  client_id: string;
15395
15421
  username: string;
15396
15422
  otp: string;
15397
- realm: "sms" | "email";
15423
+ realm: "email" | "sms";
15398
15424
  } | {
15399
15425
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15400
15426
  subject_token: string;
@@ -15446,7 +15472,7 @@ export declare function init(config: AuthHeroConfig): {
15446
15472
  client_id: string;
15447
15473
  username: string;
15448
15474
  otp: string;
15449
- realm: "sms" | "email";
15475
+ realm: "email" | "sms";
15450
15476
  } | {
15451
15477
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15452
15478
  subject_token: string;
@@ -15493,7 +15519,7 @@ export declare function init(config: AuthHeroConfig): {
15493
15519
  client_id: string;
15494
15520
  username: string;
15495
15521
  otp: string;
15496
- realm: "sms" | "email";
15522
+ realm: "email" | "sms";
15497
15523
  } | {
15498
15524
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15499
15525
  subject_token: string;
@@ -15553,7 +15579,7 @@ export declare function init(config: AuthHeroConfig): {
15553
15579
  client_id: string;
15554
15580
  username: string;
15555
15581
  otp: string;
15556
- realm: "sms" | "email";
15582
+ realm: "email" | "sms";
15557
15583
  } | {
15558
15584
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15559
15585
  subject_token: string;
@@ -15600,7 +15626,7 @@ export declare function init(config: AuthHeroConfig): {
15600
15626
  client_id: string;
15601
15627
  username: string;
15602
15628
  otp: string;
15603
- realm: "sms" | "email";
15629
+ realm: "email" | "sms";
15604
15630
  } | {
15605
15631
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15606
15632
  subject_token: string;
@@ -15655,7 +15681,7 @@ export declare function init(config: AuthHeroConfig): {
15655
15681
  client_id: string;
15656
15682
  username: string;
15657
15683
  otp: string;
15658
- realm: "sms" | "email";
15684
+ realm: "email" | "sms";
15659
15685
  } | {
15660
15686
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15661
15687
  subject_token: string;
@@ -15702,7 +15728,7 @@ export declare function init(config: AuthHeroConfig): {
15702
15728
  client_id: string;
15703
15729
  username: string;
15704
15730
  otp: string;
15705
- realm: "sms" | "email";
15731
+ realm: "email" | "sms";
15706
15732
  } | {
15707
15733
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15708
15734
  subject_token: string;
@@ -15757,7 +15783,7 @@ export declare function init(config: AuthHeroConfig): {
15757
15783
  client_id: string;
15758
15784
  username: string;
15759
15785
  otp: string;
15760
- realm: "sms" | "email";
15786
+ realm: "email" | "sms";
15761
15787
  } | {
15762
15788
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15763
15789
  subject_token: string;
@@ -15804,7 +15830,7 @@ export declare function init(config: AuthHeroConfig): {
15804
15830
  client_id: string;
15805
15831
  username: string;
15806
15832
  otp: string;
15807
- realm: "sms" | "email";
15833
+ realm: "email" | "sms";
15808
15834
  } | {
15809
15835
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
15810
15836
  subject_token: string;
@@ -17028,7 +17054,7 @@ export declare function init(config: AuthHeroConfig): {
17028
17054
  $get: {
17029
17055
  input: {
17030
17056
  param: {
17031
- 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";
17057
+ screen: "login" | "signup" | "consent" | "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";
17032
17058
  };
17033
17059
  } & {
17034
17060
  query: {
@@ -17044,7 +17070,7 @@ export declare function init(config: AuthHeroConfig): {
17044
17070
  } | {
17045
17071
  input: {
17046
17072
  param: {
17047
- 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";
17073
+ screen: "login" | "signup" | "consent" | "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";
17048
17074
  };
17049
17075
  } & {
17050
17076
  query: {
@@ -17060,7 +17086,7 @@ export declare function init(config: AuthHeroConfig): {
17060
17086
  } | {
17061
17087
  input: {
17062
17088
  param: {
17063
- 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";
17089
+ screen: "login" | "signup" | "consent" | "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";
17064
17090
  };
17065
17091
  } & {
17066
17092
  query: {
@@ -17080,7 +17106,7 @@ export declare function init(config: AuthHeroConfig): {
17080
17106
  $post: {
17081
17107
  input: {
17082
17108
  param: {
17083
- 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";
17109
+ screen: "login" | "signup" | "consent" | "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";
17084
17110
  };
17085
17111
  } & {
17086
17112
  query: {
@@ -17098,7 +17124,7 @@ export declare function init(config: AuthHeroConfig): {
17098
17124
  } | {
17099
17125
  input: {
17100
17126
  param: {
17101
- 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";
17127
+ screen: "login" | "signup" | "consent" | "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";
17102
17128
  };
17103
17129
  } & {
17104
17130
  query: {
@@ -17193,5 +17219,9 @@ export declare function init(config: AuthHeroConfig): {
17193
17219
  };
17194
17220
  };
17195
17221
  }, "/forms"> & import("hono/types").MergeSchemaPath<{}, "/screen">, "/">;
17222
+ scimApp: OpenAPIHono<{
17223
+ Bindings: Bindings;
17224
+ Variables: Variables;
17225
+ }, {}, "/"> | undefined;
17196
17226
  createX509Certificate: typeof createX509Certificate;
17197
17227
  };