authhero 9.9.0 → 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.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +537 -338
- package/dist/authhero.d.ts +297 -124
- package/dist/authhero.mjs +14879 -14098
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/authorization-code.d.ts +2 -1
- package/dist/types/authentication-flows/client-credentials.d.ts +2 -1
- package/dist/types/authentication-flows/grant-tokens.d.ts +16 -0
- package/dist/types/authentication-flows/passwordless.d.ts +6 -5
- package/dist/types/authentication-flows/refresh-token.d.ts +2 -1
- package/dist/types/authentication-flows/token-exchange.d.ts +2 -1
- package/dist/types/helpers/client-assertion-replay.d.ts +21 -0
- package/dist/types/helpers/client-assertion.d.ts +24 -2
- package/dist/types/helpers/default-destinations.d.ts +7 -1
- package/dist/types/helpers/outbox-destinations/index.d.ts +1 -0
- package/dist/types/helpers/outbox-destinations/pipeline.d.ts +63 -0
- package/dist/types/helpers/outbox-relay.d.ts +3 -0
- package/dist/types/helpers/refresh-token-lifetime.d.ts +103 -0
- package/dist/types/helpers/reserved-claims.d.ts +64 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +8 -0
- package/dist/types/hooks/addDataHooks.d.ts +4 -3
- package/dist/types/index.d.ts +134 -121
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/management-api/action-triggers.d.ts +0 -2
- package/dist/types/routes/management-api/actions.d.ts +0 -7
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +21 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +107 -96
- package/dist/types/routes/management-api/keys.d.ts +12 -12
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +11 -11
- package/dist/types/routes/management-api/users.d.ts +15 -15
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/info-code-exchange.d.ts +27 -0
- package/dist/types/routes/universal-login/token-info-page.d.ts +26 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/AuthHeroConfig.d.ts +27 -0
- package/dist/types/types/Bindings.d.ts +12 -0
- package/dist/types/types/OutboxMetrics.d.ts +47 -0
- package/dist/types/types/index.d.ts +1 -0
- package/dist/types/utils/email.d.ts +21 -9
- package/package.json +8 -8
package/dist/authhero.d.ts
CHANGED
|
@@ -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
|
}
|
|
@@ -4363,7 +4525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4363
4525
|
};
|
|
4364
4526
|
} & {
|
|
4365
4527
|
json: {
|
|
4366
|
-
type: "push" | "email" | "passkey" | "
|
|
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;
|
|
@@ -4503,7 +4665,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4503
4665
|
};
|
|
4504
4666
|
};
|
|
4505
4667
|
output: {
|
|
4506
|
-
name: "
|
|
4668
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4507
4669
|
enabled: boolean;
|
|
4508
4670
|
trial_expired?: boolean | undefined;
|
|
4509
4671
|
}[];
|
|
@@ -4658,7 +4820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4658
4820
|
$get: {
|
|
4659
4821
|
input: {
|
|
4660
4822
|
param: {
|
|
4661
|
-
factor_name: "
|
|
4823
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4662
4824
|
};
|
|
4663
4825
|
} & {
|
|
4664
4826
|
header: {
|
|
@@ -4666,7 +4828,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4666
4828
|
};
|
|
4667
4829
|
};
|
|
4668
4830
|
output: {
|
|
4669
|
-
name: "
|
|
4831
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4670
4832
|
enabled: boolean;
|
|
4671
4833
|
trial_expired?: boolean | undefined;
|
|
4672
4834
|
};
|
|
@@ -4679,7 +4841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4679
4841
|
$put: {
|
|
4680
4842
|
input: {
|
|
4681
4843
|
param: {
|
|
4682
|
-
factor_name: "
|
|
4844
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4683
4845
|
};
|
|
4684
4846
|
} & {
|
|
4685
4847
|
header: {
|
|
@@ -4691,7 +4853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4691
4853
|
};
|
|
4692
4854
|
};
|
|
4693
4855
|
output: {
|
|
4694
|
-
name: "
|
|
4856
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4695
4857
|
enabled: boolean;
|
|
4696
4858
|
trial_expired?: boolean | undefined;
|
|
4697
4859
|
};
|
|
@@ -5463,19 +5625,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5463
5625
|
} & {
|
|
5464
5626
|
json: {
|
|
5465
5627
|
client_id: string;
|
|
5466
|
-
invitee: {
|
|
5467
|
-
email?: string | undefined;
|
|
5468
|
-
};
|
|
5469
5628
|
inviter: {
|
|
5470
5629
|
name?: string | undefined;
|
|
5471
5630
|
};
|
|
5631
|
+
invitee: {
|
|
5632
|
+
email?: string | undefined;
|
|
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
|
-
send_invitation_email?: boolean | undefined;
|
|
5478
5639
|
ttl_sec?: number | undefined;
|
|
5640
|
+
send_invitation_email?: boolean | undefined;
|
|
5479
5641
|
};
|
|
5480
5642
|
};
|
|
5481
5643
|
output: {
|
|
@@ -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
|
};
|
|
@@ -6230,8 +6392,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6230
6392
|
};
|
|
6231
6393
|
} & {
|
|
6232
6394
|
query: {
|
|
6233
|
-
page?: string | undefined;
|
|
6234
6395
|
from?: string | undefined;
|
|
6396
|
+
page?: string | undefined;
|
|
6235
6397
|
include_totals?: string | undefined;
|
|
6236
6398
|
per_page?: string | undefined;
|
|
6237
6399
|
take?: string | undefined;
|
|
@@ -11302,7 +11464,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11302
11464
|
};
|
|
11303
11465
|
};
|
|
11304
11466
|
output: {
|
|
11305
|
-
prompt: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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
|
} & {
|
|
@@ -12998,7 +13160,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12998
13160
|
log_type: string;
|
|
12999
13161
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
13000
13162
|
actor: {
|
|
13001
|
-
type: "
|
|
13163
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
13002
13164
|
id?: string | undefined;
|
|
13003
13165
|
email?: string | undefined;
|
|
13004
13166
|
org_id?: string | 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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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: "
|
|
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: "
|
|
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?: "
|
|
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: "
|
|
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?: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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;
|
|
@@ -15365,11 +15547,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15365
15547
|
cert: string;
|
|
15366
15548
|
fingerprint: string;
|
|
15367
15549
|
thumbprint: string;
|
|
15368
|
-
revoked_at?: string | undefined;
|
|
15369
15550
|
tenant_id?: string | undefined;
|
|
15370
15551
|
connection?: string | undefined;
|
|
15371
|
-
current?: boolean | undefined;
|
|
15372
15552
|
next?: boolean | undefined;
|
|
15553
|
+
revoked_at?: string | undefined;
|
|
15554
|
+
current?: boolean | undefined;
|
|
15373
15555
|
previous?: boolean | undefined;
|
|
15374
15556
|
current_since?: string | undefined;
|
|
15375
15557
|
current_until?: string | undefined;
|
|
@@ -15404,11 +15586,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15404
15586
|
cert: string;
|
|
15405
15587
|
fingerprint: string;
|
|
15406
15588
|
thumbprint: string;
|
|
15407
|
-
revoked_at?: string | undefined;
|
|
15408
15589
|
tenant_id?: string | undefined;
|
|
15409
15590
|
connection?: string | undefined;
|
|
15410
|
-
current?: boolean | undefined;
|
|
15411
15591
|
next?: boolean | undefined;
|
|
15592
|
+
revoked_at?: string | undefined;
|
|
15593
|
+
current?: boolean | undefined;
|
|
15412
15594
|
previous?: boolean | undefined;
|
|
15413
15595
|
current_since?: string | undefined;
|
|
15414
15596
|
current_until?: string | undefined;
|
|
@@ -15442,11 +15624,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15442
15624
|
cert: string;
|
|
15443
15625
|
fingerprint: string;
|
|
15444
15626
|
thumbprint: string;
|
|
15445
|
-
revoked_at?: string | undefined;
|
|
15446
15627
|
tenant_id?: string | undefined;
|
|
15447
15628
|
connection?: string | undefined;
|
|
15448
|
-
current?: boolean | undefined;
|
|
15449
15629
|
next?: boolean | undefined;
|
|
15630
|
+
revoked_at?: string | undefined;
|
|
15631
|
+
current?: boolean | undefined;
|
|
15450
15632
|
previous?: boolean | undefined;
|
|
15451
15633
|
current_since?: string | undefined;
|
|
15452
15634
|
current_until?: string | undefined;
|
|
@@ -15482,11 +15664,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15482
15664
|
cert: string;
|
|
15483
15665
|
fingerprint: string;
|
|
15484
15666
|
thumbprint: string;
|
|
15485
|
-
revoked_at?: string | undefined;
|
|
15486
15667
|
tenant_id?: string | undefined;
|
|
15487
15668
|
connection?: string | undefined;
|
|
15488
|
-
current?: boolean | undefined;
|
|
15489
15669
|
next?: boolean | undefined;
|
|
15670
|
+
revoked_at?: string | undefined;
|
|
15671
|
+
current?: boolean | undefined;
|
|
15490
15672
|
previous?: boolean | undefined;
|
|
15491
15673
|
current_since?: string | undefined;
|
|
15492
15674
|
current_until?: string | undefined;
|
|
@@ -16335,9 +16517,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16335
16517
|
};
|
|
16336
16518
|
};
|
|
16337
16519
|
output: {
|
|
16338
|
-
created_at: string;
|
|
16339
16520
|
id: string;
|
|
16521
|
+
created_at: string;
|
|
16522
|
+
client_id: string;
|
|
16340
16523
|
user_id: string;
|
|
16524
|
+
rotating: boolean;
|
|
16341
16525
|
device: {
|
|
16342
16526
|
initial_user_agent: string;
|
|
16343
16527
|
initial_ip: string;
|
|
@@ -16346,8 +16530,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16346
16530
|
last_ip: string;
|
|
16347
16531
|
last_asn: string;
|
|
16348
16532
|
};
|
|
16349
|
-
client_id: string;
|
|
16350
|
-
rotating: boolean;
|
|
16351
16533
|
login_id: string;
|
|
16352
16534
|
resource_servers: {
|
|
16353
16535
|
audience: string;
|
|
@@ -16357,21 +16539,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16357
16539
|
expires_at?: string | undefined;
|
|
16358
16540
|
idle_expires_at?: string | undefined;
|
|
16359
16541
|
session_id?: string | undefined;
|
|
16542
|
+
organization?: string | undefined;
|
|
16360
16543
|
auth_connection?: string | undefined;
|
|
16361
16544
|
auth_strategy?: {
|
|
16362
16545
|
strategy: string;
|
|
16363
16546
|
strategy_type: string;
|
|
16364
16547
|
} | undefined;
|
|
16365
|
-
organization?: string | undefined;
|
|
16366
16548
|
last_exchanged_at?: string | undefined;
|
|
16367
16549
|
}[] | {
|
|
16368
|
-
start: number;
|
|
16369
|
-
limit: number;
|
|
16370
|
-
length: number;
|
|
16371
16550
|
tokens: {
|
|
16372
|
-
created_at: string;
|
|
16373
16551
|
id: string;
|
|
16552
|
+
created_at: string;
|
|
16553
|
+
client_id: string;
|
|
16374
16554
|
user_id: string;
|
|
16555
|
+
rotating: boolean;
|
|
16375
16556
|
device: {
|
|
16376
16557
|
initial_user_agent: string;
|
|
16377
16558
|
initial_ip: string;
|
|
@@ -16380,8 +16561,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16380
16561
|
last_ip: string;
|
|
16381
16562
|
last_asn: string;
|
|
16382
16563
|
};
|
|
16383
|
-
client_id: string;
|
|
16384
|
-
rotating: boolean;
|
|
16385
16564
|
login_id: string;
|
|
16386
16565
|
resource_servers: {
|
|
16387
16566
|
audience: string;
|
|
@@ -16391,21 +16570,25 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16391
16570
|
expires_at?: string | undefined;
|
|
16392
16571
|
idle_expires_at?: string | undefined;
|
|
16393
16572
|
session_id?: string | undefined;
|
|
16573
|
+
organization?: string | undefined;
|
|
16394
16574
|
auth_connection?: string | undefined;
|
|
16395
16575
|
auth_strategy?: {
|
|
16396
16576
|
strategy: string;
|
|
16397
16577
|
strategy_type: string;
|
|
16398
16578
|
} | undefined;
|
|
16399
|
-
organization?: string | undefined;
|
|
16400
16579
|
last_exchanged_at?: string | undefined;
|
|
16401
16580
|
}[];
|
|
16402
|
-
total?: number | undefined;
|
|
16403
16581
|
next?: string | undefined;
|
|
16404
16582
|
} | {
|
|
16583
|
+
start: number;
|
|
16584
|
+
limit: number;
|
|
16585
|
+
length: number;
|
|
16405
16586
|
tokens: {
|
|
16406
|
-
created_at: string;
|
|
16407
16587
|
id: string;
|
|
16588
|
+
created_at: string;
|
|
16589
|
+
client_id: string;
|
|
16408
16590
|
user_id: string;
|
|
16591
|
+
rotating: boolean;
|
|
16409
16592
|
device: {
|
|
16410
16593
|
initial_user_agent: string;
|
|
16411
16594
|
initial_ip: string;
|
|
@@ -16414,8 +16597,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16414
16597
|
last_ip: string;
|
|
16415
16598
|
last_asn: string;
|
|
16416
16599
|
};
|
|
16417
|
-
client_id: string;
|
|
16418
|
-
rotating: boolean;
|
|
16419
16600
|
login_id: string;
|
|
16420
16601
|
resource_servers: {
|
|
16421
16602
|
audience: string;
|
|
@@ -16425,14 +16606,15 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16425
16606
|
expires_at?: string | undefined;
|
|
16426
16607
|
idle_expires_at?: string | undefined;
|
|
16427
16608
|
session_id?: string | undefined;
|
|
16609
|
+
organization?: string | undefined;
|
|
16428
16610
|
auth_connection?: string | undefined;
|
|
16429
16611
|
auth_strategy?: {
|
|
16430
16612
|
strategy: string;
|
|
16431
16613
|
strategy_type: string;
|
|
16432
16614
|
} | undefined;
|
|
16433
|
-
organization?: string | undefined;
|
|
16434
16615
|
last_exchanged_at?: string | undefined;
|
|
16435
16616
|
}[];
|
|
16617
|
+
total?: number | undefined;
|
|
16436
16618
|
next?: string | undefined;
|
|
16437
16619
|
};
|
|
16438
16620
|
outputFormat: "json";
|
|
@@ -16481,7 +16663,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16481
16663
|
};
|
|
16482
16664
|
};
|
|
16483
16665
|
output: {
|
|
16484
|
-
type: "
|
|
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: "
|
|
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;
|
|
@@ -16839,7 +17021,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16839
17021
|
};
|
|
16840
17022
|
} & {
|
|
16841
17023
|
json: {
|
|
16842
|
-
template: "
|
|
17024
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16843
17025
|
body: string;
|
|
16844
17026
|
from: string;
|
|
16845
17027
|
subject: string;
|
|
@@ -16860,7 +17042,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16860
17042
|
};
|
|
16861
17043
|
} & {
|
|
16862
17044
|
json: {
|
|
16863
|
-
template: "
|
|
17045
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16864
17046
|
body: string;
|
|
16865
17047
|
from: string;
|
|
16866
17048
|
subject: string;
|
|
@@ -16872,7 +17054,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16872
17054
|
};
|
|
16873
17055
|
};
|
|
16874
17056
|
output: {
|
|
16875
|
-
template: "
|
|
17057
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16876
17058
|
body: string;
|
|
16877
17059
|
from: string;
|
|
16878
17060
|
subject: string;
|
|
@@ -16895,7 +17077,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16895
17077
|
};
|
|
16896
17078
|
};
|
|
16897
17079
|
output: {
|
|
16898
|
-
name: "
|
|
17080
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16899
17081
|
body: string;
|
|
16900
17082
|
subject: string;
|
|
16901
17083
|
}[];
|
|
@@ -16908,7 +17090,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16908
17090
|
$get: {
|
|
16909
17091
|
input: {
|
|
16910
17092
|
param: {
|
|
16911
|
-
templateName: "
|
|
17093
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16912
17094
|
};
|
|
16913
17095
|
} & {
|
|
16914
17096
|
header: {
|
|
@@ -16921,7 +17103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16921
17103
|
} | {
|
|
16922
17104
|
input: {
|
|
16923
17105
|
param: {
|
|
16924
|
-
templateName: "
|
|
17106
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16925
17107
|
};
|
|
16926
17108
|
} & {
|
|
16927
17109
|
header: {
|
|
@@ -16929,7 +17111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16929
17111
|
};
|
|
16930
17112
|
};
|
|
16931
17113
|
output: {
|
|
16932
|
-
template: "
|
|
17114
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16933
17115
|
body: string;
|
|
16934
17116
|
from: string;
|
|
16935
17117
|
subject: string;
|
|
@@ -16948,7 +17130,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16948
17130
|
$put: {
|
|
16949
17131
|
input: {
|
|
16950
17132
|
param: {
|
|
16951
|
-
templateName: "
|
|
17133
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16952
17134
|
};
|
|
16953
17135
|
} & {
|
|
16954
17136
|
header: {
|
|
@@ -16956,7 +17138,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16956
17138
|
};
|
|
16957
17139
|
} & {
|
|
16958
17140
|
json: {
|
|
16959
|
-
template: "
|
|
17141
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16960
17142
|
body: string;
|
|
16961
17143
|
subject: string;
|
|
16962
17144
|
syntax?: "liquid" | undefined;
|
|
@@ -16968,7 +17150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16968
17150
|
};
|
|
16969
17151
|
};
|
|
16970
17152
|
output: {
|
|
16971
|
-
template: "
|
|
17153
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16972
17154
|
body: string;
|
|
16973
17155
|
from: string;
|
|
16974
17156
|
subject: string;
|
|
@@ -16987,7 +17169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16987
17169
|
$patch: {
|
|
16988
17170
|
input: {
|
|
16989
17171
|
param: {
|
|
16990
|
-
templateName: "
|
|
17172
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16991
17173
|
};
|
|
16992
17174
|
} & {
|
|
16993
17175
|
header: {
|
|
@@ -16995,7 +17177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16995
17177
|
};
|
|
16996
17178
|
} & {
|
|
16997
17179
|
json: {
|
|
16998
|
-
template?: "
|
|
17180
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16999
17181
|
body?: string | undefined;
|
|
17000
17182
|
from?: string | undefined;
|
|
17001
17183
|
subject?: string | undefined;
|
|
@@ -17012,7 +17194,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17012
17194
|
} | {
|
|
17013
17195
|
input: {
|
|
17014
17196
|
param: {
|
|
17015
|
-
templateName: "
|
|
17197
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17016
17198
|
};
|
|
17017
17199
|
} & {
|
|
17018
17200
|
header: {
|
|
@@ -17020,7 +17202,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17020
17202
|
};
|
|
17021
17203
|
} & {
|
|
17022
17204
|
json: {
|
|
17023
|
-
template?: "
|
|
17205
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
17024
17206
|
body?: string | undefined;
|
|
17025
17207
|
from?: string | undefined;
|
|
17026
17208
|
subject?: string | undefined;
|
|
@@ -17032,7 +17214,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17032
17214
|
};
|
|
17033
17215
|
};
|
|
17034
17216
|
output: {
|
|
17035
|
-
template: "
|
|
17217
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17036
17218
|
body: string;
|
|
17037
17219
|
from: string;
|
|
17038
17220
|
subject: string;
|
|
@@ -17051,7 +17233,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17051
17233
|
$delete: {
|
|
17052
17234
|
input: {
|
|
17053
17235
|
param: {
|
|
17054
|
-
templateName: "
|
|
17236
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17055
17237
|
};
|
|
17056
17238
|
} & {
|
|
17057
17239
|
header: {
|
|
@@ -17064,7 +17246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17064
17246
|
} | {
|
|
17065
17247
|
input: {
|
|
17066
17248
|
param: {
|
|
17067
|
-
templateName: "
|
|
17249
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17068
17250
|
};
|
|
17069
17251
|
} & {
|
|
17070
17252
|
header: {
|
|
@@ -17081,7 +17263,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17081
17263
|
$post: {
|
|
17082
17264
|
input: {
|
|
17083
17265
|
param: {
|
|
17084
|
-
templateName: "
|
|
17266
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17085
17267
|
};
|
|
17086
17268
|
} & {
|
|
17087
17269
|
header: {
|
|
@@ -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?: "
|
|
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: "
|
|
17892
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
17711
17893
|
logo_url: string;
|
|
17712
17894
|
social_buttons_layout: "bottom" | "top";
|
|
17713
17895
|
};
|
|
@@ -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?: "
|
|
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: "
|
|
17982
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
17801
17983
|
logo_url: string;
|
|
17802
17984
|
social_buttons_layout: "bottom" | "top";
|
|
17803
17985
|
};
|
|
@@ -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?: "
|
|
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: "
|
|
18061
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
17880
18062
|
logo_url: string;
|
|
17881
18063
|
social_buttons_layout: "bottom" | "top";
|
|
17882
18064
|
};
|
|
@@ -18033,7 +18215,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18033
18215
|
} & {
|
|
18034
18216
|
json: {
|
|
18035
18217
|
body?: string | undefined;
|
|
18036
|
-
screen?: "password" | "
|
|
18218
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
18037
18219
|
branding?: {
|
|
18038
18220
|
colors?: {
|
|
18039
18221
|
primary: 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?: "
|
|
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: "
|
|
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";
|
|
@@ -19739,17 +19912,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19739
19912
|
email: string;
|
|
19740
19913
|
send: "code" | "link";
|
|
19741
19914
|
authParams: {
|
|
19915
|
+
audience?: string | undefined;
|
|
19742
19916
|
username?: string | undefined;
|
|
19917
|
+
prompt?: string | undefined;
|
|
19743
19918
|
scope?: string | undefined;
|
|
19744
|
-
|
|
19745
|
-
state?: string | undefined;
|
|
19746
|
-
act_as?: string | undefined;
|
|
19919
|
+
organization?: string | undefined;
|
|
19747
19920
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19748
19921
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19922
|
+
state?: string | undefined;
|
|
19749
19923
|
redirect_uri?: string | undefined;
|
|
19750
|
-
|
|
19924
|
+
act_as?: string | undefined;
|
|
19751
19925
|
nonce?: string | undefined;
|
|
19752
|
-
prompt?: string | undefined;
|
|
19753
19926
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19754
19927
|
code_challenge?: string | undefined;
|
|
19755
19928
|
ui_locales?: string | undefined;
|
|
@@ -19775,17 +19948,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19775
19948
|
phone_number: string;
|
|
19776
19949
|
send: "code" | "link";
|
|
19777
19950
|
authParams: {
|
|
19951
|
+
audience?: string | undefined;
|
|
19778
19952
|
username?: string | undefined;
|
|
19953
|
+
prompt?: string | undefined;
|
|
19779
19954
|
scope?: string | undefined;
|
|
19780
|
-
|
|
19781
|
-
state?: string | undefined;
|
|
19782
|
-
act_as?: string | undefined;
|
|
19955
|
+
organization?: string | undefined;
|
|
19783
19956
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19784
19957
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19958
|
+
state?: string | undefined;
|
|
19785
19959
|
redirect_uri?: string | undefined;
|
|
19786
|
-
|
|
19960
|
+
act_as?: string | undefined;
|
|
19787
19961
|
nonce?: string | undefined;
|
|
19788
|
-
prompt?: string | undefined;
|
|
19789
19962
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19790
19963
|
code_challenge?: string | undefined;
|
|
19791
19964
|
ui_locales?: string | undefined;
|
|
@@ -20017,7 +20190,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20017
20190
|
client_id: string;
|
|
20018
20191
|
username: string;
|
|
20019
20192
|
otp: string;
|
|
20020
|
-
realm: "
|
|
20193
|
+
realm: "sms" | "email";
|
|
20021
20194
|
scope?: string | undefined;
|
|
20022
20195
|
audience?: string | undefined;
|
|
20023
20196
|
} | {
|
|
@@ -20066,7 +20239,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20066
20239
|
client_id: string;
|
|
20067
20240
|
username: string;
|
|
20068
20241
|
otp: string;
|
|
20069
|
-
realm: "
|
|
20242
|
+
realm: "sms" | "email";
|
|
20070
20243
|
scope?: string | undefined;
|
|
20071
20244
|
audience?: string | undefined;
|
|
20072
20245
|
} | {
|
|
@@ -20120,7 +20293,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20120
20293
|
client_id: string;
|
|
20121
20294
|
username: string;
|
|
20122
20295
|
otp: string;
|
|
20123
|
-
realm: "
|
|
20296
|
+
realm: "sms" | "email";
|
|
20124
20297
|
scope?: string | undefined;
|
|
20125
20298
|
audience?: string | undefined;
|
|
20126
20299
|
} | {
|
|
@@ -20169,7 +20342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20169
20342
|
client_id: string;
|
|
20170
20343
|
username: string;
|
|
20171
20344
|
otp: string;
|
|
20172
|
-
realm: "
|
|
20345
|
+
realm: "sms" | "email";
|
|
20173
20346
|
scope?: string | undefined;
|
|
20174
20347
|
audience?: string | undefined;
|
|
20175
20348
|
} | {
|
|
@@ -20231,7 +20404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20231
20404
|
client_id: string;
|
|
20232
20405
|
username: string;
|
|
20233
20406
|
otp: string;
|
|
20234
|
-
realm: "
|
|
20407
|
+
realm: "sms" | "email";
|
|
20235
20408
|
scope?: string | undefined;
|
|
20236
20409
|
audience?: string | undefined;
|
|
20237
20410
|
} | {
|
|
@@ -20280,7 +20453,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20280
20453
|
client_id: string;
|
|
20281
20454
|
username: string;
|
|
20282
20455
|
otp: string;
|
|
20283
|
-
realm: "
|
|
20456
|
+
realm: "sms" | "email";
|
|
20284
20457
|
scope?: string | undefined;
|
|
20285
20458
|
audience?: string | undefined;
|
|
20286
20459
|
} | {
|
|
@@ -20337,7 +20510,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20337
20510
|
client_id: string;
|
|
20338
20511
|
username: string;
|
|
20339
20512
|
otp: string;
|
|
20340
|
-
realm: "
|
|
20513
|
+
realm: "sms" | "email";
|
|
20341
20514
|
scope?: string | undefined;
|
|
20342
20515
|
audience?: string | undefined;
|
|
20343
20516
|
} | {
|
|
@@ -20386,7 +20559,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20386
20559
|
client_id: string;
|
|
20387
20560
|
username: string;
|
|
20388
20561
|
otp: string;
|
|
20389
|
-
realm: "
|
|
20562
|
+
realm: "sms" | "email";
|
|
20390
20563
|
scope?: string | undefined;
|
|
20391
20564
|
audience?: string | undefined;
|
|
20392
20565
|
} | {
|
|
@@ -20443,7 +20616,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20443
20616
|
client_id: string;
|
|
20444
20617
|
username: string;
|
|
20445
20618
|
otp: string;
|
|
20446
|
-
realm: "
|
|
20619
|
+
realm: "sms" | "email";
|
|
20447
20620
|
scope?: string | undefined;
|
|
20448
20621
|
audience?: string | undefined;
|
|
20449
20622
|
} | {
|
|
@@ -20492,7 +20665,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20492
20665
|
client_id: string;
|
|
20493
20666
|
username: string;
|
|
20494
20667
|
otp: string;
|
|
20495
|
-
realm: "
|
|
20668
|
+
realm: "sms" | "email";
|
|
20496
20669
|
scope?: string | undefined;
|
|
20497
20670
|
audience?: string | undefined;
|
|
20498
20671
|
} | {
|
|
@@ -21718,7 +21891,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21718
21891
|
$get: {
|
|
21719
21892
|
input: {
|
|
21720
21893
|
param: {
|
|
21721
|
-
screen: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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 };
|