authhero 8.23.0 → 8.24.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 (43) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +139 -142
  3. package/dist/authhero.d.ts +349 -145
  4. package/dist/authhero.mjs +19659 -15484
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/adapters/control-plane-custom-domains.d.ts +35 -0
  7. package/dist/types/authentication-flows/passwordless.d.ts +5 -5
  8. package/dist/types/helpers/control-plane-client.d.ts +46 -0
  9. package/dist/types/helpers/control-plane-sync-events.d.ts +12 -28
  10. package/dist/types/index.d.ts +174 -100
  11. package/dist/types/routes/auth-api/index.d.ts +24 -24
  12. package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
  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/management-api/authentication-methods.d.ts +1 -1
  16. package/dist/types/routes/management-api/branding.d.ts +1 -1
  17. package/dist/types/routes/management-api/clients.d.ts +6 -6
  18. package/dist/types/routes/management-api/connections.d.ts +15 -15
  19. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  20. package/dist/types/routes/management-api/failed-events.d.ts +1 -1
  21. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  22. package/dist/types/routes/management-api/helpers.d.ts +47 -0
  23. package/dist/types/routes/management-api/index.d.ts +140 -71
  24. package/dist/types/routes/management-api/logs.d.ts +4 -4
  25. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  26. package/dist/types/routes/management-api/organizations.d.ts +2 -2
  27. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  28. package/dist/types/routes/management-api/roles.d.ts +1 -1
  29. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  30. package/dist/types/routes/management-api/tenants.d.ts +1 -1
  31. package/dist/types/routes/management-api/users.d.ts +71 -2
  32. package/dist/types/routes/proxy-control-plane/custom-domains.d.ts +45 -0
  33. package/dist/types/routes/proxy-control-plane/index.d.ts +24 -6
  34. package/dist/types/routes/proxy-control-plane/scopes.d.ts +13 -0
  35. package/dist/types/routes/proxy-control-plane/verify.d.ts +15 -4
  36. package/dist/types/routes/universal-login/common.d.ts +6 -6
  37. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  38. package/dist/types/routes/universal-login/index.d.ts +2 -2
  39. package/dist/types/routes/universal-login/u2-index.d.ts +3 -3
  40. package/dist/types/routes/universal-login/u2-routes.d.ts +3 -3
  41. package/dist/types/types/AuthHeroConfig.d.ts +22 -7
  42. package/dist/types/types/IdToken.d.ts +4 -4
  43. package/package.json +8 -8
@@ -1,6 +1,6 @@
1
1
  import * as hono_utils_types from 'hono/utils/types';
2
2
  import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
3
- import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, TenantsDataAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
3
+ import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
4
4
  export * from '@authhero/adapter-interfaces';
5
5
  import * as hono_types from 'hono/types';
6
6
  import * as hono_utils_http_status from 'hono/utils/http-status';
@@ -11,7 +11,7 @@ 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
13
  import { ResolvedHost, KvNamespaceWriter } from '@authhero/proxy';
14
- export { PROXY_RESOLVE_HOST_SCOPE } from '@authhero/proxy';
14
+ export { PROXY_RESOLVE_HOST_SCOPE, ServiceBindingFetcher, createServiceBindingFetch } from '@authhero/proxy';
15
15
  import { FC, PropsWithChildren, JSXNode } from 'hono/jsx';
16
16
  import * as hono_jsx_jsx_dev_runtime from 'hono/jsx/jsx-dev-runtime';
17
17
 
@@ -823,7 +823,15 @@ type Hooks = {
823
823
  };
824
824
 
825
825
  declare const CONTROL_PLANE_SYNC_EVENT_PREFIX = "controlplane.sync.";
826
- type SyncEntity = "custom_domain" | "proxy_route";
826
+ /**
827
+ * Only `proxy_route` replicates upward. Custom domains used to sync the same
828
+ * way, which is exactly what left them half-provisioned: the row reached the
829
+ * control plane but nothing ever registered the hostname in Cloudflare. They
830
+ * are now written through the control plane synchronously
831
+ * (`createControlPlaneCustomDomainsAdapter`), which owns the row and performs
832
+ * the account-level side effect.
833
+ */
834
+ type SyncEntity = "proxy_route";
827
835
  type SyncOp = "created" | "updated" | "deleted";
828
836
  /**
829
837
  * Wire shape posted from the tenant shard to the control plane. The destination
@@ -832,34 +840,10 @@ type SyncOp = "created" | "updated" | "deleted";
832
840
  * batched-delivery destination.
833
841
  */
834
842
  type SyncEvent = {
835
- event_id: string;
836
- tenant_id: string;
837
- entity: "custom_domain";
838
- op: "created" | "updated";
839
- aggregate_id: string;
840
- payload: CustomDomain;
841
- occurred_at: string;
842
- } | {
843
- event_id: string;
844
- tenant_id: string;
845
- entity: "custom_domain";
846
- op: "deleted";
847
- aggregate_id: string;
848
- payload: CustomDomain;
849
- occurred_at: string;
850
- } | {
851
- event_id: string;
852
- tenant_id: string;
853
- entity: "proxy_route";
854
- op: "created" | "updated";
855
- aggregate_id: string;
856
- payload: ProxyRoute;
857
- occurred_at: string;
858
- } | {
859
843
  event_id: string;
860
844
  tenant_id: string;
861
845
  entity: "proxy_route";
862
- op: "deleted";
846
+ op: SyncOp;
863
847
  aggregate_id: string;
864
848
  payload: ProxyRoute;
865
849
  occurred_at: string;
@@ -1237,20 +1221,35 @@ interface AuthHeroConfig {
1237
1221
  * Optional receiver for `POST /sync` events emitted by tenant shards via
1238
1222
  * the `ControlPlaneSyncDestination`. Mount on the control-plane authhero
1239
1223
  * instance only. Implementations MUST be idempotent — the outbox retries
1240
- * on transient failures. Use `createApplySyncEvents({ customDomains,
1241
- * proxyRoutes })` (exported from `authhero`) for the default
1242
- * adapter-backed implementation.
1224
+ * on transient failures. Use `createApplySyncEvents({ proxyRoutes })`
1225
+ * (exported from `authhero`) for the default adapter-backed
1226
+ * implementation.
1243
1227
  */
1244
1228
  applySyncEvents?: (events: SyncEvent[]) => Promise<void>;
1229
+ /**
1230
+ * The authoritative custom-domains adapter. When set, mounts
1231
+ * `/api/v2/proxy/control-plane/custom-domains` — the resource tenant
1232
+ * shards write through (`createControlPlaneCustomDomainsAdapter`).
1233
+ *
1234
+ * Pass the Cloudflare adapter wrapping the control-plane database: a
1235
+ * CF-for-SaaS hostname is an account-global resource, so registering it
1236
+ * needs credentials that only exist here, and claiming it exactly once
1237
+ * needs a view across every tenant that only exists here.
1238
+ */
1239
+ customDomains?: _authhero_adapter_interfaces.CustomDomainsAdapter;
1245
1240
  };
1246
1241
  /**
1247
- * Optional outbox-driven replication of `custom_domains` and `proxy_routes`
1248
- * mutations to a global proxy control plane. When set, every successful
1249
- * write on this tenant shard enqueues a `controlplane.sync.*` outbox event;
1250
- * the `ControlPlaneSyncDestination` POSTs each event to
1242
+ * Optional outbox-driven replication of `proxy_routes` mutations to a global
1243
+ * proxy control plane. When set, every successful write on this tenant shard
1244
+ * enqueues a `controlplane.sync.*` outbox event; the
1245
+ * `ControlPlaneSyncDestination` POSTs each event to
1251
1246
  * `${baseUrl}/api/v2/proxy/control-plane/sync`. Requires the outbox to be
1252
1247
  * enabled (`outbox: { enabled: true }`).
1253
1248
  *
1249
+ * Custom domains are NOT replicated this way — the control plane is
1250
+ * authoritative for them; wire `createControlPlaneCustomDomainsAdapter` into
1251
+ * the shard's `dataAdapter` instead.
1252
+ *
1254
1253
  * Leave unset for single-DB deployments — the proxy reads the same database
1255
1254
  * the management API writes to, so replication is unnecessary.
1256
1255
  */
@@ -2612,22 +2611,147 @@ declare class ControlPlaneSyncDestination implements EventDestination {
2612
2611
  }
2613
2612
 
2614
2613
  interface CreateApplySyncEventsOptions {
2615
- customDomains: CustomDomainsAdapter;
2616
- proxyRoutes?: ProxyRoutesAdapter;
2614
+ proxyRoutes: ProxyRoutesAdapter;
2617
2615
  }
2618
2616
  /**
2619
2617
  * Build an idempotent `applySyncEvents` implementation backed by a local
2620
- * `CustomDomainsAdapter` / `ProxyRoutesAdapter`. Handles the three retry
2621
- * shapes the outbox can produce:
2618
+ * `ProxyRoutesAdapter`. Handles the three retry shapes the outbox can produce:
2622
2619
  *
2623
2620
  * - duplicate `created` (retry after the previous succeeded but
2624
2621
  * `markProcessed` failed) — falls back to `update`.
2625
2622
  * - `updated` for a row that doesn't exist locally yet (a `created`
2626
2623
  * delivery is still in flight or lost) — falls back to `create`.
2627
2624
  * - `deleted` for a row that's already gone — no-op success.
2625
+ *
2626
+ * Custom domains are not replicated: the control plane is authoritative for
2627
+ * them and tenant shards write through it (see
2628
+ * `createControlPlaneCustomDomainsAdapter`), so there is no upward sync to
2629
+ * apply.
2628
2630
  */
2629
2631
  declare function createApplySyncEvents(options: CreateApplySyncEventsOptions): (events: SyncEvent[]) => Promise<void>;
2630
2632
 
2633
+ /**
2634
+ * Scope carried by the tokens `ControlPlaneSyncDestination` mints for
2635
+ * `POST /api/v2/proxy/control-plane/sync`.
2636
+ */
2637
+ declare const CONTROL_PLANE_SYNC_SCOPE = "controlplane:sync";
2638
+ /**
2639
+ * Scope required by the authoritative `/custom-domains` resource on the
2640
+ * control plane. Tenant shards mint a token with this scope through
2641
+ * `createControlPlaneCustomDomainsAdapter`.
2642
+ */
2643
+ declare const CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE = "controlplane:custom_domains";
2644
+
2645
+ /**
2646
+ * Mints a bearer token for a tenant against the control plane. On a tenant
2647
+ * shard this is `createServiceTokenCore` bound to the shard's own tenants/keys
2648
+ * adapters — the control plane verifies it against the shard's published JWKS,
2649
+ * so no shared client secret is involved.
2650
+ */
2651
+ type GetControlPlaneToken = (tenantId: string, scope: string) => Promise<string>;
2652
+ interface ControlPlaneClientOptions {
2653
+ /** Base URL of the control-plane authhero instance, no trailing slash required. */
2654
+ baseUrl: string;
2655
+ getServiceToken: GetControlPlaneToken;
2656
+ /** Per-request timeout (default: 5s). */
2657
+ timeoutMs?: number;
2658
+ /** Refresh a cached token this many seconds before it expires (default: 60). */
2659
+ tokenRefreshSkewSeconds?: number;
2660
+ /** Override for tests, or to route over a Cloudflare service binding. */
2661
+ fetchImpl?: typeof fetch;
2662
+ }
2663
+ interface ControlPlaneRequest {
2664
+ tenantId: string;
2665
+ scope: string;
2666
+ method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
2667
+ /** Path below the base URL, e.g. `/api/v2/proxy/control-plane/custom-domains`. */
2668
+ path: string;
2669
+ body?: unknown;
2670
+ }
2671
+ interface ControlPlaneResponse {
2672
+ status: number;
2673
+ /** Parsed JSON body, or null for empty/non-JSON responses. */
2674
+ data: unknown;
2675
+ }
2676
+ interface ControlPlaneClient {
2677
+ /**
2678
+ * Perform an authed request. Returns the status and parsed body for ANY HTTP
2679
+ * response — including 4xx/5xx — so callers can map status to domain
2680
+ * semantics (409 → conflict, 404 → null). Throws only when the request never
2681
+ * produced a response (network error, timeout, token minting failure).
2682
+ */
2683
+ request(req: ControlPlaneRequest): Promise<ControlPlaneResponse>;
2684
+ }
2685
+ /**
2686
+ * Authed transport to the control plane with an in-memory, per-(tenant, scope)
2687
+ * token cache and single-flight minting. Shared by every control-plane-backed
2688
+ * adapter so the token handling exists once.
2689
+ */
2690
+ declare function createControlPlaneClient(options: ControlPlaneClientOptions): ControlPlaneClient;
2691
+
2692
+ declare const CONTROL_PLANE_CUSTOM_DOMAINS_PATH = "/api/v2/proxy/control-plane/custom-domains";
2693
+ interface ControlPlaneCustomDomainsOptions {
2694
+ /** Authed transport to the control plane. */
2695
+ client: ControlPlaneClient;
2696
+ /**
2697
+ * Local read-cache for custom domains — normally the shard's own database
2698
+ * adapter (`database.customDomains`). The control plane owns the row; this
2699
+ * mirror exists so `getByDomain` (tenant resolution, a hot path) and `list`
2700
+ * don't need a network hop.
2701
+ */
2702
+ mirror: CustomDomainsAdapter;
2703
+ /** Override the control-plane resource path (tests, custom mounts). */
2704
+ basePath?: string;
2705
+ }
2706
+ /**
2707
+ * A `CustomDomainsAdapter` for a tenant shard that cannot register hostnames
2708
+ * itself: a CF-for-SaaS custom hostname is an account-global resource in one
2709
+ * shared zone, and only the control plane holds the account credentials — and
2710
+ * only something above all shards can see that `login.acme.com` is already
2711
+ * claimed by another tenant.
2712
+ *
2713
+ * So the control plane is authoritative: writes go there synchronously and the
2714
+ * result is mirrored into the shard's own database as a read cache. On a
2715
+ * conflict nothing is written locally, which is what prevents the
2716
+ * half-provisioned, unroutable row this replaces.
2717
+ *
2718
+ * Reads trust the mirror once a domain is `ready`. A `pending` domain flips to
2719
+ * `ready` on Cloudflare's timeline (after the customer adds the DV record) and
2720
+ * that transition happens at the control plane, so a non-ready row is
2721
+ * refreshed from upstream on read. `getByDomain` always reads the mirror — it
2722
+ * is on the tenant-resolution path and must not take a network hop.
2723
+ */
2724
+ declare function createControlPlaneCustomDomainsAdapter(options: ControlPlaneCustomDomainsOptions): CustomDomainsAdapter;
2725
+
2726
+ interface ServiceTokenResponse {
2727
+ access_token: string;
2728
+ token_type: "Bearer";
2729
+ expires_in: number;
2730
+ }
2731
+ interface CreateServiceTokenCoreParams {
2732
+ tenants: TenantsDataAdapter;
2733
+ keys: KeysAdapter;
2734
+ tenantId: string;
2735
+ scope: string;
2736
+ issuer: string;
2737
+ expiresInSeconds?: number;
2738
+ customClaims?: Record<string, unknown>;
2739
+ /**
2740
+ * Optional per-tenant signing-key bucket selector. When unset the
2741
+ * tenant uses the shared control-plane keys (legacy behavior) which
2742
+ * keeps existing outbox/cron callers working without any change.
2743
+ */
2744
+ signingKeyMode?: SigningKeyModeOption;
2745
+ }
2746
+ /**
2747
+ * Ctx-free service token minter. Produces a signed JWT for the `auth-service`
2748
+ * client using the tenant's current JWT signing key. Intended to be shared
2749
+ * between the request-time outbox dispatcher and the cron `runOutboxRelay`
2750
+ * helper so both paths emit tokens with identical issuer, subject, tenant
2751
+ * binding, and signing key.
2752
+ */
2753
+ declare function createServiceTokenCore(params: CreateServiceTokenCoreParams): Promise<ServiceTokenResponse>;
2754
+
2631
2755
  interface KvPublishOptions {
2632
2756
  /** Custom-domains adapter whose writes should be mirrored to KV. */
2633
2757
  customDomains: CustomDomainsAdapter;
@@ -2831,6 +2955,13 @@ declare function wrapTenantsAdapterWithWfpKvPublish(options: WfpTenantsKvPublish
2831
2955
  declare function isAllowedIssuer(iss: string, expected: string): boolean;
2832
2956
  type VerifyControlPlaneTokenResult = {
2833
2957
  ok: true;
2958
+ /**
2959
+ * The verified `tenant_id` claim, when the token carries one. Service
2960
+ * tokens minted by `createServiceTokenCore` always do; a client-credentials
2961
+ * token minted for a proxy may not. Callers that act on a tenant's data
2962
+ * MUST bind to this rather than to a tenant id taken from the request.
2963
+ */
2964
+ tenantId?: string;
2834
2965
  } | {
2835
2966
  ok: false;
2836
2967
  reason: string;
@@ -2847,8 +2978,12 @@ interface VerifyControlPlaneTokenOptions {
2847
2978
  * so any host you list here must publish its own JWKS at that path.
2848
2979
  */
2849
2980
  expectedIssuers: string[];
2850
- /** Required `scope` (space-separated). Defaults to `proxy:resolve_host`. */
2851
- requiredScope?: string;
2981
+ /**
2982
+ * Required `scope` (the token's `scope` claim is space-separated). Pass an
2983
+ * array to accept any one of several scopes. Defaults to
2984
+ * `proxy:resolve_host`.
2985
+ */
2986
+ requiredScope?: string | string[];
2852
2987
  }
2853
2988
  /**
2854
2989
  * Verify a bearer token for the proxy control plane. Returns `{ ok: true }`
@@ -2856,8 +2991,8 @@ interface VerifyControlPlaneTokenOptions {
2856
2991
  * logs only and must not be surfaced to the caller.
2857
2992
  *
2858
2993
  * Accepted algs: RS256/384/512, ES256/384/512. The JWK's `alg` must match
2859
- * the token header's `alg`. The token must carry the configured required
2860
- * scope (`proxy:resolve_host` by default) and an `iss` that strictly equals
2994
+ * the token header's `alg`. The token must carry one of the configured
2995
+ * required scopes (`proxy:resolve_host` by default) and an `iss` that strictly equals
2861
2996
  * one of `expectedIssuers` after URL normalization. The JWKS document is
2862
2997
  * fetched from `<iss>/.well-known/jwks.json` AFTER the `iss` is allow-listed,
2863
2998
  * so an attacker cannot redirect the verifier to a JWKS they control.
@@ -3314,8 +3449,8 @@ declare function init(config: AuthHeroConfig): {
3314
3449
  $get: {
3315
3450
  input: {
3316
3451
  query: {
3317
- include_password_hashes?: "false" | "true" | undefined;
3318
- gzip?: "false" | "true" | undefined;
3452
+ include_password_hashes?: "true" | "false" | undefined;
3453
+ gzip?: "true" | "false" | undefined;
3319
3454
  };
3320
3455
  } & {
3321
3456
  header: {
@@ -3328,8 +3463,8 @@ declare function init(config: AuthHeroConfig): {
3328
3463
  } | {
3329
3464
  input: {
3330
3465
  query: {
3331
- include_password_hashes?: "false" | "true" | undefined;
3332
- gzip?: "false" | "true" | undefined;
3466
+ include_password_hashes?: "true" | "false" | undefined;
3467
+ gzip?: "true" | "false" | undefined;
3333
3468
  };
3334
3469
  } & {
3335
3470
  header: {
@@ -3348,7 +3483,7 @@ declare function init(config: AuthHeroConfig): {
3348
3483
  $post: {
3349
3484
  input: {
3350
3485
  query: {
3351
- include_password_hashes?: "false" | "true" | undefined;
3486
+ include_password_hashes?: "true" | "false" | undefined;
3352
3487
  };
3353
3488
  } & {
3354
3489
  header: {
@@ -3402,7 +3537,7 @@ declare function init(config: AuthHeroConfig): {
3402
3537
  };
3403
3538
  } & {
3404
3539
  json: {
3405
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3540
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
3406
3541
  phone_number?: string | undefined;
3407
3542
  totp_secret?: string | undefined;
3408
3543
  credential_id?: string | undefined;
@@ -3542,7 +3677,7 @@ declare function init(config: AuthHeroConfig): {
3542
3677
  };
3543
3678
  };
3544
3679
  output: {
3545
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3680
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3546
3681
  enabled: boolean;
3547
3682
  trial_expired?: boolean | undefined;
3548
3683
  }[];
@@ -3697,7 +3832,7 @@ declare function init(config: AuthHeroConfig): {
3697
3832
  $get: {
3698
3833
  input: {
3699
3834
  param: {
3700
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3835
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3701
3836
  };
3702
3837
  } & {
3703
3838
  header: {
@@ -3705,7 +3840,7 @@ declare function init(config: AuthHeroConfig): {
3705
3840
  };
3706
3841
  };
3707
3842
  output: {
3708
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3843
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3709
3844
  enabled: boolean;
3710
3845
  trial_expired?: boolean | undefined;
3711
3846
  };
@@ -3718,7 +3853,7 @@ declare function init(config: AuthHeroConfig): {
3718
3853
  $put: {
3719
3854
  input: {
3720
3855
  param: {
3721
- factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3856
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3722
3857
  };
3723
3858
  } & {
3724
3859
  header: {
@@ -3730,7 +3865,7 @@ declare function init(config: AuthHeroConfig): {
3730
3865
  };
3731
3866
  };
3732
3867
  output: {
3733
- name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3868
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3734
3869
  enabled: boolean;
3735
3870
  trial_expired?: boolean | undefined;
3736
3871
  };
@@ -4508,11 +4643,11 @@ declare function init(config: AuthHeroConfig): {
4508
4643
  invitee: {
4509
4644
  email?: string | undefined;
4510
4645
  };
4511
- roles?: string[] | undefined;
4512
4646
  id?: string | undefined;
4647
+ connection_id?: string | undefined;
4513
4648
  app_metadata?: Record<string, any> | undefined;
4514
4649
  user_metadata?: Record<string, any> | undefined;
4515
- connection_id?: string | undefined;
4650
+ roles?: string[] | undefined;
4516
4651
  ttl_sec?: number | undefined;
4517
4652
  send_invitation_email?: boolean | undefined;
4518
4653
  };
@@ -5269,9 +5404,9 @@ declare function init(config: AuthHeroConfig): {
5269
5404
  };
5270
5405
  } & {
5271
5406
  query: {
5407
+ from?: string | undefined;
5272
5408
  page?: string | undefined;
5273
5409
  include_totals?: string | undefined;
5274
- from?: string | undefined;
5275
5410
  per_page?: string | undefined;
5276
5411
  take?: string | undefined;
5277
5412
  };
@@ -10223,7 +10358,7 @@ declare function init(config: AuthHeroConfig): {
10223
10358
  };
10224
10359
  };
10225
10360
  output: {
10226
- 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";
10361
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
10227
10362
  language: string;
10228
10363
  }[];
10229
10364
  outputFormat: "json";
@@ -10261,7 +10396,7 @@ declare function init(config: AuthHeroConfig): {
10261
10396
  $get: {
10262
10397
  input: {
10263
10398
  param: {
10264
- 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";
10399
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
10265
10400
  language: string;
10266
10401
  };
10267
10402
  } & {
@@ -10283,7 +10418,7 @@ declare function init(config: AuthHeroConfig): {
10283
10418
  $put: {
10284
10419
  input: {
10285
10420
  param: {
10286
- 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";
10421
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
10287
10422
  language: string;
10288
10423
  };
10289
10424
  } & {
@@ -10307,7 +10442,7 @@ declare function init(config: AuthHeroConfig): {
10307
10442
  $delete: {
10308
10443
  input: {
10309
10444
  param: {
10310
- 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";
10445
+ prompt: "mfa" | "organizations" | "signup" | "status" | "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";
10311
10446
  language: string;
10312
10447
  };
10313
10448
  } & {
@@ -10399,7 +10534,7 @@ declare function init(config: AuthHeroConfig): {
10399
10534
  active?: boolean | undefined;
10400
10535
  } | undefined;
10401
10536
  signup?: {
10402
- status?: "required" | "optional" | "disabled" | undefined;
10537
+ status?: "optional" | "required" | "disabled" | undefined;
10403
10538
  verification?: {
10404
10539
  active?: boolean | undefined;
10405
10540
  } | undefined;
@@ -10416,7 +10551,7 @@ declare function init(config: AuthHeroConfig): {
10416
10551
  active?: boolean | undefined;
10417
10552
  } | undefined;
10418
10553
  signup?: {
10419
- status?: "required" | "optional" | "disabled" | undefined;
10554
+ status?: "optional" | "required" | "disabled" | undefined;
10420
10555
  } | undefined;
10421
10556
  validation?: {
10422
10557
  max_length?: number | undefined;
@@ -10433,7 +10568,7 @@ declare function init(config: AuthHeroConfig): {
10433
10568
  active?: boolean | undefined;
10434
10569
  } | undefined;
10435
10570
  signup?: {
10436
- status?: "required" | "optional" | "disabled" | undefined;
10571
+ status?: "optional" | "required" | "disabled" | undefined;
10437
10572
  } | undefined;
10438
10573
  } | undefined;
10439
10574
  } | undefined;
@@ -10533,7 +10668,7 @@ declare function init(config: AuthHeroConfig): {
10533
10668
  active?: boolean | undefined;
10534
10669
  } | undefined;
10535
10670
  signup?: {
10536
- status?: "required" | "optional" | "disabled" | undefined;
10671
+ status?: "optional" | "required" | "disabled" | undefined;
10537
10672
  verification?: {
10538
10673
  active?: boolean | undefined;
10539
10674
  } | undefined;
@@ -10550,7 +10685,7 @@ declare function init(config: AuthHeroConfig): {
10550
10685
  active?: boolean | undefined;
10551
10686
  } | undefined;
10552
10687
  signup?: {
10553
- status?: "required" | "optional" | "disabled" | undefined;
10688
+ status?: "optional" | "required" | "disabled" | undefined;
10554
10689
  } | undefined;
10555
10690
  validation?: {
10556
10691
  max_length?: number | undefined;
@@ -10567,7 +10702,7 @@ declare function init(config: AuthHeroConfig): {
10567
10702
  active?: boolean | undefined;
10568
10703
  } | undefined;
10569
10704
  signup?: {
10570
- status?: "required" | "optional" | "disabled" | undefined;
10705
+ status?: "optional" | "required" | "disabled" | undefined;
10571
10706
  } | undefined;
10572
10707
  } | undefined;
10573
10708
  } | undefined;
@@ -10683,7 +10818,7 @@ declare function init(config: AuthHeroConfig): {
10683
10818
  active?: boolean | undefined;
10684
10819
  } | undefined;
10685
10820
  signup?: {
10686
- status?: "required" | "optional" | "disabled" | undefined;
10821
+ status?: "optional" | "required" | "disabled" | undefined;
10687
10822
  verification?: {
10688
10823
  active?: boolean | undefined;
10689
10824
  } | undefined;
@@ -10700,7 +10835,7 @@ declare function init(config: AuthHeroConfig): {
10700
10835
  active?: boolean | undefined;
10701
10836
  } | undefined;
10702
10837
  signup?: {
10703
- status?: "required" | "optional" | "disabled" | undefined;
10838
+ status?: "optional" | "required" | "disabled" | undefined;
10704
10839
  } | undefined;
10705
10840
  validation?: {
10706
10841
  max_length?: number | undefined;
@@ -10717,7 +10852,7 @@ declare function init(config: AuthHeroConfig): {
10717
10852
  active?: boolean | undefined;
10718
10853
  } | undefined;
10719
10854
  signup?: {
10720
- status?: "required" | "optional" | "disabled" | undefined;
10855
+ status?: "optional" | "required" | "disabled" | undefined;
10721
10856
  } | undefined;
10722
10857
  } | undefined;
10723
10858
  } | undefined;
@@ -10862,7 +10997,7 @@ declare function init(config: AuthHeroConfig): {
10862
10997
  active?: boolean | undefined;
10863
10998
  } | undefined;
10864
10999
  signup?: {
10865
- status?: "required" | "optional" | "disabled" | undefined;
11000
+ status?: "optional" | "required" | "disabled" | undefined;
10866
11001
  verification?: {
10867
11002
  active?: boolean | undefined;
10868
11003
  } | undefined;
@@ -10879,7 +11014,7 @@ declare function init(config: AuthHeroConfig): {
10879
11014
  active?: boolean | undefined;
10880
11015
  } | undefined;
10881
11016
  signup?: {
10882
- status?: "required" | "optional" | "disabled" | undefined;
11017
+ status?: "optional" | "required" | "disabled" | undefined;
10883
11018
  } | undefined;
10884
11019
  validation?: {
10885
11020
  max_length?: number | undefined;
@@ -10896,7 +11031,7 @@ declare function init(config: AuthHeroConfig): {
10896
11031
  active?: boolean | undefined;
10897
11032
  } | undefined;
10898
11033
  signup?: {
10899
- status?: "required" | "optional" | "disabled" | undefined;
11034
+ status?: "optional" | "required" | "disabled" | undefined;
10900
11035
  } | undefined;
10901
11036
  } | undefined;
10902
11037
  } | undefined;
@@ -11020,7 +11155,7 @@ declare function init(config: AuthHeroConfig): {
11020
11155
  active?: boolean | undefined;
11021
11156
  } | undefined;
11022
11157
  signup?: {
11023
- status?: "required" | "optional" | "disabled" | undefined;
11158
+ status?: "optional" | "required" | "disabled" | undefined;
11024
11159
  verification?: {
11025
11160
  active?: boolean | undefined;
11026
11161
  } | undefined;
@@ -11037,7 +11172,7 @@ declare function init(config: AuthHeroConfig): {
11037
11172
  active?: boolean | undefined;
11038
11173
  } | undefined;
11039
11174
  signup?: {
11040
- status?: "required" | "optional" | "disabled" | undefined;
11175
+ status?: "optional" | "required" | "disabled" | undefined;
11041
11176
  } | undefined;
11042
11177
  validation?: {
11043
11178
  max_length?: number | undefined;
@@ -11054,7 +11189,7 @@ declare function init(config: AuthHeroConfig): {
11054
11189
  active?: boolean | undefined;
11055
11190
  } | undefined;
11056
11191
  signup?: {
11057
- status?: "required" | "optional" | "disabled" | undefined;
11192
+ status?: "optional" | "required" | "disabled" | undefined;
11058
11193
  } | undefined;
11059
11194
  } | undefined;
11060
11195
  } | undefined;
@@ -11810,7 +11945,7 @@ declare function init(config: AuthHeroConfig): {
11810
11945
  log_type: string;
11811
11946
  category: "user_action" | "admin_action" | "system" | "api";
11812
11947
  actor: {
11813
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11948
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
11814
11949
  id?: string | undefined;
11815
11950
  email?: string | undefined;
11816
11951
  org_id?: string | undefined;
@@ -12120,7 +12255,7 @@ declare function init(config: AuthHeroConfig): {
12120
12255
  created_at: string;
12121
12256
  updated_at: string;
12122
12257
  name: string;
12123
- provider: "auth0" | "oidc" | "okta" | "cognito";
12258
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12124
12259
  connection: string;
12125
12260
  enabled: boolean;
12126
12261
  credentials: {
@@ -12152,7 +12287,7 @@ declare function init(config: AuthHeroConfig): {
12152
12287
  created_at: string;
12153
12288
  updated_at: string;
12154
12289
  name: string;
12155
- provider: "auth0" | "oidc" | "okta" | "cognito";
12290
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12156
12291
  connection: string;
12157
12292
  enabled: boolean;
12158
12293
  credentials: {
@@ -12178,7 +12313,7 @@ declare function init(config: AuthHeroConfig): {
12178
12313
  } & {
12179
12314
  json: {
12180
12315
  name: string;
12181
- provider: "auth0" | "oidc" | "okta" | "cognito";
12316
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12182
12317
  connection: string;
12183
12318
  credentials: {
12184
12319
  domain: string;
@@ -12195,7 +12330,7 @@ declare function init(config: AuthHeroConfig): {
12195
12330
  created_at: string;
12196
12331
  updated_at: string;
12197
12332
  name: string;
12198
- provider: "auth0" | "oidc" | "okta" | "cognito";
12333
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12199
12334
  connection: string;
12200
12335
  enabled: boolean;
12201
12336
  credentials: {
@@ -12226,7 +12361,7 @@ declare function init(config: AuthHeroConfig): {
12226
12361
  json: {
12227
12362
  id?: string | undefined;
12228
12363
  name?: string | undefined;
12229
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
12364
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
12230
12365
  connection?: string | undefined;
12231
12366
  enabled?: boolean | undefined;
12232
12367
  credentials?: {
@@ -12242,7 +12377,7 @@ declare function init(config: AuthHeroConfig): {
12242
12377
  created_at: string;
12243
12378
  updated_at: string;
12244
12379
  name: string;
12245
- provider: "auth0" | "oidc" | "okta" | "cognito";
12380
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12246
12381
  connection: string;
12247
12382
  enabled: boolean;
12248
12383
  credentials: {
@@ -12460,7 +12595,7 @@ declare function init(config: AuthHeroConfig): {
12460
12595
  };
12461
12596
  };
12462
12597
  output: {
12463
- 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";
12598
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
12464
12599
  date: string;
12465
12600
  isMobile: boolean;
12466
12601
  log_id: string;
@@ -12499,7 +12634,7 @@ declare function init(config: AuthHeroConfig): {
12499
12634
  limit: number;
12500
12635
  length: number;
12501
12636
  logs: {
12502
- 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";
12637
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
12503
12638
  date: string;
12504
12639
  isMobile: boolean;
12505
12640
  log_id: string;
@@ -12538,7 +12673,7 @@ declare function init(config: AuthHeroConfig): {
12538
12673
  next?: string | undefined;
12539
12674
  } | {
12540
12675
  logs: {
12541
- 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";
12676
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
12542
12677
  date: string;
12543
12678
  isMobile: boolean;
12544
12679
  log_id: string;
@@ -12592,7 +12727,7 @@ declare function init(config: AuthHeroConfig): {
12592
12727
  };
12593
12728
  };
12594
12729
  output: {
12595
- 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";
12730
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
12596
12731
  date: string;
12597
12732
  isMobile: boolean;
12598
12733
  log_id: string;
@@ -13833,7 +13968,7 @@ declare function init(config: AuthHeroConfig): {
13833
13968
  active?: boolean | undefined;
13834
13969
  } | undefined;
13835
13970
  signup?: {
13836
- status?: "required" | "optional" | "disabled" | undefined;
13971
+ status?: "optional" | "required" | "disabled" | undefined;
13837
13972
  verification?: {
13838
13973
  active?: boolean | undefined;
13839
13974
  } | undefined;
@@ -13850,7 +13985,7 @@ declare function init(config: AuthHeroConfig): {
13850
13985
  active?: boolean | undefined;
13851
13986
  } | undefined;
13852
13987
  signup?: {
13853
- status?: "required" | "optional" | "disabled" | undefined;
13988
+ status?: "optional" | "required" | "disabled" | undefined;
13854
13989
  } | undefined;
13855
13990
  validation?: {
13856
13991
  max_length?: number | undefined;
@@ -13867,7 +14002,7 @@ declare function init(config: AuthHeroConfig): {
13867
14002
  active?: boolean | undefined;
13868
14003
  } | undefined;
13869
14004
  signup?: {
13870
- status?: "required" | "optional" | "disabled" | undefined;
14005
+ status?: "optional" | "required" | "disabled" | undefined;
13871
14006
  } | undefined;
13872
14007
  } | undefined;
13873
14008
  } | undefined;
@@ -13987,7 +14122,7 @@ declare function init(config: AuthHeroConfig): {
13987
14122
  active?: boolean | undefined;
13988
14123
  } | undefined;
13989
14124
  signup?: {
13990
- status?: "required" | "optional" | "disabled" | undefined;
14125
+ status?: "optional" | "required" | "disabled" | undefined;
13991
14126
  verification?: {
13992
14127
  active?: boolean | undefined;
13993
14128
  } | undefined;
@@ -14004,7 +14139,7 @@ declare function init(config: AuthHeroConfig): {
14004
14139
  active?: boolean | undefined;
14005
14140
  } | undefined;
14006
14141
  signup?: {
14007
- status?: "required" | "optional" | "disabled" | undefined;
14142
+ status?: "optional" | "required" | "disabled" | undefined;
14008
14143
  } | undefined;
14009
14144
  validation?: {
14010
14145
  max_length?: number | undefined;
@@ -14021,7 +14156,7 @@ declare function init(config: AuthHeroConfig): {
14021
14156
  active?: boolean | undefined;
14022
14157
  } | undefined;
14023
14158
  signup?: {
14024
- status?: "required" | "optional" | "disabled" | undefined;
14159
+ status?: "optional" | "required" | "disabled" | undefined;
14025
14160
  } | undefined;
14026
14161
  } | undefined;
14027
14162
  } | undefined;
@@ -14400,6 +14535,75 @@ declare function init(config: AuthHeroConfig): {
14400
14535
  }[];
14401
14536
  total?: number | undefined;
14402
14537
  next?: string | undefined;
14538
+ } | {
14539
+ users: {
14540
+ created_at: string;
14541
+ updated_at: string;
14542
+ connection: string;
14543
+ user_id: string;
14544
+ email_verified: boolean;
14545
+ provider: string;
14546
+ is_social: boolean;
14547
+ login_count: number;
14548
+ name?: string | undefined;
14549
+ email?: string | undefined;
14550
+ username?: string | undefined;
14551
+ given_name?: string | undefined;
14552
+ phone_number?: string | undefined;
14553
+ phone_verified?: boolean | undefined;
14554
+ family_name?: string | undefined;
14555
+ profileData?: string | undefined;
14556
+ address?: {
14557
+ formatted?: string | undefined;
14558
+ street_address?: string | undefined;
14559
+ locality?: string | undefined;
14560
+ region?: string | undefined;
14561
+ postal_code?: string | undefined;
14562
+ country?: string | undefined;
14563
+ } | undefined;
14564
+ nickname?: string | undefined;
14565
+ picture?: string | undefined;
14566
+ locale?: string | undefined;
14567
+ linked_to?: string | undefined;
14568
+ app_metadata?: any;
14569
+ user_metadata?: any;
14570
+ middle_name?: string | undefined;
14571
+ preferred_username?: string | undefined;
14572
+ profile?: string | undefined;
14573
+ website?: string | undefined;
14574
+ gender?: string | undefined;
14575
+ birthdate?: string | undefined;
14576
+ zoneinfo?: string | undefined;
14577
+ verify_email?: boolean | undefined;
14578
+ last_ip?: string | undefined;
14579
+ last_login?: string | undefined;
14580
+ identities?: {
14581
+ connection: string;
14582
+ user_id: string;
14583
+ provider: string;
14584
+ isSocial: boolean;
14585
+ email?: string | undefined;
14586
+ email_verified?: boolean | undefined;
14587
+ phone_number?: string | undefined;
14588
+ phone_verified?: boolean | undefined;
14589
+ username?: string | undefined;
14590
+ access_token?: string | undefined;
14591
+ access_token_secret?: string | undefined;
14592
+ refresh_token?: string | undefined;
14593
+ profileData?: {
14594
+ [x: string]: any;
14595
+ email?: string | undefined;
14596
+ email_verified?: boolean | undefined;
14597
+ name?: string | undefined;
14598
+ username?: string | undefined;
14599
+ given_name?: string | undefined;
14600
+ phone_number?: string | undefined;
14601
+ phone_verified?: boolean | undefined;
14602
+ family_name?: string | undefined;
14603
+ } | undefined;
14604
+ }[] | undefined;
14605
+ }[];
14606
+ next?: string | undefined;
14403
14607
  };
14404
14608
  outputFormat: "json";
14405
14609
  status: 200;
@@ -14978,7 +15182,7 @@ declare function init(config: AuthHeroConfig): {
14978
15182
  };
14979
15183
  };
14980
15184
  output: {
14981
- 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";
15185
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
14982
15186
  date: string;
14983
15187
  isMobile: boolean;
14984
15188
  log_id: string;
@@ -15017,7 +15221,7 @@ declare function init(config: AuthHeroConfig): {
15017
15221
  limit: number;
15018
15222
  length: number;
15019
15223
  logs: {
15020
- 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";
15224
+ type: "fn" | "i" | "sapi" | "fh" | "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" | "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";
15021
15225
  date: string;
15022
15226
  isMobile: boolean;
15023
15227
  log_id: string;
@@ -15336,7 +15540,7 @@ declare function init(config: AuthHeroConfig): {
15336
15540
  };
15337
15541
  } & {
15338
15542
  json: {
15339
- template: "verify_email" | "change_password" | "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";
15543
+ 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";
15340
15544
  body: string;
15341
15545
  from: string;
15342
15546
  subject: string;
@@ -15357,7 +15561,7 @@ declare function init(config: AuthHeroConfig): {
15357
15561
  };
15358
15562
  } & {
15359
15563
  json: {
15360
- template: "verify_email" | "change_password" | "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";
15564
+ 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";
15361
15565
  body: string;
15362
15566
  from: string;
15363
15567
  subject: string;
@@ -15369,7 +15573,7 @@ declare function init(config: AuthHeroConfig): {
15369
15573
  };
15370
15574
  };
15371
15575
  output: {
15372
- template: "verify_email" | "change_password" | "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";
15576
+ 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";
15373
15577
  body: string;
15374
15578
  from: string;
15375
15579
  subject: string;
@@ -15392,7 +15596,7 @@ declare function init(config: AuthHeroConfig): {
15392
15596
  };
15393
15597
  };
15394
15598
  output: {
15395
- name: "verify_email" | "change_password" | "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";
15599
+ 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";
15396
15600
  body: string;
15397
15601
  subject: string;
15398
15602
  }[];
@@ -15405,7 +15609,7 @@ declare function init(config: AuthHeroConfig): {
15405
15609
  $get: {
15406
15610
  input: {
15407
15611
  param: {
15408
- templateName: "verify_email" | "change_password" | "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";
15612
+ 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";
15409
15613
  };
15410
15614
  } & {
15411
15615
  header: {
@@ -15418,7 +15622,7 @@ declare function init(config: AuthHeroConfig): {
15418
15622
  } | {
15419
15623
  input: {
15420
15624
  param: {
15421
- templateName: "verify_email" | "change_password" | "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";
15625
+ 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";
15422
15626
  };
15423
15627
  } & {
15424
15628
  header: {
@@ -15426,7 +15630,7 @@ declare function init(config: AuthHeroConfig): {
15426
15630
  };
15427
15631
  };
15428
15632
  output: {
15429
- template: "verify_email" | "change_password" | "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";
15633
+ 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";
15430
15634
  body: string;
15431
15635
  from: string;
15432
15636
  subject: string;
@@ -15445,7 +15649,7 @@ declare function init(config: AuthHeroConfig): {
15445
15649
  $put: {
15446
15650
  input: {
15447
15651
  param: {
15448
- templateName: "verify_email" | "change_password" | "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";
15652
+ 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";
15449
15653
  };
15450
15654
  } & {
15451
15655
  header: {
@@ -15453,7 +15657,7 @@ declare function init(config: AuthHeroConfig): {
15453
15657
  };
15454
15658
  } & {
15455
15659
  json: {
15456
- template: "verify_email" | "change_password" | "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";
15660
+ 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";
15457
15661
  body: string;
15458
15662
  subject: string;
15459
15663
  syntax?: "liquid" | undefined;
@@ -15465,7 +15669,7 @@ declare function init(config: AuthHeroConfig): {
15465
15669
  };
15466
15670
  };
15467
15671
  output: {
15468
- template: "verify_email" | "change_password" | "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";
15672
+ 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";
15469
15673
  body: string;
15470
15674
  from: string;
15471
15675
  subject: string;
@@ -15484,7 +15688,7 @@ declare function init(config: AuthHeroConfig): {
15484
15688
  $patch: {
15485
15689
  input: {
15486
15690
  param: {
15487
- templateName: "verify_email" | "change_password" | "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";
15691
+ 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";
15488
15692
  };
15489
15693
  } & {
15490
15694
  header: {
@@ -15492,7 +15696,7 @@ declare function init(config: AuthHeroConfig): {
15492
15696
  };
15493
15697
  } & {
15494
15698
  json: {
15495
- template?: "verify_email" | "change_password" | "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;
15699
+ 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;
15496
15700
  body?: string | undefined;
15497
15701
  from?: string | undefined;
15498
15702
  subject?: string | undefined;
@@ -15509,7 +15713,7 @@ declare function init(config: AuthHeroConfig): {
15509
15713
  } | {
15510
15714
  input: {
15511
15715
  param: {
15512
- templateName: "verify_email" | "change_password" | "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";
15716
+ 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";
15513
15717
  };
15514
15718
  } & {
15515
15719
  header: {
@@ -15517,7 +15721,7 @@ declare function init(config: AuthHeroConfig): {
15517
15721
  };
15518
15722
  } & {
15519
15723
  json: {
15520
- template?: "verify_email" | "change_password" | "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;
15724
+ 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;
15521
15725
  body?: string | undefined;
15522
15726
  from?: string | undefined;
15523
15727
  subject?: string | undefined;
@@ -15529,7 +15733,7 @@ declare function init(config: AuthHeroConfig): {
15529
15733
  };
15530
15734
  };
15531
15735
  output: {
15532
- template: "verify_email" | "change_password" | "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";
15736
+ 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";
15533
15737
  body: string;
15534
15738
  from: string;
15535
15739
  subject: string;
@@ -15548,7 +15752,7 @@ declare function init(config: AuthHeroConfig): {
15548
15752
  $delete: {
15549
15753
  input: {
15550
15754
  param: {
15551
- templateName: "verify_email" | "change_password" | "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";
15755
+ 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";
15552
15756
  };
15553
15757
  } & {
15554
15758
  header: {
@@ -15561,7 +15765,7 @@ declare function init(config: AuthHeroConfig): {
15561
15765
  } | {
15562
15766
  input: {
15563
15767
  param: {
15564
- templateName: "verify_email" | "change_password" | "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";
15768
+ 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";
15565
15769
  };
15566
15770
  } & {
15567
15771
  header: {
@@ -15578,7 +15782,7 @@ declare function init(config: AuthHeroConfig): {
15578
15782
  $post: {
15579
15783
  input: {
15580
15784
  param: {
15581
- templateName: "verify_email" | "change_password" | "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";
15785
+ 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";
15582
15786
  };
15583
15787
  } & {
15584
15788
  header: {
@@ -16530,7 +16734,7 @@ declare function init(config: AuthHeroConfig): {
16530
16734
  } & {
16531
16735
  json: {
16532
16736
  body?: string | undefined;
16533
- screen?: "password" | "identifier" | "signup" | "login" | undefined;
16737
+ screen?: "identifier" | "signup" | "password" | "login" | undefined;
16534
16738
  branding?: {
16535
16739
  colors?: {
16536
16740
  primary: string;
@@ -18236,17 +18440,17 @@ declare function init(config: AuthHeroConfig): {
18236
18440
  email: string;
18237
18441
  send: "code" | "link";
18238
18442
  authParams: {
18239
- username?: string | undefined;
18240
- state?: string | undefined;
18241
18443
  audience?: string | undefined;
18242
18444
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
18243
18445
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
18244
18446
  scope?: string | undefined;
18245
- organization?: string | undefined;
18447
+ username?: string | undefined;
18448
+ state?: string | undefined;
18246
18449
  nonce?: string | undefined;
18450
+ prompt?: string | undefined;
18247
18451
  act_as?: string | undefined;
18248
18452
  redirect_uri?: string | undefined;
18249
- prompt?: string | undefined;
18453
+ organization?: string | undefined;
18250
18454
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18251
18455
  code_challenge?: string | undefined;
18252
18456
  ui_locales?: string | undefined;
@@ -18272,17 +18476,17 @@ declare function init(config: AuthHeroConfig): {
18272
18476
  phone_number: string;
18273
18477
  send: "code" | "link";
18274
18478
  authParams: {
18275
- username?: string | undefined;
18276
- state?: string | undefined;
18277
18479
  audience?: string | undefined;
18278
18480
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
18279
18481
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
18280
18482
  scope?: string | undefined;
18281
- organization?: string | undefined;
18483
+ username?: string | undefined;
18484
+ state?: string | undefined;
18282
18485
  nonce?: string | undefined;
18486
+ prompt?: string | undefined;
18283
18487
  act_as?: string | undefined;
18284
18488
  redirect_uri?: string | undefined;
18285
- prompt?: string | undefined;
18489
+ organization?: string | undefined;
18286
18490
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
18287
18491
  code_challenge?: string | undefined;
18288
18492
  ui_locales?: string | undefined;
@@ -18416,14 +18620,14 @@ declare function init(config: AuthHeroConfig): {
18416
18620
  input: {
18417
18621
  form: {
18418
18622
  token: string;
18419
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18623
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18420
18624
  client_id?: string | undefined;
18421
18625
  client_secret?: string | undefined;
18422
18626
  };
18423
18627
  } & {
18424
18628
  json: {
18425
18629
  token: string;
18426
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18630
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18427
18631
  client_id?: string | undefined;
18428
18632
  client_secret?: string | undefined;
18429
18633
  };
@@ -18435,14 +18639,14 @@ declare function init(config: AuthHeroConfig): {
18435
18639
  input: {
18436
18640
  form: {
18437
18641
  token: string;
18438
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18642
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18439
18643
  client_id?: string | undefined;
18440
18644
  client_secret?: string | undefined;
18441
18645
  };
18442
18646
  } & {
18443
18647
  json: {
18444
18648
  token: string;
18445
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18649
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18446
18650
  client_id?: string | undefined;
18447
18651
  client_secret?: string | undefined;
18448
18652
  };
@@ -18457,14 +18661,14 @@ declare function init(config: AuthHeroConfig): {
18457
18661
  input: {
18458
18662
  form: {
18459
18663
  token: string;
18460
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18664
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18461
18665
  client_id?: string | undefined;
18462
18666
  client_secret?: string | undefined;
18463
18667
  };
18464
18668
  } & {
18465
18669
  json: {
18466
18670
  token: string;
18467
- token_type_hint?: "access_token" | "refresh_token" | undefined;
18671
+ token_type_hint?: "refresh_token" | "access_token" | undefined;
18468
18672
  client_id?: string | undefined;
18469
18673
  client_secret?: string | undefined;
18470
18674
  };
@@ -18514,7 +18718,7 @@ declare function init(config: AuthHeroConfig): {
18514
18718
  client_id: string;
18515
18719
  username: string;
18516
18720
  otp: string;
18517
- realm: "email" | "sms";
18721
+ realm: "sms" | "email";
18518
18722
  } | {
18519
18723
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18520
18724
  subject_token: string;
@@ -18561,7 +18765,7 @@ declare function init(config: AuthHeroConfig): {
18561
18765
  client_id: string;
18562
18766
  username: string;
18563
18767
  otp: string;
18564
- realm: "email" | "sms";
18768
+ realm: "sms" | "email";
18565
18769
  } | {
18566
18770
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18567
18771
  subject_token: string;
@@ -18613,7 +18817,7 @@ declare function init(config: AuthHeroConfig): {
18613
18817
  client_id: string;
18614
18818
  username: string;
18615
18819
  otp: string;
18616
- realm: "email" | "sms";
18820
+ realm: "sms" | "email";
18617
18821
  } | {
18618
18822
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18619
18823
  subject_token: string;
@@ -18660,7 +18864,7 @@ declare function init(config: AuthHeroConfig): {
18660
18864
  client_id: string;
18661
18865
  username: string;
18662
18866
  otp: string;
18663
- realm: "email" | "sms";
18867
+ realm: "sms" | "email";
18664
18868
  } | {
18665
18869
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18666
18870
  subject_token: string;
@@ -18720,7 +18924,7 @@ declare function init(config: AuthHeroConfig): {
18720
18924
  client_id: string;
18721
18925
  username: string;
18722
18926
  otp: string;
18723
- realm: "email" | "sms";
18927
+ realm: "sms" | "email";
18724
18928
  } | {
18725
18929
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18726
18930
  subject_token: string;
@@ -18767,7 +18971,7 @@ declare function init(config: AuthHeroConfig): {
18767
18971
  client_id: string;
18768
18972
  username: string;
18769
18973
  otp: string;
18770
- realm: "email" | "sms";
18974
+ realm: "sms" | "email";
18771
18975
  } | {
18772
18976
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18773
18977
  subject_token: string;
@@ -18822,7 +19026,7 @@ declare function init(config: AuthHeroConfig): {
18822
19026
  client_id: string;
18823
19027
  username: string;
18824
19028
  otp: string;
18825
- realm: "email" | "sms";
19029
+ realm: "sms" | "email";
18826
19030
  } | {
18827
19031
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18828
19032
  subject_token: string;
@@ -18869,7 +19073,7 @@ declare function init(config: AuthHeroConfig): {
18869
19073
  client_id: string;
18870
19074
  username: string;
18871
19075
  otp: string;
18872
- realm: "email" | "sms";
19076
+ realm: "sms" | "email";
18873
19077
  } | {
18874
19078
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18875
19079
  subject_token: string;
@@ -18924,7 +19128,7 @@ declare function init(config: AuthHeroConfig): {
18924
19128
  client_id: string;
18925
19129
  username: string;
18926
19130
  otp: string;
18927
- realm: "email" | "sms";
19131
+ realm: "sms" | "email";
18928
19132
  } | {
18929
19133
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18930
19134
  subject_token: string;
@@ -18971,7 +19175,7 @@ declare function init(config: AuthHeroConfig): {
18971
19175
  client_id: string;
18972
19176
  username: string;
18973
19177
  otp: string;
18974
- realm: "email" | "sms";
19178
+ realm: "sms" | "email";
18975
19179
  } | {
18976
19180
  grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
18977
19181
  subject_token: string;
@@ -19816,7 +20020,7 @@ declare function init(config: AuthHeroConfig): {
19816
20020
  } & {
19817
20021
  form: {
19818
20022
  username: string;
19819
- login_selection?: "password" | "code" | undefined;
20023
+ login_selection?: "code" | "password" | undefined;
19820
20024
  };
19821
20025
  };
19822
20026
  output: {};
@@ -19830,7 +20034,7 @@ declare function init(config: AuthHeroConfig): {
19830
20034
  } & {
19831
20035
  form: {
19832
20036
  username: string;
19833
- login_selection?: "password" | "code" | undefined;
20037
+ login_selection?: "code" | "password" | undefined;
19834
20038
  };
19835
20039
  };
19836
20040
  output: {};
@@ -20195,7 +20399,7 @@ declare function init(config: AuthHeroConfig): {
20195
20399
  $get: {
20196
20400
  input: {
20197
20401
  param: {
20198
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20402
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
20199
20403
  };
20200
20404
  } & {
20201
20405
  query: {
@@ -20211,7 +20415,7 @@ declare function init(config: AuthHeroConfig): {
20211
20415
  } | {
20212
20416
  input: {
20213
20417
  param: {
20214
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20418
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
20215
20419
  };
20216
20420
  } & {
20217
20421
  query: {
@@ -20227,7 +20431,7 @@ declare function init(config: AuthHeroConfig): {
20227
20431
  } | {
20228
20432
  input: {
20229
20433
  param: {
20230
- screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20434
+ screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
20231
20435
  };
20232
20436
  } & {
20233
20437
  query: {
@@ -20363,5 +20567,5 @@ declare function init(config: AuthHeroConfig): {
20363
20567
  createX509Certificate: typeof createX509Certificate;
20364
20568
  };
20365
20569
 
20366
- export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, 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, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
20367
- export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
20570
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, 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, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createServiceTokenCore, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
20571
+ export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };