authhero 7.2.2 → 8.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 (37) hide show
  1. package/dist/authhero.cjs +102 -102
  2. package/dist/authhero.d.ts +148 -134
  3. package/dist/authhero.mjs +10893 -10466
  4. package/dist/stats.html +1 -1
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +2 -2
  7. package/dist/types/helpers/bundle-write-purge.d.ts +16 -0
  8. package/dist/types/helpers/client-bundle.d.ts +65 -0
  9. package/dist/types/helpers/compose-auth-data.d.ts +44 -0
  10. package/dist/types/helpers/prefetch-client-bundle.d.ts +33 -0
  11. package/dist/types/helpers/request-scoped-dedup.d.ts +8 -0
  12. package/dist/types/helpers/with-client-bundle.d.ts +31 -0
  13. package/dist/types/hooks/webhooks.d.ts +14 -0
  14. package/dist/types/index.d.ts +145 -87
  15. package/dist/types/routes/auth-api/account.d.ts +2 -2
  16. package/dist/types/routes/auth-api/index.d.ts +35 -35
  17. package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
  18. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  19. package/dist/types/routes/auth-api/token.d.ts +10 -10
  20. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  21. package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
  22. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  23. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  24. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  25. package/dist/types/routes/management-api/flows.d.ts +7 -7
  26. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  27. package/dist/types/routes/management-api/hooks.d.ts +60 -0
  28. package/dist/types/routes/management-api/index.d.ts +104 -44
  29. package/dist/types/routes/management-api/logs.d.ts +3 -3
  30. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  31. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  32. package/dist/types/routes/management-api/users.d.ts +2 -2
  33. package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
  34. package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
  35. package/dist/types/types/AuthHeroConfig.d.ts +0 -12
  36. package/dist/types/utils/jwks.d.ts +2 -2
  37. package/package.json +5 -4
@@ -1,7 +1,7 @@
1
1
  import * as hono_utils_http_status from 'hono/utils/http-status';
2
2
  import * as hono_utils_types from 'hono/utils/types';
3
3
  import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
4
- import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, Tenant, TenantsDataAdapter, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
4
+ import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
5
5
  export * from '@authhero/adapter-interfaces';
6
6
  import * as hono_types from 'hono/types';
7
7
  import { z, OpenAPIHono } from '@hono/zod-openapi';
@@ -883,41 +883,6 @@ declare function createAuthMiddleware(app: OpenAPIHono<{
883
883
  Variables: any;
884
884
  }>, next: Next) => Promise<void>;
885
885
 
886
- interface TenantProvisionerContext {
887
- tenants: TenantsDataAdapter;
888
- }
889
- /**
890
- * Drives a tenant from `provisioning_state: "pending"` to `"ready"` or
891
- * `"failed"`. Owns whatever side effects are required to make the tenant
892
- * actually serve traffic — creating a D1, uploading a worker to a dispatch
893
- * namespace, wiring secrets, etc. — and writes the resulting state back via
894
- * `ctx.tenants.update(...)`.
895
- *
896
- * Contract:
897
- * - Implementations MUST be idempotent. The same tenant may be passed in
898
- * twice if a previous run crashed mid-flight, the API is retried, or an
899
- * operator manually re-triggers provisioning.
900
- * - `provision()` MUST resolve (not reject) even on failure. Errors should
901
- * be captured into `provisioning_error` and the state set to `"failed"`
902
- * so the admin UI can render a useful message.
903
- * - `provision()` should be safe to schedule via `ctx.executionCtx.waitUntil`
904
- * on Cloudflare Workers — it must not depend on the originating request
905
- * surviving.
906
- */
907
- interface TenantProvisioner {
908
- provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
909
- }
910
-
911
- /**
912
- * Default provisioner. Flips `provisioning_state` to `"ready"` and clears any
913
- * prior error, doing nothing else. Correct for `deployment_type: "shared"`
914
- * tenants (the historical default) and useful as a stand-in until the
915
- * Cloudflare WFP provisioner is wired in.
916
- */
917
- declare class NoopTenantProvisioner implements TenantProvisioner {
918
- provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
919
- }
920
-
921
886
  /**
922
887
  * Parameters passed to a custom webhook invoker function.
923
888
  */
@@ -1240,17 +1205,6 @@ interface AuthHeroConfig {
1240
1205
  /** Per-request timeout for the sync POST (default: 10_000ms). */
1241
1206
  timeoutMs?: number;
1242
1207
  };
1243
- /**
1244
- * Optional tenant provisioner. Drives a tenant from
1245
- * `provisioning_state: "pending"` to `"ready"` or `"failed"` whenever a
1246
- * tenant is created or re-provisioned via the management API. For shared
1247
- * tenants this is effectively a no-op; for `wfp` tenants the provisioner
1248
- * uploads the worker to a Cloudflare dispatch namespace, creates any
1249
- * per-tenant D1, and wires bindings. When omitted, `NoopTenantProvisioner`
1250
- * is used — adequate for single-deployment installs where every tenant is
1251
- * `shared`.
1252
- */
1253
- provisioner?: TenantProvisioner;
1254
1208
  /**
1255
1209
  * Optional powered-by logo to display at the bottom left of the login widget.
1256
1210
  * This is only configurable in code, not stored in the database.
@@ -2770,7 +2724,7 @@ declare function init(config: AuthHeroConfig): {
2770
2724
  };
2771
2725
  } & {
2772
2726
  json: {
2773
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2727
+ type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2774
2728
  phone_number?: string | undefined;
2775
2729
  totp_secret?: string | undefined;
2776
2730
  credential_id?: string | undefined;
@@ -2910,7 +2864,7 @@ declare function init(config: AuthHeroConfig): {
2910
2864
  };
2911
2865
  };
2912
2866
  output: {
2913
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2867
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2914
2868
  enabled: boolean;
2915
2869
  trial_expired?: boolean | undefined;
2916
2870
  }[];
@@ -3065,7 +3019,7 @@ declare function init(config: AuthHeroConfig): {
3065
3019
  $get: {
3066
3020
  input: {
3067
3021
  param: {
3068
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3022
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3069
3023
  };
3070
3024
  } & {
3071
3025
  header: {
@@ -3073,7 +3027,7 @@ declare function init(config: AuthHeroConfig): {
3073
3027
  };
3074
3028
  };
3075
3029
  output: {
3076
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3030
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3077
3031
  enabled: boolean;
3078
3032
  trial_expired?: boolean | undefined;
3079
3033
  };
@@ -3086,7 +3040,7 @@ declare function init(config: AuthHeroConfig): {
3086
3040
  $put: {
3087
3041
  input: {
3088
3042
  param: {
3089
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3043
+ factor_name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3090
3044
  };
3091
3045
  } & {
3092
3046
  header: {
@@ -3098,7 +3052,7 @@ declare function init(config: AuthHeroConfig): {
3098
3052
  };
3099
3053
  };
3100
3054
  output: {
3101
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3055
+ name: "email" | "otp" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3102
3056
  enabled: boolean;
3103
3057
  trial_expired?: boolean | undefined;
3104
3058
  };
@@ -3843,11 +3797,11 @@ declare function init(config: AuthHeroConfig): {
3843
3797
  invitee: {
3844
3798
  email?: string | undefined;
3845
3799
  };
3846
- roles?: string[] | undefined;
3847
- id?: string | undefined;
3848
3800
  app_metadata?: Record<string, any> | undefined;
3849
3801
  user_metadata?: Record<string, any> | undefined;
3802
+ id?: string | undefined;
3850
3803
  connection_id?: string | undefined;
3804
+ roles?: string[] | undefined;
3851
3805
  ttl_sec?: number | undefined;
3852
3806
  send_invitation_email?: boolean | undefined;
3853
3807
  };
@@ -4698,7 +4652,7 @@ declare function init(config: AuthHeroConfig): {
4698
4652
  type: "REDIRECT";
4699
4653
  action: "REDIRECT_USER";
4700
4654
  params: {
4701
- target: "custom" | "change-email" | "account";
4655
+ target: "custom" | "account" | "change-email";
4702
4656
  custom_url?: string | undefined;
4703
4657
  };
4704
4658
  alias?: string | undefined;
@@ -4751,7 +4705,7 @@ declare function init(config: AuthHeroConfig): {
4751
4705
  type: "REDIRECT";
4752
4706
  action: "REDIRECT_USER";
4753
4707
  params: {
4754
- target: "custom" | "change-email" | "account";
4708
+ target: "custom" | "account" | "change-email";
4755
4709
  custom_url?: string | undefined;
4756
4710
  };
4757
4711
  alias?: string | undefined;
@@ -4819,7 +4773,7 @@ declare function init(config: AuthHeroConfig): {
4819
4773
  type: "REDIRECT";
4820
4774
  action: "REDIRECT_USER";
4821
4775
  params: {
4822
- target: "custom" | "change-email" | "account";
4776
+ target: "custom" | "account" | "change-email";
4823
4777
  custom_url?: string | undefined;
4824
4778
  };
4825
4779
  alias?: string | undefined;
@@ -4900,7 +4854,7 @@ declare function init(config: AuthHeroConfig): {
4900
4854
  type: "REDIRECT";
4901
4855
  action: "REDIRECT_USER";
4902
4856
  params: {
4903
- target: "custom" | "change-email" | "account";
4857
+ target: "custom" | "account" | "change-email";
4904
4858
  custom_url?: string | undefined;
4905
4859
  };
4906
4860
  alias?: string | undefined;
@@ -4948,7 +4902,7 @@ declare function init(config: AuthHeroConfig): {
4948
4902
  type: "REDIRECT";
4949
4903
  action: "REDIRECT_USER";
4950
4904
  params: {
4951
- target: "custom" | "change-email" | "account";
4905
+ target: "custom" | "account" | "change-email";
4952
4906
  custom_url?: string | undefined;
4953
4907
  };
4954
4908
  alias?: string | undefined;
@@ -5008,7 +4962,7 @@ declare function init(config: AuthHeroConfig): {
5008
4962
  type: "REDIRECT";
5009
4963
  action: "REDIRECT_USER";
5010
4964
  params: {
5011
- target: "custom" | "change-email" | "account";
4965
+ target: "custom" | "account" | "change-email";
5012
4966
  custom_url?: string | undefined;
5013
4967
  };
5014
4968
  alias?: string | undefined;
@@ -5056,7 +5010,7 @@ declare function init(config: AuthHeroConfig): {
5056
5010
  type: "REDIRECT";
5057
5011
  action: "REDIRECT_USER";
5058
5012
  params: {
5059
- target: "custom" | "change-email" | "account";
5013
+ target: "custom" | "account" | "change-email";
5060
5014
  custom_url?: string | undefined;
5061
5015
  };
5062
5016
  alias?: string | undefined;
@@ -9334,7 +9288,7 @@ declare function init(config: AuthHeroConfig): {
9334
9288
  };
9335
9289
  };
9336
9290
  output: {
9337
- prompt: "organizations" | "mfa" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9291
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9338
9292
  language: string;
9339
9293
  }[];
9340
9294
  outputFormat: "json";
@@ -9372,7 +9326,7 @@ declare function init(config: AuthHeroConfig): {
9372
9326
  $get: {
9373
9327
  input: {
9374
9328
  param: {
9375
- prompt: "organizations" | "mfa" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9329
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9376
9330
  language: string;
9377
9331
  };
9378
9332
  } & {
@@ -9394,7 +9348,7 @@ declare function init(config: AuthHeroConfig): {
9394
9348
  $put: {
9395
9349
  input: {
9396
9350
  param: {
9397
- prompt: "organizations" | "mfa" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9351
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9398
9352
  language: string;
9399
9353
  };
9400
9354
  } & {
@@ -9418,7 +9372,7 @@ declare function init(config: AuthHeroConfig): {
9418
9372
  $delete: {
9419
9373
  input: {
9420
9374
  param: {
9421
- prompt: "organizations" | "mfa" | "signup" | "status" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
9375
+ prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "email-otp-challenge" | "invitation" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
9422
9376
  language: string;
9423
9377
  };
9424
9378
  } & {
@@ -10832,6 +10786,66 @@ declare function init(config: AuthHeroConfig): {
10832
10786
  status: 200;
10833
10787
  };
10834
10788
  };
10789
+ } & {
10790
+ "/:hook_id/try": {
10791
+ $post: {
10792
+ input: {
10793
+ param: {
10794
+ hook_id: string;
10795
+ };
10796
+ } & {
10797
+ header: {
10798
+ "tenant-id"?: string | undefined;
10799
+ };
10800
+ } & {
10801
+ json: {
10802
+ user_id: string;
10803
+ };
10804
+ };
10805
+ output: {};
10806
+ outputFormat: string;
10807
+ status: 400;
10808
+ } | {
10809
+ input: {
10810
+ param: {
10811
+ hook_id: string;
10812
+ };
10813
+ } & {
10814
+ header: {
10815
+ "tenant-id"?: string | undefined;
10816
+ };
10817
+ } & {
10818
+ json: {
10819
+ user_id: string;
10820
+ };
10821
+ };
10822
+ output: {};
10823
+ outputFormat: string;
10824
+ status: 404;
10825
+ } | {
10826
+ input: {
10827
+ param: {
10828
+ hook_id: string;
10829
+ };
10830
+ } & {
10831
+ header: {
10832
+ "tenant-id"?: string | undefined;
10833
+ };
10834
+ } & {
10835
+ json: {
10836
+ user_id: string;
10837
+ };
10838
+ };
10839
+ output: {
10840
+ ok: boolean;
10841
+ status?: number | undefined;
10842
+ body?: string | undefined;
10843
+ error?: string | undefined;
10844
+ };
10845
+ outputFormat: "json";
10846
+ status: 200;
10847
+ };
10848
+ };
10835
10849
  }, "/hooks"> & hono_types.MergeSchemaPath<{
10836
10850
  "/": {
10837
10851
  $get: {
@@ -10859,7 +10873,7 @@ declare function init(config: AuthHeroConfig): {
10859
10873
  log_type: string;
10860
10874
  category: "user_action" | "admin_action" | "system" | "api";
10861
10875
  actor: {
10862
- type: "client_credentials" | "user" | "system" | "admin" | "api_key";
10876
+ type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10863
10877
  id?: string | undefined;
10864
10878
  email?: string | undefined;
10865
10879
  org_id?: string | undefined;
@@ -11507,7 +11521,7 @@ declare function init(config: AuthHeroConfig): {
11507
11521
  };
11508
11522
  };
11509
11523
  output: {
11510
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "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";
11524
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11511
11525
  date: string;
11512
11526
  isMobile: boolean;
11513
11527
  log_id: string;
@@ -11546,7 +11560,7 @@ declare function init(config: AuthHeroConfig): {
11546
11560
  limit: number;
11547
11561
  length: number;
11548
11562
  logs: {
11549
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "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";
11563
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11550
11564
  date: string;
11551
11565
  isMobile: boolean;
11552
11566
  log_id: string;
@@ -11600,7 +11614,7 @@ declare function init(config: AuthHeroConfig): {
11600
11614
  };
11601
11615
  };
11602
11616
  output: {
11603
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "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";
11617
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11604
11618
  date: string;
11605
11619
  isMobile: boolean;
11606
11620
  log_id: string;
@@ -13818,7 +13832,7 @@ declare function init(config: AuthHeroConfig): {
13818
13832
  };
13819
13833
  };
13820
13834
  output: {
13821
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "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";
13835
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13822
13836
  date: string;
13823
13837
  isMobile: boolean;
13824
13838
  log_id: string;
@@ -13857,7 +13871,7 @@ declare function init(config: AuthHeroConfig): {
13857
13871
  limit: number;
13858
13872
  length: number;
13859
13873
  logs: {
13860
- type: "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "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" | "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";
13874
+ type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13861
13875
  date: string;
13862
13876
  isMobile: boolean;
13863
13877
  log_id: string;
@@ -14172,7 +14186,7 @@ declare function init(config: AuthHeroConfig): {
14172
14186
  };
14173
14187
  } & {
14174
14188
  json: {
14175
- 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";
14189
+ 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";
14176
14190
  body: string;
14177
14191
  from: string;
14178
14192
  subject: string;
@@ -14193,7 +14207,7 @@ declare function init(config: AuthHeroConfig): {
14193
14207
  };
14194
14208
  } & {
14195
14209
  json: {
14196
- 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";
14210
+ 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";
14197
14211
  body: string;
14198
14212
  from: string;
14199
14213
  subject: string;
@@ -14205,7 +14219,7 @@ declare function init(config: AuthHeroConfig): {
14205
14219
  };
14206
14220
  };
14207
14221
  output: {
14208
- 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";
14222
+ 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";
14209
14223
  body: string;
14210
14224
  from: string;
14211
14225
  subject: string;
@@ -14228,7 +14242,7 @@ declare function init(config: AuthHeroConfig): {
14228
14242
  };
14229
14243
  };
14230
14244
  output: {
14231
- 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";
14245
+ 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";
14232
14246
  body: string;
14233
14247
  subject: string;
14234
14248
  }[];
@@ -14241,7 +14255,7 @@ declare function init(config: AuthHeroConfig): {
14241
14255
  $get: {
14242
14256
  input: {
14243
14257
  param: {
14244
- 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";
14258
+ 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";
14245
14259
  };
14246
14260
  } & {
14247
14261
  header: {
@@ -14254,7 +14268,7 @@ declare function init(config: AuthHeroConfig): {
14254
14268
  } | {
14255
14269
  input: {
14256
14270
  param: {
14257
- 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";
14271
+ 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";
14258
14272
  };
14259
14273
  } & {
14260
14274
  header: {
@@ -14262,7 +14276,7 @@ declare function init(config: AuthHeroConfig): {
14262
14276
  };
14263
14277
  };
14264
14278
  output: {
14265
- 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";
14279
+ 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";
14266
14280
  body: string;
14267
14281
  from: string;
14268
14282
  subject: string;
@@ -14281,7 +14295,7 @@ declare function init(config: AuthHeroConfig): {
14281
14295
  $put: {
14282
14296
  input: {
14283
14297
  param: {
14284
- 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";
14298
+ 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";
14285
14299
  };
14286
14300
  } & {
14287
14301
  header: {
@@ -14289,7 +14303,7 @@ declare function init(config: AuthHeroConfig): {
14289
14303
  };
14290
14304
  } & {
14291
14305
  json: {
14292
- 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";
14306
+ 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";
14293
14307
  body: string;
14294
14308
  subject: string;
14295
14309
  syntax?: "liquid" | undefined;
@@ -14301,7 +14315,7 @@ declare function init(config: AuthHeroConfig): {
14301
14315
  };
14302
14316
  };
14303
14317
  output: {
14304
- 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";
14318
+ 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";
14305
14319
  body: string;
14306
14320
  from: string;
14307
14321
  subject: string;
@@ -14320,7 +14334,7 @@ declare function init(config: AuthHeroConfig): {
14320
14334
  $patch: {
14321
14335
  input: {
14322
14336
  param: {
14323
- 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";
14337
+ 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";
14324
14338
  };
14325
14339
  } & {
14326
14340
  header: {
@@ -14328,7 +14342,7 @@ declare function init(config: AuthHeroConfig): {
14328
14342
  };
14329
14343
  } & {
14330
14344
  json: {
14331
- 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;
14345
+ 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;
14332
14346
  body?: string | undefined;
14333
14347
  from?: string | undefined;
14334
14348
  subject?: string | undefined;
@@ -14345,7 +14359,7 @@ declare function init(config: AuthHeroConfig): {
14345
14359
  } | {
14346
14360
  input: {
14347
14361
  param: {
14348
- 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";
14362
+ 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";
14349
14363
  };
14350
14364
  } & {
14351
14365
  header: {
@@ -14353,7 +14367,7 @@ declare function init(config: AuthHeroConfig): {
14353
14367
  };
14354
14368
  } & {
14355
14369
  json: {
14356
- 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;
14370
+ 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;
14357
14371
  body?: string | undefined;
14358
14372
  from?: string | undefined;
14359
14373
  subject?: string | undefined;
@@ -14365,7 +14379,7 @@ declare function init(config: AuthHeroConfig): {
14365
14379
  };
14366
14380
  };
14367
14381
  output: {
14368
- 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";
14382
+ 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";
14369
14383
  body: string;
14370
14384
  from: string;
14371
14385
  subject: string;
@@ -14384,7 +14398,7 @@ declare function init(config: AuthHeroConfig): {
14384
14398
  $delete: {
14385
14399
  input: {
14386
14400
  param: {
14387
- 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";
14401
+ 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";
14388
14402
  };
14389
14403
  } & {
14390
14404
  header: {
@@ -14397,7 +14411,7 @@ declare function init(config: AuthHeroConfig): {
14397
14411
  } | {
14398
14412
  input: {
14399
14413
  param: {
14400
- 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";
14414
+ 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
14415
  };
14402
14416
  } & {
14403
14417
  header: {
@@ -14414,7 +14428,7 @@ declare function init(config: AuthHeroConfig): {
14414
14428
  $post: {
14415
14429
  input: {
14416
14430
  param: {
14417
- 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";
14431
+ 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";
14418
14432
  };
14419
14433
  } & {
14420
14434
  header: {
@@ -15421,7 +15435,7 @@ declare function init(config: AuthHeroConfig): {
15421
15435
  json: {
15422
15436
  bindings: {
15423
15437
  ref: {
15424
- type?: "action_id" | "action_name" | undefined;
15438
+ type?: "action_name" | "action_id" | undefined;
15425
15439
  value?: string | undefined;
15426
15440
  id?: string | undefined;
15427
15441
  name?: string | undefined;
@@ -16654,7 +16668,7 @@ declare function init(config: AuthHeroConfig): {
16654
16668
  client_id: string;
16655
16669
  redirect_url?: string | undefined;
16656
16670
  login_hint?: string | undefined;
16657
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16671
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16658
16672
  };
16659
16673
  };
16660
16674
  output: {};
@@ -16666,7 +16680,7 @@ declare function init(config: AuthHeroConfig): {
16666
16680
  client_id: string;
16667
16681
  redirect_url?: string | undefined;
16668
16682
  login_hint?: string | undefined;
16669
- screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
16683
+ screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
16670
16684
  };
16671
16685
  };
16672
16686
  output: {
@@ -16943,19 +16957,19 @@ declare function init(config: AuthHeroConfig): {
16943
16957
  email: string;
16944
16958
  send: "code" | "link";
16945
16959
  authParams: {
16946
- audience?: string | undefined;
16947
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16948
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16949
- scope?: string | undefined;
16950
16960
  username?: string | undefined;
16951
- organization?: string | undefined;
16952
16961
  state?: string | undefined;
16962
+ scope?: string | undefined;
16963
+ code_challenge?: string | undefined;
16964
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16965
+ redirect_uri?: string | undefined;
16953
16966
  nonce?: string | undefined;
16954
16967
  act_as?: string | undefined;
16955
- redirect_uri?: string | undefined;
16968
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16969
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16970
+ audience?: string | undefined;
16971
+ organization?: string | undefined;
16956
16972
  prompt?: string | undefined;
16957
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16958
- code_challenge?: string | undefined;
16959
16973
  ui_locales?: string | undefined;
16960
16974
  max_age?: number | undefined;
16961
16975
  acr_values?: string | undefined;
@@ -16979,19 +16993,19 @@ declare function init(config: AuthHeroConfig): {
16979
16993
  phone_number: string;
16980
16994
  send: "code" | "link";
16981
16995
  authParams: {
16982
- audience?: string | undefined;
16983
- response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16984
- response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16985
- scope?: string | undefined;
16986
16996
  username?: string | undefined;
16987
- organization?: string | undefined;
16988
16997
  state?: string | undefined;
16998
+ scope?: string | undefined;
16999
+ code_challenge?: string | undefined;
17000
+ code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17001
+ redirect_uri?: string | undefined;
16989
17002
  nonce?: string | undefined;
16990
17003
  act_as?: string | undefined;
16991
- redirect_uri?: string | undefined;
17004
+ response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17005
+ response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17006
+ audience?: string | undefined;
17007
+ organization?: string | undefined;
16992
17008
  prompt?: string | undefined;
16993
- code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16994
- code_challenge?: string | undefined;
16995
17009
  ui_locales?: string | undefined;
16996
17010
  max_age?: number | undefined;
16997
17011
  acr_values?: string | undefined;
@@ -17123,14 +17137,14 @@ declare function init(config: AuthHeroConfig): {
17123
17137
  input: {
17124
17138
  form: {
17125
17139
  token: string;
17126
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17140
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17127
17141
  client_id?: string | undefined;
17128
17142
  client_secret?: string | undefined;
17129
17143
  };
17130
17144
  } & {
17131
17145
  json: {
17132
17146
  token: string;
17133
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17147
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17134
17148
  client_id?: string | undefined;
17135
17149
  client_secret?: string | undefined;
17136
17150
  };
@@ -17142,14 +17156,14 @@ declare function init(config: AuthHeroConfig): {
17142
17156
  input: {
17143
17157
  form: {
17144
17158
  token: string;
17145
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17159
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17146
17160
  client_id?: string | undefined;
17147
17161
  client_secret?: string | undefined;
17148
17162
  };
17149
17163
  } & {
17150
17164
  json: {
17151
17165
  token: string;
17152
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17166
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17153
17167
  client_id?: string | undefined;
17154
17168
  client_secret?: string | undefined;
17155
17169
  };
@@ -17164,14 +17178,14 @@ declare function init(config: AuthHeroConfig): {
17164
17178
  input: {
17165
17179
  form: {
17166
17180
  token: string;
17167
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17181
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17168
17182
  client_id?: string | undefined;
17169
17183
  client_secret?: string | undefined;
17170
17184
  };
17171
17185
  } & {
17172
17186
  json: {
17173
17187
  token: string;
17174
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17188
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17175
17189
  client_id?: string | undefined;
17176
17190
  client_secret?: string | undefined;
17177
17191
  };
@@ -17221,7 +17235,7 @@ declare function init(config: AuthHeroConfig): {
17221
17235
  client_id: string;
17222
17236
  username: string;
17223
17237
  otp: string;
17224
- realm: "sms" | "email";
17238
+ realm: "email" | "sms";
17225
17239
  } | {
17226
17240
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17227
17241
  subject_token: string;
@@ -17268,7 +17282,7 @@ declare function init(config: AuthHeroConfig): {
17268
17282
  client_id: string;
17269
17283
  username: string;
17270
17284
  otp: string;
17271
- realm: "sms" | "email";
17285
+ realm: "email" | "sms";
17272
17286
  } | {
17273
17287
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17274
17288
  subject_token: string;
@@ -17320,7 +17334,7 @@ declare function init(config: AuthHeroConfig): {
17320
17334
  client_id: string;
17321
17335
  username: string;
17322
17336
  otp: string;
17323
- realm: "sms" | "email";
17337
+ realm: "email" | "sms";
17324
17338
  } | {
17325
17339
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17326
17340
  subject_token: string;
@@ -17367,7 +17381,7 @@ declare function init(config: AuthHeroConfig): {
17367
17381
  client_id: string;
17368
17382
  username: string;
17369
17383
  otp: string;
17370
- realm: "sms" | "email";
17384
+ realm: "email" | "sms";
17371
17385
  } | {
17372
17386
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17373
17387
  subject_token: string;
@@ -17427,7 +17441,7 @@ declare function init(config: AuthHeroConfig): {
17427
17441
  client_id: string;
17428
17442
  username: string;
17429
17443
  otp: string;
17430
- realm: "sms" | "email";
17444
+ realm: "email" | "sms";
17431
17445
  } | {
17432
17446
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17433
17447
  subject_token: string;
@@ -17474,7 +17488,7 @@ declare function init(config: AuthHeroConfig): {
17474
17488
  client_id: string;
17475
17489
  username: string;
17476
17490
  otp: string;
17477
- realm: "sms" | "email";
17491
+ realm: "email" | "sms";
17478
17492
  } | {
17479
17493
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17480
17494
  subject_token: string;
@@ -17529,7 +17543,7 @@ declare function init(config: AuthHeroConfig): {
17529
17543
  client_id: string;
17530
17544
  username: string;
17531
17545
  otp: string;
17532
- realm: "sms" | "email";
17546
+ realm: "email" | "sms";
17533
17547
  } | {
17534
17548
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17535
17549
  subject_token: string;
@@ -17576,7 +17590,7 @@ declare function init(config: AuthHeroConfig): {
17576
17590
  client_id: string;
17577
17591
  username: string;
17578
17592
  otp: string;
17579
- realm: "sms" | "email";
17593
+ realm: "email" | "sms";
17580
17594
  } | {
17581
17595
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17582
17596
  subject_token: string;
@@ -17631,7 +17645,7 @@ declare function init(config: AuthHeroConfig): {
17631
17645
  client_id: string;
17632
17646
  username: string;
17633
17647
  otp: string;
17634
- realm: "sms" | "email";
17648
+ realm: "email" | "sms";
17635
17649
  } | {
17636
17650
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17637
17651
  subject_token: string;
@@ -17678,7 +17692,7 @@ declare function init(config: AuthHeroConfig): {
17678
17692
  client_id: string;
17679
17693
  username: string;
17680
17694
  otp: string;
17681
- realm: "sms" | "email";
17695
+ realm: "email" | "sms";
17682
17696
  } | {
17683
17697
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17684
17698
  subject_token: string;
@@ -17707,7 +17721,7 @@ declare function init(config: AuthHeroConfig): {
17707
17721
  output: {
17708
17722
  keys: {
17709
17723
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
17710
- kty: "RSA" | "EC" | "oct";
17724
+ kty: "EC" | "RSA" | "oct";
17711
17725
  kid?: string | undefined;
17712
17726
  use?: "sig" | "enc" | undefined;
17713
17727
  n?: string | undefined;
@@ -18898,7 +18912,7 @@ declare function init(config: AuthHeroConfig): {
18898
18912
  $get: {
18899
18913
  input: {
18900
18914
  param: {
18901
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "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";
18915
+ screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18902
18916
  };
18903
18917
  } & {
18904
18918
  query: {
@@ -18914,7 +18928,7 @@ declare function init(config: AuthHeroConfig): {
18914
18928
  } | {
18915
18929
  input: {
18916
18930
  param: {
18917
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "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";
18931
+ screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18918
18932
  };
18919
18933
  } & {
18920
18934
  query: {
@@ -18930,7 +18944,7 @@ declare function init(config: AuthHeroConfig): {
18930
18944
  } | {
18931
18945
  input: {
18932
18946
  param: {
18933
- screen: "signup" | "account" | "login" | "reset-password" | "consent" | "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";
18947
+ screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18934
18948
  };
18935
18949
  } & {
18936
18950
  query: {
@@ -18950,7 +18964,7 @@ declare function init(config: AuthHeroConfig): {
18950
18964
  $post: {
18951
18965
  input: {
18952
18966
  param: {
18953
- screen: "signup" | "login" | "reset-password" | "consent" | "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";
18967
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18954
18968
  };
18955
18969
  } & {
18956
18970
  query: {
@@ -18968,7 +18982,7 @@ declare function init(config: AuthHeroConfig): {
18968
18982
  } | {
18969
18983
  input: {
18970
18984
  param: {
18971
- screen: "signup" | "login" | "reset-password" | "consent" | "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";
18985
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18972
18986
  };
18973
18987
  } & {
18974
18988
  query: {
@@ -18986,7 +19000,7 @@ declare function init(config: AuthHeroConfig): {
18986
19000
  } | {
18987
19001
  input: {
18988
19002
  param: {
18989
- screen: "signup" | "login" | "reset-password" | "consent" | "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";
19003
+ screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
18990
19004
  };
18991
19005
  } & {
18992
19006
  query: {
@@ -19084,5 +19098,5 @@ declare function init(config: AuthHeroConfig): {
19084
19098
  createX509Certificate: typeof createX509Certificate;
19085
19099
  };
19086
19100
 
19087
- 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, NoopTenantProvisioner, 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, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19088
- export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, 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, TenantProvisioner, TenantProvisionerContext, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
19101
+ 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, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
19102
+ export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, 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 };