authhero 9.9.1 → 9.10.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 (53) hide show
  1. package/dist/assets/u/widget/index.esm.js +1 -1
  2. package/dist/authhero.cjs +146 -146
  3. package/dist/authhero.d.ts +313 -140
  4. package/dist/authhero.mjs +14974 -14666
  5. package/dist/tsconfig.types.tsbuildinfo +1 -1
  6. package/dist/types/authentication-flows/authorization-code.d.ts +2 -1
  7. package/dist/types/authentication-flows/client-credentials.d.ts +2 -1
  8. package/dist/types/authentication-flows/passwordless.d.ts +6 -5
  9. package/dist/types/authentication-flows/refresh-token.d.ts +2 -1
  10. package/dist/types/authentication-flows/token-exchange.d.ts +2 -1
  11. package/dist/types/helpers/client-assertion-replay.d.ts +21 -0
  12. package/dist/types/helpers/client-assertion.d.ts +24 -2
  13. package/dist/types/helpers/default-destinations.d.ts +7 -1
  14. package/dist/types/helpers/outbox-destinations/index.d.ts +1 -0
  15. package/dist/types/helpers/outbox-destinations/pipeline.d.ts +63 -0
  16. package/dist/types/helpers/outbox-relay.d.ts +3 -0
  17. package/dist/types/helpers/reserved-claims.d.ts +64 -0
  18. package/dist/types/helpers/run-outbox-relay.d.ts +8 -0
  19. package/dist/types/index.d.ts +150 -137
  20. package/dist/types/routes/auth-api/index.d.ts +44 -44
  21. package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
  22. package/dist/types/routes/auth-api/register/index.d.ts +2 -2
  23. package/dist/types/routes/auth-api/token.d.ts +24 -24
  24. package/dist/types/routes/management-api/action-triggers.d.ts +0 -2
  25. package/dist/types/routes/management-api/actions.d.ts +0 -7
  26. package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
  27. package/dist/types/routes/management-api/branding.d.ts +9 -9
  28. package/dist/types/routes/management-api/clients.d.ts +8 -8
  29. package/dist/types/routes/management-api/connections.d.ts +1 -1
  30. package/dist/types/routes/management-api/email-templates.d.ts +18 -18
  31. package/dist/types/routes/management-api/failed-events.d.ts +21 -1
  32. package/dist/types/routes/management-api/guardian.d.ts +5 -5
  33. package/dist/types/routes/management-api/helpers.d.ts +1 -1
  34. package/dist/types/routes/management-api/index.d.ts +122 -111
  35. package/dist/types/routes/management-api/keys.d.ts +16 -16
  36. package/dist/types/routes/management-api/logs.d.ts +4 -4
  37. package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
  38. package/dist/types/routes/management-api/organizations.d.ts +3 -3
  39. package/dist/types/routes/management-api/prompts.d.ts +4 -4
  40. package/dist/types/routes/management-api/roles.d.ts +1 -1
  41. package/dist/types/routes/management-api/tenants.d.ts +11 -11
  42. package/dist/types/routes/management-api/users.d.ts +24 -24
  43. package/dist/types/routes/universal-login/common.d.ts +2 -2
  44. package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
  45. package/dist/types/routes/universal-login/identifier.d.ts +2 -2
  46. package/dist/types/routes/universal-login/index.d.ts +2 -2
  47. package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
  48. package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
  49. package/dist/types/types/AuthHeroConfig.d.ts +27 -0
  50. package/dist/types/types/Bindings.d.ts +12 -0
  51. package/dist/types/types/OutboxMetrics.d.ts +47 -0
  52. package/dist/types/types/index.d.ts +1 -0
  53. package/package.json +6 -6
@@ -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, LinkCandidate, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, OutboxAdapter, AuditEvent, CodesAdapter, ActionExecutionsAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
3
+ import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, LinkCandidate, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, OutboxAdapter, AuditEvent, CodesAdapter, ActionExecutionsAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, AuditCategory, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
4
4
  export * from '@authhero/adapter-interfaces';
5
5
  import * as hono_types from 'hono/types';
6
6
  import * as hono_utils_http_status from 'hono/utils/http-status';
@@ -1319,6 +1319,54 @@ type SyncEvent = {
1319
1319
  occurred_at: string;
1320
1320
  };
1321
1321
 
1322
+ /**
1323
+ * Metric names emitted by the outbox relay.
1324
+ *
1325
+ * - `outbox_events_processed_total` — counter, one per event that every
1326
+ * accepting destination delivered successfully.
1327
+ * - `outbox_events_dead_lettered_total` — counter, one per event successfully
1328
+ * moved to the dead-letter state (retries exhausted, or no destination
1329
+ * accepted it). Not emitted when the dead-letter write itself fails, since
1330
+ * the event has not transitioned.
1331
+ * - `outbox_retry_delay_seconds` — observation, emitted once per delivery
1332
+ * failure with the backoff delay before the next attempt. Its count doubles
1333
+ * as a retry counter.
1334
+ */
1335
+ type OutboxMetricName = "outbox_events_processed_total" | "outbox_events_dead_lettered_total" | "outbox_retry_delay_seconds";
1336
+ /** A single metric emission from the outbox relay. */
1337
+ interface OutboxMetric {
1338
+ name: OutboxMetricName;
1339
+ /** Counter increment, or the observed value for `outbox_retry_delay_seconds`. */
1340
+ value: number;
1341
+ /** Tenant the event belongs to. */
1342
+ tenantId: string;
1343
+ /** Audit event type, e.g. `hook.post-user-registration`. */
1344
+ eventType: string;
1345
+ /** Which relay path emitted this: inline per-request, or the cron drain. */
1346
+ source: "request" | "cron";
1347
+ /** Destination that failed, when the metric was caused by a delivery failure. */
1348
+ destination?: string;
1349
+ /** Failure reason, for retry and dead-letter metrics. */
1350
+ error?: string;
1351
+ /** Retry count of the event at the time of emission. */
1352
+ retryCount?: number;
1353
+ }
1354
+ /**
1355
+ * Optional sink for outbox relay metrics.
1356
+ *
1357
+ * Kept deliberately sink-agnostic: `packages/authhero` never knows where the
1358
+ * numbers end up. Consumers pass a callback that forwards to whatever they
1359
+ * use (Cloudflare Analytics Engine, StatsD, OpenTelemetry, a log line).
1360
+ * `@authhero/cloudflare-adapter` ships an Analytics Engine implementation via
1361
+ * `createAnalyticsEngineOutboxMetricsSink`.
1362
+ *
1363
+ * Implementations should be synchronous and must not throw. The relay calls
1364
+ * the sink without awaiting it and swallows both synchronous throws and
1365
+ * rejections from a promise-returning sink, so a broken sink can never fail
1366
+ * event delivery.
1367
+ */
1368
+ type OutboxMetricsSink = (metric: OutboxMetric) => void;
1369
+
1322
1370
  /**
1323
1371
  * Management API audience for cross-tenant operations.
1324
1372
  * Used when managing tenants from the main tenant with org-scoped tokens.
@@ -1499,6 +1547,32 @@ interface OutboxConfig {
1499
1547
  retentionDays?: number;
1500
1548
  /** Max delivery retries before giving up on an event (default: 5) */
1501
1549
  maxRetries?: number;
1550
+ /**
1551
+ * Optional sink for relay metrics (`outbox_events_processed_total`,
1552
+ * `outbox_events_dead_lettered_total`, `outbox_retry_delay_seconds`).
1553
+ * Left unset, the relay emits nothing beyond its existing console logging.
1554
+ */
1555
+ metrics?: OutboxMetricsSink;
1556
+ /**
1557
+ * When set, audit events are additionally archived to a Cloudflare Pipelines
1558
+ * stream, which lands them in R2 as an Iceberg table. Left unset, no archive
1559
+ * destination is registered and delivery is unchanged.
1560
+ *
1561
+ * See `apps/docs/architecture/audit-archive.md`.
1562
+ */
1563
+ pipeline?: OutboxPipelineConfig;
1564
+ }
1565
+ interface OutboxPipelineConfig {
1566
+ /**
1567
+ * Stream HTTP ingest endpoint, e.g. `https://<stream-id>.ingest.cloudflare.com`.
1568
+ * Must be https — the destination rejects any other scheme at startup, since
1569
+ * every request carries the ingest token and a full audit event.
1570
+ */
1571
+ endpoint: string;
1572
+ /** Stream ingest token, sent as `Authorization: Bearer`. */
1573
+ token: string;
1574
+ /** Per-request timeout in ms (default: 10_000). */
1575
+ timeoutMs?: number;
1502
1576
  }
1503
1577
  /**
1504
1578
  * Mode for the built-in email-based user linking path.
@@ -2106,6 +2180,18 @@ type Bindings = {
2106
2180
  * leave unset (or false) in production so SSRF protection stays on.
2107
2181
  */
2108
2182
  ALLOW_PRIVATE_OUTBOUND_FETCH?: boolean;
2183
+ /**
2184
+ * Clock-skew leeway in seconds applied to a client assertion's `exp`/`nbf`
2185
+ * at `POST /oauth/token`. Defaults to 30 when unset.
2186
+ */
2187
+ CLIENT_ASSERTION_LEEWAY_SECONDS?: number;
2188
+ /**
2189
+ * Upper bound, in seconds, on a client assertion's lifetime (`exp - iat`,
2190
+ * and the absolute `exp` measured from now). RFC 7523 sets no limit, so
2191
+ * without one a client can mint an assertion valid for a year. Defaults to
2192
+ * 300 when unset.
2193
+ */
2194
+ CLIENT_ASSERTION_MAX_LIFETIME_SECONDS?: number;
2109
2195
  /**
2110
2196
  * Controls where Server-Timing instrumentation goes. The data/cache adapters
2111
2197
  * and the webhook hook always measure per-operation latency; this decides the
@@ -2719,6 +2805,7 @@ declare function drainOutbox(outbox: OutboxAdapter, destinations: EventDestinati
2719
2805
  batchSize?: number;
2720
2806
  maxRetries?: number;
2721
2807
  retentionDays?: number;
2808
+ metrics?: OutboxMetricsSink;
2722
2809
  }): Promise<void>;
2723
2810
 
2724
2811
  interface OutboxCleanupParams {
@@ -2892,6 +2979,12 @@ interface CreateDefaultDestinationsConfig {
2892
2979
  * failed per-request delivery would be silently skipped on retry.
2893
2980
  */
2894
2981
  codeExecutor?: CodeExecutor;
2982
+ /**
2983
+ * Same shape as `init({ outbox: { pipeline } })`. When set, cron-drained
2984
+ * events are also archived to the Cloudflare Pipelines stream, matching the
2985
+ * per-request destination list. Omit to leave the archive out entirely.
2986
+ */
2987
+ pipeline?: OutboxPipelineConfig;
2895
2988
  }
2896
2989
  /**
2897
2990
  * Build the same array of outbox destinations that authhero's per-request
@@ -3016,6 +3109,13 @@ interface RunOutboxRelayConfig {
3016
3109
  * silently skipped.
3017
3110
  */
3018
3111
  codeExecutor?: CodeExecutor;
3112
+ /**
3113
+ * Optional metrics sink — same shape as `init({ outbox: { metrics } })`.
3114
+ * Receives `outbox_events_processed_total`,
3115
+ * `outbox_events_dead_lettered_total` and `outbox_retry_delay_seconds` for
3116
+ * the events this cron drain handles, tagged `source: "cron"`.
3117
+ */
3118
+ metrics?: OutboxMetricsSink;
3019
3119
  }
3020
3120
  /**
3021
3121
  * One-call outbox relay for cron / scheduled handlers.
@@ -3278,6 +3378,68 @@ declare class ControlPlaneSyncDestination implements EventDestination {
3278
3378
  deliver(events: SyncEvent[]): Promise<void>;
3279
3379
  }
3280
3380
 
3381
+ /**
3382
+ * One row of the archive table. The promoted columns are the query and
3383
+ * erasure keys (`actor_id` / `target_id`); `event` carries the untouched
3384
+ * `AuditEvent` so nothing is lost and the promoted set can grow later
3385
+ * without a backfill.
3386
+ *
3387
+ * `actor_id` is emitted as `null` rather than omitted when the actor is
3388
+ * anonymous, so every record has the same key set — Pipelines stream
3389
+ * schemas are fixed once created.
3390
+ */
3391
+ interface PipelineRecord {
3392
+ id: string;
3393
+ timestamp: string;
3394
+ tenant_id: string;
3395
+ event_type: string;
3396
+ log_type: string;
3397
+ category: AuditCategory;
3398
+ actor_id: string | null;
3399
+ target_type: string;
3400
+ target_id: string;
3401
+ event: AuditEvent;
3402
+ }
3403
+ interface PipelineDestinationOptions {
3404
+ /** Stream HTTP ingest endpoint, e.g. `https://<stream-id>.ingest.cloudflare.com`. */
3405
+ endpoint: string;
3406
+ /** Stream ingest token, sent as `Authorization: Bearer`. */
3407
+ token: string;
3408
+ /** Per-request timeout (default: 10s). */
3409
+ timeoutMs?: number;
3410
+ /** Override for tests. */
3411
+ fetchImpl?: typeof fetch;
3412
+ }
3413
+ /**
3414
+ * Archives audit events to a Cloudflare Pipelines stream, which lands them in
3415
+ * R2 as an Iceberg table. See `apps/docs/architecture/audit-archive.md`.
3416
+ *
3417
+ * HTTP ingest is used rather than the Worker binding so the destination works
3418
+ * in every deployment (Node included) and stays symmetric with the
3419
+ * log-streams destination.
3420
+ *
3421
+ * Duplicates are expected and by design: the relay retries per event, not per
3422
+ * destination, so a failure in a later destination re-delivers this one, and
3423
+ * the Iceberg sink is append-only. Consumers dedup on `id` at query time.
3424
+ */
3425
+ declare class PipelineDestination implements EventDestination {
3426
+ name: string;
3427
+ private endpoint;
3428
+ private token;
3429
+ private timeoutMs;
3430
+ private fetchImpl;
3431
+ constructor(options: PipelineDestinationOptions);
3432
+ /**
3433
+ * Archives the audit trail, not the delivery plumbing: `hook.*` and
3434
+ * `controlplane.sync.*` are instructions to other destinations rather than
3435
+ * records of something a tenant did. Same filter as the log-streams
3436
+ * destination.
3437
+ */
3438
+ accepts(event: AuditEvent): boolean;
3439
+ transform(event: AuditEvent): PipelineRecord;
3440
+ deliver(records: PipelineRecord[]): Promise<void>;
3441
+ }
3442
+
3281
3443
  interface CreateApplySyncEventsOptions {
3282
3444
  proxyRoutes: ProxyRoutesAdapter;
3283
3445
  }
@@ -4275,8 +4437,8 @@ declare function init(config: AuthHeroConfig): {
4275
4437
  $get: {
4276
4438
  input: {
4277
4439
  query: {
4278
- include_password_hashes?: "false" | "true" | undefined;
4279
- gzip?: "false" | "true" | undefined;
4440
+ include_password_hashes?: "true" | "false" | undefined;
4441
+ gzip?: "true" | "false" | undefined;
4280
4442
  };
4281
4443
  } & {
4282
4444
  header: {
@@ -4289,8 +4451,8 @@ declare function init(config: AuthHeroConfig): {
4289
4451
  } | {
4290
4452
  input: {
4291
4453
  query: {
4292
- include_password_hashes?: "false" | "true" | undefined;
4293
- gzip?: "false" | "true" | undefined;
4454
+ include_password_hashes?: "true" | "false" | undefined;
4455
+ gzip?: "true" | "false" | undefined;
4294
4456
  };
4295
4457
  } & {
4296
4458
  header: {
@@ -4309,7 +4471,7 @@ declare function init(config: AuthHeroConfig): {
4309
4471
  $post: {
4310
4472
  input: {
4311
4473
  query: {
4312
- include_password_hashes?: "false" | "true" | undefined;
4474
+ include_password_hashes?: "true" | "false" | undefined;
4313
4475
  };
4314
4476
  } & {
4315
4477
  header: {
@@ -4363,7 +4525,7 @@ declare function init(config: AuthHeroConfig): {
4363
4525
  };
4364
4526
  } & {
4365
4527
  json: {
4366
- type: "email" | "push" | "phone" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "totp";
4528
+ type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
4367
4529
  phone_number?: string | undefined;
4368
4530
  totp_secret?: string | undefined;
4369
4531
  credential_id?: string | undefined;
@@ -5470,9 +5632,9 @@ declare function init(config: AuthHeroConfig): {
5470
5632
  email?: string | undefined;
5471
5633
  };
5472
5634
  id?: string | undefined;
5635
+ connection_id?: string | undefined;
5473
5636
  app_metadata?: Record<string, any> | undefined;
5474
5637
  user_metadata?: Record<string, any> | undefined;
5475
- connection_id?: string | undefined;
5476
5638
  roles?: string[] | undefined;
5477
5639
  ttl_sec?: number | undefined;
5478
5640
  send_invitation_email?: boolean | undefined;
@@ -5658,8 +5820,8 @@ declare function init(config: AuthHeroConfig): {
5658
5820
  };
5659
5821
  } & {
5660
5822
  json: {
5661
- show_as_button?: boolean | undefined;
5662
5823
  assign_membership_on_login?: boolean | undefined;
5824
+ show_as_button?: boolean | undefined;
5663
5825
  is_signup_enabled?: boolean | undefined;
5664
5826
  };
5665
5827
  };
@@ -6378,7 +6540,7 @@ declare function init(config: AuthHeroConfig): {
6378
6540
  type: "REDIRECT";
6379
6541
  action: "REDIRECT_USER";
6380
6542
  params: {
6381
- target: "custom" | "account" | "change-email";
6543
+ target: "custom" | "change-email" | "account";
6382
6544
  custom_url?: string | undefined;
6383
6545
  };
6384
6546
  alias?: string | undefined;
@@ -6431,7 +6593,7 @@ declare function init(config: AuthHeroConfig): {
6431
6593
  type: "REDIRECT";
6432
6594
  action: "REDIRECT_USER";
6433
6595
  params: {
6434
- target: "custom" | "account" | "change-email";
6596
+ target: "custom" | "change-email" | "account";
6435
6597
  custom_url?: string | undefined;
6436
6598
  };
6437
6599
  alias?: string | undefined;
@@ -6500,7 +6662,7 @@ declare function init(config: AuthHeroConfig): {
6500
6662
  type: "REDIRECT";
6501
6663
  action: "REDIRECT_USER";
6502
6664
  params: {
6503
- target: "custom" | "account" | "change-email";
6665
+ target: "custom" | "change-email" | "account";
6504
6666
  custom_url?: string | undefined;
6505
6667
  };
6506
6668
  alias?: string | undefined;
@@ -6581,7 +6743,7 @@ declare function init(config: AuthHeroConfig): {
6581
6743
  type: "REDIRECT";
6582
6744
  action: "REDIRECT_USER";
6583
6745
  params: {
6584
- target: "custom" | "account" | "change-email";
6746
+ target: "custom" | "change-email" | "account";
6585
6747
  custom_url?: string | undefined;
6586
6748
  };
6587
6749
  alias?: string | undefined;
@@ -6629,7 +6791,7 @@ declare function init(config: AuthHeroConfig): {
6629
6791
  type: "REDIRECT";
6630
6792
  action: "REDIRECT_USER";
6631
6793
  params: {
6632
- target: "custom" | "account" | "change-email";
6794
+ target: "custom" | "change-email" | "account";
6633
6795
  custom_url?: string | undefined;
6634
6796
  };
6635
6797
  alias?: string | undefined;
@@ -6689,7 +6851,7 @@ declare function init(config: AuthHeroConfig): {
6689
6851
  type: "REDIRECT";
6690
6852
  action: "REDIRECT_USER";
6691
6853
  params: {
6692
- target: "custom" | "account" | "change-email";
6854
+ target: "custom" | "change-email" | "account";
6693
6855
  custom_url?: string | undefined;
6694
6856
  };
6695
6857
  alias?: string | undefined;
@@ -6737,7 +6899,7 @@ declare function init(config: AuthHeroConfig): {
6737
6899
  type: "REDIRECT";
6738
6900
  action: "REDIRECT_USER";
6739
6901
  params: {
6740
- target: "custom" | "account" | "change-email";
6902
+ target: "custom" | "change-email" | "account";
6741
6903
  custom_url?: string | undefined;
6742
6904
  };
6743
6905
  alias?: string | undefined;
@@ -11302,7 +11464,7 @@ declare function init(config: AuthHeroConfig): {
11302
11464
  };
11303
11465
  };
11304
11466
  output: {
11305
- prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
11467
+ prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
11306
11468
  language: string;
11307
11469
  }[];
11308
11470
  outputFormat: "json";
@@ -11340,7 +11502,7 @@ declare function init(config: AuthHeroConfig): {
11340
11502
  $get: {
11341
11503
  input: {
11342
11504
  param: {
11343
- prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
11505
+ prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
11344
11506
  language: string;
11345
11507
  };
11346
11508
  } & {
@@ -11362,7 +11524,7 @@ declare function init(config: AuthHeroConfig): {
11362
11524
  $put: {
11363
11525
  input: {
11364
11526
  param: {
11365
- prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
11527
+ prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
11366
11528
  language: string;
11367
11529
  };
11368
11530
  } & {
@@ -11386,7 +11548,7 @@ declare function init(config: AuthHeroConfig): {
11386
11548
  $delete: {
11387
11549
  input: {
11388
11550
  param: {
11389
- prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
11551
+ prompt: "login" | "signup" | "mfa" | "organizations" | "status" | "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";
11390
11552
  language: string;
11391
11553
  };
11392
11554
  } & {
@@ -11529,7 +11691,7 @@ declare function init(config: AuthHeroConfig): {
11529
11691
  } | undefined;
11530
11692
  } | undefined;
11531
11693
  passkey_options?: {
11532
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11694
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11533
11695
  local_enrollment_enabled?: boolean | undefined;
11534
11696
  progressive_enrollment_enabled?: boolean | undefined;
11535
11697
  } | undefined;
@@ -11667,7 +11829,7 @@ declare function init(config: AuthHeroConfig): {
11667
11829
  } | undefined;
11668
11830
  } | undefined;
11669
11831
  passkey_options?: {
11670
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11832
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11671
11833
  local_enrollment_enabled?: boolean | undefined;
11672
11834
  progressive_enrollment_enabled?: boolean | undefined;
11673
11835
  } | undefined;
@@ -11821,7 +11983,7 @@ declare function init(config: AuthHeroConfig): {
11821
11983
  } | undefined;
11822
11984
  } | undefined;
11823
11985
  passkey_options?: {
11824
- challenge_ui?: "button" | "both" | "autofill" | undefined;
11986
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
11825
11987
  local_enrollment_enabled?: boolean | undefined;
11826
11988
  progressive_enrollment_enabled?: boolean | undefined;
11827
11989
  } | undefined;
@@ -12004,7 +12166,7 @@ declare function init(config: AuthHeroConfig): {
12004
12166
  } | undefined;
12005
12167
  } | undefined;
12006
12168
  passkey_options?: {
12007
- challenge_ui?: "button" | "both" | "autofill" | undefined;
12169
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
12008
12170
  local_enrollment_enabled?: boolean | undefined;
12009
12171
  progressive_enrollment_enabled?: boolean | undefined;
12010
12172
  } | undefined;
@@ -12166,7 +12328,7 @@ declare function init(config: AuthHeroConfig): {
12166
12328
  } | undefined;
12167
12329
  } | undefined;
12168
12330
  passkey_options?: {
12169
- challenge_ui?: "button" | "both" | "autofill" | undefined;
12331
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
12170
12332
  local_enrollment_enabled?: boolean | undefined;
12171
12333
  progressive_enrollment_enabled?: boolean | undefined;
12172
12334
  } | undefined;
@@ -13081,6 +13243,26 @@ declare function init(config: AuthHeroConfig): {
13081
13243
  status: 200;
13082
13244
  };
13083
13245
  };
13246
+ } & {
13247
+ "/bulk-retry": {
13248
+ $post: {
13249
+ input: {
13250
+ header: {
13251
+ "tenant-id"?: string | undefined;
13252
+ };
13253
+ } & {
13254
+ json: {
13255
+ ids: string[];
13256
+ };
13257
+ };
13258
+ output: {
13259
+ replayed: string[];
13260
+ not_found: string[];
13261
+ };
13262
+ outputFormat: "json";
13263
+ status: 200;
13264
+ };
13265
+ };
13084
13266
  } & {
13085
13267
  "/:id/retry": {
13086
13268
  $post: {
@@ -13309,7 +13491,7 @@ declare function init(config: AuthHeroConfig): {
13309
13491
  created_at: string;
13310
13492
  updated_at: string;
13311
13493
  name: string;
13312
- provider: "auth0" | "oidc" | "okta" | "cognito";
13494
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13313
13495
  connection: string;
13314
13496
  enabled: boolean;
13315
13497
  credentials: {
@@ -13341,7 +13523,7 @@ declare function init(config: AuthHeroConfig): {
13341
13523
  created_at: string;
13342
13524
  updated_at: string;
13343
13525
  name: string;
13344
- provider: "auth0" | "oidc" | "okta" | "cognito";
13526
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13345
13527
  connection: string;
13346
13528
  enabled: boolean;
13347
13529
  credentials: {
@@ -13367,7 +13549,7 @@ declare function init(config: AuthHeroConfig): {
13367
13549
  } & {
13368
13550
  json: {
13369
13551
  name: string;
13370
- provider: "auth0" | "oidc" | "okta" | "cognito";
13552
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13371
13553
  connection: string;
13372
13554
  credentials: {
13373
13555
  domain: string;
@@ -13384,7 +13566,7 @@ declare function init(config: AuthHeroConfig): {
13384
13566
  created_at: string;
13385
13567
  updated_at: string;
13386
13568
  name: string;
13387
- provider: "auth0" | "oidc" | "okta" | "cognito";
13569
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13388
13570
  connection: string;
13389
13571
  enabled: boolean;
13390
13572
  credentials: {
@@ -13415,7 +13597,7 @@ declare function init(config: AuthHeroConfig): {
13415
13597
  json: {
13416
13598
  id?: string | undefined;
13417
13599
  name?: string | undefined;
13418
- provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
13600
+ provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
13419
13601
  connection?: string | undefined;
13420
13602
  enabled?: boolean | undefined;
13421
13603
  credentials?: {
@@ -13431,7 +13613,7 @@ declare function init(config: AuthHeroConfig): {
13431
13613
  created_at: string;
13432
13614
  updated_at: string;
13433
13615
  name: string;
13434
- provider: "auth0" | "oidc" | "okta" | "cognito";
13616
+ provider: "auth0" | "cognito" | "okta" | "oidc";
13435
13617
  connection: string;
13436
13618
  enabled: boolean;
13437
13619
  credentials: {
@@ -13479,7 +13661,7 @@ declare function init(config: AuthHeroConfig): {
13479
13661
  [x: string]: hono_utils_types.JSONValue;
13480
13662
  };
13481
13663
  id: string;
13482
- status: "active" | "suspended" | "paused";
13664
+ status: "suspended" | "active" | "paused";
13483
13665
  filters?: {
13484
13666
  type: string;
13485
13667
  name: string;
@@ -13511,7 +13693,7 @@ declare function init(config: AuthHeroConfig): {
13511
13693
  [x: string]: hono_utils_types.JSONValue;
13512
13694
  };
13513
13695
  id: string;
13514
- status: "active" | "suspended" | "paused";
13696
+ status: "suspended" | "active" | "paused";
13515
13697
  filters?: {
13516
13698
  type: string;
13517
13699
  name: string;
@@ -13536,7 +13718,7 @@ declare function init(config: AuthHeroConfig): {
13536
13718
  name: string;
13537
13719
  type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
13538
13720
  sink: Record<string, unknown>;
13539
- status?: "active" | "suspended" | "paused" | undefined;
13721
+ status?: "suspended" | "active" | "paused" | undefined;
13540
13722
  filters?: {
13541
13723
  type: string;
13542
13724
  name: string;
@@ -13551,7 +13733,7 @@ declare function init(config: AuthHeroConfig): {
13551
13733
  [x: string]: hono_utils_types.JSONValue;
13552
13734
  };
13553
13735
  id: string;
13554
- status: "active" | "suspended" | "paused";
13736
+ status: "suspended" | "active" | "paused";
13555
13737
  filters?: {
13556
13738
  type: string;
13557
13739
  name: string;
@@ -13586,7 +13768,7 @@ declare function init(config: AuthHeroConfig): {
13586
13768
  }[] | undefined;
13587
13769
  isPriority?: boolean | undefined;
13588
13770
  id?: string | undefined;
13589
- status?: "active" | "suspended" | "paused" | undefined;
13771
+ status?: "suspended" | "active" | "paused" | undefined;
13590
13772
  created_at?: string | undefined;
13591
13773
  updated_at?: string | undefined;
13592
13774
  };
@@ -13598,7 +13780,7 @@ declare function init(config: AuthHeroConfig): {
13598
13780
  [x: string]: hono_utils_types.JSONValue;
13599
13781
  };
13600
13782
  id: string;
13601
- status: "active" | "suspended" | "paused";
13783
+ status: "suspended" | "active" | "paused";
13602
13784
  filters?: {
13603
13785
  type: string;
13604
13786
  name: string;
@@ -13649,7 +13831,7 @@ declare function init(config: AuthHeroConfig): {
13649
13831
  };
13650
13832
  };
13651
13833
  output: {
13652
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13834
+ type: "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
13653
13835
  date: string;
13654
13836
  isMobile: boolean;
13655
13837
  log_id: string;
@@ -13688,7 +13870,7 @@ declare function init(config: AuthHeroConfig): {
13688
13870
  limit: number;
13689
13871
  length: number;
13690
13872
  logs: {
13691
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13873
+ type: "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
13692
13874
  date: string;
13693
13875
  isMobile: boolean;
13694
13876
  log_id: string;
@@ -13727,7 +13909,7 @@ declare function init(config: AuthHeroConfig): {
13727
13909
  next?: string | undefined;
13728
13910
  } | {
13729
13911
  logs: {
13730
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13912
+ type: "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
13731
13913
  date: string;
13732
13914
  isMobile: boolean;
13733
13915
  log_id: string;
@@ -13781,7 +13963,7 @@ declare function init(config: AuthHeroConfig): {
13781
13963
  };
13782
13964
  };
13783
13965
  output: {
13784
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
13966
+ type: "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
13785
13967
  date: string;
13786
13968
  isMobile: boolean;
13787
13969
  log_id: string;
@@ -15073,7 +15255,7 @@ declare function init(config: AuthHeroConfig): {
15073
15255
  } | undefined;
15074
15256
  } | undefined;
15075
15257
  passkey_options?: {
15076
- challenge_ui?: "button" | "both" | "autofill" | undefined;
15258
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
15077
15259
  local_enrollment_enabled?: boolean | undefined;
15078
15260
  progressive_enrollment_enabled?: boolean | undefined;
15079
15261
  } | undefined;
@@ -15231,7 +15413,7 @@ declare function init(config: AuthHeroConfig): {
15231
15413
  } | undefined;
15232
15414
  } | undefined;
15233
15415
  passkey_options?: {
15234
- challenge_ui?: "button" | "both" | "autofill" | undefined;
15416
+ challenge_ui?: "both" | "autofill" | "button" | undefined;
15235
15417
  local_enrollment_enabled?: boolean | undefined;
15236
15418
  progressive_enrollment_enabled?: boolean | undefined;
15237
15419
  } | undefined;
@@ -15365,15 +15547,15 @@ declare function init(config: AuthHeroConfig): {
15365
15547
  cert: string;
15366
15548
  fingerprint: string;
15367
15549
  thumbprint: string;
15368
- connection?: string | undefined;
15369
15550
  tenant_id?: string | undefined;
15370
- current?: boolean | undefined;
15551
+ connection?: string | undefined;
15371
15552
  next?: boolean | undefined;
15553
+ revoked_at?: string | undefined;
15554
+ current?: boolean | undefined;
15372
15555
  previous?: boolean | undefined;
15373
15556
  current_since?: string | undefined;
15374
15557
  current_until?: string | undefined;
15375
15558
  revoked?: boolean | undefined;
15376
- revoked_at?: string | undefined;
15377
15559
  expires_at?: string | undefined;
15378
15560
  expired?: boolean | undefined;
15379
15561
  inherited?: boolean | undefined;
@@ -15404,15 +15586,15 @@ declare function init(config: AuthHeroConfig): {
15404
15586
  cert: string;
15405
15587
  fingerprint: string;
15406
15588
  thumbprint: string;
15407
- connection?: string | undefined;
15408
15589
  tenant_id?: string | undefined;
15409
- current?: boolean | undefined;
15590
+ connection?: string | undefined;
15410
15591
  next?: boolean | undefined;
15592
+ revoked_at?: string | undefined;
15593
+ current?: boolean | undefined;
15411
15594
  previous?: boolean | undefined;
15412
15595
  current_since?: string | undefined;
15413
15596
  current_until?: string | undefined;
15414
15597
  revoked?: boolean | undefined;
15415
- revoked_at?: string | undefined;
15416
15598
  expires_at?: string | undefined;
15417
15599
  expired?: boolean | undefined;
15418
15600
  inherited?: boolean | undefined;
@@ -15442,15 +15624,15 @@ declare function init(config: AuthHeroConfig): {
15442
15624
  cert: string;
15443
15625
  fingerprint: string;
15444
15626
  thumbprint: string;
15445
- connection?: string | undefined;
15446
15627
  tenant_id?: string | undefined;
15447
- current?: boolean | undefined;
15628
+ connection?: string | undefined;
15448
15629
  next?: boolean | undefined;
15630
+ revoked_at?: string | undefined;
15631
+ current?: boolean | undefined;
15449
15632
  previous?: boolean | undefined;
15450
15633
  current_since?: string | undefined;
15451
15634
  current_until?: string | undefined;
15452
15635
  revoked?: boolean | undefined;
15453
- revoked_at?: string | undefined;
15454
15636
  expires_at?: string | undefined;
15455
15637
  expired?: boolean | undefined;
15456
15638
  inherited?: boolean | undefined;
@@ -15482,15 +15664,15 @@ declare function init(config: AuthHeroConfig): {
15482
15664
  cert: string;
15483
15665
  fingerprint: string;
15484
15666
  thumbprint: string;
15485
- connection?: string | undefined;
15486
15667
  tenant_id?: string | undefined;
15487
- current?: boolean | undefined;
15668
+ connection?: string | undefined;
15488
15669
  next?: boolean | undefined;
15670
+ revoked_at?: string | undefined;
15671
+ current?: boolean | undefined;
15489
15672
  previous?: boolean | undefined;
15490
15673
  current_since?: string | undefined;
15491
15674
  current_until?: string | undefined;
15492
15675
  revoked?: boolean | undefined;
15493
- revoked_at?: string | undefined;
15494
15676
  expires_at?: string | undefined;
15495
15677
  expired?: boolean | undefined;
15496
15678
  inherited?: boolean | undefined;
@@ -16335,12 +16517,11 @@ declare function init(config: AuthHeroConfig): {
16335
16517
  };
16336
16518
  };
16337
16519
  output: {
16338
- client_id: string;
16339
- created_at: string;
16340
- rotating: boolean;
16341
16520
  id: string;
16521
+ created_at: string;
16522
+ client_id: string;
16342
16523
  user_id: string;
16343
- login_id: string;
16524
+ rotating: boolean;
16344
16525
  device: {
16345
16526
  initial_user_agent: string;
16346
16527
  initial_ip: string;
@@ -16349,29 +16530,29 @@ declare function init(config: AuthHeroConfig): {
16349
16530
  last_ip: string;
16350
16531
  last_asn: string;
16351
16532
  };
16533
+ login_id: string;
16352
16534
  resource_servers: {
16353
16535
  audience: string;
16354
16536
  scopes: string;
16355
16537
  }[];
16356
- organization?: string | undefined;
16538
+ revoked_at?: string | undefined;
16357
16539
  expires_at?: string | undefined;
16540
+ idle_expires_at?: string | undefined;
16358
16541
  session_id?: string | undefined;
16542
+ organization?: string | undefined;
16359
16543
  auth_connection?: string | undefined;
16360
16544
  auth_strategy?: {
16361
16545
  strategy: string;
16362
16546
  strategy_type: string;
16363
16547
  } | undefined;
16364
- revoked_at?: string | undefined;
16365
- idle_expires_at?: string | undefined;
16366
16548
  last_exchanged_at?: string | undefined;
16367
16549
  }[] | {
16368
16550
  tokens: {
16369
- client_id: string;
16370
- created_at: string;
16371
- rotating: boolean;
16372
16551
  id: string;
16552
+ created_at: string;
16553
+ client_id: string;
16373
16554
  user_id: string;
16374
- login_id: string;
16555
+ rotating: boolean;
16375
16556
  device: {
16376
16557
  initial_user_agent: string;
16377
16558
  initial_ip: string;
@@ -16380,20 +16561,21 @@ declare function init(config: AuthHeroConfig): {
16380
16561
  last_ip: string;
16381
16562
  last_asn: string;
16382
16563
  };
16564
+ login_id: string;
16383
16565
  resource_servers: {
16384
16566
  audience: string;
16385
16567
  scopes: string;
16386
16568
  }[];
16387
- organization?: string | undefined;
16569
+ revoked_at?: string | undefined;
16388
16570
  expires_at?: string | undefined;
16571
+ idle_expires_at?: string | undefined;
16389
16572
  session_id?: string | undefined;
16573
+ organization?: string | undefined;
16390
16574
  auth_connection?: string | undefined;
16391
16575
  auth_strategy?: {
16392
16576
  strategy: string;
16393
16577
  strategy_type: string;
16394
16578
  } | undefined;
16395
- revoked_at?: string | undefined;
16396
- idle_expires_at?: string | undefined;
16397
16579
  last_exchanged_at?: string | undefined;
16398
16580
  }[];
16399
16581
  next?: string | undefined;
@@ -16402,12 +16584,11 @@ declare function init(config: AuthHeroConfig): {
16402
16584
  limit: number;
16403
16585
  length: number;
16404
16586
  tokens: {
16405
- client_id: string;
16406
- created_at: string;
16407
- rotating: boolean;
16408
16587
  id: string;
16588
+ created_at: string;
16589
+ client_id: string;
16409
16590
  user_id: string;
16410
- login_id: string;
16591
+ rotating: boolean;
16411
16592
  device: {
16412
16593
  initial_user_agent: string;
16413
16594
  initial_ip: string;
@@ -16416,20 +16597,21 @@ declare function init(config: AuthHeroConfig): {
16416
16597
  last_ip: string;
16417
16598
  last_asn: string;
16418
16599
  };
16600
+ login_id: string;
16419
16601
  resource_servers: {
16420
16602
  audience: string;
16421
16603
  scopes: string;
16422
16604
  }[];
16423
- organization?: string | undefined;
16605
+ revoked_at?: string | undefined;
16424
16606
  expires_at?: string | undefined;
16607
+ idle_expires_at?: string | undefined;
16425
16608
  session_id?: string | undefined;
16609
+ organization?: string | undefined;
16426
16610
  auth_connection?: string | undefined;
16427
16611
  auth_strategy?: {
16428
16612
  strategy: string;
16429
16613
  strategy_type: string;
16430
16614
  } | undefined;
16431
- revoked_at?: string | undefined;
16432
- idle_expires_at?: string | undefined;
16433
16615
  last_exchanged_at?: string | undefined;
16434
16616
  }[];
16435
16617
  total?: number | undefined;
@@ -16481,7 +16663,7 @@ declare function init(config: AuthHeroConfig): {
16481
16663
  };
16482
16664
  };
16483
16665
  output: {
16484
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
16666
+ type: "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
16485
16667
  date: string;
16486
16668
  isMobile: boolean;
16487
16669
  log_id: string;
@@ -16520,7 +16702,7 @@ declare function init(config: AuthHeroConfig): {
16520
16702
  limit: number;
16521
16703
  length: number;
16522
16704
  logs: {
16523
- type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
16705
+ type: "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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";
16524
16706
  date: string;
16525
16707
  isMobile: boolean;
16526
16708
  log_id: string;
@@ -17651,7 +17833,7 @@ declare function init(config: AuthHeroConfig): {
17651
17833
  base_focus_color: string;
17652
17834
  base_hover_color: string;
17653
17835
  body_text: string;
17654
- captcha_widget_theme: "auto" | "light" | "dark";
17836
+ captcha_widget_theme: "dark" | "light" | "auto";
17655
17837
  error: string;
17656
17838
  header: string;
17657
17839
  icons: string;
@@ -17702,12 +17884,12 @@ declare function init(config: AuthHeroConfig): {
17702
17884
  background_color: string;
17703
17885
  background_image_url: string;
17704
17886
  page_layout: "center" | "left" | "right";
17705
- logo_placement?: "none" | "widget" | "chip" | undefined;
17887
+ logo_placement?: "widget" | "none" | "chip" | undefined;
17706
17888
  };
17707
17889
  widget: {
17708
17890
  header_text_alignment: "center" | "left" | "right";
17709
17891
  logo_height: number;
17710
- logo_position: "none" | "center" | "left" | "right";
17892
+ logo_position: "center" | "left" | "right" | "none";
17711
17893
  logo_url: string;
17712
17894
  social_buttons_layout: "bottom" | "top";
17713
17895
  };
@@ -17741,7 +17923,7 @@ declare function init(config: AuthHeroConfig): {
17741
17923
  base_focus_color: string;
17742
17924
  base_hover_color: string;
17743
17925
  body_text: string;
17744
- captcha_widget_theme: "auto" | "light" | "dark";
17926
+ captcha_widget_theme: "dark" | "light" | "auto";
17745
17927
  error: string;
17746
17928
  header: string;
17747
17929
  icons: string;
@@ -17792,12 +17974,12 @@ declare function init(config: AuthHeroConfig): {
17792
17974
  background_color: string;
17793
17975
  background_image_url: string;
17794
17976
  page_layout: "center" | "left" | "right";
17795
- logo_placement?: "none" | "widget" | "chip" | undefined;
17977
+ logo_placement?: "widget" | "none" | "chip" | undefined;
17796
17978
  };
17797
17979
  widget: {
17798
17980
  header_text_alignment: "center" | "left" | "right";
17799
17981
  logo_height: number;
17800
- logo_position: "none" | "center" | "left" | "right";
17982
+ logo_position: "center" | "left" | "right" | "none";
17801
17983
  logo_url: string;
17802
17984
  social_buttons_layout: "bottom" | "top";
17803
17985
  };
@@ -17820,7 +18002,7 @@ declare function init(config: AuthHeroConfig): {
17820
18002
  base_focus_color: string;
17821
18003
  base_hover_color: string;
17822
18004
  body_text: string;
17823
- captcha_widget_theme: "auto" | "light" | "dark";
18005
+ captcha_widget_theme: "dark" | "light" | "auto";
17824
18006
  error: string;
17825
18007
  header: string;
17826
18008
  icons: string;
@@ -17871,12 +18053,12 @@ declare function init(config: AuthHeroConfig): {
17871
18053
  background_color: string;
17872
18054
  background_image_url: string;
17873
18055
  page_layout: "center" | "left" | "right";
17874
- logo_placement?: "none" | "widget" | "chip" | undefined;
18056
+ logo_placement?: "widget" | "none" | "chip" | undefined;
17875
18057
  };
17876
18058
  widget: {
17877
18059
  header_text_alignment: "center" | "left" | "right";
17878
18060
  logo_height: number;
17879
- logo_position: "none" | "center" | "left" | "right";
18061
+ logo_position: "center" | "left" | "right" | "none";
17880
18062
  logo_url: string;
17881
18063
  social_buttons_layout: "bottom" | "top";
17882
18064
  };
@@ -17910,7 +18092,7 @@ declare function init(config: AuthHeroConfig): {
17910
18092
  font?: {
17911
18093
  url: string;
17912
18094
  } | undefined;
17913
- dark_mode?: "auto" | "light" | "dark" | undefined;
18095
+ dark_mode?: "dark" | "light" | "auto" | undefined;
17914
18096
  };
17915
18097
  outputFormat: "json";
17916
18098
  status: 200;
@@ -17940,7 +18122,7 @@ declare function init(config: AuthHeroConfig): {
17940
18122
  font?: {
17941
18123
  url: string;
17942
18124
  } | undefined;
17943
- dark_mode?: "auto" | "light" | "dark" | undefined;
18125
+ dark_mode?: "dark" | "light" | "auto" | undefined;
17944
18126
  };
17945
18127
  };
17946
18128
  output: {
@@ -17959,7 +18141,7 @@ declare function init(config: AuthHeroConfig): {
17959
18141
  font?: {
17960
18142
  url: string;
17961
18143
  } | undefined;
17962
- dark_mode?: "auto" | "light" | "dark" | undefined;
18144
+ dark_mode?: "dark" | "light" | "auto" | undefined;
17963
18145
  };
17964
18146
  outputFormat: "json";
17965
18147
  status: 200;
@@ -18050,7 +18232,7 @@ declare function init(config: AuthHeroConfig): {
18050
18232
  font?: {
18051
18233
  url: string;
18052
18234
  } | undefined;
18053
- dark_mode?: "auto" | "light" | "dark" | undefined;
18235
+ dark_mode?: "dark" | "light" | "auto" | undefined;
18054
18236
  } | undefined;
18055
18237
  theme?: {
18056
18238
  borders?: {
@@ -18068,7 +18250,7 @@ declare function init(config: AuthHeroConfig): {
18068
18250
  base_focus_color: string;
18069
18251
  base_hover_color: string;
18070
18252
  body_text: string;
18071
- captcha_widget_theme: "auto" | "light" | "dark";
18253
+ captcha_widget_theme: "dark" | "light" | "auto";
18072
18254
  error: string;
18073
18255
  header: string;
18074
18256
  icons: string;
@@ -18119,12 +18301,12 @@ declare function init(config: AuthHeroConfig): {
18119
18301
  background_color: string;
18120
18302
  background_image_url: string;
18121
18303
  page_layout: "center" | "left" | "right";
18122
- logo_placement?: "none" | "widget" | "chip" | undefined;
18304
+ logo_placement?: "widget" | "none" | "chip" | undefined;
18123
18305
  } | undefined;
18124
18306
  widget?: {
18125
18307
  header_text_alignment: "center" | "left" | "right";
18126
18308
  logo_height: number;
18127
- logo_position: "none" | "center" | "left" | "right";
18309
+ logo_position: "center" | "left" | "right" | "none";
18128
18310
  logo_url: string;
18129
18311
  social_buttons_layout: "bottom" | "top";
18130
18312
  } | undefined;
@@ -18176,7 +18358,6 @@ declare function init(config: AuthHeroConfig): {
18176
18358
  deployed_at?: string | undefined;
18177
18359
  secrets?: {
18178
18360
  name: string;
18179
- value?: string | undefined;
18180
18361
  }[] | undefined;
18181
18362
  };
18182
18363
  created_at: string;
@@ -18238,7 +18419,6 @@ declare function init(config: AuthHeroConfig): {
18238
18419
  deployed_at?: string | undefined;
18239
18420
  secrets?: {
18240
18421
  name: string;
18241
- value?: string | undefined;
18242
18422
  }[] | undefined;
18243
18423
  };
18244
18424
  created_at: string;
@@ -18375,7 +18555,6 @@ declare function init(config: AuthHeroConfig): {
18375
18555
  deployed_at?: string | undefined;
18376
18556
  secrets?: {
18377
18557
  name: string;
18378
- value?: string | undefined;
18379
18558
  }[] | undefined;
18380
18559
  }[] | {
18381
18560
  start: number;
@@ -18403,7 +18582,6 @@ declare function init(config: AuthHeroConfig): {
18403
18582
  deployed_at?: string | undefined;
18404
18583
  secrets?: {
18405
18584
  name: string;
18406
- value?: string | undefined;
18407
18585
  }[] | undefined;
18408
18586
  }[];
18409
18587
  total?: number | undefined;
@@ -18463,7 +18641,6 @@ declare function init(config: AuthHeroConfig): {
18463
18641
  deployed_at?: string | undefined;
18464
18642
  secrets?: {
18465
18643
  name: string;
18466
- value?: string | undefined;
18467
18644
  }[] | undefined;
18468
18645
  };
18469
18646
  outputFormat: "json";
@@ -18517,7 +18694,6 @@ declare function init(config: AuthHeroConfig): {
18517
18694
  deployed_at?: string | undefined;
18518
18695
  secrets?: {
18519
18696
  name: string;
18520
- value?: string | undefined;
18521
18697
  }[] | undefined;
18522
18698
  };
18523
18699
  outputFormat: "json";
@@ -18611,7 +18787,6 @@ declare function init(config: AuthHeroConfig): {
18611
18787
  deployed_at?: string | undefined;
18612
18788
  secrets?: {
18613
18789
  name: string;
18614
- value?: string | undefined;
18615
18790
  }[] | undefined;
18616
18791
  };
18617
18792
  outputFormat: "json";
@@ -18708,7 +18883,6 @@ declare function init(config: AuthHeroConfig): {
18708
18883
  deployed_at?: string | undefined;
18709
18884
  secrets?: {
18710
18885
  name: string;
18711
- value?: string | undefined;
18712
18886
  }[] | undefined;
18713
18887
  };
18714
18888
  outputFormat: "json";
@@ -18925,7 +19099,6 @@ declare function init(config: AuthHeroConfig): {
18925
19099
  deployed_at?: string | undefined;
18926
19100
  secrets?: {
18927
19101
  name: string;
18928
- value?: string | undefined;
18929
19102
  }[] | undefined;
18930
19103
  };
18931
19104
  outputFormat: "json";
@@ -19450,7 +19623,7 @@ declare function init(config: AuthHeroConfig): {
19450
19623
  client_id: string;
19451
19624
  redirect_url?: string | undefined;
19452
19625
  login_hint?: string | undefined;
19453
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
19626
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
19454
19627
  };
19455
19628
  };
19456
19629
  output: {};
@@ -19462,7 +19635,7 @@ declare function init(config: AuthHeroConfig): {
19462
19635
  client_id: string;
19463
19636
  redirect_url?: string | undefined;
19464
19637
  login_hint?: string | undefined;
19465
- screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
19638
+ screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
19466
19639
  };
19467
19640
  };
19468
19641
  output: {
@@ -19739,19 +19912,19 @@ declare function init(config: AuthHeroConfig): {
19739
19912
  email: string;
19740
19913
  send: "code" | "link";
19741
19914
  authParams: {
19915
+ audience?: string | undefined;
19916
+ username?: string | undefined;
19917
+ prompt?: string | undefined;
19742
19918
  scope?: string | undefined;
19743
- state?: string | undefined;
19744
- act_as?: string | undefined;
19919
+ organization?: string | undefined;
19745
19920
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19746
19921
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19922
+ state?: string | undefined;
19747
19923
  redirect_uri?: string | undefined;
19748
- audience?: string | undefined;
19749
- organization?: string | undefined;
19924
+ act_as?: string | undefined;
19750
19925
  nonce?: string | undefined;
19751
- prompt?: string | undefined;
19752
19926
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19753
19927
  code_challenge?: string | undefined;
19754
- username?: string | undefined;
19755
19928
  ui_locales?: string | undefined;
19756
19929
  max_age?: number | undefined;
19757
19930
  acr_values?: string | undefined;
@@ -19775,19 +19948,19 @@ declare function init(config: AuthHeroConfig): {
19775
19948
  phone_number: string;
19776
19949
  send: "code" | "link";
19777
19950
  authParams: {
19951
+ audience?: string | undefined;
19952
+ username?: string | undefined;
19953
+ prompt?: string | undefined;
19778
19954
  scope?: string | undefined;
19779
- state?: string | undefined;
19780
- act_as?: string | undefined;
19955
+ organization?: string | undefined;
19781
19956
  response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
19782
19957
  response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
19958
+ state?: string | undefined;
19783
19959
  redirect_uri?: string | undefined;
19784
- audience?: string | undefined;
19785
- organization?: string | undefined;
19960
+ act_as?: string | undefined;
19786
19961
  nonce?: string | undefined;
19787
- prompt?: string | undefined;
19788
19962
  code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
19789
19963
  code_challenge?: string | undefined;
19790
- username?: string | undefined;
19791
19964
  ui_locales?: string | undefined;
19792
19965
  max_age?: number | undefined;
19793
19966
  acr_values?: string | undefined;
@@ -20082,17 +20255,9 @@ declare function init(config: AuthHeroConfig): {
20082
20255
  client_assertion_type?: string | undefined;
20083
20256
  };
20084
20257
  };
20085
- output: {
20086
- access_token: string;
20087
- token_type: string;
20088
- expires_in: number;
20089
- id_token?: string | undefined;
20090
- scope?: string | undefined;
20091
- state?: string | undefined;
20092
- refresh_token?: string | undefined;
20093
- };
20094
- outputFormat: "json";
20095
- status: 200;
20258
+ output: {};
20259
+ outputFormat: string;
20260
+ status: 302;
20096
20261
  } | {
20097
20262
  input: {
20098
20263
  form: {
@@ -20193,9 +20358,17 @@ declare function init(config: AuthHeroConfig): {
20193
20358
  client_assertion_type?: string | undefined;
20194
20359
  };
20195
20360
  };
20196
- output: {};
20197
- outputFormat: string;
20198
- status: 302;
20361
+ output: {
20362
+ access_token: string;
20363
+ token_type: string;
20364
+ expires_in: number;
20365
+ id_token?: string | undefined;
20366
+ scope?: string | undefined;
20367
+ state?: string | undefined;
20368
+ refresh_token?: string | undefined;
20369
+ };
20370
+ outputFormat: "json";
20371
+ status: 200;
20199
20372
  } | {
20200
20373
  input: {
20201
20374
  form: {
@@ -20716,7 +20889,7 @@ declare function init(config: AuthHeroConfig): {
20716
20889
  };
20717
20890
  output: {};
20718
20891
  outputFormat: string;
20719
- status: 302;
20892
+ status: 200;
20720
20893
  } | {
20721
20894
  input: {
20722
20895
  query: {
@@ -20730,7 +20903,7 @@ declare function init(config: AuthHeroConfig): {
20730
20903
  };
20731
20904
  output: {};
20732
20905
  outputFormat: string;
20733
- status: 200;
20906
+ status: 302;
20734
20907
  } | {
20735
20908
  input: {
20736
20909
  query: {
@@ -21718,7 +21891,7 @@ declare function init(config: AuthHeroConfig): {
21718
21891
  $get: {
21719
21892
  input: {
21720
21893
  param: {
21721
- screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21894
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "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";
21722
21895
  };
21723
21896
  } & {
21724
21897
  query: {
@@ -21734,7 +21907,7 @@ declare function init(config: AuthHeroConfig): {
21734
21907
  } | {
21735
21908
  input: {
21736
21909
  param: {
21737
- screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21910
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "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";
21738
21911
  };
21739
21912
  } & {
21740
21913
  query: {
@@ -21750,7 +21923,7 @@ declare function init(config: AuthHeroConfig): {
21750
21923
  } | {
21751
21924
  input: {
21752
21925
  param: {
21753
- screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21926
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "account" | "enter-password" | "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";
21754
21927
  };
21755
21928
  } & {
21756
21929
  query: {
@@ -21770,7 +21943,7 @@ declare function init(config: AuthHeroConfig): {
21770
21943
  $post: {
21771
21944
  input: {
21772
21945
  param: {
21773
- screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21946
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "enter-password" | "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";
21774
21947
  };
21775
21948
  } & {
21776
21949
  query: {
@@ -21788,7 +21961,7 @@ declare function init(config: AuthHeroConfig): {
21788
21961
  } | {
21789
21962
  input: {
21790
21963
  param: {
21791
- screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
21964
+ screen: "login" | "signup" | "reset-password" | "consent" | "impersonate" | "enter-password" | "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";
21792
21965
  };
21793
21966
  } & {
21794
21967
  query: {
@@ -21890,5 +22063,5 @@ declare function init(config: AuthHeroConfig): {
21890
22063
  createX509Certificate: typeof createX509Certificate;
21891
22064
  };
21892
22065
 
21893
- export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupActionExecutions, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, ensureSigningKey, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
21894
- export type { ActionExecutionsCleanupParams, AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureSigningKeyOptions, EnsureSigningKeyResult, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, 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, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
22066
+ export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PipelineDestination, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupActionExecutions, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, ensureSigningKey, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
22067
+ export type { ActionExecutionsCleanupParams, AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureSigningKeyOptions, EnsureSigningKeyResult, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, 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, OutboxMetric, OutboxMetricName, OutboxMetricsSink, OutboxPipelineConfig, PipelineDestinationOptions, PipelineRecord, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };