authhero 6.0.0 → 7.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 (33) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +105 -105
  3. package/dist/authhero.d.ts +120 -84
  4. package/dist/authhero.mjs +12763 -10099
  5. package/dist/stats.html +1 -1
  6. package/dist/tsconfig.types.tsbuildinfo +1 -1
  7. package/dist/types/authentication-flows/passwordless.d.ts +3 -3
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
  9. package/dist/types/index.d.ts +60 -77
  10. package/dist/types/routes/auth-api/index.d.ts +27 -27
  11. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  14. package/dist/types/routes/auth-api/token.d.ts +10 -10
  15. package/dist/types/routes/auth-api/well-known.d.ts +1 -1
  16. package/dist/types/routes/management-api/action-executions.d.ts +1 -1
  17. package/dist/types/routes/management-api/actions.d.ts +1 -1
  18. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  19. package/dist/types/routes/management-api/clients.d.ts +7 -7
  20. package/dist/types/routes/management-api/custom-domains.d.ts +7 -25
  21. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  22. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  23. package/dist/types/routes/management-api/index.d.ts +32 -50
  24. package/dist/types/routes/management-api/logs.d.ts +3 -3
  25. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  26. package/dist/types/routes/management-api/users.d.ts +2 -2
  27. package/dist/types/routes/proxy-control-plane/index.d.ts +16 -7
  28. package/dist/types/routes/proxy-control-plane/verify.d.ts +44 -0
  29. package/dist/types/routes/universal-login/common.d.ts +2 -2
  30. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  31. package/dist/types/types/AuthHeroConfig.d.ts +15 -5
  32. package/dist/types/utils/jwks.d.ts +2 -2
  33. package/package.json +5 -5
@@ -10,6 +10,7 @@ import { SamlSigner } from '@authhero/saml/core';
10
10
  export { HttpSamlSigner, SamlSigner } from '@authhero/saml/core';
11
11
  import { Context, Next, Handler, MiddlewareHandler } from 'hono';
12
12
  import * as _authhero_proxy from '@authhero/proxy';
13
+ export { PROXY_RESOLVE_HOST_SCOPE } from '@authhero/proxy';
13
14
  import { FC, PropsWithChildren, JSXNode } from 'hono/jsx';
14
15
  import * as hono_jsx_jsx_dev_runtime from 'hono/jsx/jsx-dev-runtime';
15
16
 
@@ -1194,14 +1195,24 @@ interface AuthHeroConfig {
1194
1195
  * data plane. When set, mounts `GET /api/v2/proxy/control-plane/hosts/:host`
1195
1196
  * which returns the cross-tenant `ResolvedHost` for the given hostname.
1196
1197
  *
1197
- * This endpoint is read by remote proxy deployments via
1198
- * `createHttpProxyAdapter`. It is **cross-tenant** gate it with a
1199
- * dedicated credential (shared secret, mTLS, or a JWT scoped to
1200
- * `proxy:resolve_host`), never with a tenant token.
1198
+ * Authentication is opinionated and built in: incoming requests must
1199
+ * carry a `Bearer` JWT whose `iss` is either the runtime `env.ISSUER`
1200
+ * or the host the request landed on (tenant subdomain or registered
1201
+ * custom domain). The verifier fetches `<iss>/.well-known/jwks.json` to
1202
+ * validate the signature, so each accepted host must publish its own
1203
+ * JWKS at that path. Tokens must also carry the `proxy:resolve_host`
1204
+ * scope. The matching client-side helper is `createHttpProxyAdapter`
1205
+ * in `@authhero/proxy`.
1201
1206
  */
1202
1207
  proxyControlPlane?: {
1203
1208
  resolveHost: (host: string) => Promise<_authhero_proxy.ResolvedHost | null>;
1204
- authenticate: (request: Request) => Promise<boolean> | boolean;
1209
+ /**
1210
+ * Optional fetch override for the per-issuer JWKS document. Called
1211
+ * with the derived URL (`<iss>/.well-known/jwks.json`); defaults to
1212
+ * global `fetch`. Hosts on Cloudflare Workers can route specific
1213
+ * hosts through a service binding by inspecting the URL.
1214
+ */
1215
+ jwksFetch?: (url: string) => Promise<Response>;
1205
1216
  /**
1206
1217
  * Optional receiver for `POST /sync` events emitted by tenant shards via
1207
1218
  * the `ControlPlaneSyncDestination`. Mount on the control-plane authhero
@@ -2265,6 +2276,49 @@ interface CreateApplySyncEventsOptions {
2265
2276
  */
2266
2277
  declare function createApplySyncEvents(options: CreateApplySyncEventsOptions): (events: SyncEvent[]) => Promise<void>;
2267
2278
 
2279
+ /**
2280
+ * Strict issuer equality: parse both `iss` and `expected` as URLs and compare
2281
+ * the resulting hrefs after stripping any single trailing slash. No host-only
2282
+ * match, no subdomain match — a token issued by `https://a.example.com/` and
2283
+ * an expected `https://b.example.com/` (or `https://example.com/x/`) must NOT
2284
+ * be treated as equivalent.
2285
+ */
2286
+ declare function isAllowedIssuer(iss: string, expected: string): boolean;
2287
+ type VerifyControlPlaneTokenResult = {
2288
+ ok: true;
2289
+ } | {
2290
+ ok: false;
2291
+ reason: string;
2292
+ };
2293
+ interface VerifyControlPlaneTokenOptions {
2294
+ /** Compact JWS to verify. */
2295
+ token: string;
2296
+ /** Optional fetch override — defaults to global `fetch`. */
2297
+ jwksFetch?: (url: string) => Promise<Response>;
2298
+ /**
2299
+ * Set of acceptable `iss` claim values. Comparison is strict URL equality
2300
+ * (after trailing-slash normalization) via {@link isAllowedIssuer}. The
2301
+ * verifier fetches the per-issuer JWKS from `<iss>/.well-known/jwks.json`,
2302
+ * so any host you list here must publish its own JWKS at that path.
2303
+ */
2304
+ expectedIssuers: string[];
2305
+ /** Required `scope` (space-separated). Defaults to `proxy:resolve_host`. */
2306
+ requiredScope?: string;
2307
+ }
2308
+ /**
2309
+ * Verify a bearer token for the proxy control plane. Returns `{ ok: true }`
2310
+ * on success, `{ ok: false, reason }` on any failure — the reason is for
2311
+ * logs only and must not be surfaced to the caller.
2312
+ *
2313
+ * Accepted algs: RS256/384/512, ES256/384/512. The JWK's `alg` must match
2314
+ * the token header's `alg`. The token must carry the configured required
2315
+ * scope (`proxy:resolve_host` by default) and an `iss` that strictly equals
2316
+ * one of `expectedIssuers` after URL normalization. The JWKS document is
2317
+ * fetched from `<iss>/.well-known/jwks.json` AFTER the `iss` is allow-listed,
2318
+ * so an attacker cannot redirect the verifier to a JWKS they control.
2319
+ */
2320
+ declare function verifyControlPlaneToken(options: VerifyControlPlaneTokenOptions): Promise<VerifyControlPlaneTokenResult>;
2321
+
2268
2322
  /**
2269
2323
  * Options for the entity hooks wrapper
2270
2324
  */
@@ -2721,7 +2775,7 @@ declare function init(config: AuthHeroConfig): {
2721
2775
  };
2722
2776
  } & {
2723
2777
  json: {
2724
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2778
+ type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
2725
2779
  phone_number?: string | undefined;
2726
2780
  totp_secret?: string | undefined;
2727
2781
  credential_id?: string | undefined;
@@ -2861,7 +2915,7 @@ declare function init(config: AuthHeroConfig): {
2861
2915
  };
2862
2916
  };
2863
2917
  output: {
2864
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2918
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
2865
2919
  enabled: boolean;
2866
2920
  trial_expired?: boolean | undefined;
2867
2921
  }[];
@@ -3016,7 +3070,7 @@ declare function init(config: AuthHeroConfig): {
3016
3070
  $get: {
3017
3071
  input: {
3018
3072
  param: {
3019
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3073
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3020
3074
  };
3021
3075
  } & {
3022
3076
  header: {
@@ -3024,7 +3078,7 @@ declare function init(config: AuthHeroConfig): {
3024
3078
  };
3025
3079
  };
3026
3080
  output: {
3027
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3081
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3028
3082
  enabled: boolean;
3029
3083
  trial_expired?: boolean | undefined;
3030
3084
  };
@@ -3037,7 +3091,7 @@ declare function init(config: AuthHeroConfig): {
3037
3091
  $put: {
3038
3092
  input: {
3039
3093
  param: {
3040
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3094
+ factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3041
3095
  };
3042
3096
  } & {
3043
3097
  header: {
@@ -3049,7 +3103,7 @@ declare function init(config: AuthHeroConfig): {
3049
3103
  };
3050
3104
  };
3051
3105
  output: {
3052
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3106
+ name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3053
3107
  enabled: boolean;
3054
3108
  trial_expired?: boolean | undefined;
3055
3109
  };
@@ -9285,7 +9339,7 @@ declare function init(config: AuthHeroConfig): {
9285
9339
  };
9286
9340
  };
9287
9341
  output: {
9288
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9342
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9289
9343
  language: string;
9290
9344
  }[];
9291
9345
  outputFormat: "json";
@@ -9323,7 +9377,7 @@ declare function init(config: AuthHeroConfig): {
9323
9377
  $get: {
9324
9378
  input: {
9325
9379
  param: {
9326
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9380
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9327
9381
  language: string;
9328
9382
  };
9329
9383
  } & {
@@ -9345,7 +9399,7 @@ declare function init(config: AuthHeroConfig): {
9345
9399
  $put: {
9346
9400
  input: {
9347
9401
  param: {
9348
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9402
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9349
9403
  language: string;
9350
9404
  };
9351
9405
  } & {
@@ -9369,7 +9423,7 @@ declare function init(config: AuthHeroConfig): {
9369
9423
  $delete: {
9370
9424
  input: {
9371
9425
  param: {
9372
- prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9426
+ prompt: "signup" | "status" | "mfa" | "organizations" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
9373
9427
  language: string;
9374
9428
  };
9375
9429
  } & {
@@ -10810,7 +10864,7 @@ declare function init(config: AuthHeroConfig): {
10810
10864
  log_type: string;
10811
10865
  category: "user_action" | "admin_action" | "system" | "api";
10812
10866
  actor: {
10813
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
10867
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
10814
10868
  id?: string | undefined;
10815
10869
  email?: string | undefined;
10816
10870
  org_id?: string | undefined;
@@ -11458,7 +11512,7 @@ declare function init(config: AuthHeroConfig): {
11458
11512
  };
11459
11513
  };
11460
11514
  output: {
11461
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11515
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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" | "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";
11462
11516
  date: string;
11463
11517
  isMobile: boolean;
11464
11518
  log_id: string;
@@ -11497,7 +11551,7 @@ declare function init(config: AuthHeroConfig): {
11497
11551
  limit: number;
11498
11552
  length: number;
11499
11553
  logs: {
11500
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11554
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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" | "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";
11501
11555
  date: string;
11502
11556
  isMobile: boolean;
11503
11557
  log_id: string;
@@ -11551,7 +11605,7 @@ declare function init(config: AuthHeroConfig): {
11551
11605
  };
11552
11606
  };
11553
11607
  output: {
11554
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
11608
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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" | "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";
11555
11609
  date: string;
11556
11610
  isMobile: boolean;
11557
11611
  log_id: string;
@@ -11939,7 +11993,7 @@ declare function init(config: AuthHeroConfig): {
11939
11993
  addons?: {
11940
11994
  [x: string]: any;
11941
11995
  } | undefined;
11942
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
11996
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
11943
11997
  client_metadata?: {
11944
11998
  [x: string]: string;
11945
11999
  } | undefined;
@@ -12035,7 +12089,7 @@ declare function init(config: AuthHeroConfig): {
12035
12089
  addons?: {
12036
12090
  [x: string]: any;
12037
12091
  } | undefined;
12038
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12092
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12039
12093
  client_metadata?: {
12040
12094
  [x: string]: string;
12041
12095
  } | undefined;
@@ -12146,7 +12200,7 @@ declare function init(config: AuthHeroConfig): {
12146
12200
  addons?: {
12147
12201
  [x: string]: any;
12148
12202
  } | undefined;
12149
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12203
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12150
12204
  client_metadata?: {
12151
12205
  [x: string]: string;
12152
12206
  } | undefined;
@@ -12256,7 +12310,7 @@ declare function init(config: AuthHeroConfig): {
12256
12310
  custom_login_page_preview?: string | undefined;
12257
12311
  form_template?: string | undefined;
12258
12312
  addons?: Record<string, any> | undefined;
12259
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12313
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12260
12314
  client_metadata?: Record<string, string> | undefined;
12261
12315
  hide_sign_up_disabled_error?: boolean | undefined;
12262
12316
  mobile?: Record<string, any> | undefined;
@@ -12336,7 +12390,7 @@ declare function init(config: AuthHeroConfig): {
12336
12390
  addons?: {
12337
12391
  [x: string]: any;
12338
12392
  } | undefined;
12339
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12393
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12340
12394
  client_metadata?: {
12341
12395
  [x: string]: string;
12342
12396
  } | undefined;
@@ -12425,7 +12479,7 @@ declare function init(config: AuthHeroConfig): {
12425
12479
  custom_login_page_preview?: string | undefined;
12426
12480
  form_template?: string | undefined;
12427
12481
  addons?: Record<string, any> | undefined;
12428
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12482
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12429
12483
  client_metadata?: Record<string, string> | undefined;
12430
12484
  hide_sign_up_disabled_error?: boolean | undefined;
12431
12485
  mobile?: Record<string, any> | undefined;
@@ -12505,7 +12559,7 @@ declare function init(config: AuthHeroConfig): {
12505
12559
  addons?: {
12506
12560
  [x: string]: any;
12507
12561
  } | undefined;
12508
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12562
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
12509
12563
  client_metadata?: {
12510
12564
  [x: string]: string;
12511
12565
  } | undefined;
@@ -13769,7 +13823,7 @@ declare function init(config: AuthHeroConfig): {
13769
13823
  };
13770
13824
  };
13771
13825
  output: {
13772
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13826
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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" | "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";
13773
13827
  date: string;
13774
13828
  isMobile: boolean;
13775
13829
  log_id: string;
@@ -13808,7 +13862,7 @@ declare function init(config: AuthHeroConfig): {
13808
13862
  limit: number;
13809
13863
  length: number;
13810
13864
  logs: {
13811
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13865
+ type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "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" | "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";
13812
13866
  date: string;
13813
13867
  isMobile: boolean;
13814
13868
  log_id: string;
@@ -14648,7 +14702,7 @@ declare function init(config: AuthHeroConfig): {
14648
14702
  type: "auth0_managed_certs" | "self_managed_certs";
14649
14703
  custom_domain_id: string;
14650
14704
  primary: boolean;
14651
- status: "pending" | "ready" | "disabled" | "pending_verification";
14705
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14652
14706
  verification_method?: "txt" | undefined;
14653
14707
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14654
14708
  domain_metadata?: {
@@ -14689,7 +14743,7 @@ declare function init(config: AuthHeroConfig): {
14689
14743
  type: "auth0_managed_certs" | "self_managed_certs";
14690
14744
  custom_domain_id: string;
14691
14745
  primary: boolean;
14692
- status: "pending" | "ready" | "disabled" | "pending_verification";
14746
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14693
14747
  verification_method?: "txt" | undefined;
14694
14748
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14695
14749
  domain_metadata?: {
@@ -14743,27 +14797,9 @@ declare function init(config: AuthHeroConfig): {
14743
14797
  };
14744
14798
  } & {
14745
14799
  json: {
14746
- domain?: string | undefined;
14747
- type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
14748
- verification_method?: "txt" | undefined;
14800
+ tls_policy?: "recommended" | undefined;
14749
14801
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14750
14802
  domain_metadata?: Record<string, string> | undefined;
14751
- custom_domain_id?: string | undefined;
14752
- primary?: boolean | undefined;
14753
- status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
14754
- origin_domain_name?: string | undefined;
14755
- verification?: {
14756
- methods: ({
14757
- name: "txt";
14758
- record: string;
14759
- domain: string;
14760
- } | {
14761
- name: "http";
14762
- http_body: string;
14763
- http_url: string;
14764
- })[];
14765
- } | undefined;
14766
- tls_policy?: string | undefined;
14767
14803
  };
14768
14804
  };
14769
14805
  output: {
@@ -14771,7 +14807,7 @@ declare function init(config: AuthHeroConfig): {
14771
14807
  type: "auth0_managed_certs" | "self_managed_certs";
14772
14808
  custom_domain_id: string;
14773
14809
  primary: boolean;
14774
- status: "pending" | "ready" | "disabled" | "pending_verification";
14810
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14775
14811
  verification_method?: "txt" | undefined;
14776
14812
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14777
14813
  domain_metadata?: {
@@ -14818,7 +14854,7 @@ declare function init(config: AuthHeroConfig): {
14818
14854
  type: "auth0_managed_certs" | "self_managed_certs";
14819
14855
  custom_domain_id: string;
14820
14856
  primary: boolean;
14821
- status: "pending" | "ready" | "disabled" | "pending_verification";
14857
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14822
14858
  verification_method?: "txt" | undefined;
14823
14859
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14824
14860
  domain_metadata?: {
@@ -14864,7 +14900,7 @@ declare function init(config: AuthHeroConfig): {
14864
14900
  type: "auth0_managed_certs" | "self_managed_certs";
14865
14901
  custom_domain_id: string;
14866
14902
  primary: boolean;
14867
- status: "pending" | "ready" | "disabled" | "pending_verification";
14903
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14868
14904
  verification_method?: "txt" | undefined;
14869
14905
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14870
14906
  domain_metadata?: {
@@ -14905,7 +14941,7 @@ declare function init(config: AuthHeroConfig): {
14905
14941
  type: "auth0_managed_certs" | "self_managed_certs";
14906
14942
  custom_domain_id: string;
14907
14943
  primary: boolean;
14908
- status: "pending" | "ready" | "disabled" | "pending_verification";
14944
+ status: "disabled" | "pending" | "ready" | "pending_verification";
14909
14945
  verification_method?: "txt" | undefined;
14910
14946
  custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
14911
14947
  domain_metadata?: {
@@ -15512,7 +15548,7 @@ declare function init(config: AuthHeroConfig): {
15512
15548
  logs: {
15513
15549
  action_name: string;
15514
15550
  lines: {
15515
- level: "log" | "error" | "info" | "warn" | "debug";
15551
+ level: "error" | "log" | "info" | "warn" | "debug";
15516
15552
  message: string;
15517
15553
  }[];
15518
15554
  }[];
@@ -16179,7 +16215,7 @@ declare function init(config: AuthHeroConfig): {
16179
16215
  args: hono_utils_types.JSONValue[];
16180
16216
  }[];
16181
16217
  logs: {
16182
- level: "log" | "error" | "info" | "warn" | "debug";
16218
+ level: "error" | "log" | "info" | "warn" | "debug";
16183
16219
  message: string;
16184
16220
  }[];
16185
16221
  error?: string | undefined;
@@ -16477,7 +16513,7 @@ declare function init(config: AuthHeroConfig): {
16477
16513
  scope?: string | undefined;
16478
16514
  grant_types?: string[] | undefined;
16479
16515
  response_types?: string[] | undefined;
16480
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16516
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
16481
16517
  jwks_uri?: string | undefined;
16482
16518
  jwks?: Record<string, unknown> | undefined;
16483
16519
  software_id?: string | undefined;
@@ -16566,7 +16602,7 @@ declare function init(config: AuthHeroConfig): {
16566
16602
  scope?: string | undefined;
16567
16603
  grant_types?: string[] | undefined;
16568
16604
  response_types?: string[] | undefined;
16569
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
16605
+ token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "private_key_jwt" | "client_secret_jwt" | undefined;
16570
16606
  jwks_uri?: string | undefined;
16571
16607
  jwks?: Record<string, unknown> | undefined;
16572
16608
  software_id?: string | undefined;
@@ -16912,16 +16948,16 @@ declare function init(config: AuthHeroConfig): {
16912
16948
  email: string;
16913
16949
  send: "code" | "link";
16914
16950
  authParams: {
16915
- username?: string | undefined;
16916
- state?: string | undefined;
16917
- audience?: string | undefined;
16918
16951
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16919
16952
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16920
16953
  scope?: string | undefined;
16954
+ username?: string | undefined;
16955
+ audience?: string | undefined;
16956
+ state?: string | undefined;
16921
16957
  organization?: string | undefined;
16922
16958
  nonce?: string | undefined;
16923
- redirect_uri?: string | undefined;
16924
16959
  act_as?: string | undefined;
16960
+ redirect_uri?: string | undefined;
16925
16961
  prompt?: string | undefined;
16926
16962
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16927
16963
  code_challenge?: string | undefined;
@@ -16948,16 +16984,16 @@ declare function init(config: AuthHeroConfig): {
16948
16984
  phone_number: string;
16949
16985
  send: "code" | "link";
16950
16986
  authParams: {
16951
- username?: string | undefined;
16952
- state?: string | undefined;
16953
- audience?: string | undefined;
16954
16987
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
16955
16988
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
16956
16989
  scope?: string | undefined;
16990
+ username?: string | undefined;
16991
+ audience?: string | undefined;
16992
+ state?: string | undefined;
16957
16993
  organization?: string | undefined;
16958
16994
  nonce?: string | undefined;
16959
- redirect_uri?: string | undefined;
16960
16995
  act_as?: string | undefined;
16996
+ redirect_uri?: string | undefined;
16961
16997
  prompt?: string | undefined;
16962
16998
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
16963
16999
  code_challenge?: string | undefined;
@@ -17092,14 +17128,14 @@ declare function init(config: AuthHeroConfig): {
17092
17128
  input: {
17093
17129
  form: {
17094
17130
  token: string;
17095
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17131
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17096
17132
  client_id?: string | undefined;
17097
17133
  client_secret?: string | undefined;
17098
17134
  };
17099
17135
  } & {
17100
17136
  json: {
17101
17137
  token: string;
17102
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17138
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17103
17139
  client_id?: string | undefined;
17104
17140
  client_secret?: string | undefined;
17105
17141
  };
@@ -17111,14 +17147,14 @@ declare function init(config: AuthHeroConfig): {
17111
17147
  input: {
17112
17148
  form: {
17113
17149
  token: string;
17114
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17150
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17115
17151
  client_id?: string | undefined;
17116
17152
  client_secret?: string | undefined;
17117
17153
  };
17118
17154
  } & {
17119
17155
  json: {
17120
17156
  token: string;
17121
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17157
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17122
17158
  client_id?: string | undefined;
17123
17159
  client_secret?: string | undefined;
17124
17160
  };
@@ -17133,14 +17169,14 @@ declare function init(config: AuthHeroConfig): {
17133
17169
  input: {
17134
17170
  form: {
17135
17171
  token: string;
17136
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17172
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17137
17173
  client_id?: string | undefined;
17138
17174
  client_secret?: string | undefined;
17139
17175
  };
17140
17176
  } & {
17141
17177
  json: {
17142
17178
  token: string;
17143
- token_type_hint?: "refresh_token" | "access_token" | undefined;
17179
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17144
17180
  client_id?: string | undefined;
17145
17181
  client_secret?: string | undefined;
17146
17182
  };
@@ -17190,7 +17226,7 @@ declare function init(config: AuthHeroConfig): {
17190
17226
  client_id: string;
17191
17227
  username: string;
17192
17228
  otp: string;
17193
- realm: "sms" | "email";
17229
+ realm: "email" | "sms";
17194
17230
  } | {
17195
17231
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17196
17232
  subject_token: string;
@@ -17237,7 +17273,7 @@ declare function init(config: AuthHeroConfig): {
17237
17273
  client_id: string;
17238
17274
  username: string;
17239
17275
  otp: string;
17240
- realm: "sms" | "email";
17276
+ realm: "email" | "sms";
17241
17277
  } | {
17242
17278
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17243
17279
  subject_token: string;
@@ -17289,7 +17325,7 @@ declare function init(config: AuthHeroConfig): {
17289
17325
  client_id: string;
17290
17326
  username: string;
17291
17327
  otp: string;
17292
- realm: "sms" | "email";
17328
+ realm: "email" | "sms";
17293
17329
  } | {
17294
17330
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17295
17331
  subject_token: string;
@@ -17336,7 +17372,7 @@ declare function init(config: AuthHeroConfig): {
17336
17372
  client_id: string;
17337
17373
  username: string;
17338
17374
  otp: string;
17339
- realm: "sms" | "email";
17375
+ realm: "email" | "sms";
17340
17376
  } | {
17341
17377
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17342
17378
  subject_token: string;
@@ -17396,7 +17432,7 @@ declare function init(config: AuthHeroConfig): {
17396
17432
  client_id: string;
17397
17433
  username: string;
17398
17434
  otp: string;
17399
- realm: "sms" | "email";
17435
+ realm: "email" | "sms";
17400
17436
  } | {
17401
17437
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17402
17438
  subject_token: string;
@@ -17443,7 +17479,7 @@ declare function init(config: AuthHeroConfig): {
17443
17479
  client_id: string;
17444
17480
  username: string;
17445
17481
  otp: string;
17446
- realm: "sms" | "email";
17482
+ realm: "email" | "sms";
17447
17483
  } | {
17448
17484
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17449
17485
  subject_token: string;
@@ -17498,7 +17534,7 @@ declare function init(config: AuthHeroConfig): {
17498
17534
  client_id: string;
17499
17535
  username: string;
17500
17536
  otp: string;
17501
- realm: "sms" | "email";
17537
+ realm: "email" | "sms";
17502
17538
  } | {
17503
17539
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17504
17540
  subject_token: string;
@@ -17545,7 +17581,7 @@ declare function init(config: AuthHeroConfig): {
17545
17581
  client_id: string;
17546
17582
  username: string;
17547
17583
  otp: string;
17548
- realm: "sms" | "email";
17584
+ realm: "email" | "sms";
17549
17585
  } | {
17550
17586
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17551
17587
  subject_token: string;
@@ -17600,7 +17636,7 @@ declare function init(config: AuthHeroConfig): {
17600
17636
  client_id: string;
17601
17637
  username: string;
17602
17638
  otp: string;
17603
- realm: "sms" | "email";
17639
+ realm: "email" | "sms";
17604
17640
  } | {
17605
17641
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17606
17642
  subject_token: string;
@@ -17647,7 +17683,7 @@ declare function init(config: AuthHeroConfig): {
17647
17683
  client_id: string;
17648
17684
  username: string;
17649
17685
  otp: string;
17650
- realm: "sms" | "email";
17686
+ realm: "email" | "sms";
17651
17687
  } | {
17652
17688
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
17653
17689
  subject_token: string;
@@ -17676,7 +17712,7 @@ declare function init(config: AuthHeroConfig): {
17676
17712
  output: {
17677
17713
  keys: {
17678
17714
  alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
17679
- kty: "EC" | "RSA" | "oct";
17715
+ kty: "RSA" | "EC" | "oct";
17680
17716
  kid?: string | undefined;
17681
17717
  use?: "sig" | "enc" | undefined;
17682
17718
  n?: string | undefined;
@@ -19053,5 +19089,5 @@ declare function init(config: AuthHeroConfig): {
19053
19089
  createX509Certificate: typeof createX509Certificate;
19054
19090
  };
19055
19091
 
19056
- 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, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
19057
- 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, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
19092
+ 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 };
19093
+ 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 };