authhero 8.20.0 → 8.22.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 (47) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +142 -142
  3. package/dist/authhero.d.ts +402 -82
  4. package/dist/authhero.mjs +15092 -17184
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/passwordless.d.ts +4 -4
  7. package/dist/types/errors/is-http-exception-like.d.ts +11 -0
  8. package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
  9. package/dist/types/index.d.ts +280 -79
  10. package/dist/types/routes/auth-api/index.d.ts +18 -18
  11. package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
  12. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  13. package/dist/types/routes/auth-api/revoke.d.ts +6 -6
  14. package/dist/types/routes/management-api/action-executions.d.ts +2 -2
  15. package/dist/types/routes/management-api/actions.d.ts +3 -1
  16. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  17. package/dist/types/routes/management-api/branding.d.ts +9 -9
  18. package/dist/types/routes/management-api/client-grants.d.ts +16 -0
  19. package/dist/types/routes/management-api/clients.d.ts +109 -13
  20. package/dist/types/routes/management-api/connections.d.ts +16 -15
  21. package/dist/types/routes/management-api/flows.d.ts +1 -0
  22. package/dist/types/routes/management-api/forms.d.ts +1 -0
  23. package/dist/types/routes/management-api/grants.d.ts +1 -0
  24. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  25. package/dist/types/routes/management-api/hook-code.d.ts +2 -2
  26. package/dist/types/routes/management-api/hooks.d.ts +1 -0
  27. package/dist/types/routes/management-api/index.d.ts +276 -76
  28. package/dist/types/routes/management-api/log-streams.d.ts +6 -6
  29. package/dist/types/routes/management-api/logs.d.ts +42 -3
  30. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  31. package/dist/types/routes/management-api/organizations.d.ts +36 -2
  32. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  33. package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
  34. package/dist/types/routes/management-api/roles.d.ts +2 -0
  35. package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
  36. package/dist/types/routes/management-api/tenants.d.ts +5 -5
  37. package/dist/types/routes/management-api/themes.d.ts +6 -6
  38. package/dist/types/routes/management-api/users.d.ts +7 -2
  39. package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.d.ts +122 -0
  40. package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.test.d.ts +1 -0
  41. package/dist/types/routes/universal-login/common.d.ts +12 -12
  42. package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
  43. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  44. package/dist/types/routes/universal-login/index.d.ts +2 -2
  45. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  46. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  47. package/package.json +5 -5
@@ -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, ListParams, KeysAdapter, CodeExecutionResult } 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';
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';
@@ -2692,6 +2692,126 @@ interface BackfillResult {
2692
2692
  */
2693
2693
  declare function backfillProxyHostsToKv(options: BackfillProxyHostsOptions): Promise<BackfillResult>;
2694
2694
 
2695
+ /**
2696
+ * Default dispatch-namespace binding name the synthesized route targets.
2697
+ * Must match the `[[dispatch_namespaces]] binding = "..."` declared in the
2698
+ * proxy Worker's wrangler config.
2699
+ */
2700
+ declare const DEFAULT_WFP_DISPATCH_BINDING = "DISPATCHER";
2701
+ /**
2702
+ * Default script-name template, matching the WFP provisioner's default
2703
+ * (`scriptNameTemplate` in `@authhero/cloudflare-adapter`). Only used when the
2704
+ * tenant row carries no `worker_script_name` — the provisioner writes that
2705
+ * back on provision, and it is always preferred.
2706
+ */
2707
+ declare const DEFAULT_WFP_SCRIPT_NAME_TEMPLATE = "{tenant_id}";
2708
+ /**
2709
+ * The platform subdomain a WFP tenant is served on: `{tenant_id}.{issuerHost}`.
2710
+ * Central so the publisher, the resolver, and any reconcile host-list
2711
+ * derivation all agree on the exact host (and therefore the KV key).
2712
+ */
2713
+ declare function wfpTenantHost(tenantId: string, issuerHost: string): string;
2714
+ /**
2715
+ * Whether a tenant id can be served on a platform subdomain at all. Ids that
2716
+ * fail this (mixed case, dots, other URL-unsafe characters) are skipped by
2717
+ * `wrapTenantsAdapterWithWfpKvPublish` — publishing them would create KV keys
2718
+ * the resolver can never match. Give WFP tenants lowercase DNS-label ids.
2719
+ */
2720
+ declare function isWfpSubdomainSafeTenantId(tenantId: string): boolean;
2721
+ interface WfpTenantHostResolverOptions {
2722
+ /** Tenant lookup — typically the control plane's tenants adapter. */
2723
+ tenants: Pick<TenantsDataAdapter, "get">;
2724
+ /**
2725
+ * The issuer host tenant subdomains hang off (e.g. `token.example.com`,
2726
+ * from `new URL(env.ISSUER).host`). A host resolves only when it is exactly
2727
+ * one label under this — `wpf.token.example.com`, not `a.b.token.example.com`.
2728
+ */
2729
+ issuerHost: string;
2730
+ /** Dispatch-namespace binding name on the proxy Worker. */
2731
+ dispatchBinding?: string;
2732
+ /**
2733
+ * Fallback script-name template (`{tenant_id}` placeholder) for tenants
2734
+ * provisioned before `worker_script_name` was written back. Must match the
2735
+ * provisioner's template.
2736
+ */
2737
+ scriptNameTemplate?: string;
2738
+ /** Optional per-request timeout (ms) forwarded to the dispatch handler. */
2739
+ dispatchTimeoutMs?: number;
2740
+ }
2741
+ /**
2742
+ * Build a `resolveHost` that maps a WFP tenant's platform subdomain
2743
+ * (`{tenant_id}.{issuerHost}`) to a synthetic `ResolvedHost` whose single
2744
+ * route dispatches into the tenant's own Worker via the proxy's
2745
+ * `dispatch_namespace` handler.
2746
+ *
2747
+ * Resolves only tenants with `deployment_type: "wfp"` AND
2748
+ * `provisioning_state: "ready"` — anything else returns `null` so the host
2749
+ * falls through to the proxy's fallback chain (typically the shared control
2750
+ * plane), which keeps a tenant serviceable while it is still provisioning.
2751
+ * No `custom_domains` row is involved; the mapping is derived entirely from
2752
+ * the tenant row, which stays the durable source of truth.
2753
+ *
2754
+ * Compose it behind the custom-domains resolver with `composeHostResolvers`
2755
+ * so an explicit `custom_domains` row for the same host always wins.
2756
+ */
2757
+ declare function createWfpTenantHostResolver(options: WfpTenantHostResolverOptions): (host: string) => Promise<ResolvedHost | null>;
2758
+ /**
2759
+ * Chain host resolvers: first non-null wins, in argument order. Put the
2760
+ * custom-domains resolver first so an explicit `custom_domains` row overrides
2761
+ * a derived WFP tenant-subdomain route for the same host. Errors propagate —
2762
+ * a failing layer should surface (and let the caller's own fallback take
2763
+ * over), not be silently treated as a miss that could delete a live KV key.
2764
+ */
2765
+ declare function composeHostResolvers(...resolvers: Array<(host: string) => Promise<ResolvedHost | null>>): (host: string) => Promise<ResolvedHost | null>;
2766
+ interface WfpTenantsKvPublishOptions {
2767
+ /** Tenants adapter whose writes should be mirrored to KV. */
2768
+ tenants: TenantsDataAdapter;
2769
+ /** KV namespace the resolved host blobs are published to. */
2770
+ kv: KvNamespaceWriter;
2771
+ /**
2772
+ * Cross-tenant host resolver used to recompute the blob after a write —
2773
+ * pass the SAME composed resolver (custom domains first, then
2774
+ * `createWfpTenantHostResolver`) that the control plane serves over HTTP,
2775
+ * so every publisher computes identical blobs for a host.
2776
+ */
2777
+ resolveHost: (host: string) => Promise<ResolvedHost | null>;
2778
+ /** The issuer host tenant subdomains hang off — see `wfpTenantHost`. */
2779
+ issuerHost: string;
2780
+ /** Key prefix; must match the proxy reader. Defaults to the shared default. */
2781
+ keyPrefix?: string;
2782
+ /**
2783
+ * Optional `ctx.waitUntil` so the fire-and-forget KV publish runs to
2784
+ * completion without blocking (or failing) the originating write. When
2785
+ * omitted, the publish is detached with its rejection swallowed.
2786
+ */
2787
+ waitUntil?: (promise: Promise<unknown>) => void;
2788
+ /** Optional hook invoked when a publish fails. */
2789
+ onError?: (err: unknown, ctx: {
2790
+ host: string;
2791
+ op: string;
2792
+ }) => void;
2793
+ }
2794
+ /**
2795
+ * Wrap a control plane's `tenants` adapter so every WFP-tenant mutation
2796
+ * republishes (or deletes) the tenant's platform-subdomain routing blob in KV
2797
+ * — the tenants-table counterpart of `wrapProxyAdaptersWithKvPublish`.
2798
+ *
2799
+ * This is the single choke-point for WFP subdomain routing: the provisioner
2800
+ * flips `provisioning_state` to `"ready"` through `tenants.update`, which
2801
+ * publishes the dispatch route the moment the tenant Worker is servable —
2802
+ * inline hook and durable-workflow paths alike, with no per-path wiring. A
2803
+ * remove deletes the key, so a deprovisioned tenant's host falls back to the
2804
+ * proxy's default chain instead of dispatching to a dead script.
2805
+ *
2806
+ * Shared (non-WFP) tenants never touch KV, and neither do wfp tenants whose
2807
+ * id is not a lowercase DNS label (`isWfpSubdomainSafeTenantId`) — such ids
2808
+ * cannot round-trip through a hostname, so publishing them would only create
2809
+ * dead keys. Publishing is fire-and-forget; silent drift is corrected by the
2810
+ * periodic reconcile (`backfillProxyHostsToKv` over `wfpTenantHost`-derived
2811
+ * hosts).
2812
+ */
2813
+ declare function wrapTenantsAdapterWithWfpKvPublish(options: WfpTenantsKvPublishOptions): TenantsDataAdapter;
2814
+
2695
2815
  /**
2696
2816
  * Strict issuer equality: parse both `iss` and `expected` as URLs and compare
2697
2817
  * the resulting hrefs after stripping any single trailing slash. No host-only
@@ -3185,8 +3305,8 @@ declare function init(config: AuthHeroConfig): {
3185
3305
  $get: {
3186
3306
  input: {
3187
3307
  query: {
3188
- include_password_hashes?: "true" | "false" | undefined;
3189
- gzip?: "true" | "false" | undefined;
3308
+ include_password_hashes?: "false" | "true" | undefined;
3309
+ gzip?: "false" | "true" | undefined;
3190
3310
  };
3191
3311
  } & {
3192
3312
  header: {
@@ -3199,8 +3319,8 @@ declare function init(config: AuthHeroConfig): {
3199
3319
  } | {
3200
3320
  input: {
3201
3321
  query: {
3202
- include_password_hashes?: "true" | "false" | undefined;
3203
- gzip?: "true" | "false" | undefined;
3322
+ include_password_hashes?: "false" | "true" | undefined;
3323
+ gzip?: "false" | "true" | undefined;
3204
3324
  };
3205
3325
  } & {
3206
3326
  header: {
@@ -3219,7 +3339,7 @@ declare function init(config: AuthHeroConfig): {
3219
3339
  $post: {
3220
3340
  input: {
3221
3341
  query: {
3222
- include_password_hashes?: "true" | "false" | undefined;
3342
+ include_password_hashes?: "false" | "true" | undefined;
3223
3343
  };
3224
3344
  } & {
3225
3345
  header: {
@@ -3273,7 +3393,7 @@ declare function init(config: AuthHeroConfig): {
3273
3393
  };
3274
3394
  } & {
3275
3395
  json: {
3276
- type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
3396
+ type: "email" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
3277
3397
  phone_number?: string | undefined;
3278
3398
  totp_secret?: string | undefined;
3279
3399
  credential_id?: string | undefined;
@@ -3413,7 +3533,7 @@ declare function init(config: AuthHeroConfig): {
3413
3533
  };
3414
3534
  };
3415
3535
  output: {
3416
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3536
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3417
3537
  enabled: boolean;
3418
3538
  trial_expired?: boolean | undefined;
3419
3539
  }[];
@@ -3568,7 +3688,7 @@ declare function init(config: AuthHeroConfig): {
3568
3688
  $get: {
3569
3689
  input: {
3570
3690
  param: {
3571
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3691
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3572
3692
  };
3573
3693
  } & {
3574
3694
  header: {
@@ -3576,7 +3696,7 @@ declare function init(config: AuthHeroConfig): {
3576
3696
  };
3577
3697
  };
3578
3698
  output: {
3579
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3699
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3580
3700
  enabled: boolean;
3581
3701
  trial_expired?: boolean | undefined;
3582
3702
  };
@@ -3589,7 +3709,7 @@ declare function init(config: AuthHeroConfig): {
3589
3709
  $put: {
3590
3710
  input: {
3591
3711
  param: {
3592
- factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3712
+ factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3593
3713
  };
3594
3714
  } & {
3595
3715
  header: {
@@ -3601,7 +3721,7 @@ declare function init(config: AuthHeroConfig): {
3601
3721
  };
3602
3722
  };
3603
3723
  output: {
3604
- name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
3724
+ name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
3605
3725
  enabled: boolean;
3606
3726
  trial_expired?: boolean | undefined;
3607
3727
  };
@@ -3731,6 +3851,39 @@ declare function init(config: AuthHeroConfig): {
3731
3851
  } | undefined;
3732
3852
  }[];
3733
3853
  total?: number | undefined;
3854
+ next?: string | undefined;
3855
+ } | {
3856
+ organizations: {
3857
+ created_at: string;
3858
+ updated_at: string;
3859
+ id: string;
3860
+ name: string;
3861
+ display_name?: string | undefined;
3862
+ branding?: {
3863
+ logo_url?: string | undefined;
3864
+ colors?: {
3865
+ primary?: string | undefined;
3866
+ page_background?: string | undefined;
3867
+ } | undefined;
3868
+ } | undefined;
3869
+ metadata?: {
3870
+ [x: string]: any;
3871
+ } | undefined;
3872
+ enabled_connections?: {
3873
+ connection_id: string;
3874
+ assign_membership_on_login: boolean;
3875
+ show_as_button: boolean;
3876
+ is_signup_enabled: boolean;
3877
+ }[] | undefined;
3878
+ token_quota?: {
3879
+ client_credentials?: {
3880
+ enforce: boolean;
3881
+ per_day: number;
3882
+ per_hour: number;
3883
+ } | undefined;
3884
+ } | undefined;
3885
+ }[];
3886
+ next?: string | undefined;
3734
3887
  };
3735
3888
  outputFormat: "json";
3736
3889
  status: 200;
@@ -4451,6 +4604,7 @@ declare function init(config: AuthHeroConfig): {
4451
4604
  updated_at?: string | undefined;
4452
4605
  }[];
4453
4606
  total?: number | undefined;
4607
+ next?: string | undefined;
4454
4608
  };
4455
4609
  outputFormat: "json";
4456
4610
  status: 200;
@@ -4534,8 +4688,8 @@ declare function init(config: AuthHeroConfig): {
4534
4688
  };
4535
4689
  } & {
4536
4690
  json: {
4537
- show_as_button?: boolean | undefined;
4538
4691
  assign_membership_on_login?: boolean | undefined;
4692
+ show_as_button?: boolean | undefined;
4539
4693
  is_signup_enabled?: boolean | undefined;
4540
4694
  };
4541
4695
  };
@@ -4663,6 +4817,7 @@ declare function init(config: AuthHeroConfig): {
4663
4817
  updated_at?: string | undefined;
4664
4818
  }[];
4665
4819
  total?: number | undefined;
4820
+ next?: string | undefined;
4666
4821
  };
4667
4822
  outputFormat: "json";
4668
4823
  status: 200;
@@ -4934,6 +5089,7 @@ declare function init(config: AuthHeroConfig): {
4934
5089
  updated_at?: string | undefined;
4935
5090
  }[];
4936
5091
  total?: number | undefined;
5092
+ next?: string | undefined;
4937
5093
  };
4938
5094
  outputFormat: "json";
4939
5095
  status: 200;
@@ -5089,6 +5245,7 @@ declare function init(config: AuthHeroConfig): {
5089
5245
  created_at: string;
5090
5246
  }[];
5091
5247
  total?: number | undefined;
5248
+ next?: string | undefined;
5092
5249
  };
5093
5250
  outputFormat: "json";
5094
5251
  status: 200;
@@ -5266,6 +5423,7 @@ declare function init(config: AuthHeroConfig): {
5266
5423
  id: string;
5267
5424
  }[];
5268
5425
  total?: number | undefined;
5426
+ next?: string | undefined;
5269
5427
  };
5270
5428
  outputFormat: "json";
5271
5429
  status: 200;
@@ -6794,6 +6952,7 @@ declare function init(config: AuthHeroConfig): {
6794
6952
  } | undefined;
6795
6953
  }[];
6796
6954
  total?: number | undefined;
6955
+ next?: string | undefined;
6797
6956
  };
6798
6957
  outputFormat: "json";
6799
6958
  status: 200;
@@ -10005,7 +10164,7 @@ declare function init(config: AuthHeroConfig): {
10005
10164
  };
10006
10165
  };
10007
10166
  output: {
10008
- 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";
10167
+ prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10009
10168
  language: string;
10010
10169
  }[];
10011
10170
  outputFormat: "json";
@@ -10043,7 +10202,7 @@ declare function init(config: AuthHeroConfig): {
10043
10202
  $get: {
10044
10203
  input: {
10045
10204
  param: {
10046
- 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";
10205
+ prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10047
10206
  language: string;
10048
10207
  };
10049
10208
  } & {
@@ -10065,7 +10224,7 @@ declare function init(config: AuthHeroConfig): {
10065
10224
  $put: {
10066
10225
  input: {
10067
10226
  param: {
10068
- 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";
10227
+ prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10069
10228
  language: string;
10070
10229
  };
10071
10230
  } & {
@@ -10089,7 +10248,7 @@ declare function init(config: AuthHeroConfig): {
10089
10248
  $delete: {
10090
10249
  input: {
10091
10250
  param: {
10092
- 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";
10251
+ prompt: "mfa" | "organizations" | "status" | "login" | "signup" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
10093
10252
  language: string;
10094
10253
  };
10095
10254
  } & {
@@ -10388,6 +10547,7 @@ declare function init(config: AuthHeroConfig): {
10388
10547
  is_system?: boolean | undefined;
10389
10548
  }[];
10390
10549
  total?: number | undefined;
10550
+ next?: string | undefined;
10391
10551
  };
10392
10552
  outputFormat: "json";
10393
10553
  status: 200;
@@ -11226,6 +11386,7 @@ declare function init(config: AuthHeroConfig): {
11226
11386
  } | undefined;
11227
11387
  })[];
11228
11388
  total?: number | undefined;
11389
+ next?: string | undefined;
11229
11390
  };
11230
11391
  outputFormat: "json";
11231
11392
  status: 200;
@@ -11590,7 +11751,7 @@ declare function init(config: AuthHeroConfig): {
11590
11751
  log_type: string;
11591
11752
  category: "user_action" | "admin_action" | "system" | "api";
11592
11753
  actor: {
11593
- type: "user" | "client_credentials" | "system" | "admin" | "api_key";
11754
+ type: "client_credentials" | "user" | "system" | "admin" | "api_key";
11594
11755
  id?: string | undefined;
11595
11756
  email?: string | undefined;
11596
11757
  org_id?: string | undefined;
@@ -11900,7 +12061,7 @@ declare function init(config: AuthHeroConfig): {
11900
12061
  created_at: string;
11901
12062
  updated_at: string;
11902
12063
  name: string;
11903
- provider: "auth0" | "oidc" | "okta" | "cognito";
12064
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11904
12065
  connection: string;
11905
12066
  enabled: boolean;
11906
12067
  credentials: {
@@ -11932,7 +12093,7 @@ declare function init(config: AuthHeroConfig): {
11932
12093
  created_at: string;
11933
12094
  updated_at: string;
11934
12095
  name: string;
11935
- provider: "auth0" | "oidc" | "okta" | "cognito";
12096
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11936
12097
  connection: string;
11937
12098
  enabled: boolean;
11938
12099
  credentials: {
@@ -11958,7 +12119,7 @@ declare function init(config: AuthHeroConfig): {
11958
12119
  } & {
11959
12120
  json: {
11960
12121
  name: string;
11961
- provider: "auth0" | "oidc" | "okta" | "cognito";
12122
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11962
12123
  connection: string;
11963
12124
  credentials: {
11964
12125
  domain: string;
@@ -11975,7 +12136,7 @@ declare function init(config: AuthHeroConfig): {
11975
12136
  created_at: string;
11976
12137
  updated_at: string;
11977
12138
  name: string;
11978
- provider: "auth0" | "oidc" | "okta" | "cognito";
12139
+ provider: "auth0" | "cognito" | "okta" | "oidc";
11979
12140
  connection: string;
11980
12141
  enabled: boolean;
11981
12142
  credentials: {
@@ -12006,7 +12167,7 @@ declare function init(config: AuthHeroConfig): {
12006
12167
  json: {
12007
12168
  id?: string | undefined;
12008
12169
  name?: string | undefined;
12009
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
12170
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
12010
12171
  connection?: string | undefined;
12011
12172
  enabled?: boolean | undefined;
12012
12173
  credentials?: {
@@ -12022,7 +12183,7 @@ declare function init(config: AuthHeroConfig): {
12022
12183
  created_at: string;
12023
12184
  updated_at: string;
12024
12185
  name: string;
12025
- provider: "auth0" | "oidc" | "okta" | "cognito";
12186
+ provider: "auth0" | "cognito" | "okta" | "oidc";
12026
12187
  connection: string;
12027
12188
  enabled: boolean;
12028
12189
  credentials: {
@@ -12070,7 +12231,7 @@ declare function init(config: AuthHeroConfig): {
12070
12231
  [x: string]: hono_utils_types.JSONValue;
12071
12232
  };
12072
12233
  id: string;
12073
- status: "active" | "suspended" | "paused";
12234
+ status: "suspended" | "active" | "paused";
12074
12235
  filters?: {
12075
12236
  type: string;
12076
12237
  name: string;
@@ -12102,7 +12263,7 @@ declare function init(config: AuthHeroConfig): {
12102
12263
  [x: string]: hono_utils_types.JSONValue;
12103
12264
  };
12104
12265
  id: string;
12105
- status: "active" | "suspended" | "paused";
12266
+ status: "suspended" | "active" | "paused";
12106
12267
  filters?: {
12107
12268
  type: string;
12108
12269
  name: string;
@@ -12127,7 +12288,7 @@ declare function init(config: AuthHeroConfig): {
12127
12288
  name: string;
12128
12289
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
12129
12290
  sink: Record<string, unknown>;
12130
- status?: "active" | "suspended" | "paused" | undefined;
12291
+ status?: "suspended" | "active" | "paused" | undefined;
12131
12292
  filters?: {
12132
12293
  type: string;
12133
12294
  name: string;
@@ -12142,7 +12303,7 @@ declare function init(config: AuthHeroConfig): {
12142
12303
  [x: string]: hono_utils_types.JSONValue;
12143
12304
  };
12144
12305
  id: string;
12145
- status: "active" | "suspended" | "paused";
12306
+ status: "suspended" | "active" | "paused";
12146
12307
  filters?: {
12147
12308
  type: string;
12148
12309
  name: string;
@@ -12177,7 +12338,7 @@ declare function init(config: AuthHeroConfig): {
12177
12338
  }[] | undefined;
12178
12339
  isPriority?: boolean | undefined;
12179
12340
  id?: string | undefined;
12180
- status?: "active" | "suspended" | "paused" | undefined;
12341
+ status?: "suspended" | "active" | "paused" | undefined;
12181
12342
  created_at?: string | undefined;
12182
12343
  updated_at?: string | undefined;
12183
12344
  };
@@ -12189,7 +12350,7 @@ declare function init(config: AuthHeroConfig): {
12189
12350
  [x: string]: hono_utils_types.JSONValue;
12190
12351
  };
12191
12352
  id: string;
12192
- status: "active" | "suspended" | "paused";
12353
+ status: "suspended" | "active" | "paused";
12193
12354
  filters?: {
12194
12355
  type: string;
12195
12356
  name: string;
@@ -12240,7 +12401,7 @@ declare function init(config: AuthHeroConfig): {
12240
12401
  };
12241
12402
  };
12242
12403
  output: {
12243
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12404
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12244
12405
  date: string;
12245
12406
  isMobile: boolean;
12246
12407
  log_id: string;
@@ -12279,7 +12440,7 @@ declare function init(config: AuthHeroConfig): {
12279
12440
  limit: number;
12280
12441
  length: number;
12281
12442
  logs: {
12282
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12443
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12283
12444
  date: string;
12284
12445
  isMobile: boolean;
12285
12446
  log_id: string;
@@ -12315,6 +12476,45 @@ declare function init(config: AuthHeroConfig): {
12315
12476
  } | undefined;
12316
12477
  }[];
12317
12478
  total?: number | undefined;
12479
+ next?: string | undefined;
12480
+ } | {
12481
+ logs: {
12482
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12483
+ date: string;
12484
+ isMobile: boolean;
12485
+ log_id: string;
12486
+ description?: string | undefined;
12487
+ ip?: string | undefined;
12488
+ user_agent?: string | undefined;
12489
+ details?: any;
12490
+ user_id?: string | undefined;
12491
+ user_name?: string | undefined;
12492
+ connection?: string | undefined;
12493
+ connection_id?: string | undefined;
12494
+ client_id?: string | undefined;
12495
+ client_name?: string | undefined;
12496
+ audience?: string | undefined;
12497
+ scope?: string | undefined;
12498
+ strategy?: string | undefined;
12499
+ strategy_type?: string | undefined;
12500
+ hostname?: string | undefined;
12501
+ auth0_client?: {
12502
+ name: string;
12503
+ version: string;
12504
+ env?: {
12505
+ node?: string | undefined;
12506
+ } | undefined;
12507
+ } | undefined;
12508
+ location_info?: {
12509
+ country_code: string;
12510
+ city_name: string;
12511
+ latitude: string;
12512
+ longitude: string;
12513
+ time_zone: string;
12514
+ continent_code: string;
12515
+ } | undefined;
12516
+ }[];
12517
+ next?: string | undefined;
12318
12518
  };
12319
12519
  outputFormat: "json";
12320
12520
  status: 200;
@@ -12333,7 +12533,7 @@ declare function init(config: AuthHeroConfig): {
12333
12533
  };
12334
12534
  };
12335
12535
  output: {
12336
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12536
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
12337
12537
  date: string;
12338
12538
  isMobile: boolean;
12339
12539
  log_id: string;
@@ -12436,6 +12636,7 @@ declare function init(config: AuthHeroConfig): {
12436
12636
  audience?: string | undefined;
12437
12637
  }[];
12438
12638
  total?: number | undefined;
12639
+ next?: string | undefined;
12439
12640
  };
12440
12641
  outputFormat: "json";
12441
12642
  status: 200;
@@ -12525,6 +12726,22 @@ declare function init(config: AuthHeroConfig): {
12525
12726
  updated_at?: string | undefined;
12526
12727
  }[];
12527
12728
  total?: number | undefined;
12729
+ next?: string | undefined;
12730
+ } | {
12731
+ client_grants: {
12732
+ id: string;
12733
+ client_id: string;
12734
+ audience: string;
12735
+ scope?: string[] | undefined;
12736
+ organization_usage?: "deny" | "allow" | "require" | undefined;
12737
+ allow_any_organization?: boolean | undefined;
12738
+ is_system?: boolean | undefined;
12739
+ subject_type?: "user" | "client" | undefined;
12740
+ authorization_details_types?: string[] | undefined;
12741
+ created_at?: string | undefined;
12742
+ updated_at?: string | undefined;
12743
+ }[];
12744
+ next?: string | undefined;
12528
12745
  };
12529
12746
  outputFormat: "json";
12530
12747
  status: 200;
@@ -12721,7 +12938,7 @@ declare function init(config: AuthHeroConfig): {
12721
12938
  addons?: {
12722
12939
  [x: string]: any;
12723
12940
  } | undefined;
12724
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
12941
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12725
12942
  client_metadata?: {
12726
12943
  [x: string]: string;
12727
12944
  } | undefined;
@@ -12817,7 +13034,7 @@ declare function init(config: AuthHeroConfig): {
12817
13034
  addons?: {
12818
13035
  [x: string]: any;
12819
13036
  } | undefined;
12820
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13037
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12821
13038
  client_metadata?: {
12822
13039
  [x: string]: string;
12823
13040
  } | undefined;
@@ -12862,6 +13079,102 @@ declare function init(config: AuthHeroConfig): {
12862
13079
  user_linking_mode?: "builtin" | "off" | undefined;
12863
13080
  }[];
12864
13081
  total?: number | undefined;
13082
+ next?: string | undefined;
13083
+ } | {
13084
+ clients: {
13085
+ created_at: string;
13086
+ updated_at: string;
13087
+ name: string;
13088
+ global: boolean;
13089
+ is_first_party: boolean;
13090
+ oidc_conformant: boolean;
13091
+ auth0_conformant: boolean;
13092
+ sso: boolean;
13093
+ sso_disabled: boolean;
13094
+ cross_origin_authentication: boolean;
13095
+ custom_login_page_on: boolean;
13096
+ require_pushed_authorization_requests: boolean;
13097
+ require_proof_of_possession: boolean;
13098
+ client_id: string;
13099
+ description?: string | undefined;
13100
+ client_secret?: string | undefined;
13101
+ app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
13102
+ logo_uri?: string | undefined;
13103
+ callbacks?: string[] | undefined;
13104
+ allowed_origins?: string[] | undefined;
13105
+ web_origins?: string[] | undefined;
13106
+ client_aliases?: string[] | undefined;
13107
+ allowed_clients?: string[] | undefined;
13108
+ connections?: string[] | undefined;
13109
+ allowed_logout_urls?: string[] | undefined;
13110
+ session_transfer?: {
13111
+ [x: string]: any;
13112
+ } | undefined;
13113
+ oidc_logout?: {
13114
+ [x: string]: any;
13115
+ } | undefined;
13116
+ grant_types?: string[] | undefined;
13117
+ jwt_configuration?: {
13118
+ [x: string]: any;
13119
+ } | undefined;
13120
+ signing_keys?: {
13121
+ [x: string]: any;
13122
+ }[] | undefined;
13123
+ encryption_key?: {
13124
+ [x: string]: any;
13125
+ } | undefined;
13126
+ cross_origin_loc?: string | undefined;
13127
+ custom_login_page?: string | undefined;
13128
+ custom_login_page_preview?: string | undefined;
13129
+ form_template?: string | undefined;
13130
+ addons?: {
13131
+ [x: string]: any;
13132
+ } | undefined;
13133
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13134
+ client_metadata?: {
13135
+ [x: string]: string;
13136
+ } | undefined;
13137
+ hide_sign_up_disabled_error?: boolean | undefined;
13138
+ mobile?: {
13139
+ [x: string]: any;
13140
+ } | undefined;
13141
+ initiate_login_uri?: string | undefined;
13142
+ native_social_login?: {
13143
+ [x: string]: any;
13144
+ } | undefined;
13145
+ refresh_token?: {
13146
+ rotation_type?: "rotating" | "non-rotating" | undefined;
13147
+ leeway?: number | undefined;
13148
+ expiration_type?: "expiring" | "non-expiring" | undefined;
13149
+ token_lifetime?: number | undefined;
13150
+ infinite_token_lifetime?: boolean | undefined;
13151
+ idle_token_lifetime?: number | undefined;
13152
+ infinite_idle_token_lifetime?: boolean | undefined;
13153
+ } | undefined;
13154
+ default_organization?: {
13155
+ [x: string]: any;
13156
+ } | undefined;
13157
+ organization_usage?: "deny" | "allow" | "require" | undefined;
13158
+ organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
13159
+ client_authentication_methods?: {
13160
+ [x: string]: any;
13161
+ } | undefined;
13162
+ signed_request_object?: {
13163
+ [x: string]: any;
13164
+ } | undefined;
13165
+ compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
13166
+ par_request_expiry?: number | undefined;
13167
+ token_quota?: {
13168
+ [x: string]: any;
13169
+ } | undefined;
13170
+ owner_user_id?: string | undefined;
13171
+ registration_type?: "manual" | "open_dcr" | "iat_dcr" | undefined;
13172
+ registration_metadata?: {
13173
+ [x: string]: any;
13174
+ } | undefined;
13175
+ user_linking_mode?: "builtin" | "off" | undefined;
13176
+ }[];
13177
+ next?: string | undefined;
12865
13178
  };
12866
13179
  outputFormat: "json";
12867
13180
  status: 200;
@@ -12928,7 +13241,7 @@ declare function init(config: AuthHeroConfig): {
12928
13241
  addons?: {
12929
13242
  [x: string]: any;
12930
13243
  } | undefined;
12931
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13244
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
12932
13245
  client_metadata?: {
12933
13246
  [x: string]: string;
12934
13247
  } | undefined;
@@ -13038,7 +13351,7 @@ declare function init(config: AuthHeroConfig): {
13038
13351
  custom_login_page_preview?: string | undefined;
13039
13352
  form_template?: string | undefined;
13040
13353
  addons?: Record<string, any> | undefined;
13041
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13354
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13042
13355
  client_metadata?: Record<string, string> | undefined;
13043
13356
  hide_sign_up_disabled_error?: boolean | undefined;
13044
13357
  mobile?: Record<string, any> | undefined;
@@ -13118,7 +13431,7 @@ declare function init(config: AuthHeroConfig): {
13118
13431
  addons?: {
13119
13432
  [x: string]: any;
13120
13433
  } | undefined;
13121
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13434
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13122
13435
  client_metadata?: {
13123
13436
  [x: string]: string;
13124
13437
  } | undefined;
@@ -13207,7 +13520,7 @@ declare function init(config: AuthHeroConfig): {
13207
13520
  custom_login_page_preview?: string | undefined;
13208
13521
  form_template?: string | undefined;
13209
13522
  addons?: Record<string, any> | undefined;
13210
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13523
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13211
13524
  client_metadata?: Record<string, string> | undefined;
13212
13525
  hide_sign_up_disabled_error?: boolean | undefined;
13213
13526
  mobile?: Record<string, any> | undefined;
@@ -13287,7 +13600,7 @@ declare function init(config: AuthHeroConfig): {
13287
13600
  addons?: {
13288
13601
  [x: string]: any;
13289
13602
  } | undefined;
13290
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
13603
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
13291
13604
  client_metadata?: {
13292
13605
  [x: string]: string;
13293
13606
  } | undefined;
@@ -13975,6 +14288,7 @@ declare function init(config: AuthHeroConfig): {
13975
14288
  }[] | undefined;
13976
14289
  }[];
13977
14290
  total?: number | undefined;
14291
+ next?: string | undefined;
13978
14292
  };
13979
14293
  outputFormat: "json";
13980
14294
  status: 200;
@@ -14444,6 +14758,7 @@ declare function init(config: AuthHeroConfig): {
14444
14758
  updated_at?: string | undefined;
14445
14759
  }[];
14446
14760
  total?: number | undefined;
14761
+ next?: string | undefined;
14447
14762
  };
14448
14763
  outputFormat: "json";
14449
14764
  status: 200;
@@ -14521,6 +14836,7 @@ declare function init(config: AuthHeroConfig): {
14521
14836
  idle_expires_at?: string | undefined;
14522
14837
  }[];
14523
14838
  total?: number | undefined;
14839
+ next?: string | undefined;
14524
14840
  };
14525
14841
  outputFormat: "json";
14526
14842
  status: 200;
@@ -14551,7 +14867,7 @@ declare function init(config: AuthHeroConfig): {
14551
14867
  };
14552
14868
  };
14553
14869
  output: {
14554
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14870
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14555
14871
  date: string;
14556
14872
  isMobile: boolean;
14557
14873
  log_id: string;
@@ -14590,7 +14906,7 @@ declare function init(config: AuthHeroConfig): {
14590
14906
  limit: number;
14591
14907
  length: number;
14592
14908
  logs: {
14593
- type: "fc" | "fd" | "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14909
+ type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
14594
14910
  date: string;
14595
14911
  isMobile: boolean;
14596
14912
  log_id: string;
@@ -14626,6 +14942,7 @@ declare function init(config: AuthHeroConfig): {
14626
14942
  } | undefined;
14627
14943
  }[];
14628
14944
  total?: number | undefined;
14945
+ next?: string | undefined;
14629
14946
  };
14630
14947
  outputFormat: "json";
14631
14948
  status: 200;
@@ -14875,6 +15192,7 @@ declare function init(config: AuthHeroConfig): {
14875
15192
  } | undefined;
14876
15193
  }[];
14877
15194
  total?: number | undefined;
15195
+ next?: string | undefined;
14878
15196
  };
14879
15197
  outputFormat: "json";
14880
15198
  status: 200;
@@ -15770,12 +16088,12 @@ declare function init(config: AuthHeroConfig): {
15770
16088
  background_color: string;
15771
16089
  background_image_url: string;
15772
16090
  page_layout: "center" | "left" | "right";
15773
- logo_placement?: "none" | "widget" | "chip" | undefined;
16091
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15774
16092
  };
15775
16093
  widget: {
15776
16094
  header_text_alignment: "center" | "left" | "right";
15777
16095
  logo_height: number;
15778
- logo_position: "none" | "center" | "left" | "right";
16096
+ logo_position: "center" | "left" | "right" | "none";
15779
16097
  logo_url: string;
15780
16098
  social_buttons_layout: "bottom" | "top";
15781
16099
  };
@@ -15860,12 +16178,12 @@ declare function init(config: AuthHeroConfig): {
15860
16178
  background_color: string;
15861
16179
  background_image_url: string;
15862
16180
  page_layout: "center" | "left" | "right";
15863
- logo_placement?: "none" | "widget" | "chip" | undefined;
16181
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15864
16182
  };
15865
16183
  widget: {
15866
16184
  header_text_alignment: "center" | "left" | "right";
15867
16185
  logo_height: number;
15868
- logo_position: "none" | "center" | "left" | "right";
16186
+ logo_position: "center" | "left" | "right" | "none";
15869
16187
  logo_url: string;
15870
16188
  social_buttons_layout: "bottom" | "top";
15871
16189
  };
@@ -15939,12 +16257,12 @@ declare function init(config: AuthHeroConfig): {
15939
16257
  background_color: string;
15940
16258
  background_image_url: string;
15941
16259
  page_layout: "center" | "left" | "right";
15942
- logo_placement?: "none" | "widget" | "chip" | undefined;
16260
+ logo_placement?: "widget" | "none" | "chip" | undefined;
15943
16261
  };
15944
16262
  widget: {
15945
16263
  header_text_alignment: "center" | "left" | "right";
15946
16264
  logo_height: number;
15947
- logo_position: "none" | "center" | "left" | "right";
16265
+ logo_position: "center" | "left" | "right" | "none";
15948
16266
  logo_url: string;
15949
16267
  social_buttons_layout: "bottom" | "top";
15950
16268
  };
@@ -16101,7 +16419,7 @@ declare function init(config: AuthHeroConfig): {
16101
16419
  } & {
16102
16420
  json: {
16103
16421
  body?: string | undefined;
16104
- screen?: "identifier" | "signup" | "password" | "login" | undefined;
16422
+ screen?: "password" | "login" | "identifier" | "signup" | undefined;
16105
16423
  branding?: {
16106
16424
  colors?: {
16107
16425
  primary: string;
@@ -16187,12 +16505,12 @@ declare function init(config: AuthHeroConfig): {
16187
16505
  background_color: string;
16188
16506
  background_image_url: string;
16189
16507
  page_layout: "center" | "left" | "right";
16190
- logo_placement?: "none" | "widget" | "chip" | undefined;
16508
+ logo_placement?: "widget" | "none" | "chip" | undefined;
16191
16509
  } | undefined;
16192
16510
  widget?: {
16193
16511
  header_text_alignment: "center" | "left" | "right";
16194
16512
  logo_height: number;
16195
- logo_position: "none" | "center" | "left" | "right";
16513
+ logo_position: "center" | "left" | "right" | "none";
16196
16514
  logo_url: string;
16197
16515
  social_buttons_layout: "bottom" | "top";
16198
16516
  } | undefined;
@@ -16392,7 +16710,7 @@ declare function init(config: AuthHeroConfig): {
16392
16710
  logs: {
16393
16711
  action_name: string;
16394
16712
  lines: {
16395
- level: "log" | "error" | "info" | "warn" | "debug";
16713
+ level: "error" | "log" | "info" | "warn" | "debug";
16396
16714
  message: string;
16397
16715
  }[];
16398
16716
  }[];
@@ -16475,6 +16793,7 @@ declare function init(config: AuthHeroConfig): {
16475
16793
  }[] | undefined;
16476
16794
  }[];
16477
16795
  total?: number | undefined;
16796
+ next?: string | undefined;
16478
16797
  };
16479
16798
  outputFormat: "json";
16480
16799
  status: 200;
@@ -16883,6 +17202,7 @@ declare function init(config: AuthHeroConfig): {
16883
17202
  }[] | undefined;
16884
17203
  }[];
16885
17204
  total?: number | undefined;
17205
+ next?: string | undefined;
16886
17206
  };
16887
17207
  outputFormat: "json";
16888
17208
  status: 200;
@@ -17059,7 +17379,7 @@ declare function init(config: AuthHeroConfig): {
17059
17379
  args: hono_utils_types.JSONValue[];
17060
17380
  }[];
17061
17381
  logs: {
17062
- level: "log" | "error" | "info" | "warn" | "debug";
17382
+ level: "error" | "log" | "info" | "warn" | "debug";
17063
17383
  message: string;
17064
17384
  }[];
17065
17385
  error?: string | undefined;
@@ -17370,7 +17690,7 @@ declare function init(config: AuthHeroConfig): {
17370
17690
  scope?: string | undefined;
17371
17691
  grant_types?: string[] | undefined;
17372
17692
  response_types?: string[] | undefined;
17373
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17693
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17374
17694
  jwks_uri?: string | undefined;
17375
17695
  jwks?: Record<string, unknown> | undefined;
17376
17696
  software_id?: string | undefined;
@@ -17459,7 +17779,7 @@ declare function init(config: AuthHeroConfig): {
17459
17779
  scope?: string | undefined;
17460
17780
  grant_types?: string[] | undefined;
17461
17781
  response_types?: string[] | undefined;
17462
- token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
17782
+ token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
17463
17783
  jwks_uri?: string | undefined;
17464
17784
  jwks?: Record<string, unknown> | undefined;
17465
17785
  software_id?: string | undefined;
@@ -17805,20 +18125,20 @@ declare function init(config: AuthHeroConfig): {
17805
18125
  email: string;
17806
18126
  send: "code" | "link";
17807
18127
  authParams: {
17808
- username?: string | undefined;
17809
- state?: string | undefined;
17810
18128
  audience?: string | undefined;
18129
+ username?: string | undefined;
18130
+ scope?: string | undefined;
17811
18131
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17812
18132
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17813
- scope?: string | undefined;
18133
+ state?: string | undefined;
18134
+ prompt?: string | undefined;
18135
+ ui_locales?: string | undefined;
17814
18136
  organization?: string | undefined;
17815
- nonce?: string | undefined;
17816
18137
  redirect_uri?: string | undefined;
17817
18138
  act_as?: string | undefined;
17818
- prompt?: string | undefined;
18139
+ nonce?: string | undefined;
17819
18140
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17820
18141
  code_challenge?: string | undefined;
17821
- ui_locales?: string | undefined;
17822
18142
  max_age?: number | undefined;
17823
18143
  acr_values?: string | undefined;
17824
18144
  claims?: {
@@ -17841,20 +18161,20 @@ declare function init(config: AuthHeroConfig): {
17841
18161
  phone_number: string;
17842
18162
  send: "code" | "link";
17843
18163
  authParams: {
17844
- username?: string | undefined;
17845
- state?: string | undefined;
17846
18164
  audience?: string | undefined;
18165
+ username?: string | undefined;
18166
+ scope?: string | undefined;
17847
18167
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
17848
18168
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
17849
- scope?: string | undefined;
18169
+ state?: string | undefined;
18170
+ prompt?: string | undefined;
18171
+ ui_locales?: string | undefined;
17850
18172
  organization?: string | undefined;
17851
- nonce?: string | undefined;
17852
18173
  redirect_uri?: string | undefined;
17853
18174
  act_as?: string | undefined;
17854
- prompt?: string | undefined;
18175
+ nonce?: string | undefined;
17855
18176
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
17856
18177
  code_challenge?: string | undefined;
17857
- ui_locales?: string | undefined;
17858
18178
  max_age?: number | undefined;
17859
18179
  acr_values?: string | undefined;
17860
18180
  claims?: {
@@ -17985,14 +18305,14 @@ declare function init(config: AuthHeroConfig): {
17985
18305
  input: {
17986
18306
  form: {
17987
18307
  token: string;
17988
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18308
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17989
18309
  client_id?: string | undefined;
17990
18310
  client_secret?: string | undefined;
17991
18311
  };
17992
18312
  } & {
17993
18313
  json: {
17994
18314
  token: string;
17995
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18315
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
17996
18316
  client_id?: string | undefined;
17997
18317
  client_secret?: string | undefined;
17998
18318
  };
@@ -18004,14 +18324,14 @@ declare function init(config: AuthHeroConfig): {
18004
18324
  input: {
18005
18325
  form: {
18006
18326
  token: string;
18007
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18327
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18008
18328
  client_id?: string | undefined;
18009
18329
  client_secret?: string | undefined;
18010
18330
  };
18011
18331
  } & {
18012
18332
  json: {
18013
18333
  token: string;
18014
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18334
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18015
18335
  client_id?: string | undefined;
18016
18336
  client_secret?: string | undefined;
18017
18337
  };
@@ -18026,14 +18346,14 @@ declare function init(config: AuthHeroConfig): {
18026
18346
  input: {
18027
18347
  form: {
18028
18348
  token: string;
18029
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18349
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18030
18350
  client_id?: string | undefined;
18031
18351
  client_secret?: string | undefined;
18032
18352
  };
18033
18353
  } & {
18034
18354
  json: {
18035
18355
  token: string;
18036
- token_type_hint?: "refresh_token" | "access_token" | undefined;
18356
+ token_type_hint?: "access_token" | "refresh_token" | undefined;
18037
18357
  client_id?: string | undefined;
18038
18358
  client_secret?: string | undefined;
18039
18359
  };
@@ -19381,7 +19701,7 @@ declare function init(config: AuthHeroConfig): {
19381
19701
  } & {
19382
19702
  form: {
19383
19703
  username: string;
19384
- login_selection?: "code" | "password" | undefined;
19704
+ login_selection?: "password" | "code" | undefined;
19385
19705
  };
19386
19706
  };
19387
19707
  output: {};
@@ -19395,7 +19715,7 @@ declare function init(config: AuthHeroConfig): {
19395
19715
  } & {
19396
19716
  form: {
19397
19717
  username: string;
19398
- login_selection?: "code" | "password" | undefined;
19718
+ login_selection?: "password" | "code" | undefined;
19399
19719
  };
19400
19720
  };
19401
19721
  output: {};
@@ -19760,7 +20080,7 @@ declare function init(config: AuthHeroConfig): {
19760
20080
  $get: {
19761
20081
  input: {
19762
20082
  param: {
19763
- 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";
20083
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19764
20084
  };
19765
20085
  } & {
19766
20086
  query: {
@@ -19776,7 +20096,7 @@ declare function init(config: AuthHeroConfig): {
19776
20096
  } | {
19777
20097
  input: {
19778
20098
  param: {
19779
- 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";
20099
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19780
20100
  };
19781
20101
  } & {
19782
20102
  query: {
@@ -19792,7 +20112,7 @@ declare function init(config: AuthHeroConfig): {
19792
20112
  } | {
19793
20113
  input: {
19794
20114
  param: {
19795
- 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";
20115
+ screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19796
20116
  };
19797
20117
  } & {
19798
20118
  query: {
@@ -19812,7 +20132,7 @@ declare function init(config: AuthHeroConfig): {
19812
20132
  $post: {
19813
20133
  input: {
19814
20134
  param: {
19815
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20135
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19816
20136
  };
19817
20137
  } & {
19818
20138
  query: {
@@ -19830,7 +20150,7 @@ declare function init(config: AuthHeroConfig): {
19830
20150
  } | {
19831
20151
  input: {
19832
20152
  param: {
19833
- screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
20153
+ screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
19834
20154
  };
19835
20155
  } & {
19836
20156
  query: {
@@ -19928,5 +20248,5 @@ declare function init(config: AuthHeroConfig): {
19928
20248
  createX509Certificate: typeof createX509Certificate;
19929
20249
  };
19930
20250
 
19931
- 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, 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, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
19932
- 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, WrappedProxyAdapters };
20251
+ 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 };
20252
+ 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 };