authhero 9.9.1 → 9.11.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 +145 -145
- package/dist/authhero.d.ts +585 -190
- package/dist/authhero.mjs +15529 -14313
- 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/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/dcr/metadata-mapping.d.ts +1 -1
- 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/reserved-claims.d.ts +64 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +8 -0
- package/dist/types/helpers/run-retention.d.ts +5 -0
- package/dist/types/helpers/users-import/map.d.ts +128 -0
- package/dist/types/helpers/users-import/process.d.ts +95 -0
- package/dist/types/helpers/users-import-cleanup.d.ts +26 -0
- package/dist/types/index.d.ts +321 -185
- package/dist/types/routes/auth-api/index.d.ts +44 -44
- 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/auth-api/token.d.ts +24 -24
- 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 +1 -1
- package/dist/types/routes/management-api/client-grants.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/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +22 -2
- 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 +216 -86
- package/dist/types/routes/management-api/jobs.d.ts +133 -0
- package/dist/types/routes/management-api/keys.d.ts +16 -16
- 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 +2 -2
- 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/tenant-operations.d.ts +33 -9
- package/dist/types/routes/management-api/tenants.d.ts +11 -11
- package/dist/types/routes/management-api/users.d.ts +24 -24
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- 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/state-machines/login-session.d.ts +1 -1
- package/dist/types/types/AuthHeroConfig.d.ts +40 -0
- package/dist/types/types/Bindings.d.ts +14 -0
- package/dist/types/types/OutboxMetrics.d.ts +47 -0
- package/dist/types/types/auth0/UserImport.d.ts +317 -0
- package/dist/types/types/index.d.ts +1 -0
- package/package.json +6 -6
package/dist/authhero.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as hono_utils_types from 'hono/utils/types';
|
|
2
1
|
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';
|
|
2
|
+
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
3
|
export * from '@authhero/adapter-interfaces';
|
|
5
|
-
import * as hono_types from 'hono/types';
|
|
6
4
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
5
|
+
import * as hono_types from 'hono/types';
|
|
6
|
+
import * as hono_utils_types from 'hono/utils/types';
|
|
7
7
|
import { z, OpenAPIHono } from '@hono/zod-openapi';
|
|
8
8
|
import { CountryCode } from 'libphonenumber-js';
|
|
9
9
|
import { SamlSigner } from '@authhero/saml/core';
|
|
@@ -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.
|
|
@@ -1829,6 +1903,19 @@ interface AuthHeroConfig {
|
|
|
1829
1903
|
* satisfy this shape.
|
|
1830
1904
|
*/
|
|
1831
1905
|
tenantOperationExecutor?: TenantOperationExecutorBinding;
|
|
1906
|
+
/**
|
|
1907
|
+
* Maximum accepted size of a bulk user-import file, in bytes
|
|
1908
|
+
* (`POST /api/v2/jobs/users-imports`). Defaults to Auth0's documented
|
|
1909
|
+
* 500 KB, so any Auth0-shaped client sees identical behaviour. Raise it
|
|
1910
|
+
* only for a migration you control end to end — a larger file means more
|
|
1911
|
+
* rows staged inside a single request.
|
|
1912
|
+
*/
|
|
1913
|
+
usersImportMaxBytes?: number;
|
|
1914
|
+
/**
|
|
1915
|
+
* Maximum bulk user-import jobs a single tenant may have in flight.
|
|
1916
|
+
* Defaults to Auth0's limit of 2; further submissions get a 429.
|
|
1917
|
+
*/
|
|
1918
|
+
usersImportMaxConcurrentJobs?: number;
|
|
1832
1919
|
/**
|
|
1833
1920
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
1834
1921
|
* This is only configurable in code, not stored in the database.
|
|
@@ -2096,6 +2183,8 @@ type Bindings = {
|
|
|
2096
2183
|
webhookInvoker?: WebhookInvoker;
|
|
2097
2184
|
tenantUpgrade?: (tenantId: string) => Promise<void>;
|
|
2098
2185
|
tenantOperationExecutor?: TenantOperationExecutorBinding;
|
|
2186
|
+
usersImportMaxBytes?: number;
|
|
2187
|
+
usersImportMaxConcurrentJobs?: number;
|
|
2099
2188
|
outbox?: OutboxConfig;
|
|
2100
2189
|
userLinkingMode?: UserLinkingModeOption;
|
|
2101
2190
|
usernamePasswordProvider?: UsernamePasswordProviderResolver;
|
|
@@ -2106,6 +2195,18 @@ type Bindings = {
|
|
|
2106
2195
|
* leave unset (or false) in production so SSRF protection stays on.
|
|
2107
2196
|
*/
|
|
2108
2197
|
ALLOW_PRIVATE_OUTBOUND_FETCH?: boolean;
|
|
2198
|
+
/**
|
|
2199
|
+
* Clock-skew leeway in seconds applied to a client assertion's `exp`/`nbf`
|
|
2200
|
+
* at `POST /oauth/token`. Defaults to 30 when unset.
|
|
2201
|
+
*/
|
|
2202
|
+
CLIENT_ASSERTION_LEEWAY_SECONDS?: number;
|
|
2203
|
+
/**
|
|
2204
|
+
* Upper bound, in seconds, on a client assertion's lifetime (`exp - iat`,
|
|
2205
|
+
* and the absolute `exp` measured from now). RFC 7523 sets no limit, so
|
|
2206
|
+
* without one a client can mint an assertion valid for a year. Defaults to
|
|
2207
|
+
* 300 when unset.
|
|
2208
|
+
*/
|
|
2209
|
+
CLIENT_ASSERTION_MAX_LIFETIME_SECONDS?: number;
|
|
2109
2210
|
/**
|
|
2110
2211
|
* Controls where Server-Timing instrumentation goes. The data/cache adapters
|
|
2111
2212
|
* and the webhook hook always measure per-operation latency; this decides the
|
|
@@ -2719,6 +2820,7 @@ declare function drainOutbox(outbox: OutboxAdapter, destinations: EventDestinati
|
|
|
2719
2820
|
batchSize?: number;
|
|
2720
2821
|
maxRetries?: number;
|
|
2721
2822
|
retentionDays?: number;
|
|
2823
|
+
metrics?: OutboxMetricsSink;
|
|
2722
2824
|
}): Promise<void>;
|
|
2723
2825
|
|
|
2724
2826
|
interface OutboxCleanupParams {
|
|
@@ -2793,6 +2895,89 @@ interface ActionExecutionsCleanupParams {
|
|
|
2793
2895
|
*/
|
|
2794
2896
|
declare function cleanupActionExecutions(actionExecutions: ActionExecutionsAdapter, params?: ActionExecutionsCleanupParams): Promise<number | null>;
|
|
2795
2897
|
|
|
2898
|
+
interface UsersImportCleanupParams {
|
|
2899
|
+
/** Hours to keep finished import jobs. Defaults to Auth0's 24. */
|
|
2900
|
+
retentionHours?: number;
|
|
2901
|
+
/** Maximum jobs to delete per sweep. */
|
|
2902
|
+
limit?: number;
|
|
2903
|
+
}
|
|
2904
|
+
/**
|
|
2905
|
+
* Delete finished bulk-import jobs (and, by cascade, their staged rows)
|
|
2906
|
+
* older than the retention window.
|
|
2907
|
+
*
|
|
2908
|
+
* Staged rows hold the submitted user entries, so this is a privacy control
|
|
2909
|
+
* as much as a housekeeping one — though credential material is redacted
|
|
2910
|
+
* before staging rather than relying on this sweep.
|
|
2911
|
+
*
|
|
2912
|
+
* Only terminal jobs are removed: an unfinished import may legitimately be
|
|
2913
|
+
* older than the window (a very large file, or one that has been waiting on
|
|
2914
|
+
* a resume sweep), and deleting it would strand the users it had not yet
|
|
2915
|
+
* created. Returns the number of jobs deleted, or `null` when the
|
|
2916
|
+
* deployment has no tenant-operations adapter.
|
|
2917
|
+
*/
|
|
2918
|
+
declare function cleanupUsersImports(data: DataAdapters, params?: UsersImportCleanupParams): Promise<number | null>;
|
|
2919
|
+
|
|
2920
|
+
interface AdvanceOptions {
|
|
2921
|
+
/** Stop after this many rows, so a driver can bound its own runtime. */
|
|
2922
|
+
maxRows?: number;
|
|
2923
|
+
/** Rows per chunk; defaults to {@link DEFAULT_CHUNK_SIZE}. */
|
|
2924
|
+
chunkSize?: number;
|
|
2925
|
+
/** Lease duration for this driver's claim. */
|
|
2926
|
+
leaseMs?: number;
|
|
2927
|
+
/**
|
|
2928
|
+
* Wall-clock deadline (epoch ms). The driver stops cleanly at the next
|
|
2929
|
+
* chunk boundary once passed, leaving the remainder `pending` for the
|
|
2930
|
+
* next driver — never mid-chunk, so no work is half-committed.
|
|
2931
|
+
*/
|
|
2932
|
+
deadline?: number;
|
|
2933
|
+
/** Identifies the lease holder; defaults to a random id. */
|
|
2934
|
+
workerId?: string;
|
|
2935
|
+
}
|
|
2936
|
+
interface AdvanceResult {
|
|
2937
|
+
/** True when no `pending` rows remain and the operation was finalized. */
|
|
2938
|
+
done: boolean;
|
|
2939
|
+
/** Rows this call committed an outcome for. */
|
|
2940
|
+
processed: number;
|
|
2941
|
+
/** Rows still `pending` after this call. */
|
|
2942
|
+
remaining: number;
|
|
2943
|
+
/** False when another live driver holds the lease. */
|
|
2944
|
+
claimed: boolean;
|
|
2945
|
+
}
|
|
2946
|
+
/**
|
|
2947
|
+
* Advance a `users_import` operation by processing staged rows until it is
|
|
2948
|
+
* finished or the caller's budget runs out.
|
|
2949
|
+
*
|
|
2950
|
+
* This is the whole execution model. Every engine — an inline kick from the
|
|
2951
|
+
* accepting request, a cron sweep, a Cloudflare Workflow step — calls this
|
|
2952
|
+
* same function; they differ only in how much budget they pass and how often
|
|
2953
|
+
* they call it. Durability comes from the database, not from the caller:
|
|
2954
|
+
* outcomes are committed chunk by chunk, so a driver that dies loses at most
|
|
2955
|
+
* the chunk in flight, and those rows stay `pending` for whoever runs next.
|
|
2956
|
+
*/
|
|
2957
|
+
declare function advanceUsersImport(data: DataAdapters, operationId: string, options?: AdvanceOptions): Promise<AdvanceResult>;
|
|
2958
|
+
interface ResumeUsersImportsOptions extends Omit<AdvanceOptions, "workerId"> {
|
|
2959
|
+
/** Maximum operations to advance in one sweep. */
|
|
2960
|
+
maxOperations?: number;
|
|
2961
|
+
}
|
|
2962
|
+
interface ResumeUsersImportsResult {
|
|
2963
|
+
scanned: number;
|
|
2964
|
+
advanced: number;
|
|
2965
|
+
completed: number;
|
|
2966
|
+
errors: number;
|
|
2967
|
+
}
|
|
2968
|
+
/**
|
|
2969
|
+
* Resume every unfinished bulk import that no live driver is working on.
|
|
2970
|
+
*
|
|
2971
|
+
* This is what makes the feature durable regardless of deployment. Wire it
|
|
2972
|
+
* to a scheduled handler alongside `runRetention`: whatever started an
|
|
2973
|
+
* import — a request that timed out, a worker that was evicted, a process
|
|
2974
|
+
* that was redeployed mid-run — the sweep picks the job back up and carries
|
|
2975
|
+
* it to completion from the last committed chunk.
|
|
2976
|
+
*
|
|
2977
|
+
* One operation's failure never aborts the sweep.
|
|
2978
|
+
*/
|
|
2979
|
+
declare function resumeUsersImports(data: DataAdapters, options?: ResumeUsersImportsOptions): Promise<ResumeUsersImportsResult>;
|
|
2980
|
+
|
|
2796
2981
|
/**
|
|
2797
2982
|
* Mints a Bearer token for a given tenant. `scope` is forwarded so a custom
|
|
2798
2983
|
* `webhookInvoker` can request a non-default scope for its outbound call.
|
|
@@ -2892,6 +3077,12 @@ interface CreateDefaultDestinationsConfig {
|
|
|
2892
3077
|
* failed per-request delivery would be silently skipped on retry.
|
|
2893
3078
|
*/
|
|
2894
3079
|
codeExecutor?: CodeExecutor;
|
|
3080
|
+
/**
|
|
3081
|
+
* Same shape as `init({ outbox: { pipeline } })`. When set, cron-drained
|
|
3082
|
+
* events are also archived to the Cloudflare Pipelines stream, matching the
|
|
3083
|
+
* per-request destination list. Omit to leave the archive out entirely.
|
|
3084
|
+
*/
|
|
3085
|
+
pipeline?: OutboxPipelineConfig;
|
|
2895
3086
|
}
|
|
2896
3087
|
/**
|
|
2897
3088
|
* Build the same array of outbox destinations that authhero's per-request
|
|
@@ -3016,6 +3207,13 @@ interface RunOutboxRelayConfig {
|
|
|
3016
3207
|
* silently skipped.
|
|
3017
3208
|
*/
|
|
3018
3209
|
codeExecutor?: CodeExecutor;
|
|
3210
|
+
/**
|
|
3211
|
+
* Optional metrics sink — same shape as `init({ outbox: { metrics } })`.
|
|
3212
|
+
* Receives `outbox_events_processed_total`,
|
|
3213
|
+
* `outbox_events_dead_lettered_total` and `outbox_retry_delay_seconds` for
|
|
3214
|
+
* the events this cron drain handles, tagged `source: "cron"`.
|
|
3215
|
+
*/
|
|
3216
|
+
metrics?: OutboxMetricsSink;
|
|
3019
3217
|
}
|
|
3020
3218
|
/**
|
|
3021
3219
|
* One-call outbox relay for cron / scheduled handlers.
|
|
@@ -3058,6 +3256,11 @@ interface RunRetentionConfig {
|
|
|
3058
3256
|
outboxRetentionDays?: number;
|
|
3059
3257
|
/** Days of action execution history to keep. Default 30. */
|
|
3060
3258
|
actionExecutionsRetentionDays?: number;
|
|
3259
|
+
/**
|
|
3260
|
+
* Hours to keep finished bulk user-import jobs and their staged rows.
|
|
3261
|
+
* Default 24, matching Auth0's job-data retention.
|
|
3262
|
+
*/
|
|
3263
|
+
usersImportRetentionHours?: number;
|
|
3061
3264
|
/**
|
|
3062
3265
|
* Scope the session sweep to a single tenant. Codes and outbox events are
|
|
3063
3266
|
* always swept globally — an expired row is dead regardless of who owns it.
|
|
@@ -3278,6 +3481,68 @@ declare class ControlPlaneSyncDestination implements EventDestination {
|
|
|
3278
3481
|
deliver(events: SyncEvent[]): Promise<void>;
|
|
3279
3482
|
}
|
|
3280
3483
|
|
|
3484
|
+
/**
|
|
3485
|
+
* One row of the archive table. The promoted columns are the query and
|
|
3486
|
+
* erasure keys (`actor_id` / `target_id`); `event` carries the untouched
|
|
3487
|
+
* `AuditEvent` so nothing is lost and the promoted set can grow later
|
|
3488
|
+
* without a backfill.
|
|
3489
|
+
*
|
|
3490
|
+
* `actor_id` is emitted as `null` rather than omitted when the actor is
|
|
3491
|
+
* anonymous, so every record has the same key set — Pipelines stream
|
|
3492
|
+
* schemas are fixed once created.
|
|
3493
|
+
*/
|
|
3494
|
+
interface PipelineRecord {
|
|
3495
|
+
id: string;
|
|
3496
|
+
timestamp: string;
|
|
3497
|
+
tenant_id: string;
|
|
3498
|
+
event_type: string;
|
|
3499
|
+
log_type: string;
|
|
3500
|
+
category: AuditCategory;
|
|
3501
|
+
actor_id: string | null;
|
|
3502
|
+
target_type: string;
|
|
3503
|
+
target_id: string;
|
|
3504
|
+
event: AuditEvent;
|
|
3505
|
+
}
|
|
3506
|
+
interface PipelineDestinationOptions {
|
|
3507
|
+
/** Stream HTTP ingest endpoint, e.g. `https://<stream-id>.ingest.cloudflare.com`. */
|
|
3508
|
+
endpoint: string;
|
|
3509
|
+
/** Stream ingest token, sent as `Authorization: Bearer`. */
|
|
3510
|
+
token: string;
|
|
3511
|
+
/** Per-request timeout (default: 10s). */
|
|
3512
|
+
timeoutMs?: number;
|
|
3513
|
+
/** Override for tests. */
|
|
3514
|
+
fetchImpl?: typeof fetch;
|
|
3515
|
+
}
|
|
3516
|
+
/**
|
|
3517
|
+
* Archives audit events to a Cloudflare Pipelines stream, which lands them in
|
|
3518
|
+
* R2 as an Iceberg table. See `apps/docs/architecture/audit-archive.md`.
|
|
3519
|
+
*
|
|
3520
|
+
* HTTP ingest is used rather than the Worker binding so the destination works
|
|
3521
|
+
* in every deployment (Node included) and stays symmetric with the
|
|
3522
|
+
* log-streams destination.
|
|
3523
|
+
*
|
|
3524
|
+
* Duplicates are expected and by design: the relay retries per event, not per
|
|
3525
|
+
* destination, so a failure in a later destination re-delivers this one, and
|
|
3526
|
+
* the Iceberg sink is append-only. Consumers dedup on `id` at query time.
|
|
3527
|
+
*/
|
|
3528
|
+
declare class PipelineDestination implements EventDestination {
|
|
3529
|
+
name: string;
|
|
3530
|
+
private endpoint;
|
|
3531
|
+
private token;
|
|
3532
|
+
private timeoutMs;
|
|
3533
|
+
private fetchImpl;
|
|
3534
|
+
constructor(options: PipelineDestinationOptions);
|
|
3535
|
+
/**
|
|
3536
|
+
* Archives the audit trail, not the delivery plumbing: `hook.*` and
|
|
3537
|
+
* `controlplane.sync.*` are instructions to other destinations rather than
|
|
3538
|
+
* records of something a tenant did. Same filter as the log-streams
|
|
3539
|
+
* destination.
|
|
3540
|
+
*/
|
|
3541
|
+
accepts(event: AuditEvent): boolean;
|
|
3542
|
+
transform(event: AuditEvent): PipelineRecord;
|
|
3543
|
+
deliver(records: PipelineRecord[]): Promise<void>;
|
|
3544
|
+
}
|
|
3545
|
+
|
|
3281
3546
|
interface CreateApplySyncEventsOptions {
|
|
3282
3547
|
proxyRoutes: ProxyRoutesAdapter;
|
|
3283
3548
|
}
|
|
@@ -4271,12 +4536,131 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4271
4536
|
Bindings: Bindings;
|
|
4272
4537
|
Variables: Variables;
|
|
4273
4538
|
}, hono_types.MergeSchemaPath<{
|
|
4539
|
+
"/users-imports": {
|
|
4540
|
+
$post: {
|
|
4541
|
+
input: {
|
|
4542
|
+
header: {
|
|
4543
|
+
"tenant-id"?: string | undefined;
|
|
4544
|
+
};
|
|
4545
|
+
} & {
|
|
4546
|
+
form: {
|
|
4547
|
+
users: any;
|
|
4548
|
+
connection_id: string;
|
|
4549
|
+
upsert?: string | boolean | undefined;
|
|
4550
|
+
external_id?: string | undefined;
|
|
4551
|
+
send_completion_email?: string | boolean | undefined;
|
|
4552
|
+
};
|
|
4553
|
+
};
|
|
4554
|
+
output: {
|
|
4555
|
+
id: string;
|
|
4556
|
+
type: string;
|
|
4557
|
+
status: "pending" | "failed" | "completed";
|
|
4558
|
+
created_at?: string | undefined;
|
|
4559
|
+
connection_id?: string | undefined;
|
|
4560
|
+
external_id?: string | undefined;
|
|
4561
|
+
percentage_done?: number | undefined;
|
|
4562
|
+
time_left_seconds?: number | undefined;
|
|
4563
|
+
status_details?: string | undefined;
|
|
4564
|
+
summary?: {
|
|
4565
|
+
failed: number;
|
|
4566
|
+
updated: number;
|
|
4567
|
+
inserted: number;
|
|
4568
|
+
total: number;
|
|
4569
|
+
} | undefined;
|
|
4570
|
+
};
|
|
4571
|
+
outputFormat: "json";
|
|
4572
|
+
status: 202;
|
|
4573
|
+
};
|
|
4574
|
+
};
|
|
4575
|
+
} & {
|
|
4576
|
+
"/:id": {
|
|
4577
|
+
$get: {
|
|
4578
|
+
input: {
|
|
4579
|
+
param: {
|
|
4580
|
+
id: string;
|
|
4581
|
+
};
|
|
4582
|
+
} & {
|
|
4583
|
+
header: {
|
|
4584
|
+
"tenant-id"?: string | undefined;
|
|
4585
|
+
};
|
|
4586
|
+
};
|
|
4587
|
+
output: {
|
|
4588
|
+
id: string;
|
|
4589
|
+
type: string;
|
|
4590
|
+
status: "pending" | "failed" | "completed";
|
|
4591
|
+
created_at?: string | undefined;
|
|
4592
|
+
connection_id?: string | undefined;
|
|
4593
|
+
external_id?: string | undefined;
|
|
4594
|
+
percentage_done?: number | undefined;
|
|
4595
|
+
time_left_seconds?: number | undefined;
|
|
4596
|
+
status_details?: string | undefined;
|
|
4597
|
+
summary?: {
|
|
4598
|
+
failed: number;
|
|
4599
|
+
updated: number;
|
|
4600
|
+
inserted: number;
|
|
4601
|
+
total: number;
|
|
4602
|
+
} | undefined;
|
|
4603
|
+
};
|
|
4604
|
+
outputFormat: "json";
|
|
4605
|
+
status: 200;
|
|
4606
|
+
};
|
|
4607
|
+
};
|
|
4608
|
+
} & {
|
|
4609
|
+
"/:id/errors": {
|
|
4610
|
+
$get: {
|
|
4611
|
+
input: {
|
|
4612
|
+
param: {
|
|
4613
|
+
id: string;
|
|
4614
|
+
};
|
|
4615
|
+
} & {
|
|
4616
|
+
query: {
|
|
4617
|
+
page?: unknown;
|
|
4618
|
+
per_page?: unknown;
|
|
4619
|
+
};
|
|
4620
|
+
} & {
|
|
4621
|
+
header: {
|
|
4622
|
+
"tenant-id"?: string | undefined;
|
|
4623
|
+
};
|
|
4624
|
+
};
|
|
4625
|
+
output: {};
|
|
4626
|
+
outputFormat: string;
|
|
4627
|
+
status: 204;
|
|
4628
|
+
} | {
|
|
4629
|
+
input: {
|
|
4630
|
+
param: {
|
|
4631
|
+
id: string;
|
|
4632
|
+
};
|
|
4633
|
+
} & {
|
|
4634
|
+
query: {
|
|
4635
|
+
page?: unknown;
|
|
4636
|
+
per_page?: unknown;
|
|
4637
|
+
};
|
|
4638
|
+
} & {
|
|
4639
|
+
header: {
|
|
4640
|
+
"tenant-id"?: string | undefined;
|
|
4641
|
+
};
|
|
4642
|
+
};
|
|
4643
|
+
output: {
|
|
4644
|
+
user: {
|
|
4645
|
+
[x: string]: hono_utils_types.JSONValue;
|
|
4646
|
+
};
|
|
4647
|
+
errors: {
|
|
4648
|
+
code: string;
|
|
4649
|
+
message: string;
|
|
4650
|
+
path?: string | undefined;
|
|
4651
|
+
}[];
|
|
4652
|
+
}[];
|
|
4653
|
+
outputFormat: "json";
|
|
4654
|
+
status: 200;
|
|
4655
|
+
};
|
|
4656
|
+
};
|
|
4657
|
+
}, "/jobs"> & hono_types.MergeSchemaPath<{
|
|
4274
4658
|
"/export": {
|
|
4275
4659
|
$get: {
|
|
4276
4660
|
input: {
|
|
4277
4661
|
query: {
|
|
4278
|
-
include_password_hashes?: "
|
|
4279
|
-
gzip?: "
|
|
4662
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4663
|
+
gzip?: "true" | "false" | undefined;
|
|
4280
4664
|
};
|
|
4281
4665
|
} & {
|
|
4282
4666
|
header: {
|
|
@@ -4289,8 +4673,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4289
4673
|
} | {
|
|
4290
4674
|
input: {
|
|
4291
4675
|
query: {
|
|
4292
|
-
include_password_hashes?: "
|
|
4293
|
-
gzip?: "
|
|
4676
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4677
|
+
gzip?: "true" | "false" | undefined;
|
|
4294
4678
|
};
|
|
4295
4679
|
} & {
|
|
4296
4680
|
header: {
|
|
@@ -4309,7 +4693,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4309
4693
|
$post: {
|
|
4310
4694
|
input: {
|
|
4311
4695
|
query: {
|
|
4312
|
-
include_password_hashes?: "
|
|
4696
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4313
4697
|
};
|
|
4314
4698
|
} & {
|
|
4315
4699
|
header: {
|
|
@@ -4363,7 +4747,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4363
4747
|
};
|
|
4364
4748
|
} & {
|
|
4365
4749
|
json: {
|
|
4366
|
-
type: "email" | "
|
|
4750
|
+
type: "email" | "totp" | "phone" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform";
|
|
4367
4751
|
phone_number?: string | undefined;
|
|
4368
4752
|
totp_secret?: string | undefined;
|
|
4369
4753
|
credential_id?: string | undefined;
|
|
@@ -4503,7 +4887,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4503
4887
|
};
|
|
4504
4888
|
};
|
|
4505
4889
|
output: {
|
|
4506
|
-
name: "
|
|
4890
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4507
4891
|
enabled: boolean;
|
|
4508
4892
|
trial_expired?: boolean | undefined;
|
|
4509
4893
|
}[];
|
|
@@ -4658,7 +5042,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4658
5042
|
$get: {
|
|
4659
5043
|
input: {
|
|
4660
5044
|
param: {
|
|
4661
|
-
factor_name: "
|
|
5045
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4662
5046
|
};
|
|
4663
5047
|
} & {
|
|
4664
5048
|
header: {
|
|
@@ -4666,7 +5050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4666
5050
|
};
|
|
4667
5051
|
};
|
|
4668
5052
|
output: {
|
|
4669
|
-
name: "
|
|
5053
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4670
5054
|
enabled: boolean;
|
|
4671
5055
|
trial_expired?: boolean | undefined;
|
|
4672
5056
|
};
|
|
@@ -4679,7 +5063,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4679
5063
|
$put: {
|
|
4680
5064
|
input: {
|
|
4681
5065
|
param: {
|
|
4682
|
-
factor_name: "
|
|
5066
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4683
5067
|
};
|
|
4684
5068
|
} & {
|
|
4685
5069
|
header: {
|
|
@@ -4691,7 +5075,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4691
5075
|
};
|
|
4692
5076
|
};
|
|
4693
5077
|
output: {
|
|
4694
|
-
name: "
|
|
5078
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4695
5079
|
enabled: boolean;
|
|
4696
5080
|
trial_expired?: boolean | undefined;
|
|
4697
5081
|
};
|
|
@@ -6230,9 +6614,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6230
6614
|
};
|
|
6231
6615
|
} & {
|
|
6232
6616
|
query: {
|
|
6233
|
-
from?: string | undefined;
|
|
6234
6617
|
page?: string | undefined;
|
|
6235
6618
|
include_totals?: string | undefined;
|
|
6619
|
+
from?: string | undefined;
|
|
6236
6620
|
per_page?: string | undefined;
|
|
6237
6621
|
take?: string | undefined;
|
|
6238
6622
|
};
|
|
@@ -6378,7 +6762,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6378
6762
|
type: "REDIRECT";
|
|
6379
6763
|
action: "REDIRECT_USER";
|
|
6380
6764
|
params: {
|
|
6381
|
-
target: "custom" | "
|
|
6765
|
+
target: "custom" | "change-email" | "account";
|
|
6382
6766
|
custom_url?: string | undefined;
|
|
6383
6767
|
};
|
|
6384
6768
|
alias?: string | undefined;
|
|
@@ -6431,7 +6815,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6431
6815
|
type: "REDIRECT";
|
|
6432
6816
|
action: "REDIRECT_USER";
|
|
6433
6817
|
params: {
|
|
6434
|
-
target: "custom" | "
|
|
6818
|
+
target: "custom" | "change-email" | "account";
|
|
6435
6819
|
custom_url?: string | undefined;
|
|
6436
6820
|
};
|
|
6437
6821
|
alias?: string | undefined;
|
|
@@ -6500,7 +6884,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6500
6884
|
type: "REDIRECT";
|
|
6501
6885
|
action: "REDIRECT_USER";
|
|
6502
6886
|
params: {
|
|
6503
|
-
target: "custom" | "
|
|
6887
|
+
target: "custom" | "change-email" | "account";
|
|
6504
6888
|
custom_url?: string | undefined;
|
|
6505
6889
|
};
|
|
6506
6890
|
alias?: string | undefined;
|
|
@@ -6581,7 +6965,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6581
6965
|
type: "REDIRECT";
|
|
6582
6966
|
action: "REDIRECT_USER";
|
|
6583
6967
|
params: {
|
|
6584
|
-
target: "custom" | "
|
|
6968
|
+
target: "custom" | "change-email" | "account";
|
|
6585
6969
|
custom_url?: string | undefined;
|
|
6586
6970
|
};
|
|
6587
6971
|
alias?: string | undefined;
|
|
@@ -6629,7 +7013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6629
7013
|
type: "REDIRECT";
|
|
6630
7014
|
action: "REDIRECT_USER";
|
|
6631
7015
|
params: {
|
|
6632
|
-
target: "custom" | "
|
|
7016
|
+
target: "custom" | "change-email" | "account";
|
|
6633
7017
|
custom_url?: string | undefined;
|
|
6634
7018
|
};
|
|
6635
7019
|
alias?: string | undefined;
|
|
@@ -6689,7 +7073,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6689
7073
|
type: "REDIRECT";
|
|
6690
7074
|
action: "REDIRECT_USER";
|
|
6691
7075
|
params: {
|
|
6692
|
-
target: "custom" | "
|
|
7076
|
+
target: "custom" | "change-email" | "account";
|
|
6693
7077
|
custom_url?: string | undefined;
|
|
6694
7078
|
};
|
|
6695
7079
|
alias?: string | undefined;
|
|
@@ -6737,7 +7121,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6737
7121
|
type: "REDIRECT";
|
|
6738
7122
|
action: "REDIRECT_USER";
|
|
6739
7123
|
params: {
|
|
6740
|
-
target: "custom" | "
|
|
7124
|
+
target: "custom" | "change-email" | "account";
|
|
6741
7125
|
custom_url?: string | undefined;
|
|
6742
7126
|
};
|
|
6743
7127
|
alias?: string | undefined;
|
|
@@ -11302,7 +11686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11302
11686
|
};
|
|
11303
11687
|
};
|
|
11304
11688
|
output: {
|
|
11305
|
-
prompt: "
|
|
11689
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "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
11690
|
language: string;
|
|
11307
11691
|
}[];
|
|
11308
11692
|
outputFormat: "json";
|
|
@@ -11340,7 +11724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11340
11724
|
$get: {
|
|
11341
11725
|
input: {
|
|
11342
11726
|
param: {
|
|
11343
|
-
prompt: "
|
|
11727
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "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
11728
|
language: string;
|
|
11345
11729
|
};
|
|
11346
11730
|
} & {
|
|
@@ -11362,7 +11746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11362
11746
|
$put: {
|
|
11363
11747
|
input: {
|
|
11364
11748
|
param: {
|
|
11365
|
-
prompt: "
|
|
11749
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "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
11750
|
language: string;
|
|
11367
11751
|
};
|
|
11368
11752
|
} & {
|
|
@@ -11386,7 +11770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11386
11770
|
$delete: {
|
|
11387
11771
|
input: {
|
|
11388
11772
|
param: {
|
|
11389
|
-
prompt: "
|
|
11773
|
+
prompt: "status" | "signup" | "login" | "mfa" | "organizations" | "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
11774
|
language: string;
|
|
11391
11775
|
};
|
|
11392
11776
|
} & {
|
|
@@ -11529,7 +11913,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11529
11913
|
} | undefined;
|
|
11530
11914
|
} | undefined;
|
|
11531
11915
|
passkey_options?: {
|
|
11532
|
-
challenge_ui?: "
|
|
11916
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
11533
11917
|
local_enrollment_enabled?: boolean | undefined;
|
|
11534
11918
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11535
11919
|
} | undefined;
|
|
@@ -11667,7 +12051,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11667
12051
|
} | undefined;
|
|
11668
12052
|
} | undefined;
|
|
11669
12053
|
passkey_options?: {
|
|
11670
|
-
challenge_ui?: "
|
|
12054
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
11671
12055
|
local_enrollment_enabled?: boolean | undefined;
|
|
11672
12056
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11673
12057
|
} | undefined;
|
|
@@ -11821,7 +12205,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11821
12205
|
} | undefined;
|
|
11822
12206
|
} | undefined;
|
|
11823
12207
|
passkey_options?: {
|
|
11824
|
-
challenge_ui?: "
|
|
12208
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
11825
12209
|
local_enrollment_enabled?: boolean | undefined;
|
|
11826
12210
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11827
12211
|
} | undefined;
|
|
@@ -12004,7 +12388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12004
12388
|
} | undefined;
|
|
12005
12389
|
} | undefined;
|
|
12006
12390
|
passkey_options?: {
|
|
12007
|
-
challenge_ui?: "
|
|
12391
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
12008
12392
|
local_enrollment_enabled?: boolean | undefined;
|
|
12009
12393
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
12010
12394
|
} | undefined;
|
|
@@ -12166,7 +12550,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12166
12550
|
} | undefined;
|
|
12167
12551
|
} | undefined;
|
|
12168
12552
|
passkey_options?: {
|
|
12169
|
-
challenge_ui?: "
|
|
12553
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
12170
12554
|
local_enrollment_enabled?: boolean | undefined;
|
|
12171
12555
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
12172
12556
|
} | undefined;
|
|
@@ -12996,9 +13380,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12996
13380
|
tenant_id: string;
|
|
12997
13381
|
event_type: string;
|
|
12998
13382
|
log_type: string;
|
|
12999
|
-
category: "
|
|
13383
|
+
category: "system" | "user_action" | "admin_action" | "api";
|
|
13000
13384
|
actor: {
|
|
13001
|
-
type: "
|
|
13385
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
13002
13386
|
id?: string | undefined;
|
|
13003
13387
|
email?: string | undefined;
|
|
13004
13388
|
org_id?: string | undefined;
|
|
@@ -13081,6 +13465,26 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13081
13465
|
status: 200;
|
|
13082
13466
|
};
|
|
13083
13467
|
};
|
|
13468
|
+
} & {
|
|
13469
|
+
"/bulk-retry": {
|
|
13470
|
+
$post: {
|
|
13471
|
+
input: {
|
|
13472
|
+
header: {
|
|
13473
|
+
"tenant-id"?: string | undefined;
|
|
13474
|
+
};
|
|
13475
|
+
} & {
|
|
13476
|
+
json: {
|
|
13477
|
+
ids: string[];
|
|
13478
|
+
};
|
|
13479
|
+
};
|
|
13480
|
+
output: {
|
|
13481
|
+
replayed: string[];
|
|
13482
|
+
not_found: string[];
|
|
13483
|
+
};
|
|
13484
|
+
outputFormat: "json";
|
|
13485
|
+
status: 200;
|
|
13486
|
+
};
|
|
13487
|
+
};
|
|
13084
13488
|
} & {
|
|
13085
13489
|
"/:id/retry": {
|
|
13086
13490
|
$post: {
|
|
@@ -13309,7 +13713,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13309
13713
|
created_at: string;
|
|
13310
13714
|
updated_at: string;
|
|
13311
13715
|
name: string;
|
|
13312
|
-
provider: "auth0" | "
|
|
13716
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13313
13717
|
connection: string;
|
|
13314
13718
|
enabled: boolean;
|
|
13315
13719
|
credentials: {
|
|
@@ -13341,7 +13745,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13341
13745
|
created_at: string;
|
|
13342
13746
|
updated_at: string;
|
|
13343
13747
|
name: string;
|
|
13344
|
-
provider: "auth0" | "
|
|
13748
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13345
13749
|
connection: string;
|
|
13346
13750
|
enabled: boolean;
|
|
13347
13751
|
credentials: {
|
|
@@ -13367,7 +13771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13367
13771
|
} & {
|
|
13368
13772
|
json: {
|
|
13369
13773
|
name: string;
|
|
13370
|
-
provider: "auth0" | "
|
|
13774
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13371
13775
|
connection: string;
|
|
13372
13776
|
credentials: {
|
|
13373
13777
|
domain: string;
|
|
@@ -13384,7 +13788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13384
13788
|
created_at: string;
|
|
13385
13789
|
updated_at: string;
|
|
13386
13790
|
name: string;
|
|
13387
|
-
provider: "auth0" | "
|
|
13791
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13388
13792
|
connection: string;
|
|
13389
13793
|
enabled: boolean;
|
|
13390
13794
|
credentials: {
|
|
@@ -13415,7 +13819,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13415
13819
|
json: {
|
|
13416
13820
|
id?: string | undefined;
|
|
13417
13821
|
name?: string | undefined;
|
|
13418
|
-
provider?: "auth0" | "
|
|
13822
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
13419
13823
|
connection?: string | undefined;
|
|
13420
13824
|
enabled?: boolean | undefined;
|
|
13421
13825
|
credentials?: {
|
|
@@ -13431,7 +13835,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13431
13835
|
created_at: string;
|
|
13432
13836
|
updated_at: string;
|
|
13433
13837
|
name: string;
|
|
13434
|
-
provider: "auth0" | "
|
|
13838
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
13435
13839
|
connection: string;
|
|
13436
13840
|
enabled: boolean;
|
|
13437
13841
|
credentials: {
|
|
@@ -13649,7 +14053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13649
14053
|
};
|
|
13650
14054
|
};
|
|
13651
14055
|
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" | "
|
|
14056
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13653
14057
|
date: string;
|
|
13654
14058
|
isMobile: boolean;
|
|
13655
14059
|
log_id: string;
|
|
@@ -13688,7 +14092,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13688
14092
|
limit: number;
|
|
13689
14093
|
length: number;
|
|
13690
14094
|
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" | "
|
|
14095
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13692
14096
|
date: string;
|
|
13693
14097
|
isMobile: boolean;
|
|
13694
14098
|
log_id: string;
|
|
@@ -13727,7 +14131,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13727
14131
|
next?: string | undefined;
|
|
13728
14132
|
} | {
|
|
13729
14133
|
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" | "
|
|
14134
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13731
14135
|
date: string;
|
|
13732
14136
|
isMobile: boolean;
|
|
13733
14137
|
log_id: string;
|
|
@@ -13781,7 +14185,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13781
14185
|
};
|
|
13782
14186
|
};
|
|
13783
14187
|
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" | "
|
|
14188
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13785
14189
|
date: string;
|
|
13786
14190
|
isMobile: boolean;
|
|
13787
14191
|
log_id: string;
|
|
@@ -14192,7 +14596,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14192
14596
|
addons?: {
|
|
14193
14597
|
[x: string]: any;
|
|
14194
14598
|
} | undefined;
|
|
14195
|
-
token_endpoint_auth_method?: "
|
|
14599
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14196
14600
|
client_metadata?: {
|
|
14197
14601
|
[x: string]: string;
|
|
14198
14602
|
} | undefined;
|
|
@@ -14294,7 +14698,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14294
14698
|
addons?: {
|
|
14295
14699
|
[x: string]: any;
|
|
14296
14700
|
} | undefined;
|
|
14297
|
-
token_endpoint_auth_method?: "
|
|
14701
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14298
14702
|
client_metadata?: {
|
|
14299
14703
|
[x: string]: string;
|
|
14300
14704
|
} | undefined;
|
|
@@ -14396,7 +14800,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14396
14800
|
addons?: {
|
|
14397
14801
|
[x: string]: any;
|
|
14398
14802
|
} | undefined;
|
|
14399
|
-
token_endpoint_auth_method?: "
|
|
14803
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14400
14804
|
client_metadata?: {
|
|
14401
14805
|
[x: string]: string;
|
|
14402
14806
|
} | undefined;
|
|
@@ -14513,7 +14917,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14513
14917
|
addons?: {
|
|
14514
14918
|
[x: string]: any;
|
|
14515
14919
|
} | undefined;
|
|
14516
|
-
token_endpoint_auth_method?: "
|
|
14920
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14517
14921
|
client_metadata?: {
|
|
14518
14922
|
[x: string]: string;
|
|
14519
14923
|
} | undefined;
|
|
@@ -14631,7 +15035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14631
15035
|
custom_login_page_preview?: string | undefined;
|
|
14632
15036
|
form_template?: string | undefined;
|
|
14633
15037
|
addons?: Record<string, any> | undefined;
|
|
14634
|
-
token_endpoint_auth_method?: "
|
|
15038
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14635
15039
|
client_metadata?: Record<string, string> | undefined;
|
|
14636
15040
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14637
15041
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14717,7 +15121,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14717
15121
|
addons?: {
|
|
14718
15122
|
[x: string]: any;
|
|
14719
15123
|
} | undefined;
|
|
14720
|
-
token_endpoint_auth_method?: "
|
|
15124
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14721
15125
|
client_metadata?: {
|
|
14722
15126
|
[x: string]: string;
|
|
14723
15127
|
} | undefined;
|
|
@@ -14814,7 +15218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14814
15218
|
custom_login_page_preview?: string | undefined;
|
|
14815
15219
|
form_template?: string | undefined;
|
|
14816
15220
|
addons?: Record<string, any> | undefined;
|
|
14817
|
-
token_endpoint_auth_method?: "
|
|
15221
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14818
15222
|
client_metadata?: Record<string, string> | undefined;
|
|
14819
15223
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
14820
15224
|
mobile?: Record<string, any> | undefined;
|
|
@@ -14900,7 +15304,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14900
15304
|
addons?: {
|
|
14901
15305
|
[x: string]: any;
|
|
14902
15306
|
} | undefined;
|
|
14903
|
-
token_endpoint_auth_method?: "
|
|
15307
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14904
15308
|
client_metadata?: {
|
|
14905
15309
|
[x: string]: string;
|
|
14906
15310
|
} | undefined;
|
|
@@ -15073,7 +15477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15073
15477
|
} | undefined;
|
|
15074
15478
|
} | undefined;
|
|
15075
15479
|
passkey_options?: {
|
|
15076
|
-
challenge_ui?: "
|
|
15480
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
15077
15481
|
local_enrollment_enabled?: boolean | undefined;
|
|
15078
15482
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
15079
15483
|
} | undefined;
|
|
@@ -15231,7 +15635,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15231
15635
|
} | undefined;
|
|
15232
15636
|
} | undefined;
|
|
15233
15637
|
passkey_options?: {
|
|
15234
|
-
challenge_ui?: "
|
|
15638
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
15235
15639
|
local_enrollment_enabled?: boolean | undefined;
|
|
15236
15640
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
15237
15641
|
} | undefined;
|
|
@@ -15367,13 +15771,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15367
15771
|
thumbprint: string;
|
|
15368
15772
|
connection?: string | undefined;
|
|
15369
15773
|
tenant_id?: string | undefined;
|
|
15370
|
-
current?: boolean | undefined;
|
|
15371
15774
|
next?: boolean | undefined;
|
|
15775
|
+
revoked_at?: string | undefined;
|
|
15776
|
+
current?: boolean | undefined;
|
|
15372
15777
|
previous?: boolean | undefined;
|
|
15373
15778
|
current_since?: string | undefined;
|
|
15374
15779
|
current_until?: string | undefined;
|
|
15375
15780
|
revoked?: boolean | undefined;
|
|
15376
|
-
revoked_at?: string | undefined;
|
|
15377
15781
|
expires_at?: string | undefined;
|
|
15378
15782
|
expired?: boolean | undefined;
|
|
15379
15783
|
inherited?: boolean | undefined;
|
|
@@ -15406,13 +15810,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15406
15810
|
thumbprint: string;
|
|
15407
15811
|
connection?: string | undefined;
|
|
15408
15812
|
tenant_id?: string | undefined;
|
|
15409
|
-
current?: boolean | undefined;
|
|
15410
15813
|
next?: boolean | undefined;
|
|
15814
|
+
revoked_at?: string | undefined;
|
|
15815
|
+
current?: boolean | undefined;
|
|
15411
15816
|
previous?: boolean | undefined;
|
|
15412
15817
|
current_since?: string | undefined;
|
|
15413
15818
|
current_until?: string | undefined;
|
|
15414
15819
|
revoked?: boolean | undefined;
|
|
15415
|
-
revoked_at?: string | undefined;
|
|
15416
15820
|
expires_at?: string | undefined;
|
|
15417
15821
|
expired?: boolean | undefined;
|
|
15418
15822
|
inherited?: boolean | undefined;
|
|
@@ -15444,13 +15848,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15444
15848
|
thumbprint: string;
|
|
15445
15849
|
connection?: string | undefined;
|
|
15446
15850
|
tenant_id?: string | undefined;
|
|
15447
|
-
current?: boolean | undefined;
|
|
15448
15851
|
next?: boolean | undefined;
|
|
15852
|
+
revoked_at?: string | undefined;
|
|
15853
|
+
current?: boolean | undefined;
|
|
15449
15854
|
previous?: boolean | undefined;
|
|
15450
15855
|
current_since?: string | undefined;
|
|
15451
15856
|
current_until?: string | undefined;
|
|
15452
15857
|
revoked?: boolean | undefined;
|
|
15453
|
-
revoked_at?: string | undefined;
|
|
15454
15858
|
expires_at?: string | undefined;
|
|
15455
15859
|
expired?: boolean | undefined;
|
|
15456
15860
|
inherited?: boolean | undefined;
|
|
@@ -15484,13 +15888,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15484
15888
|
thumbprint: string;
|
|
15485
15889
|
connection?: string | undefined;
|
|
15486
15890
|
tenant_id?: string | undefined;
|
|
15487
|
-
current?: boolean | undefined;
|
|
15488
15891
|
next?: boolean | undefined;
|
|
15892
|
+
revoked_at?: string | undefined;
|
|
15893
|
+
current?: boolean | undefined;
|
|
15489
15894
|
previous?: boolean | undefined;
|
|
15490
15895
|
current_since?: string | undefined;
|
|
15491
15896
|
current_until?: string | undefined;
|
|
15492
15897
|
revoked?: boolean | undefined;
|
|
15493
|
-
revoked_at?: string | undefined;
|
|
15494
15898
|
expires_at?: string | undefined;
|
|
15495
15899
|
expired?: boolean | undefined;
|
|
15496
15900
|
inherited?: boolean | undefined;
|
|
@@ -16335,12 +16739,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16335
16739
|
};
|
|
16336
16740
|
};
|
|
16337
16741
|
output: {
|
|
16338
|
-
client_id: string;
|
|
16339
|
-
created_at: string;
|
|
16340
|
-
rotating: boolean;
|
|
16341
16742
|
id: string;
|
|
16342
16743
|
user_id: string;
|
|
16343
|
-
|
|
16744
|
+
created_at: string;
|
|
16745
|
+
client_id: string;
|
|
16746
|
+
rotating: boolean;
|
|
16344
16747
|
device: {
|
|
16345
16748
|
initial_user_agent: string;
|
|
16346
16749
|
initial_ip: string;
|
|
@@ -16349,29 +16752,29 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16349
16752
|
last_ip: string;
|
|
16350
16753
|
last_asn: string;
|
|
16351
16754
|
};
|
|
16755
|
+
login_id: string;
|
|
16352
16756
|
resource_servers: {
|
|
16353
16757
|
audience: string;
|
|
16354
16758
|
scopes: string;
|
|
16355
16759
|
}[];
|
|
16356
|
-
|
|
16760
|
+
revoked_at?: string | undefined;
|
|
16357
16761
|
expires_at?: string | undefined;
|
|
16762
|
+
idle_expires_at?: string | undefined;
|
|
16358
16763
|
session_id?: string | undefined;
|
|
16764
|
+
organization?: string | undefined;
|
|
16359
16765
|
auth_connection?: string | undefined;
|
|
16360
16766
|
auth_strategy?: {
|
|
16361
16767
|
strategy: string;
|
|
16362
16768
|
strategy_type: string;
|
|
16363
16769
|
} | undefined;
|
|
16364
|
-
revoked_at?: string | undefined;
|
|
16365
|
-
idle_expires_at?: string | undefined;
|
|
16366
16770
|
last_exchanged_at?: string | undefined;
|
|
16367
16771
|
}[] | {
|
|
16368
16772
|
tokens: {
|
|
16369
|
-
client_id: string;
|
|
16370
|
-
created_at: string;
|
|
16371
|
-
rotating: boolean;
|
|
16372
16773
|
id: string;
|
|
16373
16774
|
user_id: string;
|
|
16374
|
-
|
|
16775
|
+
created_at: string;
|
|
16776
|
+
client_id: string;
|
|
16777
|
+
rotating: boolean;
|
|
16375
16778
|
device: {
|
|
16376
16779
|
initial_user_agent: string;
|
|
16377
16780
|
initial_ip: string;
|
|
@@ -16380,20 +16783,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16380
16783
|
last_ip: string;
|
|
16381
16784
|
last_asn: string;
|
|
16382
16785
|
};
|
|
16786
|
+
login_id: string;
|
|
16383
16787
|
resource_servers: {
|
|
16384
16788
|
audience: string;
|
|
16385
16789
|
scopes: string;
|
|
16386
16790
|
}[];
|
|
16387
|
-
|
|
16791
|
+
revoked_at?: string | undefined;
|
|
16388
16792
|
expires_at?: string | undefined;
|
|
16793
|
+
idle_expires_at?: string | undefined;
|
|
16389
16794
|
session_id?: string | undefined;
|
|
16795
|
+
organization?: string | undefined;
|
|
16390
16796
|
auth_connection?: string | undefined;
|
|
16391
16797
|
auth_strategy?: {
|
|
16392
16798
|
strategy: string;
|
|
16393
16799
|
strategy_type: string;
|
|
16394
16800
|
} | undefined;
|
|
16395
|
-
revoked_at?: string | undefined;
|
|
16396
|
-
idle_expires_at?: string | undefined;
|
|
16397
16801
|
last_exchanged_at?: string | undefined;
|
|
16398
16802
|
}[];
|
|
16399
16803
|
next?: string | undefined;
|
|
@@ -16402,12 +16806,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16402
16806
|
limit: number;
|
|
16403
16807
|
length: number;
|
|
16404
16808
|
tokens: {
|
|
16405
|
-
client_id: string;
|
|
16406
|
-
created_at: string;
|
|
16407
|
-
rotating: boolean;
|
|
16408
16809
|
id: string;
|
|
16409
16810
|
user_id: string;
|
|
16410
|
-
|
|
16811
|
+
created_at: string;
|
|
16812
|
+
client_id: string;
|
|
16813
|
+
rotating: boolean;
|
|
16411
16814
|
device: {
|
|
16412
16815
|
initial_user_agent: string;
|
|
16413
16816
|
initial_ip: string;
|
|
@@ -16416,20 +16819,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16416
16819
|
last_ip: string;
|
|
16417
16820
|
last_asn: string;
|
|
16418
16821
|
};
|
|
16822
|
+
login_id: string;
|
|
16419
16823
|
resource_servers: {
|
|
16420
16824
|
audience: string;
|
|
16421
16825
|
scopes: string;
|
|
16422
16826
|
}[];
|
|
16423
|
-
|
|
16827
|
+
revoked_at?: string | undefined;
|
|
16424
16828
|
expires_at?: string | undefined;
|
|
16829
|
+
idle_expires_at?: string | undefined;
|
|
16425
16830
|
session_id?: string | undefined;
|
|
16831
|
+
organization?: string | undefined;
|
|
16426
16832
|
auth_connection?: string | undefined;
|
|
16427
16833
|
auth_strategy?: {
|
|
16428
16834
|
strategy: string;
|
|
16429
16835
|
strategy_type: string;
|
|
16430
16836
|
} | undefined;
|
|
16431
|
-
revoked_at?: string | undefined;
|
|
16432
|
-
idle_expires_at?: string | undefined;
|
|
16433
16837
|
last_exchanged_at?: string | undefined;
|
|
16434
16838
|
}[];
|
|
16435
16839
|
total?: number | undefined;
|
|
@@ -16481,7 +16885,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16481
16885
|
};
|
|
16482
16886
|
};
|
|
16483
16887
|
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" | "
|
|
16888
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16485
16889
|
date: string;
|
|
16486
16890
|
isMobile: boolean;
|
|
16487
16891
|
log_id: string;
|
|
@@ -16520,7 +16924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16520
16924
|
limit: number;
|
|
16521
16925
|
length: number;
|
|
16522
16926
|
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" | "
|
|
16927
|
+
type: "fn" | "i" | "sui" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16524
16928
|
date: string;
|
|
16525
16929
|
isMobile: boolean;
|
|
16526
16930
|
log_id: string;
|
|
@@ -16839,7 +17243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16839
17243
|
};
|
|
16840
17244
|
} & {
|
|
16841
17245
|
json: {
|
|
16842
|
-
template: "
|
|
17246
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16843
17247
|
body: string;
|
|
16844
17248
|
from: string;
|
|
16845
17249
|
subject: string;
|
|
@@ -16860,7 +17264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16860
17264
|
};
|
|
16861
17265
|
} & {
|
|
16862
17266
|
json: {
|
|
16863
|
-
template: "
|
|
17267
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16864
17268
|
body: string;
|
|
16865
17269
|
from: string;
|
|
16866
17270
|
subject: string;
|
|
@@ -16872,7 +17276,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16872
17276
|
};
|
|
16873
17277
|
};
|
|
16874
17278
|
output: {
|
|
16875
|
-
template: "
|
|
17279
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16876
17280
|
body: string;
|
|
16877
17281
|
from: string;
|
|
16878
17282
|
subject: string;
|
|
@@ -16895,7 +17299,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16895
17299
|
};
|
|
16896
17300
|
};
|
|
16897
17301
|
output: {
|
|
16898
|
-
name: "
|
|
17302
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16899
17303
|
body: string;
|
|
16900
17304
|
subject: string;
|
|
16901
17305
|
}[];
|
|
@@ -16908,7 +17312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16908
17312
|
$get: {
|
|
16909
17313
|
input: {
|
|
16910
17314
|
param: {
|
|
16911
|
-
templateName: "
|
|
17315
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16912
17316
|
};
|
|
16913
17317
|
} & {
|
|
16914
17318
|
header: {
|
|
@@ -16921,7 +17325,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16921
17325
|
} | {
|
|
16922
17326
|
input: {
|
|
16923
17327
|
param: {
|
|
16924
|
-
templateName: "
|
|
17328
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16925
17329
|
};
|
|
16926
17330
|
} & {
|
|
16927
17331
|
header: {
|
|
@@ -16929,7 +17333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16929
17333
|
};
|
|
16930
17334
|
};
|
|
16931
17335
|
output: {
|
|
16932
|
-
template: "
|
|
17336
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16933
17337
|
body: string;
|
|
16934
17338
|
from: string;
|
|
16935
17339
|
subject: string;
|
|
@@ -16948,7 +17352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16948
17352
|
$put: {
|
|
16949
17353
|
input: {
|
|
16950
17354
|
param: {
|
|
16951
|
-
templateName: "
|
|
17355
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16952
17356
|
};
|
|
16953
17357
|
} & {
|
|
16954
17358
|
header: {
|
|
@@ -16956,7 +17360,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16956
17360
|
};
|
|
16957
17361
|
} & {
|
|
16958
17362
|
json: {
|
|
16959
|
-
template: "
|
|
17363
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16960
17364
|
body: string;
|
|
16961
17365
|
subject: string;
|
|
16962
17366
|
syntax?: "liquid" | undefined;
|
|
@@ -16968,7 +17372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16968
17372
|
};
|
|
16969
17373
|
};
|
|
16970
17374
|
output: {
|
|
16971
|
-
template: "
|
|
17375
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16972
17376
|
body: string;
|
|
16973
17377
|
from: string;
|
|
16974
17378
|
subject: string;
|
|
@@ -16987,7 +17391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16987
17391
|
$patch: {
|
|
16988
17392
|
input: {
|
|
16989
17393
|
param: {
|
|
16990
|
-
templateName: "
|
|
17394
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16991
17395
|
};
|
|
16992
17396
|
} & {
|
|
16993
17397
|
header: {
|
|
@@ -16995,7 +17399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16995
17399
|
};
|
|
16996
17400
|
} & {
|
|
16997
17401
|
json: {
|
|
16998
|
-
template?: "
|
|
17402
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16999
17403
|
body?: string | undefined;
|
|
17000
17404
|
from?: string | undefined;
|
|
17001
17405
|
subject?: string | undefined;
|
|
@@ -17012,7 +17416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17012
17416
|
} | {
|
|
17013
17417
|
input: {
|
|
17014
17418
|
param: {
|
|
17015
|
-
templateName: "
|
|
17419
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17016
17420
|
};
|
|
17017
17421
|
} & {
|
|
17018
17422
|
header: {
|
|
@@ -17020,7 +17424,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17020
17424
|
};
|
|
17021
17425
|
} & {
|
|
17022
17426
|
json: {
|
|
17023
|
-
template?: "
|
|
17427
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
17024
17428
|
body?: string | undefined;
|
|
17025
17429
|
from?: string | undefined;
|
|
17026
17430
|
subject?: string | undefined;
|
|
@@ -17032,7 +17436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17032
17436
|
};
|
|
17033
17437
|
};
|
|
17034
17438
|
output: {
|
|
17035
|
-
template: "
|
|
17439
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17036
17440
|
body: string;
|
|
17037
17441
|
from: string;
|
|
17038
17442
|
subject: string;
|
|
@@ -17051,7 +17455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17051
17455
|
$delete: {
|
|
17052
17456
|
input: {
|
|
17053
17457
|
param: {
|
|
17054
|
-
templateName: "
|
|
17458
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17055
17459
|
};
|
|
17056
17460
|
} & {
|
|
17057
17461
|
header: {
|
|
@@ -17064,7 +17468,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17064
17468
|
} | {
|
|
17065
17469
|
input: {
|
|
17066
17470
|
param: {
|
|
17067
|
-
templateName: "
|
|
17471
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17068
17472
|
};
|
|
17069
17473
|
} & {
|
|
17070
17474
|
header: {
|
|
@@ -17081,7 +17485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17081
17485
|
$post: {
|
|
17082
17486
|
input: {
|
|
17083
17487
|
param: {
|
|
17084
|
-
templateName: "
|
|
17488
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17085
17489
|
};
|
|
17086
17490
|
} & {
|
|
17087
17491
|
header: {
|
|
@@ -17364,7 +17768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17364
17768
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17365
17769
|
custom_domain_id: string;
|
|
17366
17770
|
primary: boolean;
|
|
17367
|
-
status: "pending" | "
|
|
17771
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17368
17772
|
verification_method?: "txt" | undefined;
|
|
17369
17773
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17370
17774
|
domain_metadata?: {
|
|
@@ -17405,7 +17809,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17405
17809
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17406
17810
|
custom_domain_id: string;
|
|
17407
17811
|
primary: boolean;
|
|
17408
|
-
status: "pending" | "
|
|
17812
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17409
17813
|
verification_method?: "txt" | undefined;
|
|
17410
17814
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17411
17815
|
domain_metadata?: {
|
|
@@ -17469,7 +17873,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17469
17873
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17470
17874
|
custom_domain_id: string;
|
|
17471
17875
|
primary: boolean;
|
|
17472
|
-
status: "pending" | "
|
|
17876
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17473
17877
|
verification_method?: "txt" | undefined;
|
|
17474
17878
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17475
17879
|
domain_metadata?: {
|
|
@@ -17516,7 +17920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17516
17920
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17517
17921
|
custom_domain_id: string;
|
|
17518
17922
|
primary: boolean;
|
|
17519
|
-
status: "pending" | "
|
|
17923
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17520
17924
|
verification_method?: "txt" | undefined;
|
|
17521
17925
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17522
17926
|
domain_metadata?: {
|
|
@@ -17562,7 +17966,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17562
17966
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17563
17967
|
custom_domain_id: string;
|
|
17564
17968
|
primary: boolean;
|
|
17565
|
-
status: "pending" | "
|
|
17969
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17566
17970
|
verification_method?: "txt" | undefined;
|
|
17567
17971
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17568
17972
|
domain_metadata?: {
|
|
@@ -17603,7 +18007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17603
18007
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
17604
18008
|
custom_domain_id: string;
|
|
17605
18009
|
primary: boolean;
|
|
17606
|
-
status: "pending" | "
|
|
18010
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
17607
18011
|
verification_method?: "txt" | undefined;
|
|
17608
18012
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
17609
18013
|
domain_metadata?: {
|
|
@@ -17651,7 +18055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17651
18055
|
base_focus_color: string;
|
|
17652
18056
|
base_hover_color: string;
|
|
17653
18057
|
body_text: string;
|
|
17654
|
-
captcha_widget_theme: "
|
|
18058
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
17655
18059
|
error: string;
|
|
17656
18060
|
header: string;
|
|
17657
18061
|
icons: string;
|
|
@@ -17741,7 +18145,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17741
18145
|
base_focus_color: string;
|
|
17742
18146
|
base_hover_color: string;
|
|
17743
18147
|
body_text: string;
|
|
17744
|
-
captcha_widget_theme: "
|
|
18148
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
17745
18149
|
error: string;
|
|
17746
18150
|
header: string;
|
|
17747
18151
|
icons: string;
|
|
@@ -17820,7 +18224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17820
18224
|
base_focus_color: string;
|
|
17821
18225
|
base_hover_color: string;
|
|
17822
18226
|
body_text: string;
|
|
17823
|
-
captcha_widget_theme: "
|
|
18227
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
17824
18228
|
error: string;
|
|
17825
18229
|
header: string;
|
|
17826
18230
|
icons: string;
|
|
@@ -17910,7 +18314,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17910
18314
|
font?: {
|
|
17911
18315
|
url: string;
|
|
17912
18316
|
} | undefined;
|
|
17913
|
-
dark_mode?: "
|
|
18317
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
17914
18318
|
};
|
|
17915
18319
|
outputFormat: "json";
|
|
17916
18320
|
status: 200;
|
|
@@ -17940,7 +18344,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17940
18344
|
font?: {
|
|
17941
18345
|
url: string;
|
|
17942
18346
|
} | undefined;
|
|
17943
|
-
dark_mode?: "
|
|
18347
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
17944
18348
|
};
|
|
17945
18349
|
};
|
|
17946
18350
|
output: {
|
|
@@ -17959,7 +18363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17959
18363
|
font?: {
|
|
17960
18364
|
url: string;
|
|
17961
18365
|
} | undefined;
|
|
17962
|
-
dark_mode?: "
|
|
18366
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
17963
18367
|
};
|
|
17964
18368
|
outputFormat: "json";
|
|
17965
18369
|
status: 200;
|
|
@@ -18033,7 +18437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18033
18437
|
} & {
|
|
18034
18438
|
json: {
|
|
18035
18439
|
body?: string | undefined;
|
|
18036
|
-
screen?: "password" | "
|
|
18440
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
18037
18441
|
branding?: {
|
|
18038
18442
|
colors?: {
|
|
18039
18443
|
primary: string;
|
|
@@ -18050,7 +18454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18050
18454
|
font?: {
|
|
18051
18455
|
url: string;
|
|
18052
18456
|
} | undefined;
|
|
18053
|
-
dark_mode?: "
|
|
18457
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
18054
18458
|
} | undefined;
|
|
18055
18459
|
theme?: {
|
|
18056
18460
|
borders?: {
|
|
@@ -18068,7 +18472,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18068
18472
|
base_focus_color: string;
|
|
18069
18473
|
base_hover_color: string;
|
|
18070
18474
|
body_text: string;
|
|
18071
|
-
captcha_widget_theme: "
|
|
18475
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
18072
18476
|
error: string;
|
|
18073
18477
|
header: string;
|
|
18074
18478
|
icons: string;
|
|
@@ -18176,7 +18580,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18176
18580
|
deployed_at?: string | undefined;
|
|
18177
18581
|
secrets?: {
|
|
18178
18582
|
name: string;
|
|
18179
|
-
value?: string | undefined;
|
|
18180
18583
|
}[] | undefined;
|
|
18181
18584
|
};
|
|
18182
18585
|
created_at: string;
|
|
@@ -18238,7 +18641,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18238
18641
|
deployed_at?: string | undefined;
|
|
18239
18642
|
secrets?: {
|
|
18240
18643
|
name: string;
|
|
18241
|
-
value?: string | undefined;
|
|
18242
18644
|
}[] | undefined;
|
|
18243
18645
|
};
|
|
18244
18646
|
created_at: string;
|
|
@@ -18375,7 +18777,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18375
18777
|
deployed_at?: string | undefined;
|
|
18376
18778
|
secrets?: {
|
|
18377
18779
|
name: string;
|
|
18378
|
-
value?: string | undefined;
|
|
18379
18780
|
}[] | undefined;
|
|
18380
18781
|
}[] | {
|
|
18381
18782
|
start: number;
|
|
@@ -18403,7 +18804,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18403
18804
|
deployed_at?: string | undefined;
|
|
18404
18805
|
secrets?: {
|
|
18405
18806
|
name: string;
|
|
18406
|
-
value?: string | undefined;
|
|
18407
18807
|
}[] | undefined;
|
|
18408
18808
|
}[];
|
|
18409
18809
|
total?: number | undefined;
|
|
@@ -18463,7 +18863,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18463
18863
|
deployed_at?: string | undefined;
|
|
18464
18864
|
secrets?: {
|
|
18465
18865
|
name: string;
|
|
18466
|
-
value?: string | undefined;
|
|
18467
18866
|
}[] | undefined;
|
|
18468
18867
|
};
|
|
18469
18868
|
outputFormat: "json";
|
|
@@ -18517,7 +18916,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18517
18916
|
deployed_at?: string | undefined;
|
|
18518
18917
|
secrets?: {
|
|
18519
18918
|
name: string;
|
|
18520
|
-
value?: string | undefined;
|
|
18521
18919
|
}[] | undefined;
|
|
18522
18920
|
};
|
|
18523
18921
|
outputFormat: "json";
|
|
@@ -18611,7 +19009,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18611
19009
|
deployed_at?: string | undefined;
|
|
18612
19010
|
secrets?: {
|
|
18613
19011
|
name: string;
|
|
18614
|
-
value?: string | undefined;
|
|
18615
19012
|
}[] | undefined;
|
|
18616
19013
|
};
|
|
18617
19014
|
outputFormat: "json";
|
|
@@ -18708,7 +19105,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18708
19105
|
deployed_at?: string | undefined;
|
|
18709
19106
|
secrets?: {
|
|
18710
19107
|
name: string;
|
|
18711
|
-
value?: string | undefined;
|
|
18712
19108
|
}[] | undefined;
|
|
18713
19109
|
};
|
|
18714
19110
|
outputFormat: "json";
|
|
@@ -18925,7 +19321,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18925
19321
|
deployed_at?: string | undefined;
|
|
18926
19322
|
secrets?: {
|
|
18927
19323
|
name: string;
|
|
18928
|
-
value?: string | undefined;
|
|
18929
19324
|
}[] | undefined;
|
|
18930
19325
|
};
|
|
18931
19326
|
outputFormat: "json";
|
|
@@ -19054,7 +19449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19054
19449
|
message: string;
|
|
19055
19450
|
};
|
|
19056
19451
|
outputFormat: "json";
|
|
19057
|
-
status:
|
|
19452
|
+
status: 500;
|
|
19058
19453
|
} | {
|
|
19059
19454
|
input: {
|
|
19060
19455
|
query: {
|
|
@@ -19072,7 +19467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19072
19467
|
message: string;
|
|
19073
19468
|
};
|
|
19074
19469
|
outputFormat: "json";
|
|
19075
|
-
status:
|
|
19470
|
+
status: 400;
|
|
19076
19471
|
};
|
|
19077
19472
|
};
|
|
19078
19473
|
} & {
|
|
@@ -19110,7 +19505,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19110
19505
|
message: string;
|
|
19111
19506
|
};
|
|
19112
19507
|
outputFormat: "json";
|
|
19113
|
-
status:
|
|
19508
|
+
status: 500;
|
|
19114
19509
|
} | {
|
|
19115
19510
|
input: {
|
|
19116
19511
|
form: {
|
|
@@ -19128,7 +19523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19128
19523
|
message: string;
|
|
19129
19524
|
};
|
|
19130
19525
|
outputFormat: "json";
|
|
19131
|
-
status:
|
|
19526
|
+
status: 400;
|
|
19132
19527
|
};
|
|
19133
19528
|
};
|
|
19134
19529
|
}, "/login/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -19166,7 +19561,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19166
19561
|
message: string;
|
|
19167
19562
|
};
|
|
19168
19563
|
outputFormat: "json";
|
|
19169
|
-
status:
|
|
19564
|
+
status: 500;
|
|
19170
19565
|
} | {
|
|
19171
19566
|
input: {
|
|
19172
19567
|
query: {
|
|
@@ -19184,7 +19579,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19184
19579
|
message: string;
|
|
19185
19580
|
};
|
|
19186
19581
|
outputFormat: "json";
|
|
19187
|
-
status:
|
|
19582
|
+
status: 400;
|
|
19188
19583
|
};
|
|
19189
19584
|
};
|
|
19190
19585
|
} & {
|
|
@@ -19222,7 +19617,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19222
19617
|
message: string;
|
|
19223
19618
|
};
|
|
19224
19619
|
outputFormat: "json";
|
|
19225
|
-
status:
|
|
19620
|
+
status: 500;
|
|
19226
19621
|
} | {
|
|
19227
19622
|
input: {
|
|
19228
19623
|
form: {
|
|
@@ -19240,7 +19635,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19240
19635
|
message: string;
|
|
19241
19636
|
};
|
|
19242
19637
|
outputFormat: "json";
|
|
19243
|
-
status:
|
|
19638
|
+
status: 400;
|
|
19244
19639
|
};
|
|
19245
19640
|
};
|
|
19246
19641
|
}, "/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -19304,7 +19699,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19304
19699
|
scope?: string | undefined;
|
|
19305
19700
|
grant_types?: string[] | undefined;
|
|
19306
19701
|
response_types?: string[] | undefined;
|
|
19307
|
-
token_endpoint_auth_method?: "
|
|
19702
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
19308
19703
|
jwks_uri?: string | undefined;
|
|
19309
19704
|
jwks?: Record<string, unknown> | undefined;
|
|
19310
19705
|
software_id?: string | undefined;
|
|
@@ -19393,7 +19788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19393
19788
|
scope?: string | undefined;
|
|
19394
19789
|
grant_types?: string[] | undefined;
|
|
19395
19790
|
response_types?: string[] | undefined;
|
|
19396
|
-
token_endpoint_auth_method?: "
|
|
19791
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
19397
19792
|
jwks_uri?: string | undefined;
|
|
19398
19793
|
jwks?: Record<string, unknown> | undefined;
|
|
19399
19794
|
software_id?: string | undefined;
|
|
@@ -19450,7 +19845,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19450
19845
|
client_id: string;
|
|
19451
19846
|
redirect_url?: string | undefined;
|
|
19452
19847
|
login_hint?: string | undefined;
|
|
19453
|
-
screen_hint?: "
|
|
19848
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
19454
19849
|
};
|
|
19455
19850
|
};
|
|
19456
19851
|
output: {};
|
|
@@ -19462,7 +19857,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19462
19857
|
client_id: string;
|
|
19463
19858
|
redirect_url?: string | undefined;
|
|
19464
19859
|
login_hint?: string | undefined;
|
|
19465
|
-
screen_hint?: "
|
|
19860
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
19466
19861
|
};
|
|
19467
19862
|
};
|
|
19468
19863
|
output: {
|
|
@@ -19739,19 +20134,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19739
20134
|
email: string;
|
|
19740
20135
|
send: "code" | "link";
|
|
19741
20136
|
authParams: {
|
|
19742
|
-
|
|
19743
|
-
state?: string | undefined;
|
|
19744
|
-
act_as?: string | undefined;
|
|
20137
|
+
username?: string | undefined;
|
|
19745
20138
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19746
20139
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19747
|
-
|
|
20140
|
+
scope?: string | undefined;
|
|
19748
20141
|
audience?: string | undefined;
|
|
19749
20142
|
organization?: string | undefined;
|
|
19750
|
-
|
|
20143
|
+
state?: string | undefined;
|
|
20144
|
+
redirect_uri?: string | undefined;
|
|
19751
20145
|
prompt?: string | undefined;
|
|
20146
|
+
act_as?: string | undefined;
|
|
20147
|
+
nonce?: string | undefined;
|
|
19752
20148
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19753
20149
|
code_challenge?: string | undefined;
|
|
19754
|
-
username?: string | undefined;
|
|
19755
20150
|
ui_locales?: string | undefined;
|
|
19756
20151
|
max_age?: number | undefined;
|
|
19757
20152
|
acr_values?: string | undefined;
|
|
@@ -19775,19 +20170,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19775
20170
|
phone_number: string;
|
|
19776
20171
|
send: "code" | "link";
|
|
19777
20172
|
authParams: {
|
|
19778
|
-
|
|
19779
|
-
state?: string | undefined;
|
|
19780
|
-
act_as?: string | undefined;
|
|
20173
|
+
username?: string | undefined;
|
|
19781
20174
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19782
20175
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19783
|
-
|
|
20176
|
+
scope?: string | undefined;
|
|
19784
20177
|
audience?: string | undefined;
|
|
19785
20178
|
organization?: string | undefined;
|
|
19786
|
-
|
|
20179
|
+
state?: string | undefined;
|
|
20180
|
+
redirect_uri?: string | undefined;
|
|
19787
20181
|
prompt?: string | undefined;
|
|
20182
|
+
act_as?: string | undefined;
|
|
20183
|
+
nonce?: string | undefined;
|
|
19788
20184
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19789
20185
|
code_challenge?: string | undefined;
|
|
19790
|
-
username?: string | undefined;
|
|
19791
20186
|
ui_locales?: string | undefined;
|
|
19792
20187
|
max_age?: number | undefined;
|
|
19793
20188
|
acr_values?: string | undefined;
|
|
@@ -19852,7 +20247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19852
20247
|
error_description?: string | undefined;
|
|
19853
20248
|
};
|
|
19854
20249
|
outputFormat: "json";
|
|
19855
|
-
status:
|
|
20250
|
+
status: 500;
|
|
19856
20251
|
} | {
|
|
19857
20252
|
input: {
|
|
19858
20253
|
query: {
|
|
@@ -19873,7 +20268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19873
20268
|
error_description?: string | undefined;
|
|
19874
20269
|
};
|
|
19875
20270
|
outputFormat: "json";
|
|
19876
|
-
status:
|
|
20271
|
+
status: 400;
|
|
19877
20272
|
};
|
|
19878
20273
|
};
|
|
19879
20274
|
}, "/passwordless"> & hono_types.MergeSchemaPath<{
|
|
@@ -20017,7 +20412,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20017
20412
|
client_id: string;
|
|
20018
20413
|
username: string;
|
|
20019
20414
|
otp: string;
|
|
20020
|
-
realm: "
|
|
20415
|
+
realm: "email" | "sms";
|
|
20021
20416
|
scope?: string | undefined;
|
|
20022
20417
|
audience?: string | undefined;
|
|
20023
20418
|
} | {
|
|
@@ -20066,7 +20461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20066
20461
|
client_id: string;
|
|
20067
20462
|
username: string;
|
|
20068
20463
|
otp: string;
|
|
20069
|
-
realm: "
|
|
20464
|
+
realm: "email" | "sms";
|
|
20070
20465
|
scope?: string | undefined;
|
|
20071
20466
|
audience?: string | undefined;
|
|
20072
20467
|
} | {
|
|
@@ -20082,17 +20477,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20082
20477
|
client_assertion_type?: string | undefined;
|
|
20083
20478
|
};
|
|
20084
20479
|
};
|
|
20085
|
-
output: {
|
|
20086
|
-
|
|
20087
|
-
|
|
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;
|
|
20480
|
+
output: {};
|
|
20481
|
+
outputFormat: string;
|
|
20482
|
+
status: 302;
|
|
20096
20483
|
} | {
|
|
20097
20484
|
input: {
|
|
20098
20485
|
form: {
|
|
@@ -20128,7 +20515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20128
20515
|
client_id: string;
|
|
20129
20516
|
username: string;
|
|
20130
20517
|
otp: string;
|
|
20131
|
-
realm: "
|
|
20518
|
+
realm: "email" | "sms";
|
|
20132
20519
|
scope?: string | undefined;
|
|
20133
20520
|
audience?: string | undefined;
|
|
20134
20521
|
} | {
|
|
@@ -20177,7 +20564,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20177
20564
|
client_id: string;
|
|
20178
20565
|
username: string;
|
|
20179
20566
|
otp: string;
|
|
20180
|
-
realm: "
|
|
20567
|
+
realm: "email" | "sms";
|
|
20181
20568
|
scope?: string | undefined;
|
|
20182
20569
|
audience?: string | undefined;
|
|
20183
20570
|
} | {
|
|
@@ -20193,9 +20580,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20193
20580
|
client_assertion_type?: string | undefined;
|
|
20194
20581
|
};
|
|
20195
20582
|
};
|
|
20196
|
-
output: {
|
|
20197
|
-
|
|
20198
|
-
|
|
20583
|
+
output: {
|
|
20584
|
+
access_token: string;
|
|
20585
|
+
token_type: string;
|
|
20586
|
+
expires_in: number;
|
|
20587
|
+
id_token?: string | undefined;
|
|
20588
|
+
scope?: string | undefined;
|
|
20589
|
+
state?: string | undefined;
|
|
20590
|
+
refresh_token?: string | undefined;
|
|
20591
|
+
};
|
|
20592
|
+
outputFormat: "json";
|
|
20593
|
+
status: 200;
|
|
20199
20594
|
} | {
|
|
20200
20595
|
input: {
|
|
20201
20596
|
form: {
|
|
@@ -20231,7 +20626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20231
20626
|
client_id: string;
|
|
20232
20627
|
username: string;
|
|
20233
20628
|
otp: string;
|
|
20234
|
-
realm: "
|
|
20629
|
+
realm: "email" | "sms";
|
|
20235
20630
|
scope?: string | undefined;
|
|
20236
20631
|
audience?: string | undefined;
|
|
20237
20632
|
} | {
|
|
@@ -20280,7 +20675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20280
20675
|
client_id: string;
|
|
20281
20676
|
username: string;
|
|
20282
20677
|
otp: string;
|
|
20283
|
-
realm: "
|
|
20678
|
+
realm: "email" | "sms";
|
|
20284
20679
|
scope?: string | undefined;
|
|
20285
20680
|
audience?: string | undefined;
|
|
20286
20681
|
} | {
|
|
@@ -20337,7 +20732,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20337
20732
|
client_id: string;
|
|
20338
20733
|
username: string;
|
|
20339
20734
|
otp: string;
|
|
20340
|
-
realm: "
|
|
20735
|
+
realm: "email" | "sms";
|
|
20341
20736
|
scope?: string | undefined;
|
|
20342
20737
|
audience?: string | undefined;
|
|
20343
20738
|
} | {
|
|
@@ -20386,7 +20781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20386
20781
|
client_id: string;
|
|
20387
20782
|
username: string;
|
|
20388
20783
|
otp: string;
|
|
20389
|
-
realm: "
|
|
20784
|
+
realm: "email" | "sms";
|
|
20390
20785
|
scope?: string | undefined;
|
|
20391
20786
|
audience?: string | undefined;
|
|
20392
20787
|
} | {
|
|
@@ -20443,7 +20838,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20443
20838
|
client_id: string;
|
|
20444
20839
|
username: string;
|
|
20445
20840
|
otp: string;
|
|
20446
|
-
realm: "
|
|
20841
|
+
realm: "email" | "sms";
|
|
20447
20842
|
scope?: string | undefined;
|
|
20448
20843
|
audience?: string | undefined;
|
|
20449
20844
|
} | {
|
|
@@ -20492,7 +20887,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20492
20887
|
client_id: string;
|
|
20493
20888
|
username: string;
|
|
20494
20889
|
otp: string;
|
|
20495
|
-
realm: "
|
|
20890
|
+
realm: "email" | "sms";
|
|
20496
20891
|
scope?: string | undefined;
|
|
20497
20892
|
audience?: string | undefined;
|
|
20498
20893
|
} | {
|
|
@@ -20716,7 +21111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20716
21111
|
};
|
|
20717
21112
|
output: {};
|
|
20718
21113
|
outputFormat: string;
|
|
20719
|
-
status:
|
|
21114
|
+
status: 200;
|
|
20720
21115
|
} | {
|
|
20721
21116
|
input: {
|
|
20722
21117
|
query: {
|
|
@@ -20730,7 +21125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20730
21125
|
};
|
|
20731
21126
|
output: {};
|
|
20732
21127
|
outputFormat: string;
|
|
20733
|
-
status:
|
|
21128
|
+
status: 302;
|
|
20734
21129
|
} | {
|
|
20735
21130
|
input: {
|
|
20736
21131
|
query: {
|
|
@@ -20851,7 +21246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20851
21246
|
};
|
|
20852
21247
|
output: {};
|
|
20853
21248
|
outputFormat: string;
|
|
20854
|
-
status:
|
|
21249
|
+
status: 500;
|
|
20855
21250
|
} | {
|
|
20856
21251
|
input: {
|
|
20857
21252
|
query: {
|
|
@@ -20860,7 +21255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20860
21255
|
};
|
|
20861
21256
|
output: {};
|
|
20862
21257
|
outputFormat: string;
|
|
20863
|
-
status:
|
|
21258
|
+
status: 302;
|
|
20864
21259
|
} | {
|
|
20865
21260
|
input: {
|
|
20866
21261
|
query: {
|
|
@@ -20869,7 +21264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20869
21264
|
};
|
|
20870
21265
|
output: {};
|
|
20871
21266
|
outputFormat: string;
|
|
20872
|
-
status:
|
|
21267
|
+
status: 400;
|
|
20873
21268
|
};
|
|
20874
21269
|
};
|
|
20875
21270
|
}, "/continue"> & hono_types.MergeSchemaPath<{
|
|
@@ -21339,7 +21734,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21339
21734
|
} & {
|
|
21340
21735
|
form: {
|
|
21341
21736
|
username: string;
|
|
21342
|
-
login_selection?: "
|
|
21737
|
+
login_selection?: "password" | "code" | undefined;
|
|
21343
21738
|
};
|
|
21344
21739
|
};
|
|
21345
21740
|
output: {};
|
|
@@ -21353,7 +21748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21353
21748
|
} & {
|
|
21354
21749
|
form: {
|
|
21355
21750
|
username: string;
|
|
21356
|
-
login_selection?: "
|
|
21751
|
+
login_selection?: "password" | "code" | undefined;
|
|
21357
21752
|
};
|
|
21358
21753
|
};
|
|
21359
21754
|
output: {};
|
|
@@ -21718,7 +22113,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21718
22113
|
$get: {
|
|
21719
22114
|
input: {
|
|
21720
22115
|
param: {
|
|
21721
|
-
screen: "
|
|
22116
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "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
22117
|
};
|
|
21723
22118
|
} & {
|
|
21724
22119
|
query: {
|
|
@@ -21734,7 +22129,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21734
22129
|
} | {
|
|
21735
22130
|
input: {
|
|
21736
22131
|
param: {
|
|
21737
|
-
screen: "
|
|
22132
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "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
22133
|
};
|
|
21739
22134
|
} & {
|
|
21740
22135
|
query: {
|
|
@@ -21750,7 +22145,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21750
22145
|
} | {
|
|
21751
22146
|
input: {
|
|
21752
22147
|
param: {
|
|
21753
|
-
screen: "
|
|
22148
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "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
22149
|
};
|
|
21755
22150
|
} & {
|
|
21756
22151
|
query: {
|
|
@@ -21770,7 +22165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21770
22165
|
$post: {
|
|
21771
22166
|
input: {
|
|
21772
22167
|
param: {
|
|
21773
|
-
screen: "
|
|
22168
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "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
22169
|
};
|
|
21775
22170
|
} & {
|
|
21776
22171
|
query: {
|
|
@@ -21788,7 +22183,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21788
22183
|
} | {
|
|
21789
22184
|
input: {
|
|
21790
22185
|
param: {
|
|
21791
|
-
screen: "
|
|
22186
|
+
screen: "signup" | "login" | "impersonate" | "reset-password" | "consent" | "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
22187
|
};
|
|
21793
22188
|
} & {
|
|
21794
22189
|
query: {
|
|
@@ -21890,5 +22285,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21890
22285
|
createX509Certificate: typeof createX509Certificate;
|
|
21891
22286
|
};
|
|
21892
22287
|
|
|
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 };
|
|
22288
|
+
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, advanceUsersImport, backfillProxyHostsToKv, cleanupActionExecutions, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, cleanupUsersImports, 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, resumeUsersImports, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
22289
|
+
export type { ActionExecutionsCleanupParams, AdvanceOptions, AdvanceResult, 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, ResumeUsersImportsOptions, ResumeUsersImportsResult, 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, UsersImportCleanupParams, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
|