authhero 8.3.0 → 8.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/assets/u/js/client.js +3 -3
  2. package/dist/authhero.cjs +6 -6
  3. package/dist/authhero.d.ts +140 -97
  4. package/dist/authhero.mjs +40 -27
  5. package/dist/client.js +3 -3
  6. package/dist/stats.html +1 -1
  7. package/dist/tsconfig.types.tsbuildinfo +1 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  9. package/dist/types/client/client-bundle.d.ts +1 -1
  10. package/dist/types/client/loading-link-handler.d.ts +14 -0
  11. package/dist/types/components/Button.d.ts +2 -1
  12. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  13. package/dist/types/index.d.ts +96 -96
  14. package/dist/types/middlewares/authentication.d.ts +17 -0
  15. package/dist/types/routes/auth-api/index.d.ts +21 -21
  16. package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
  17. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  18. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  19. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  20. package/dist/types/routes/management-api/actions.d.ts +1 -1
  21. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  22. package/dist/types/routes/management-api/branding.d.ts +6 -6
  23. package/dist/types/routes/management-api/client-grants.d.ts +8 -8
  24. package/dist/types/routes/management-api/clients.d.ts +7 -7
  25. package/dist/types/routes/management-api/connections.d.ts +1 -1
  26. package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
  27. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  28. package/dist/types/routes/management-api/forms.d.ts +119 -119
  29. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  30. package/dist/types/routes/management-api/index.d.ts +190 -190
  31. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  32. package/dist/types/routes/management-api/logs.d.ts +3 -3
  33. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  34. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  35. package/dist/types/routes/management-api/themes.d.ts +3 -3
  36. package/dist/types/routes/management-api/users.d.ts +2 -2
  37. package/dist/types/routes/universal-login/common.d.ts +6 -6
  38. package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
  39. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  40. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  41. package/dist/types/types/AuthHeroConfig.d.ts +26 -1
  42. package/dist/types/types/IdToken.d.ts +2 -2
  43. package/dist/types/utils/jwks.d.ts +2 -2
  44. package/dist/types/utils/jwt.d.ts +9 -0
  45. package/package.json +3 -3
@@ -870,14 +870,31 @@ declare const MANAGEMENT_API_AUDIENCE = "urn:authhero:management";
870
870
  * token, so a per-tenant identifier (e.g.
871
871
  * `https://${tenant_id}.token.example.com/v2/api/`) can be constructed at
872
872
  * request time alongside any global legacy identifiers.
873
+ *
874
+ * `additionalIssuers` extends the set of accepted token issuers beyond the
875
+ * deployment's own `getIssuer(env, custom_domain)`. The resolver receives the
876
+ * token's `tenant_id` and returns the issuers accepted for that token, so a
877
+ * control-plane issuer can be accepted on forwarded admin requests whose
878
+ * per-tenant worker has a different `env.ISSUER`. The default issuer is always
879
+ * accepted; the resolver is purely additive and may return `[]` to refuse.
873
880
  */
874
881
  type ManagementAudienceResolver = (params: {
875
882
  tenant_id?: string;
876
883
  }) => string[] | Promise<string[]>;
884
+ /**
885
+ * Resolver returning the issuers accepted **in addition to** the deployment's
886
+ * own issuer when verifying bearer JWTs. Receives the token's `tenant_id` so a
887
+ * per-tenant or control-plane issuer can be constructed at request time.
888
+ * Returning `[]` keeps the strict single-issuer behavior for that token.
889
+ */
890
+ type IssuerResolver = (params: {
891
+ tenant_id?: string;
892
+ }) => string[] | Promise<string[]>;
877
893
  interface AuthMiddlewareOptions {
878
894
  requireManagementAudience?: boolean;
879
895
  relaxManagementAudience?: boolean;
880
896
  additionalManagementAudiences?: ManagementAudienceResolver;
897
+ additionalIssuers?: IssuerResolver;
881
898
  }
882
899
  declare function createAuthMiddleware(app: OpenAPIHono<{
883
900
  Bindings: Bindings;
@@ -1377,6 +1394,31 @@ interface AuthHeroConfig {
1377
1394
  * ```
1378
1395
  */
1379
1396
  additionalManagementAudiences?: ManagementAudienceResolver;
1397
+ /**
1398
+ * Resolver returning the list of issuers accepted by the bearer-JWT issuer
1399
+ * check **in addition to** the deployment's own
1400
+ * `getIssuer(env, custom_domain)`. The token's `tenant_id` is passed in, so a
1401
+ * per-tenant or control-plane issuer can be constructed at request time.
1402
+ *
1403
+ * This is needed when control-plane-minted admin tokens are forwarded to a
1404
+ * per-tenant worker: the token's `iss` is the control-plane issuer while the
1405
+ * worker's `env.ISSUER` is per-tenant, so the strict single-issuer check
1406
+ * would otherwise reject it. The signature is still verified normally; this
1407
+ * only widens which `iss` values are accepted.
1408
+ *
1409
+ * authhero stays generic — it never derives or hardcodes any issuer. Scoping
1410
+ * (e.g. only accepting the control-plane issuer for control-plane tokens) is
1411
+ * the host app's job: the resolver receives `tenant_id` and can return `[]`
1412
+ * to refuse. The default issuer is always accepted; the resolver is purely
1413
+ * additive.
1414
+ *
1415
+ * @example
1416
+ * ```ts
1417
+ * additionalIssuers: ({ tenant_id }) =>
1418
+ * tenant_id ? ["https://token.example.com/"] : [];
1419
+ * ```
1420
+ */
1421
+ additionalIssuers?: IssuerResolver;
1380
1422
  }
1381
1423
 
1382
1424
  type UserInfo = {
@@ -1527,8 +1569,9 @@ type Props$l = {
1527
1569
  disabled?: boolean;
1528
1570
  isLoading?: boolean;
1529
1571
  id?: string;
1572
+ loadingLink?: boolean;
1530
1573
  };
1531
- declare const Button$1: ({ children, className, Component, variant, href, disabled, isLoading, id, }: PropsWithChildren<Props$l>) => hono_jsx_jsx_dev_runtime.JSX.Element;
1574
+ declare const Button$1: ({ children, className, Component, variant, href, disabled, isLoading, id, loadingLink, }: PropsWithChildren<Props$l>) => hono_jsx_jsx_dev_runtime.JSX.Element;
1532
1575
 
1533
1576
  type Props$k = {
1534
1577
  theme: Theme | null;
@@ -2824,7 +2867,7 @@ declare function init(config: AuthHeroConfig): {
2824
2867
  };
2825
2868
  } & {
2826
2869
  json: {
2827
- type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2870
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
2828
2871
  phone_number?: string | undefined;
2829
2872
  totp_secret?: string | undefined;
2830
2873
  credential_id?: string | undefined;
@@ -2964,7 +3007,7 @@ declare function init(config: AuthHeroConfig): {
2964
3007
  };
2965
3008
  };
2966
3009
  output: {
2967
- name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
3010
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
2968
3011
  enabled: boolean;
2969
3012
  trial_expired?: boolean | undefined;
2970
3013
  }[];
@@ -3119,7 +3162,7 @@ declare function init(config: AuthHeroConfig): {
3119
3162
  $get: {
3120
3163
  input: {
3121
3164
  param: {
3122
- factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
3165
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3123
3166
  };
3124
3167
  } & {
3125
3168
  header: {
@@ -3127,7 +3170,7 @@ declare function init(config: AuthHeroConfig): {
3127
3170
  };
3128
3171
  };
3129
3172
  output: {
3130
- name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
3173
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3131
3174
  enabled: boolean;
3132
3175
  trial_expired?: boolean | undefined;
3133
3176
  };
@@ -3140,7 +3183,7 @@ declare function init(config: AuthHeroConfig): {
3140
3183
  $put: {
3141
3184
  input: {
3142
3185
  param: {
3143
- factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
3186
+ factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3144
3187
  };
3145
3188
  } & {
3146
3189
  header: {
@@ -3152,7 +3195,7 @@ declare function init(config: AuthHeroConfig): {
3152
3195
  };
3153
3196
  };
3154
3197
  output: {
3155
- name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "push-notification" | "recovery-code" | "duo";
3198
+ name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3156
3199
  enabled: boolean;
3157
3200
  trial_expired?: boolean | undefined;
3158
3201
  };
@@ -9388,7 +9431,7 @@ declare function init(config: AuthHeroConfig): {
9388
9431
  };
9389
9432
  };
9390
9433
  output: {
9391
- prompt: "signup" | "status" | "organizations" | "mfa" | "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";
9434
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9392
9435
  language: string;
9393
9436
  }[];
9394
9437
  outputFormat: "json";
@@ -9426,7 +9469,7 @@ declare function init(config: AuthHeroConfig): {
9426
9469
  $get: {
9427
9470
  input: {
9428
9471
  param: {
9429
- prompt: "signup" | "status" | "organizations" | "mfa" | "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";
9472
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9430
9473
  language: string;
9431
9474
  };
9432
9475
  } & {
@@ -9448,7 +9491,7 @@ declare function init(config: AuthHeroConfig): {
9448
9491
  $put: {
9449
9492
  input: {
9450
9493
  param: {
9451
- prompt: "signup" | "status" | "organizations" | "mfa" | "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";
9494
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9452
9495
  language: string;
9453
9496
  };
9454
9497
  } & {
@@ -9472,7 +9515,7 @@ declare function init(config: AuthHeroConfig): {
9472
9515
  $delete: {
9473
9516
  input: {
9474
9517
  param: {
9475
- prompt: "signup" | "status" | "organizations" | "mfa" | "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";
9518
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9476
9519
  language: string;
9477
9520
  };
9478
9521
  } & {
@@ -9574,7 +9617,7 @@ declare function init(config: AuthHeroConfig): {
9574
9617
  } | undefined;
9575
9618
  unique?: boolean | undefined;
9576
9619
  profile_required?: boolean | undefined;
9577
- verification_method?: "link" | "code" | undefined;
9620
+ verification_method?: "code" | "link" | undefined;
9578
9621
  } | undefined;
9579
9622
  username?: {
9580
9623
  identifier?: {
@@ -9708,7 +9751,7 @@ declare function init(config: AuthHeroConfig): {
9708
9751
  } | undefined;
9709
9752
  unique?: boolean | undefined;
9710
9753
  profile_required?: boolean | undefined;
9711
- verification_method?: "link" | "code" | undefined;
9754
+ verification_method?: "code" | "link" | undefined;
9712
9755
  } | undefined;
9713
9756
  username?: {
9714
9757
  identifier?: {
@@ -9857,7 +9900,7 @@ declare function init(config: AuthHeroConfig): {
9857
9900
  } | undefined;
9858
9901
  unique?: boolean | undefined;
9859
9902
  profile_required?: boolean | undefined;
9860
- verification_method?: "link" | "code" | undefined;
9903
+ verification_method?: "code" | "link" | undefined;
9861
9904
  } | undefined;
9862
9905
  username?: {
9863
9906
  identifier?: {
@@ -10036,7 +10079,7 @@ declare function init(config: AuthHeroConfig): {
10036
10079
  } | undefined;
10037
10080
  unique?: boolean | undefined;
10038
10081
  profile_required?: boolean | undefined;
10039
- verification_method?: "link" | "code" | undefined;
10082
+ verification_method?: "code" | "link" | undefined;
10040
10083
  } | undefined;
10041
10084
  username?: {
10042
10085
  identifier?: {
@@ -10194,7 +10237,7 @@ declare function init(config: AuthHeroConfig): {
10194
10237
  } | undefined;
10195
10238
  unique?: boolean | undefined;
10196
10239
  profile_required?: boolean | undefined;
10197
- verification_method?: "link" | "code" | undefined;
10240
+ verification_method?: "code" | "link" | undefined;
10198
10241
  } | undefined;
10199
10242
  username?: {
10200
10243
  identifier?: {
@@ -10370,7 +10413,7 @@ declare function init(config: AuthHeroConfig): {
10370
10413
  tenant_id: string;
10371
10414
  created_at: string;
10372
10415
  updated_at: string;
10373
- deploymentStatus: "deployed" | "failed" | "not_required";
10416
+ deploymentStatus: "failed" | "deployed" | "not_required";
10374
10417
  secrets?: {
10375
10418
  [x: string]: string;
10376
10419
  } | undefined;
@@ -10460,7 +10503,7 @@ declare function init(config: AuthHeroConfig): {
10460
10503
  tenant_id: string;
10461
10504
  created_at: string;
10462
10505
  updated_at: string;
10463
- deploymentStatus: "deployed" | "failed" | "not_required";
10506
+ deploymentStatus: "failed" | "deployed" | "not_required";
10464
10507
  secrets?: {
10465
10508
  [x: string]: string;
10466
10509
  } | undefined;
@@ -10973,7 +11016,7 @@ declare function init(config: AuthHeroConfig): {
10973
11016
  log_type: string;
10974
11017
  category: "user_action" | "admin_action" | "system" | "api";
10975
11018
  actor: {
10976
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
11019
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10977
11020
  id?: string | undefined;
10978
11021
  email?: string | undefined;
10979
11022
  org_id?: string | undefined;
@@ -11621,7 +11664,7 @@ declare function init(config: AuthHeroConfig): {
11621
11664
  };
11622
11665
  };
11623
11666
  output: {
11624
- type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11667
+ type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
11625
11668
  date: string;
11626
11669
  isMobile: boolean;
11627
11670
  log_id: string;
@@ -11660,7 +11703,7 @@ declare function init(config: AuthHeroConfig): {
11660
11703
  limit: number;
11661
11704
  length: number;
11662
11705
  logs: {
11663
- type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11706
+ type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
11664
11707
  date: string;
11665
11708
  isMobile: boolean;
11666
11709
  log_id: string;
@@ -11714,7 +11757,7 @@ declare function init(config: AuthHeroConfig): {
11714
11757
  };
11715
11758
  };
11716
11759
  output: {
11717
- type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11760
+ type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
11718
11761
  date: string;
11719
11762
  isMobile: boolean;
11720
11763
  log_id: string;
@@ -11869,7 +11912,7 @@ declare function init(config: AuthHeroConfig): {
11869
11912
  audience?: string | undefined;
11870
11913
  client_id?: string | undefined;
11871
11914
  allow_any_organization?: string | undefined;
11872
- subject_type?: "client" | "user" | undefined;
11915
+ subject_type?: "user" | "client" | undefined;
11873
11916
  };
11874
11917
  } & {
11875
11918
  header: {
@@ -11884,7 +11927,7 @@ declare function init(config: AuthHeroConfig): {
11884
11927
  organization_usage?: "deny" | "allow" | "require" | undefined;
11885
11928
  allow_any_organization?: boolean | undefined;
11886
11929
  is_system?: boolean | undefined;
11887
- subject_type?: "client" | "user" | undefined;
11930
+ subject_type?: "user" | "client" | undefined;
11888
11931
  authorization_details_types?: string[] | undefined;
11889
11932
  created_at?: string | undefined;
11890
11933
  updated_at?: string | undefined;
@@ -11900,7 +11943,7 @@ declare function init(config: AuthHeroConfig): {
11900
11943
  organization_usage?: "deny" | "allow" | "require" | undefined;
11901
11944
  allow_any_organization?: boolean | undefined;
11902
11945
  is_system?: boolean | undefined;
11903
- subject_type?: "client" | "user" | undefined;
11946
+ subject_type?: "user" | "client" | undefined;
11904
11947
  authorization_details_types?: string[] | undefined;
11905
11948
  created_at?: string | undefined;
11906
11949
  updated_at?: string | undefined;
@@ -11931,7 +11974,7 @@ declare function init(config: AuthHeroConfig): {
11931
11974
  organization_usage?: "deny" | "allow" | "require" | undefined;
11932
11975
  allow_any_organization?: boolean | undefined;
11933
11976
  is_system?: boolean | undefined;
11934
- subject_type?: "client" | "user" | undefined;
11977
+ subject_type?: "user" | "client" | undefined;
11935
11978
  authorization_details_types?: string[] | undefined;
11936
11979
  created_at?: string | undefined;
11937
11980
  updated_at?: string | undefined;
@@ -11976,7 +12019,7 @@ declare function init(config: AuthHeroConfig): {
11976
12019
  organization_usage?: "deny" | "allow" | "require" | undefined;
11977
12020
  allow_any_organization?: boolean | undefined;
11978
12021
  is_system?: boolean | undefined;
11979
- subject_type?: "client" | "user" | undefined;
12022
+ subject_type?: "user" | "client" | undefined;
11980
12023
  authorization_details_types?: string[] | undefined;
11981
12024
  };
11982
12025
  };
@@ -11988,7 +12031,7 @@ declare function init(config: AuthHeroConfig): {
11988
12031
  organization_usage?: "deny" | "allow" | "require" | undefined;
11989
12032
  allow_any_organization?: boolean | undefined;
11990
12033
  is_system?: boolean | undefined;
11991
- subject_type?: "client" | "user" | undefined;
12034
+ subject_type?: "user" | "client" | undefined;
11992
12035
  authorization_details_types?: string[] | undefined;
11993
12036
  created_at?: string | undefined;
11994
12037
  updated_at?: string | undefined;
@@ -12012,7 +12055,7 @@ declare function init(config: AuthHeroConfig): {
12012
12055
  organization_usage?: "deny" | "allow" | "require" | undefined;
12013
12056
  allow_any_organization?: boolean | undefined;
12014
12057
  is_system?: boolean | undefined;
12015
- subject_type?: "client" | "user" | undefined;
12058
+ subject_type?: "user" | "client" | undefined;
12016
12059
  authorization_details_types?: string[] | undefined;
12017
12060
  };
12018
12061
  };
@@ -12024,7 +12067,7 @@ declare function init(config: AuthHeroConfig): {
12024
12067
  organization_usage?: "deny" | "allow" | "require" | undefined;
12025
12068
  allow_any_organization?: boolean | undefined;
12026
12069
  is_system?: boolean | undefined;
12027
- subject_type?: "client" | "user" | undefined;
12070
+ subject_type?: "user" | "client" | undefined;
12028
12071
  authorization_details_types?: string[] | undefined;
12029
12072
  created_at?: string | undefined;
12030
12073
  updated_at?: string | undefined;
@@ -12102,7 +12145,7 @@ declare function init(config: AuthHeroConfig): {
12102
12145
  addons?: {
12103
12146
  [x: string]: any;
12104
12147
  } | undefined;
12105
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12148
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12106
12149
  client_metadata?: {
12107
12150
  [x: string]: string;
12108
12151
  } | undefined;
@@ -12198,7 +12241,7 @@ declare function init(config: AuthHeroConfig): {
12198
12241
  addons?: {
12199
12242
  [x: string]: any;
12200
12243
  } | undefined;
12201
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12244
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12202
12245
  client_metadata?: {
12203
12246
  [x: string]: string;
12204
12247
  } | undefined;
@@ -12309,7 +12352,7 @@ declare function init(config: AuthHeroConfig): {
12309
12352
  addons?: {
12310
12353
  [x: string]: any;
12311
12354
  } | undefined;
12312
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12355
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12313
12356
  client_metadata?: {
12314
12357
  [x: string]: string;
12315
12358
  } | undefined;
@@ -12419,7 +12462,7 @@ declare function init(config: AuthHeroConfig): {
12419
12462
  custom_login_page_preview?: string | undefined;
12420
12463
  form_template?: string | undefined;
12421
12464
  addons?: Record<string, any> | undefined;
12422
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12465
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12423
12466
  client_metadata?: Record<string, string> | undefined;
12424
12467
  hide_sign_up_disabled_error?: boolean | undefined;
12425
12468
  mobile?: Record<string, any> | undefined;
@@ -12499,7 +12542,7 @@ declare function init(config: AuthHeroConfig): {
12499
12542
  addons?: {
12500
12543
  [x: string]: any;
12501
12544
  } | undefined;
12502
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12545
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12503
12546
  client_metadata?: {
12504
12547
  [x: string]: string;
12505
12548
  } | undefined;
@@ -12588,7 +12631,7 @@ declare function init(config: AuthHeroConfig): {
12588
12631
  custom_login_page_preview?: string | undefined;
12589
12632
  form_template?: string | undefined;
12590
12633
  addons?: Record<string, any> | undefined;
12591
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12634
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12592
12635
  client_metadata?: Record<string, string> | undefined;
12593
12636
  hide_sign_up_disabled_error?: boolean | undefined;
12594
12637
  mobile?: Record<string, any> | undefined;
@@ -12668,7 +12711,7 @@ declare function init(config: AuthHeroConfig): {
12668
12711
  addons?: {
12669
12712
  [x: string]: any;
12670
12713
  } | undefined;
12671
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12714
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
12672
12715
  client_metadata?: {
12673
12716
  [x: string]: string;
12674
12717
  } | undefined;
@@ -12800,7 +12843,7 @@ declare function init(config: AuthHeroConfig): {
12800
12843
  } | undefined;
12801
12844
  unique?: boolean | undefined;
12802
12845
  profile_required?: boolean | undefined;
12803
- verification_method?: "link" | "code" | undefined;
12846
+ verification_method?: "code" | "link" | undefined;
12804
12847
  } | undefined;
12805
12848
  username?: {
12806
12849
  identifier?: {
@@ -12954,7 +12997,7 @@ declare function init(config: AuthHeroConfig): {
12954
12997
  } | undefined;
12955
12998
  unique?: boolean | undefined;
12956
12999
  profile_required?: boolean | undefined;
12957
- verification_method?: "link" | "code" | undefined;
13000
+ verification_method?: "code" | "link" | undefined;
12958
13001
  } | undefined;
12959
13002
  username?: {
12960
13003
  identifier?: {
@@ -13932,7 +13975,7 @@ declare function init(config: AuthHeroConfig): {
13932
13975
  };
13933
13976
  };
13934
13977
  output: {
13935
- type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13978
+ type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
13936
13979
  date: string;
13937
13980
  isMobile: boolean;
13938
13981
  log_id: string;
@@ -13971,7 +14014,7 @@ declare function init(config: AuthHeroConfig): {
13971
14014
  limit: number;
13972
14015
  length: number;
13973
14016
  logs: {
13974
- type: "i" | "sv" | "cs" | "fi" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14017
+ type: "i" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
13975
14018
  date: string;
13976
14019
  isMobile: boolean;
13977
14020
  log_id: string;
@@ -14286,7 +14329,7 @@ declare function init(config: AuthHeroConfig): {
14286
14329
  };
14287
14330
  } & {
14288
14331
  json: {
14289
- template: "verify_email" | "password_reset" | "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";
14332
+ 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";
14290
14333
  body: string;
14291
14334
  from: string;
14292
14335
  subject: string;
@@ -14307,7 +14350,7 @@ declare function init(config: AuthHeroConfig): {
14307
14350
  };
14308
14351
  } & {
14309
14352
  json: {
14310
- template: "verify_email" | "password_reset" | "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";
14353
+ 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";
14311
14354
  body: string;
14312
14355
  from: string;
14313
14356
  subject: string;
@@ -14319,7 +14362,7 @@ declare function init(config: AuthHeroConfig): {
14319
14362
  };
14320
14363
  };
14321
14364
  output: {
14322
- template: "verify_email" | "password_reset" | "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";
14365
+ 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";
14323
14366
  body: string;
14324
14367
  from: string;
14325
14368
  subject: string;
@@ -14342,7 +14385,7 @@ declare function init(config: AuthHeroConfig): {
14342
14385
  };
14343
14386
  };
14344
14387
  output: {
14345
- name: "verify_email" | "password_reset" | "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";
14388
+ 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";
14346
14389
  body: string;
14347
14390
  subject: string;
14348
14391
  }[];
@@ -14355,7 +14398,7 @@ declare function init(config: AuthHeroConfig): {
14355
14398
  $get: {
14356
14399
  input: {
14357
14400
  param: {
14358
- templateName: "verify_email" | "password_reset" | "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";
14401
+ 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";
14359
14402
  };
14360
14403
  } & {
14361
14404
  header: {
@@ -14368,7 +14411,7 @@ declare function init(config: AuthHeroConfig): {
14368
14411
  } | {
14369
14412
  input: {
14370
14413
  param: {
14371
- templateName: "verify_email" | "password_reset" | "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";
14414
+ 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";
14372
14415
  };
14373
14416
  } & {
14374
14417
  header: {
@@ -14376,7 +14419,7 @@ declare function init(config: AuthHeroConfig): {
14376
14419
  };
14377
14420
  };
14378
14421
  output: {
14379
- template: "verify_email" | "password_reset" | "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";
14422
+ 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";
14380
14423
  body: string;
14381
14424
  from: string;
14382
14425
  subject: string;
@@ -14395,7 +14438,7 @@ declare function init(config: AuthHeroConfig): {
14395
14438
  $put: {
14396
14439
  input: {
14397
14440
  param: {
14398
- templateName: "verify_email" | "password_reset" | "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";
14441
+ 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";
14399
14442
  };
14400
14443
  } & {
14401
14444
  header: {
@@ -14403,7 +14446,7 @@ declare function init(config: AuthHeroConfig): {
14403
14446
  };
14404
14447
  } & {
14405
14448
  json: {
14406
- template: "verify_email" | "password_reset" | "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";
14449
+ 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";
14407
14450
  body: string;
14408
14451
  subject: string;
14409
14452
  syntax?: "liquid" | undefined;
@@ -14415,7 +14458,7 @@ declare function init(config: AuthHeroConfig): {
14415
14458
  };
14416
14459
  };
14417
14460
  output: {
14418
- template: "verify_email" | "password_reset" | "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";
14461
+ 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";
14419
14462
  body: string;
14420
14463
  from: string;
14421
14464
  subject: string;
@@ -14434,7 +14477,7 @@ declare function init(config: AuthHeroConfig): {
14434
14477
  $patch: {
14435
14478
  input: {
14436
14479
  param: {
14437
- templateName: "verify_email" | "password_reset" | "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";
14480
+ 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";
14438
14481
  };
14439
14482
  } & {
14440
14483
  header: {
@@ -14442,7 +14485,7 @@ declare function init(config: AuthHeroConfig): {
14442
14485
  };
14443
14486
  } & {
14444
14487
  json: {
14445
- template?: "verify_email" | "password_reset" | "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;
14488
+ 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;
14446
14489
  body?: string | undefined;
14447
14490
  from?: string | undefined;
14448
14491
  subject?: string | undefined;
@@ -14459,7 +14502,7 @@ declare function init(config: AuthHeroConfig): {
14459
14502
  } | {
14460
14503
  input: {
14461
14504
  param: {
14462
- templateName: "verify_email" | "password_reset" | "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";
14505
+ 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";
14463
14506
  };
14464
14507
  } & {
14465
14508
  header: {
@@ -14467,7 +14510,7 @@ declare function init(config: AuthHeroConfig): {
14467
14510
  };
14468
14511
  } & {
14469
14512
  json: {
14470
- template?: "verify_email" | "password_reset" | "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;
14513
+ 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;
14471
14514
  body?: string | undefined;
14472
14515
  from?: string | undefined;
14473
14516
  subject?: string | undefined;
@@ -14479,7 +14522,7 @@ declare function init(config: AuthHeroConfig): {
14479
14522
  };
14480
14523
  };
14481
14524
  output: {
14482
- template: "verify_email" | "password_reset" | "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";
14525
+ 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";
14483
14526
  body: string;
14484
14527
  from: string;
14485
14528
  subject: string;
@@ -14498,7 +14541,7 @@ declare function init(config: AuthHeroConfig): {
14498
14541
  $delete: {
14499
14542
  input: {
14500
14543
  param: {
14501
- templateName: "verify_email" | "password_reset" | "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";
14544
+ 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";
14502
14545
  };
14503
14546
  } & {
14504
14547
  header: {
@@ -14511,7 +14554,7 @@ declare function init(config: AuthHeroConfig): {
14511
14554
  } | {
14512
14555
  input: {
14513
14556
  param: {
14514
- templateName: "verify_email" | "password_reset" | "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";
14557
+ 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";
14515
14558
  };
14516
14559
  } & {
14517
14560
  header: {
@@ -14528,7 +14571,7 @@ declare function init(config: AuthHeroConfig): {
14528
14571
  $post: {
14529
14572
  input: {
14530
14573
  param: {
14531
- templateName: "verify_email" | "password_reset" | "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";
14574
+ 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";
14532
14575
  };
14533
14576
  } & {
14534
14577
  header: {
@@ -14811,7 +14854,7 @@ declare function init(config: AuthHeroConfig): {
14811
14854
  type: "auth0_managed_certs" | "self_managed_certs";
14812
14855
  custom_domain_id: string;
14813
14856
  primary: boolean;
14814
- status: "disabled" | "pending" | "pending_verification" | "ready";
14857
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14815
14858
  verification_method?: "txt" | undefined;
14816
14859
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14817
14860
  domain_metadata?: {
@@ -14852,7 +14895,7 @@ declare function init(config: AuthHeroConfig): {
14852
14895
  type: "auth0_managed_certs" | "self_managed_certs";
14853
14896
  custom_domain_id: string;
14854
14897
  primary: boolean;
14855
- status: "disabled" | "pending" | "pending_verification" | "ready";
14898
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14856
14899
  verification_method?: "txt" | undefined;
14857
14900
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14858
14901
  domain_metadata?: {
@@ -14916,7 +14959,7 @@ declare function init(config: AuthHeroConfig): {
14916
14959
  type: "auth0_managed_certs" | "self_managed_certs";
14917
14960
  custom_domain_id: string;
14918
14961
  primary: boolean;
14919
- status: "disabled" | "pending" | "pending_verification" | "ready";
14962
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14920
14963
  verification_method?: "txt" | undefined;
14921
14964
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14922
14965
  domain_metadata?: {
@@ -14963,7 +15006,7 @@ declare function init(config: AuthHeroConfig): {
14963
15006
  type: "auth0_managed_certs" | "self_managed_certs";
14964
15007
  custom_domain_id: string;
14965
15008
  primary: boolean;
14966
- status: "disabled" | "pending" | "pending_verification" | "ready";
15009
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14967
15010
  verification_method?: "txt" | undefined;
14968
15011
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14969
15012
  domain_metadata?: {
@@ -15009,7 +15052,7 @@ declare function init(config: AuthHeroConfig): {
15009
15052
  type: "auth0_managed_certs" | "self_managed_certs";
15010
15053
  custom_domain_id: string;
15011
15054
  primary: boolean;
15012
- status: "disabled" | "pending" | "pending_verification" | "ready";
15055
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15013
15056
  verification_method?: "txt" | undefined;
15014
15057
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15015
15058
  domain_metadata?: {
@@ -15050,7 +15093,7 @@ declare function init(config: AuthHeroConfig): {
15050
15093
  type: "auth0_managed_certs" | "self_managed_certs";
15051
15094
  custom_domain_id: string;
15052
15095
  primary: boolean;
15053
- status: "disabled" | "pending" | "pending_verification" | "ready";
15096
+ status: "disabled" | "pending" | "ready" | "pending_verification";
15054
15097
  verification_method?: "txt" | undefined;
15055
15098
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
15056
15099
  domain_metadata?: {
@@ -15098,7 +15141,7 @@ declare function init(config: AuthHeroConfig): {
15098
15141
  base_focus_color: string;
15099
15142
  base_hover_color: string;
15100
15143
  body_text: string;
15101
- captcha_widget_theme: "dark" | "light" | "auto";
15144
+ captcha_widget_theme: "auto" | "light" | "dark";
15102
15145
  error: string;
15103
15146
  header: string;
15104
15147
  icons: string;
@@ -15188,7 +15231,7 @@ declare function init(config: AuthHeroConfig): {
15188
15231
  base_focus_color: string;
15189
15232
  base_hover_color: string;
15190
15233
  body_text: string;
15191
- captcha_widget_theme: "dark" | "light" | "auto";
15234
+ captcha_widget_theme: "auto" | "light" | "dark";
15192
15235
  error: string;
15193
15236
  header: string;
15194
15237
  icons: string;
@@ -15267,7 +15310,7 @@ declare function init(config: AuthHeroConfig): {
15267
15310
  base_focus_color: string;
15268
15311
  base_hover_color: string;
15269
15312
  body_text: string;
15270
- captcha_widget_theme: "dark" | "light" | "auto";
15313
+ captcha_widget_theme: "auto" | "light" | "dark";
15271
15314
  error: string;
15272
15315
  header: string;
15273
15316
  icons: string;
@@ -15357,7 +15400,7 @@ declare function init(config: AuthHeroConfig): {
15357
15400
  font?: {
15358
15401
  url: string;
15359
15402
  } | undefined;
15360
- dark_mode?: "dark" | "light" | "auto" | undefined;
15403
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15361
15404
  };
15362
15405
  outputFormat: "json";
15363
15406
  status: 200;
@@ -15387,7 +15430,7 @@ declare function init(config: AuthHeroConfig): {
15387
15430
  font?: {
15388
15431
  url: string;
15389
15432
  } | undefined;
15390
- dark_mode?: "dark" | "light" | "auto" | undefined;
15433
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15391
15434
  };
15392
15435
  };
15393
15436
  output: {
@@ -15406,7 +15449,7 @@ declare function init(config: AuthHeroConfig): {
15406
15449
  font?: {
15407
15450
  url: string;
15408
15451
  } | undefined;
15409
- dark_mode?: "dark" | "light" | "auto" | undefined;
15452
+ dark_mode?: "auto" | "light" | "dark" | undefined;
15410
15453
  };
15411
15454
  outputFormat: "json";
15412
15455
  status: 200;
@@ -15610,7 +15653,7 @@ declare function init(config: AuthHeroConfig): {
15610
15653
  output: {
15611
15654
  id: string;
15612
15655
  trigger_id: string;
15613
- status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
15656
+ status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
15614
15657
  results: {
15615
15658
  action_name: string;
15616
15659
  error: {
@@ -16372,7 +16415,7 @@ declare function init(config: AuthHeroConfig): {
16372
16415
  message: string;
16373
16416
  };
16374
16417
  outputFormat: "json";
16375
- status: 500;
16418
+ status: 400;
16376
16419
  } | {
16377
16420
  input: {
16378
16421
  query: {
@@ -16390,7 +16433,7 @@ declare function init(config: AuthHeroConfig): {
16390
16433
  message: string;
16391
16434
  };
16392
16435
  outputFormat: "json";
16393
- status: 400;
16436
+ status: 500;
16394
16437
  };
16395
16438
  };
16396
16439
  } & {
@@ -16428,7 +16471,7 @@ declare function init(config: AuthHeroConfig): {
16428
16471
  message: string;
16429
16472
  };
16430
16473
  outputFormat: "json";
16431
- status: 500;
16474
+ status: 400;
16432
16475
  } | {
16433
16476
  input: {
16434
16477
  form: {
@@ -16446,7 +16489,7 @@ declare function init(config: AuthHeroConfig): {
16446
16489
  message: string;
16447
16490
  };
16448
16491
  outputFormat: "json";
16449
- status: 400;
16492
+ status: 500;
16450
16493
  };
16451
16494
  };
16452
16495
  }, "/login/callback"> & hono_types.MergeSchemaPath<{
@@ -16484,7 +16527,7 @@ declare function init(config: AuthHeroConfig): {
16484
16527
  message: string;
16485
16528
  };
16486
16529
  outputFormat: "json";
16487
- status: 500;
16530
+ status: 400;
16488
16531
  } | {
16489
16532
  input: {
16490
16533
  query: {
@@ -16502,7 +16545,7 @@ declare function init(config: AuthHeroConfig): {
16502
16545
  message: string;
16503
16546
  };
16504
16547
  outputFormat: "json";
16505
- status: 400;
16548
+ status: 500;
16506
16549
  };
16507
16550
  };
16508
16551
  } & {
@@ -16540,7 +16583,7 @@ declare function init(config: AuthHeroConfig): {
16540
16583
  message: string;
16541
16584
  };
16542
16585
  outputFormat: "json";
16543
- status: 500;
16586
+ status: 400;
16544
16587
  } | {
16545
16588
  input: {
16546
16589
  form: {
@@ -16558,7 +16601,7 @@ declare function init(config: AuthHeroConfig): {
16558
16601
  message: string;
16559
16602
  };
16560
16603
  outputFormat: "json";
16561
- status: 400;
16604
+ status: 500;
16562
16605
  };
16563
16606
  };
16564
16607
  }, "/callback"> & hono_types.MergeSchemaPath<{
@@ -16622,7 +16665,7 @@ declare function init(config: AuthHeroConfig): {
16622
16665
  scope?: string | undefined;
16623
16666
  grant_types?: string[] | undefined;
16624
16667
  response_types?: string[] | undefined;
16625
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16668
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16626
16669
  jwks_uri?: string | undefined;
16627
16670
  jwks?: Record<string, unknown> | undefined;
16628
16671
  software_id?: string | undefined;
@@ -16711,7 +16754,7 @@ declare function init(config: AuthHeroConfig): {
16711
16754
  scope?: string | undefined;
16712
16755
  grant_types?: string[] | undefined;
16713
16756
  response_types?: string[] | undefined;
16714
- token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
16757
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
16715
16758
  jwks_uri?: string | undefined;
16716
16759
  jwks?: Record<string, unknown> | undefined;
16717
16760
  software_id?: string | undefined;
@@ -17055,7 +17098,7 @@ declare function init(config: AuthHeroConfig): {
17055
17098
  connection: "email";
17056
17099
  client_id: string;
17057
17100
  email: string;
17058
- send: "link" | "code";
17101
+ send: "code" | "link";
17059
17102
  authParams: {
17060
17103
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17061
17104
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
@@ -17091,7 +17134,7 @@ declare function init(config: AuthHeroConfig): {
17091
17134
  client_id: string;
17092
17135
  connection: "sms";
17093
17136
  phone_number: string;
17094
- send: "link" | "code";
17137
+ send: "code" | "link";
17095
17138
  authParams: {
17096
17139
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17097
17140
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
@@ -17170,7 +17213,7 @@ declare function init(config: AuthHeroConfig): {
17170
17213
  error_description?: string | undefined;
17171
17214
  };
17172
17215
  outputFormat: "json";
17173
- status: 500;
17216
+ status: 400;
17174
17217
  } | {
17175
17218
  input: {
17176
17219
  query: {
@@ -17191,7 +17234,7 @@ declare function init(config: AuthHeroConfig): {
17191
17234
  error_description?: string | undefined;
17192
17235
  };
17193
17236
  outputFormat: "json";
17194
- status: 400;
17237
+ status: 500;
17195
17238
  };
17196
17239
  };
17197
17240
  }, "/passwordless"> & hono_types.MergeSchemaPath<{
@@ -17237,14 +17280,14 @@ declare function init(config: AuthHeroConfig): {
17237
17280
  input: {
17238
17281
  form: {
17239
17282
  token: string;
17240
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17283
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17241
17284
  client_id?: string | undefined;
17242
17285
  client_secret?: string | undefined;
17243
17286
  };
17244
17287
  } & {
17245
17288
  json: {
17246
17289
  token: string;
17247
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17290
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17248
17291
  client_id?: string | undefined;
17249
17292
  client_secret?: string | undefined;
17250
17293
  };
@@ -17256,14 +17299,14 @@ declare function init(config: AuthHeroConfig): {
17256
17299
  input: {
17257
17300
  form: {
17258
17301
  token: string;
17259
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17302
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17260
17303
  client_id?: string | undefined;
17261
17304
  client_secret?: string | undefined;
17262
17305
  };
17263
17306
  } & {
17264
17307
  json: {
17265
17308
  token: string;
17266
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17309
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17267
17310
  client_id?: string | undefined;
17268
17311
  client_secret?: string | undefined;
17269
17312
  };
@@ -17278,14 +17321,14 @@ declare function init(config: AuthHeroConfig): {
17278
17321
  input: {
17279
17322
  form: {
17280
17323
  token: string;
17281
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17324
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17282
17325
  client_id?: string | undefined;
17283
17326
  client_secret?: string | undefined;
17284
17327
  };
17285
17328
  } & {
17286
17329
  json: {
17287
17330
  token: string;
17288
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17331
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17289
17332
  client_id?: string | undefined;
17290
17333
  client_secret?: string | undefined;
17291
17334
  };
@@ -17821,7 +17864,7 @@ declare function init(config: AuthHeroConfig): {
17821
17864
  output: {
17822
17865
  keys: {
17823
17866
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
17824
- kty: "EC" | "RSA" | "oct";
17867
+ kty: "RSA" | "EC" | "oct";
17825
17868
  kid?: string | undefined;
17826
17869
  use?: "sig" | "enc" | undefined;
17827
17870
  n?: string | undefined;
@@ -18145,7 +18188,7 @@ declare function init(config: AuthHeroConfig): {
18145
18188
  };
18146
18189
  output: {};
18147
18190
  outputFormat: string;
18148
- status: 500;
18191
+ status: 302;
18149
18192
  } | {
18150
18193
  input: {
18151
18194
  query: {
@@ -18154,7 +18197,7 @@ declare function init(config: AuthHeroConfig): {
18154
18197
  };
18155
18198
  output: {};
18156
18199
  outputFormat: string;
18157
- status: 302;
18200
+ status: 400;
18158
18201
  } | {
18159
18202
  input: {
18160
18203
  query: {
@@ -18163,7 +18206,7 @@ declare function init(config: AuthHeroConfig): {
18163
18206
  };
18164
18207
  output: {};
18165
18208
  outputFormat: string;
18166
- status: 400;
18209
+ status: 500;
18167
18210
  };
18168
18211
  };
18169
18212
  }, "/continue"> & hono_types.MergeSchemaPath<{
@@ -19199,4 +19242,4 @@ declare function init(config: AuthHeroConfig): {
19199
19242
  };
19200
19243
 
19201
19244
  export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19202
- export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
19245
+ export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };