authhero 8.17.4 → 8.19.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/authhero.cjs +112 -112
- package/dist/authhero.d.ts +414 -269
- package/dist/authhero.mjs +11131 -10900
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/helpers/audit-target-types.d.ts +6 -0
- package/dist/types/helpers/default-destinations.d.ts +14 -4
- package/dist/types/helpers/outbox-destinations/code-hooks.d.ts +56 -0
- package/dist/types/helpers/password-connection.d.ts +16 -0
- package/dist/types/helpers/provision-tenant-clients.d.ts +65 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +8 -1
- package/dist/types/hooks/codehooks.d.ts +78 -9
- package/dist/types/index.d.ts +268 -263
- package/dist/types/routes/auth-api/index.d.ts +24 -24
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +9 -9
- package/dist/types/routes/management-api/connections.d.ts +6 -6
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hooks.d.ts +24 -24
- package/dist/types/routes/management-api/index.d.ts +236 -234
- 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 +6 -6
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/users.d.ts +4 -2
- package/dist/types/routes/universal-login/common.d.ts +4 -4
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- 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/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as hono_utils_types from 'hono/utils/types';
|
|
2
2
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
3
|
-
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
3
|
+
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
4
4
|
export * from '@authhero/adapter-interfaces';
|
|
5
5
|
import * as hono_types from 'hono/types';
|
|
6
6
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
@@ -2261,10 +2261,12 @@ declare class WebhookDestination implements EventDestination {
|
|
|
2261
2261
|
|
|
2262
2262
|
interface CreateDefaultDestinationsConfig {
|
|
2263
2263
|
/**
|
|
2264
|
-
* Data adapter —
|
|
2265
|
-
*
|
|
2264
|
+
* Data adapter — the `logs`, `hooks`, `users`, and `logStreams` adapters are
|
|
2265
|
+
* used by the built-in destinations. When `codeExecutor` is set, the
|
|
2266
|
+
* `actions`, `hookCode`, and `actionExecutions` adapters are also required so
|
|
2267
|
+
* `CodeHookDestination` can resolve and run tenant code hooks.
|
|
2266
2268
|
*/
|
|
2267
|
-
dataAdapter: Pick<DataAdapters, "logs" | "hooks" | "users" | "logStreams"
|
|
2269
|
+
dataAdapter: Pick<DataAdapters, "logs" | "hooks" | "users" | "logStreams"> & Partial<Pick<DataAdapters, "actions" | "hookCode" | "actionExecutions" | "multiTenancyConfig">>;
|
|
2268
2270
|
/**
|
|
2269
2271
|
* Produces a Bearer access token for the given tenant, used when POSTing
|
|
2270
2272
|
* `hook.*` events to the configured webhook URLs.
|
|
@@ -2294,6 +2296,14 @@ interface CreateDefaultDestinationsConfig {
|
|
|
2294
2296
|
* deliveries don't diverge from inline per-request ones.
|
|
2295
2297
|
*/
|
|
2296
2298
|
webhookInvoker?: WebhookInvoker;
|
|
2299
|
+
/**
|
|
2300
|
+
* Code executor — same instance passed to `init({ codeExecutor })`. When
|
|
2301
|
+
* provided (and `dataAdapter` carries `actions`, `hookCode`, and
|
|
2302
|
+
* `actionExecutions`), a `CodeHookDestination` is added so cron-drained
|
|
2303
|
+
* `hook.*` events also run tenant code hooks. Without it, code hooks that
|
|
2304
|
+
* failed per-request delivery would be silently skipped on retry.
|
|
2305
|
+
*/
|
|
2306
|
+
codeExecutor?: CodeExecutor;
|
|
2297
2307
|
}
|
|
2298
2308
|
/**
|
|
2299
2309
|
* Build the same array of outbox destinations that authhero's per-request
|
|
@@ -2322,6 +2332,71 @@ interface CreateDefaultDestinationsConfig {
|
|
|
2322
2332
|
*/
|
|
2323
2333
|
declare function createDefaultDestinations(config: CreateDefaultDestinationsConfig): EventDestination[];
|
|
2324
2334
|
|
|
2335
|
+
/**
|
|
2336
|
+
* Whether a client can anchor interactive, user-facing flows (universal login,
|
|
2337
|
+
* the DCR `/connect/start` consent bounce, etc.).
|
|
2338
|
+
*
|
|
2339
|
+
* A client is considered interactive unless it is explicitly machine-to-machine:
|
|
2340
|
+
* `non_interactive`/`resource_server` app types, or a grant list that only
|
|
2341
|
+
* allows `client_credentials`. Clients with no explicit `grant_types` are
|
|
2342
|
+
* treated as interactive — that matches how a freshly created "Default App"
|
|
2343
|
+
* (which relies on the authorize flow) behaves in AuthHero and Auth0.
|
|
2344
|
+
*/
|
|
2345
|
+
declare function isInteractiveClient(client: Pick<Client, "app_type" | "grant_types">): boolean;
|
|
2346
|
+
/** A single Management API scope entry (`{ value, description }`). */
|
|
2347
|
+
interface ManagementApiScope {
|
|
2348
|
+
value: string;
|
|
2349
|
+
description?: string;
|
|
2350
|
+
}
|
|
2351
|
+
interface ProvisionDefaultClientsOptions {
|
|
2352
|
+
/** Display name for an auto-created Default App. Defaults to "Default App". */
|
|
2353
|
+
defaultAppName?: string;
|
|
2354
|
+
/** Callback URLs for an auto-created Default App. */
|
|
2355
|
+
callbacks?: string[];
|
|
2356
|
+
/** Allowed logout URLs for an auto-created Default App. */
|
|
2357
|
+
allowedLogoutUrls?: string[];
|
|
2358
|
+
/** Allowed web origins for an auto-created Default App. */
|
|
2359
|
+
webOrigins?: string[];
|
|
2360
|
+
/**
|
|
2361
|
+
* Also provision an M2M "API Explorer" client authorized against the
|
|
2362
|
+
* Management API (Auth0 parity). Defaults to `true`. Requires
|
|
2363
|
+
* `managementApiScopes` to seed the resource server when it is missing.
|
|
2364
|
+
*/
|
|
2365
|
+
createManagementClient?: boolean;
|
|
2366
|
+
/** Management API identifier. Defaults to `urn:authhero:management`. */
|
|
2367
|
+
managementApiIdentifier?: string;
|
|
2368
|
+
/**
|
|
2369
|
+
* Scopes used to seed the Management API resource server when it does not
|
|
2370
|
+
* yet exist, and to authorize the M2M client's grant. When omitted, the
|
|
2371
|
+
* resource server is assumed to already exist and the grant is created with
|
|
2372
|
+
* no explicit scope.
|
|
2373
|
+
*/
|
|
2374
|
+
managementApiScopes?: ManagementApiScope[];
|
|
2375
|
+
/** Emit progress logs (used by the seed script). */
|
|
2376
|
+
debug?: boolean;
|
|
2377
|
+
}
|
|
2378
|
+
interface ProvisionDefaultClientsResult {
|
|
2379
|
+
/** The client the tenant's `default_client_id` now points at. */
|
|
2380
|
+
defaultClientId: string;
|
|
2381
|
+
/** The auto-provisioned M2M Management API client, if one was created/found. */
|
|
2382
|
+
managementClientId?: string;
|
|
2383
|
+
}
|
|
2384
|
+
/**
|
|
2385
|
+
* Ensures a tenant has a designated interactive default client and (optionally)
|
|
2386
|
+
* an M2M Management API client, then points `tenant.default_client_id` at the
|
|
2387
|
+
* former.
|
|
2388
|
+
*
|
|
2389
|
+
* Idempotent and import-safe:
|
|
2390
|
+
* - Respects an already-set, still-valid `default_client_id`.
|
|
2391
|
+
* - Reuses an existing interactive client instead of creating a duplicate.
|
|
2392
|
+
* - Skips the M2M client when one already exists.
|
|
2393
|
+
*
|
|
2394
|
+
* Shared by every tenant-creation path (the seed/bootstrap script and the
|
|
2395
|
+
* multi-tenancy provisioning hook) so new tenants come with a sensible anchor
|
|
2396
|
+
* client by construction — see issue #1007.
|
|
2397
|
+
*/
|
|
2398
|
+
declare function provisionDefaultClients(adapters: DataAdapters, tenantId: string, options?: ProvisionDefaultClientsOptions): Promise<ProvisionDefaultClientsResult>;
|
|
2399
|
+
|
|
2325
2400
|
interface RunOutboxRelayConfig {
|
|
2326
2401
|
/** Same `DataAdapters` passed to `init()`. Must include `outbox` to drain. */
|
|
2327
2402
|
dataAdapter: DataAdapters;
|
|
@@ -2346,6 +2421,13 @@ interface RunOutboxRelayConfig {
|
|
|
2346
2421
|
maxRetries?: number;
|
|
2347
2422
|
/** Webhook HTTP timeout (ms), when the default invoker is used. */
|
|
2348
2423
|
webhookTimeoutMs?: number;
|
|
2424
|
+
/**
|
|
2425
|
+
* Optional code executor — same instance passed to `init({ codeExecutor })`.
|
|
2426
|
+
* When provided, cron-drained `hook.*` events also run tenant code hooks, so
|
|
2427
|
+
* a code hook that failed per-request delivery is retried rather than
|
|
2428
|
+
* silently skipped.
|
|
2429
|
+
*/
|
|
2430
|
+
codeExecutor?: CodeExecutor;
|
|
2349
2431
|
}
|
|
2350
2432
|
/**
|
|
2351
2433
|
* One-call outbox relay for cron / scheduled handlers.
|
|
@@ -2400,6 +2482,67 @@ declare class LogsDestination implements EventDestination {
|
|
|
2400
2482
|
}[]): Promise<void>;
|
|
2401
2483
|
}
|
|
2402
2484
|
|
|
2485
|
+
/**
|
|
2486
|
+
* The subset of `DataAdapters` needed to resolve and run a code hook and to
|
|
2487
|
+
* persist its execution record. Narrowed so `CodeHookDestination` and the cron
|
|
2488
|
+
* `createDefaultDestinations` helper can construct it without depending on the
|
|
2489
|
+
* full adapter surface.
|
|
2490
|
+
*/
|
|
2491
|
+
type CodeHookData = Pick<DataAdapters, "hooks" | "actions" | "hookCode" | "actionExecutions" | "multiTenancyConfig">;
|
|
2492
|
+
|
|
2493
|
+
interface CodeHookInvocation {
|
|
2494
|
+
eventId: string;
|
|
2495
|
+
tenantId: string;
|
|
2496
|
+
triggerId: string;
|
|
2497
|
+
/** Serialized user snapshot from the audit event (`target.after`). */
|
|
2498
|
+
user?: unknown;
|
|
2499
|
+
/** Serialized request context from the audit event. */
|
|
2500
|
+
request?: unknown;
|
|
2501
|
+
}
|
|
2502
|
+
/**
|
|
2503
|
+
* Delivers `hook.*` outbox events to tenant-authored **code hooks** (actions)
|
|
2504
|
+
* for the matching `trigger_id`. Runs alongside `WebhookDestination` — both
|
|
2505
|
+
* accept the same `hook.*` events — so a single registration/deletion event
|
|
2506
|
+
* fans out to webhooks *and* code hooks. The fan-out is not retried
|
|
2507
|
+
* independently: the relay retries the whole outbox event, running its
|
|
2508
|
+
* destinations in order and stopping at the first failure, so a code-hook
|
|
2509
|
+
* failure here causes earlier destinations (e.g. webhooks) to run again on the
|
|
2510
|
+
* retry. Every destination on the event must therefore be idempotent.
|
|
2511
|
+
*
|
|
2512
|
+
* Reliability model: unlike the previous inline execution (best-effort,
|
|
2513
|
+
* at-most-once, failures logged and dropped), code hooks delivered here are
|
|
2514
|
+
* **at-least-once**. If any code hook for the trigger fails, `deliver` throws
|
|
2515
|
+
* so the relay retries the whole event with backoff and, after `maxRetries`,
|
|
2516
|
+
* dead-letters it. A retry re-runs every code hook for the trigger, so the
|
|
2517
|
+
* event id is passed to user code as `event.idempotency_key` for dedupe.
|
|
2518
|
+
*
|
|
2519
|
+
* Must be listed AFTER `WebhookDestination` and BEFORE
|
|
2520
|
+
* `RegistrationFinalizerDestination` so `registration_completed_at` is only
|
|
2521
|
+
* flipped on a pass where every webhook *and* code hook succeeded.
|
|
2522
|
+
*
|
|
2523
|
+
* Constructed per-request (via `getDestinations(ctx)`) so it can close over
|
|
2524
|
+
* `ctx.env.codeExecutor`. The same class is used by the cron `drainOutbox`
|
|
2525
|
+
* safety net when a `codeExecutor` is supplied to `createDefaultDestinations`.
|
|
2526
|
+
* When no executor is configured, code hooks cannot run (nor be deployed), so
|
|
2527
|
+
* `deliver` is a no-op success — matching the inline `handleCodeHook` which
|
|
2528
|
+
* returns `null` without an executor.
|
|
2529
|
+
*/
|
|
2530
|
+
declare class CodeHookDestination implements EventDestination {
|
|
2531
|
+
name: string;
|
|
2532
|
+
private data;
|
|
2533
|
+
private codeExecutor?;
|
|
2534
|
+
constructor(data: CodeHookData, codeExecutor?: CodeExecutor);
|
|
2535
|
+
accepts(event: AuditEvent): boolean;
|
|
2536
|
+
transform(event: AuditEvent): CodeHookInvocation;
|
|
2537
|
+
deliver(invocations: CodeHookInvocation[]): Promise<void>;
|
|
2538
|
+
/**
|
|
2539
|
+
* Fetch every hook for the tenant, paging past the adapter's default page
|
|
2540
|
+
* size. `hooks.list` returns only the first page by default, so a tenant with
|
|
2541
|
+
* more enabled code hooks than one page would silently skip the rest.
|
|
2542
|
+
*/
|
|
2543
|
+
private listAllHooks;
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2403
2546
|
interface FinalizationTask {
|
|
2404
2547
|
tenantId: string;
|
|
2405
2548
|
userId: string;
|
|
@@ -3042,8 +3185,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3042
3185
|
$get: {
|
|
3043
3186
|
input: {
|
|
3044
3187
|
query: {
|
|
3045
|
-
include_password_hashes?: "
|
|
3046
|
-
gzip?: "
|
|
3188
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3189
|
+
gzip?: "false" | "true" | undefined;
|
|
3047
3190
|
};
|
|
3048
3191
|
} & {
|
|
3049
3192
|
header: {
|
|
@@ -3056,8 +3199,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3056
3199
|
} | {
|
|
3057
3200
|
input: {
|
|
3058
3201
|
query: {
|
|
3059
|
-
include_password_hashes?: "
|
|
3060
|
-
gzip?: "
|
|
3202
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3203
|
+
gzip?: "false" | "true" | undefined;
|
|
3061
3204
|
};
|
|
3062
3205
|
} & {
|
|
3063
3206
|
header: {
|
|
@@ -3076,7 +3219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3076
3219
|
$post: {
|
|
3077
3220
|
input: {
|
|
3078
3221
|
query: {
|
|
3079
|
-
include_password_hashes?: "
|
|
3222
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3080
3223
|
};
|
|
3081
3224
|
} & {
|
|
3082
3225
|
header: {
|
|
@@ -3130,7 +3273,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3130
3273
|
};
|
|
3131
3274
|
} & {
|
|
3132
3275
|
json: {
|
|
3133
|
-
type: "push" | "email" | "passkey" | "
|
|
3276
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
3134
3277
|
phone_number?: string | undefined;
|
|
3135
3278
|
totp_secret?: string | undefined;
|
|
3136
3279
|
credential_id?: string | undefined;
|
|
@@ -3270,7 +3413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3270
3413
|
};
|
|
3271
3414
|
};
|
|
3272
3415
|
output: {
|
|
3273
|
-
name: "
|
|
3416
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3274
3417
|
enabled: boolean;
|
|
3275
3418
|
trial_expired?: boolean | undefined;
|
|
3276
3419
|
}[];
|
|
@@ -3425,7 +3568,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3425
3568
|
$get: {
|
|
3426
3569
|
input: {
|
|
3427
3570
|
param: {
|
|
3428
|
-
factor_name: "
|
|
3571
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3429
3572
|
};
|
|
3430
3573
|
} & {
|
|
3431
3574
|
header: {
|
|
@@ -3433,7 +3576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3433
3576
|
};
|
|
3434
3577
|
};
|
|
3435
3578
|
output: {
|
|
3436
|
-
name: "
|
|
3579
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3437
3580
|
enabled: boolean;
|
|
3438
3581
|
trial_expired?: boolean | undefined;
|
|
3439
3582
|
};
|
|
@@ -3446,7 +3589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3446
3589
|
$put: {
|
|
3447
3590
|
input: {
|
|
3448
3591
|
param: {
|
|
3449
|
-
factor_name: "
|
|
3592
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3450
3593
|
};
|
|
3451
3594
|
} & {
|
|
3452
3595
|
header: {
|
|
@@ -3458,7 +3601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3458
3601
|
};
|
|
3459
3602
|
};
|
|
3460
3603
|
output: {
|
|
3461
|
-
name: "
|
|
3604
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3462
3605
|
enabled: boolean;
|
|
3463
3606
|
trial_expired?: boolean | undefined;
|
|
3464
3607
|
};
|
|
@@ -4203,11 +4346,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4203
4346
|
invitee: {
|
|
4204
4347
|
email?: string | undefined;
|
|
4205
4348
|
};
|
|
4349
|
+
roles?: string[] | undefined;
|
|
4206
4350
|
id?: string | undefined;
|
|
4207
4351
|
app_metadata?: Record<string, any> | undefined;
|
|
4208
4352
|
user_metadata?: Record<string, any> | undefined;
|
|
4209
4353
|
connection_id?: string | undefined;
|
|
4210
|
-
roles?: string[] | undefined;
|
|
4211
4354
|
ttl_sec?: number | undefined;
|
|
4212
4355
|
send_invitation_email?: boolean | undefined;
|
|
4213
4356
|
};
|
|
@@ -4391,8 +4534,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4391
4534
|
};
|
|
4392
4535
|
} & {
|
|
4393
4536
|
json: {
|
|
4394
|
-
show_as_button?: boolean | undefined;
|
|
4395
4537
|
assign_membership_on_login?: boolean | undefined;
|
|
4538
|
+
show_as_button?: boolean | undefined;
|
|
4396
4539
|
is_signup_enabled?: boolean | undefined;
|
|
4397
4540
|
};
|
|
4398
4541
|
};
|
|
@@ -5634,7 +5777,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5634
5777
|
hint?: string | undefined;
|
|
5635
5778
|
messages?: {
|
|
5636
5779
|
text: string;
|
|
5637
|
-
type: "
|
|
5780
|
+
type: "success" | "error" | "info" | "warning";
|
|
5638
5781
|
id?: number | undefined;
|
|
5639
5782
|
}[] | undefined;
|
|
5640
5783
|
required?: boolean | undefined;
|
|
@@ -5652,7 +5795,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5652
5795
|
hint?: string | undefined;
|
|
5653
5796
|
messages?: {
|
|
5654
5797
|
text: string;
|
|
5655
|
-
type: "
|
|
5798
|
+
type: "success" | "error" | "info" | "warning";
|
|
5656
5799
|
id?: number | undefined;
|
|
5657
5800
|
}[] | undefined;
|
|
5658
5801
|
required?: boolean | undefined;
|
|
@@ -5676,7 +5819,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5676
5819
|
hint?: string | undefined;
|
|
5677
5820
|
messages?: {
|
|
5678
5821
|
text: string;
|
|
5679
|
-
type: "
|
|
5822
|
+
type: "success" | "error" | "info" | "warning";
|
|
5680
5823
|
id?: number | undefined;
|
|
5681
5824
|
}[] | undefined;
|
|
5682
5825
|
required?: boolean | undefined;
|
|
@@ -5700,7 +5843,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5700
5843
|
hint?: string | undefined;
|
|
5701
5844
|
messages?: {
|
|
5702
5845
|
text: string;
|
|
5703
|
-
type: "
|
|
5846
|
+
type: "success" | "error" | "info" | "warning";
|
|
5704
5847
|
id?: number | undefined;
|
|
5705
5848
|
}[] | undefined;
|
|
5706
5849
|
required?: boolean | undefined;
|
|
@@ -5724,7 +5867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5724
5867
|
hint?: string | undefined;
|
|
5725
5868
|
messages?: {
|
|
5726
5869
|
text: string;
|
|
5727
|
-
type: "
|
|
5870
|
+
type: "success" | "error" | "info" | "warning";
|
|
5728
5871
|
id?: number | undefined;
|
|
5729
5872
|
}[] | undefined;
|
|
5730
5873
|
required?: boolean | undefined;
|
|
@@ -5753,7 +5896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5753
5896
|
hint?: string | undefined;
|
|
5754
5897
|
messages?: {
|
|
5755
5898
|
text: string;
|
|
5756
|
-
type: "
|
|
5899
|
+
type: "success" | "error" | "info" | "warning";
|
|
5757
5900
|
id?: number | undefined;
|
|
5758
5901
|
}[] | undefined;
|
|
5759
5902
|
required?: boolean | undefined;
|
|
@@ -5768,7 +5911,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5768
5911
|
hint?: string | undefined;
|
|
5769
5912
|
messages?: {
|
|
5770
5913
|
text: string;
|
|
5771
|
-
type: "
|
|
5914
|
+
type: "success" | "error" | "info" | "warning";
|
|
5772
5915
|
id?: number | undefined;
|
|
5773
5916
|
}[] | undefined;
|
|
5774
5917
|
required?: boolean | undefined;
|
|
@@ -5789,7 +5932,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5789
5932
|
hint?: string | undefined;
|
|
5790
5933
|
messages?: {
|
|
5791
5934
|
text: string;
|
|
5792
|
-
type: "
|
|
5935
|
+
type: "success" | "error" | "info" | "warning";
|
|
5793
5936
|
id?: number | undefined;
|
|
5794
5937
|
}[] | undefined;
|
|
5795
5938
|
required?: boolean | undefined;
|
|
@@ -5814,7 +5957,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5814
5957
|
hint?: string | undefined;
|
|
5815
5958
|
messages?: {
|
|
5816
5959
|
text: string;
|
|
5817
|
-
type: "
|
|
5960
|
+
type: "success" | "error" | "info" | "warning";
|
|
5818
5961
|
id?: number | undefined;
|
|
5819
5962
|
}[] | undefined;
|
|
5820
5963
|
required?: boolean | undefined;
|
|
@@ -5833,7 +5976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5833
5976
|
hint?: string | undefined;
|
|
5834
5977
|
messages?: {
|
|
5835
5978
|
text: string;
|
|
5836
|
-
type: "
|
|
5979
|
+
type: "success" | "error" | "info" | "warning";
|
|
5837
5980
|
id?: number | undefined;
|
|
5838
5981
|
}[] | undefined;
|
|
5839
5982
|
required?: boolean | undefined;
|
|
@@ -5853,7 +5996,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5853
5996
|
hint?: string | undefined;
|
|
5854
5997
|
messages?: {
|
|
5855
5998
|
text: string;
|
|
5856
|
-
type: "
|
|
5999
|
+
type: "success" | "error" | "info" | "warning";
|
|
5857
6000
|
id?: number | undefined;
|
|
5858
6001
|
}[] | undefined;
|
|
5859
6002
|
required?: boolean | undefined;
|
|
@@ -5872,7 +6015,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5872
6015
|
hint?: string | undefined;
|
|
5873
6016
|
messages?: {
|
|
5874
6017
|
text: string;
|
|
5875
|
-
type: "
|
|
6018
|
+
type: "success" | "error" | "info" | "warning";
|
|
5876
6019
|
id?: number | undefined;
|
|
5877
6020
|
}[] | undefined;
|
|
5878
6021
|
required?: boolean | undefined;
|
|
@@ -5894,7 +6037,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5894
6037
|
hint?: string | undefined;
|
|
5895
6038
|
messages?: {
|
|
5896
6039
|
text: string;
|
|
5897
|
-
type: "
|
|
6040
|
+
type: "success" | "error" | "info" | "warning";
|
|
5898
6041
|
id?: number | undefined;
|
|
5899
6042
|
}[] | undefined;
|
|
5900
6043
|
required?: boolean | undefined;
|
|
@@ -5916,7 +6059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5916
6059
|
hint?: string | undefined;
|
|
5917
6060
|
messages?: {
|
|
5918
6061
|
text: string;
|
|
5919
|
-
type: "
|
|
6062
|
+
type: "success" | "error" | "info" | "warning";
|
|
5920
6063
|
id?: number | undefined;
|
|
5921
6064
|
}[] | undefined;
|
|
5922
6065
|
required?: boolean | undefined;
|
|
@@ -5935,7 +6078,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5935
6078
|
hint?: string | undefined;
|
|
5936
6079
|
messages?: {
|
|
5937
6080
|
text: string;
|
|
5938
|
-
type: "
|
|
6081
|
+
type: "success" | "error" | "info" | "warning";
|
|
5939
6082
|
id?: number | undefined;
|
|
5940
6083
|
}[] | undefined;
|
|
5941
6084
|
required?: boolean | undefined;
|
|
@@ -5960,7 +6103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5960
6103
|
hint?: string | undefined;
|
|
5961
6104
|
messages?: {
|
|
5962
6105
|
text: string;
|
|
5963
|
-
type: "
|
|
6106
|
+
type: "success" | "error" | "info" | "warning";
|
|
5964
6107
|
id?: number | undefined;
|
|
5965
6108
|
}[] | undefined;
|
|
5966
6109
|
required?: boolean | undefined;
|
|
@@ -5981,7 +6124,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5981
6124
|
hint?: string | undefined;
|
|
5982
6125
|
messages?: {
|
|
5983
6126
|
text: string;
|
|
5984
|
-
type: "
|
|
6127
|
+
type: "success" | "error" | "info" | "warning";
|
|
5985
6128
|
id?: number | undefined;
|
|
5986
6129
|
}[] | undefined;
|
|
5987
6130
|
required?: boolean | undefined;
|
|
@@ -6002,7 +6145,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6002
6145
|
hint?: string | undefined;
|
|
6003
6146
|
messages?: {
|
|
6004
6147
|
text: string;
|
|
6005
|
-
type: "
|
|
6148
|
+
type: "success" | "error" | "info" | "warning";
|
|
6006
6149
|
id?: number | undefined;
|
|
6007
6150
|
}[] | undefined;
|
|
6008
6151
|
required?: boolean | undefined;
|
|
@@ -6235,7 +6378,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6235
6378
|
hint?: string | undefined;
|
|
6236
6379
|
messages?: {
|
|
6237
6380
|
text: string;
|
|
6238
|
-
type: "
|
|
6381
|
+
type: "success" | "error" | "info" | "warning";
|
|
6239
6382
|
id?: number | undefined;
|
|
6240
6383
|
}[] | undefined;
|
|
6241
6384
|
required?: boolean | undefined;
|
|
@@ -6253,7 +6396,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6253
6396
|
hint?: string | undefined;
|
|
6254
6397
|
messages?: {
|
|
6255
6398
|
text: string;
|
|
6256
|
-
type: "
|
|
6399
|
+
type: "success" | "error" | "info" | "warning";
|
|
6257
6400
|
id?: number | undefined;
|
|
6258
6401
|
}[] | undefined;
|
|
6259
6402
|
required?: boolean | undefined;
|
|
@@ -6277,7 +6420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6277
6420
|
hint?: string | undefined;
|
|
6278
6421
|
messages?: {
|
|
6279
6422
|
text: string;
|
|
6280
|
-
type: "
|
|
6423
|
+
type: "success" | "error" | "info" | "warning";
|
|
6281
6424
|
id?: number | undefined;
|
|
6282
6425
|
}[] | undefined;
|
|
6283
6426
|
required?: boolean | undefined;
|
|
@@ -6301,7 +6444,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6301
6444
|
hint?: string | undefined;
|
|
6302
6445
|
messages?: {
|
|
6303
6446
|
text: string;
|
|
6304
|
-
type: "
|
|
6447
|
+
type: "success" | "error" | "info" | "warning";
|
|
6305
6448
|
id?: number | undefined;
|
|
6306
6449
|
}[] | undefined;
|
|
6307
6450
|
required?: boolean | undefined;
|
|
@@ -6325,7 +6468,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6325
6468
|
hint?: string | undefined;
|
|
6326
6469
|
messages?: {
|
|
6327
6470
|
text: string;
|
|
6328
|
-
type: "
|
|
6471
|
+
type: "success" | "error" | "info" | "warning";
|
|
6329
6472
|
id?: number | undefined;
|
|
6330
6473
|
}[] | undefined;
|
|
6331
6474
|
required?: boolean | undefined;
|
|
@@ -6354,7 +6497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6354
6497
|
hint?: string | undefined;
|
|
6355
6498
|
messages?: {
|
|
6356
6499
|
text: string;
|
|
6357
|
-
type: "
|
|
6500
|
+
type: "success" | "error" | "info" | "warning";
|
|
6358
6501
|
id?: number | undefined;
|
|
6359
6502
|
}[] | undefined;
|
|
6360
6503
|
required?: boolean | undefined;
|
|
@@ -6369,7 +6512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6369
6512
|
hint?: string | undefined;
|
|
6370
6513
|
messages?: {
|
|
6371
6514
|
text: string;
|
|
6372
|
-
type: "
|
|
6515
|
+
type: "success" | "error" | "info" | "warning";
|
|
6373
6516
|
id?: number | undefined;
|
|
6374
6517
|
}[] | undefined;
|
|
6375
6518
|
required?: boolean | undefined;
|
|
@@ -6390,7 +6533,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6390
6533
|
hint?: string | undefined;
|
|
6391
6534
|
messages?: {
|
|
6392
6535
|
text: string;
|
|
6393
|
-
type: "
|
|
6536
|
+
type: "success" | "error" | "info" | "warning";
|
|
6394
6537
|
id?: number | undefined;
|
|
6395
6538
|
}[] | undefined;
|
|
6396
6539
|
required?: boolean | undefined;
|
|
@@ -6415,7 +6558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6415
6558
|
hint?: string | undefined;
|
|
6416
6559
|
messages?: {
|
|
6417
6560
|
text: string;
|
|
6418
|
-
type: "
|
|
6561
|
+
type: "success" | "error" | "info" | "warning";
|
|
6419
6562
|
id?: number | undefined;
|
|
6420
6563
|
}[] | undefined;
|
|
6421
6564
|
required?: boolean | undefined;
|
|
@@ -6434,7 +6577,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6434
6577
|
hint?: string | undefined;
|
|
6435
6578
|
messages?: {
|
|
6436
6579
|
text: string;
|
|
6437
|
-
type: "
|
|
6580
|
+
type: "success" | "error" | "info" | "warning";
|
|
6438
6581
|
id?: number | undefined;
|
|
6439
6582
|
}[] | undefined;
|
|
6440
6583
|
required?: boolean | undefined;
|
|
@@ -6454,7 +6597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6454
6597
|
hint?: string | undefined;
|
|
6455
6598
|
messages?: {
|
|
6456
6599
|
text: string;
|
|
6457
|
-
type: "
|
|
6600
|
+
type: "success" | "error" | "info" | "warning";
|
|
6458
6601
|
id?: number | undefined;
|
|
6459
6602
|
}[] | undefined;
|
|
6460
6603
|
required?: boolean | undefined;
|
|
@@ -6473,7 +6616,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6473
6616
|
hint?: string | undefined;
|
|
6474
6617
|
messages?: {
|
|
6475
6618
|
text: string;
|
|
6476
|
-
type: "
|
|
6619
|
+
type: "success" | "error" | "info" | "warning";
|
|
6477
6620
|
id?: number | undefined;
|
|
6478
6621
|
}[] | undefined;
|
|
6479
6622
|
required?: boolean | undefined;
|
|
@@ -6495,7 +6638,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6495
6638
|
hint?: string | undefined;
|
|
6496
6639
|
messages?: {
|
|
6497
6640
|
text: string;
|
|
6498
|
-
type: "
|
|
6641
|
+
type: "success" | "error" | "info" | "warning";
|
|
6499
6642
|
id?: number | undefined;
|
|
6500
6643
|
}[] | undefined;
|
|
6501
6644
|
required?: boolean | undefined;
|
|
@@ -6517,7 +6660,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6517
6660
|
hint?: string | undefined;
|
|
6518
6661
|
messages?: {
|
|
6519
6662
|
text: string;
|
|
6520
|
-
type: "
|
|
6663
|
+
type: "success" | "error" | "info" | "warning";
|
|
6521
6664
|
id?: number | undefined;
|
|
6522
6665
|
}[] | undefined;
|
|
6523
6666
|
required?: boolean | undefined;
|
|
@@ -6536,7 +6679,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6536
6679
|
hint?: string | undefined;
|
|
6537
6680
|
messages?: {
|
|
6538
6681
|
text: string;
|
|
6539
|
-
type: "
|
|
6682
|
+
type: "success" | "error" | "info" | "warning";
|
|
6540
6683
|
id?: number | undefined;
|
|
6541
6684
|
}[] | undefined;
|
|
6542
6685
|
required?: boolean | undefined;
|
|
@@ -6561,7 +6704,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6561
6704
|
hint?: string | undefined;
|
|
6562
6705
|
messages?: {
|
|
6563
6706
|
text: string;
|
|
6564
|
-
type: "
|
|
6707
|
+
type: "success" | "error" | "info" | "warning";
|
|
6565
6708
|
id?: number | undefined;
|
|
6566
6709
|
}[] | undefined;
|
|
6567
6710
|
required?: boolean | undefined;
|
|
@@ -6582,7 +6725,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6582
6725
|
hint?: string | undefined;
|
|
6583
6726
|
messages?: {
|
|
6584
6727
|
text: string;
|
|
6585
|
-
type: "
|
|
6728
|
+
type: "success" | "error" | "info" | "warning";
|
|
6586
6729
|
id?: number | undefined;
|
|
6587
6730
|
}[] | undefined;
|
|
6588
6731
|
required?: boolean | undefined;
|
|
@@ -6603,7 +6746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6603
6746
|
hint?: string | undefined;
|
|
6604
6747
|
messages?: {
|
|
6605
6748
|
text: string;
|
|
6606
|
-
type: "
|
|
6749
|
+
type: "success" | "error" | "info" | "warning";
|
|
6607
6750
|
id?: number | undefined;
|
|
6608
6751
|
}[] | undefined;
|
|
6609
6752
|
required?: boolean | undefined;
|
|
@@ -6851,7 +6994,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6851
6994
|
hint?: string | undefined;
|
|
6852
6995
|
messages?: {
|
|
6853
6996
|
text: string;
|
|
6854
|
-
type: "
|
|
6997
|
+
type: "success" | "error" | "info" | "warning";
|
|
6855
6998
|
id?: number | undefined;
|
|
6856
6999
|
}[] | undefined;
|
|
6857
7000
|
required?: boolean | undefined;
|
|
@@ -6869,7 +7012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6869
7012
|
hint?: string | undefined;
|
|
6870
7013
|
messages?: {
|
|
6871
7014
|
text: string;
|
|
6872
|
-
type: "
|
|
7015
|
+
type: "success" | "error" | "info" | "warning";
|
|
6873
7016
|
id?: number | undefined;
|
|
6874
7017
|
}[] | undefined;
|
|
6875
7018
|
required?: boolean | undefined;
|
|
@@ -6893,7 +7036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6893
7036
|
hint?: string | undefined;
|
|
6894
7037
|
messages?: {
|
|
6895
7038
|
text: string;
|
|
6896
|
-
type: "
|
|
7039
|
+
type: "success" | "error" | "info" | "warning";
|
|
6897
7040
|
id?: number | undefined;
|
|
6898
7041
|
}[] | undefined;
|
|
6899
7042
|
required?: boolean | undefined;
|
|
@@ -6917,7 +7060,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6917
7060
|
hint?: string | undefined;
|
|
6918
7061
|
messages?: {
|
|
6919
7062
|
text: string;
|
|
6920
|
-
type: "
|
|
7063
|
+
type: "success" | "error" | "info" | "warning";
|
|
6921
7064
|
id?: number | undefined;
|
|
6922
7065
|
}[] | undefined;
|
|
6923
7066
|
required?: boolean | undefined;
|
|
@@ -6941,7 +7084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6941
7084
|
hint?: string | undefined;
|
|
6942
7085
|
messages?: {
|
|
6943
7086
|
text: string;
|
|
6944
|
-
type: "
|
|
7087
|
+
type: "success" | "error" | "info" | "warning";
|
|
6945
7088
|
id?: number | undefined;
|
|
6946
7089
|
}[] | undefined;
|
|
6947
7090
|
required?: boolean | undefined;
|
|
@@ -6970,7 +7113,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6970
7113
|
hint?: string | undefined;
|
|
6971
7114
|
messages?: {
|
|
6972
7115
|
text: string;
|
|
6973
|
-
type: "
|
|
7116
|
+
type: "success" | "error" | "info" | "warning";
|
|
6974
7117
|
id?: number | undefined;
|
|
6975
7118
|
}[] | undefined;
|
|
6976
7119
|
required?: boolean | undefined;
|
|
@@ -6985,7 +7128,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6985
7128
|
hint?: string | undefined;
|
|
6986
7129
|
messages?: {
|
|
6987
7130
|
text: string;
|
|
6988
|
-
type: "
|
|
7131
|
+
type: "success" | "error" | "info" | "warning";
|
|
6989
7132
|
id?: number | undefined;
|
|
6990
7133
|
}[] | undefined;
|
|
6991
7134
|
required?: boolean | undefined;
|
|
@@ -7006,7 +7149,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7006
7149
|
hint?: string | undefined;
|
|
7007
7150
|
messages?: {
|
|
7008
7151
|
text: string;
|
|
7009
|
-
type: "
|
|
7152
|
+
type: "success" | "error" | "info" | "warning";
|
|
7010
7153
|
id?: number | undefined;
|
|
7011
7154
|
}[] | undefined;
|
|
7012
7155
|
required?: boolean | undefined;
|
|
@@ -7031,7 +7174,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7031
7174
|
hint?: string | undefined;
|
|
7032
7175
|
messages?: {
|
|
7033
7176
|
text: string;
|
|
7034
|
-
type: "
|
|
7177
|
+
type: "success" | "error" | "info" | "warning";
|
|
7035
7178
|
id?: number | undefined;
|
|
7036
7179
|
}[] | undefined;
|
|
7037
7180
|
required?: boolean | undefined;
|
|
@@ -7050,7 +7193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7050
7193
|
hint?: string | undefined;
|
|
7051
7194
|
messages?: {
|
|
7052
7195
|
text: string;
|
|
7053
|
-
type: "
|
|
7196
|
+
type: "success" | "error" | "info" | "warning";
|
|
7054
7197
|
id?: number | undefined;
|
|
7055
7198
|
}[] | undefined;
|
|
7056
7199
|
required?: boolean | undefined;
|
|
@@ -7070,7 +7213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7070
7213
|
hint?: string | undefined;
|
|
7071
7214
|
messages?: {
|
|
7072
7215
|
text: string;
|
|
7073
|
-
type: "
|
|
7216
|
+
type: "success" | "error" | "info" | "warning";
|
|
7074
7217
|
id?: number | undefined;
|
|
7075
7218
|
}[] | undefined;
|
|
7076
7219
|
required?: boolean | undefined;
|
|
@@ -7089,7 +7232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7089
7232
|
hint?: string | undefined;
|
|
7090
7233
|
messages?: {
|
|
7091
7234
|
text: string;
|
|
7092
|
-
type: "
|
|
7235
|
+
type: "success" | "error" | "info" | "warning";
|
|
7093
7236
|
id?: number | undefined;
|
|
7094
7237
|
}[] | undefined;
|
|
7095
7238
|
required?: boolean | undefined;
|
|
@@ -7111,7 +7254,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7111
7254
|
hint?: string | undefined;
|
|
7112
7255
|
messages?: {
|
|
7113
7256
|
text: string;
|
|
7114
|
-
type: "
|
|
7257
|
+
type: "success" | "error" | "info" | "warning";
|
|
7115
7258
|
id?: number | undefined;
|
|
7116
7259
|
}[] | undefined;
|
|
7117
7260
|
required?: boolean | undefined;
|
|
@@ -7133,7 +7276,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7133
7276
|
hint?: string | undefined;
|
|
7134
7277
|
messages?: {
|
|
7135
7278
|
text: string;
|
|
7136
|
-
type: "
|
|
7279
|
+
type: "success" | "error" | "info" | "warning";
|
|
7137
7280
|
id?: number | undefined;
|
|
7138
7281
|
}[] | undefined;
|
|
7139
7282
|
required?: boolean | undefined;
|
|
@@ -7152,7 +7295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7152
7295
|
hint?: string | undefined;
|
|
7153
7296
|
messages?: {
|
|
7154
7297
|
text: string;
|
|
7155
|
-
type: "
|
|
7298
|
+
type: "success" | "error" | "info" | "warning";
|
|
7156
7299
|
id?: number | undefined;
|
|
7157
7300
|
}[] | undefined;
|
|
7158
7301
|
required?: boolean | undefined;
|
|
@@ -7177,7 +7320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7177
7320
|
hint?: string | undefined;
|
|
7178
7321
|
messages?: {
|
|
7179
7322
|
text: string;
|
|
7180
|
-
type: "
|
|
7323
|
+
type: "success" | "error" | "info" | "warning";
|
|
7181
7324
|
id?: number | undefined;
|
|
7182
7325
|
}[] | undefined;
|
|
7183
7326
|
required?: boolean | undefined;
|
|
@@ -7198,7 +7341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7198
7341
|
hint?: string | undefined;
|
|
7199
7342
|
messages?: {
|
|
7200
7343
|
text: string;
|
|
7201
|
-
type: "
|
|
7344
|
+
type: "success" | "error" | "info" | "warning";
|
|
7202
7345
|
id?: number | undefined;
|
|
7203
7346
|
}[] | undefined;
|
|
7204
7347
|
required?: boolean | undefined;
|
|
@@ -7219,7 +7362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7219
7362
|
hint?: string | undefined;
|
|
7220
7363
|
messages?: {
|
|
7221
7364
|
text: string;
|
|
7222
|
-
type: "
|
|
7365
|
+
type: "success" | "error" | "info" | "warning";
|
|
7223
7366
|
id?: number | undefined;
|
|
7224
7367
|
}[] | undefined;
|
|
7225
7368
|
required?: boolean | undefined;
|
|
@@ -7473,7 +7616,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7473
7616
|
hint?: string | undefined;
|
|
7474
7617
|
messages?: {
|
|
7475
7618
|
text: string;
|
|
7476
|
-
type: "
|
|
7619
|
+
type: "success" | "error" | "info" | "warning";
|
|
7477
7620
|
id?: number | undefined;
|
|
7478
7621
|
}[] | undefined;
|
|
7479
7622
|
required?: boolean | undefined;
|
|
@@ -7491,7 +7634,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7491
7634
|
hint?: string | undefined;
|
|
7492
7635
|
messages?: {
|
|
7493
7636
|
text: string;
|
|
7494
|
-
type: "
|
|
7637
|
+
type: "success" | "error" | "info" | "warning";
|
|
7495
7638
|
id?: number | undefined;
|
|
7496
7639
|
}[] | undefined;
|
|
7497
7640
|
required?: boolean | undefined;
|
|
@@ -7515,7 +7658,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7515
7658
|
hint?: string | undefined;
|
|
7516
7659
|
messages?: {
|
|
7517
7660
|
text: string;
|
|
7518
|
-
type: "
|
|
7661
|
+
type: "success" | "error" | "info" | "warning";
|
|
7519
7662
|
id?: number | undefined;
|
|
7520
7663
|
}[] | undefined;
|
|
7521
7664
|
required?: boolean | undefined;
|
|
@@ -7539,7 +7682,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7539
7682
|
hint?: string | undefined;
|
|
7540
7683
|
messages?: {
|
|
7541
7684
|
text: string;
|
|
7542
|
-
type: "
|
|
7685
|
+
type: "success" | "error" | "info" | "warning";
|
|
7543
7686
|
id?: number | undefined;
|
|
7544
7687
|
}[] | undefined;
|
|
7545
7688
|
required?: boolean | undefined;
|
|
@@ -7563,7 +7706,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7563
7706
|
hint?: string | undefined;
|
|
7564
7707
|
messages?: {
|
|
7565
7708
|
text: string;
|
|
7566
|
-
type: "
|
|
7709
|
+
type: "success" | "error" | "info" | "warning";
|
|
7567
7710
|
id?: number | undefined;
|
|
7568
7711
|
}[] | undefined;
|
|
7569
7712
|
required?: boolean | undefined;
|
|
@@ -7588,7 +7731,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7588
7731
|
hint?: string | undefined;
|
|
7589
7732
|
messages?: {
|
|
7590
7733
|
text: string;
|
|
7591
|
-
type: "
|
|
7734
|
+
type: "success" | "error" | "info" | "warning";
|
|
7592
7735
|
id?: number | undefined;
|
|
7593
7736
|
}[] | undefined;
|
|
7594
7737
|
required?: boolean | undefined;
|
|
@@ -7603,7 +7746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7603
7746
|
hint?: string | undefined;
|
|
7604
7747
|
messages?: {
|
|
7605
7748
|
text: string;
|
|
7606
|
-
type: "
|
|
7749
|
+
type: "success" | "error" | "info" | "warning";
|
|
7607
7750
|
id?: number | undefined;
|
|
7608
7751
|
}[] | undefined;
|
|
7609
7752
|
required?: boolean | undefined;
|
|
@@ -7624,7 +7767,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7624
7767
|
hint?: string | undefined;
|
|
7625
7768
|
messages?: {
|
|
7626
7769
|
text: string;
|
|
7627
|
-
type: "
|
|
7770
|
+
type: "success" | "error" | "info" | "warning";
|
|
7628
7771
|
id?: number | undefined;
|
|
7629
7772
|
}[] | undefined;
|
|
7630
7773
|
required?: boolean | undefined;
|
|
@@ -7649,7 +7792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7649
7792
|
hint?: string | undefined;
|
|
7650
7793
|
messages?: {
|
|
7651
7794
|
text: string;
|
|
7652
|
-
type: "
|
|
7795
|
+
type: "success" | "error" | "info" | "warning";
|
|
7653
7796
|
id?: number | undefined;
|
|
7654
7797
|
}[] | undefined;
|
|
7655
7798
|
required?: boolean | undefined;
|
|
@@ -7668,7 +7811,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7668
7811
|
hint?: string | undefined;
|
|
7669
7812
|
messages?: {
|
|
7670
7813
|
text: string;
|
|
7671
|
-
type: "
|
|
7814
|
+
type: "success" | "error" | "info" | "warning";
|
|
7672
7815
|
id?: number | undefined;
|
|
7673
7816
|
}[] | undefined;
|
|
7674
7817
|
required?: boolean | undefined;
|
|
@@ -7688,7 +7831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7688
7831
|
hint?: string | undefined;
|
|
7689
7832
|
messages?: {
|
|
7690
7833
|
text: string;
|
|
7691
|
-
type: "
|
|
7834
|
+
type: "success" | "error" | "info" | "warning";
|
|
7692
7835
|
id?: number | undefined;
|
|
7693
7836
|
}[] | undefined;
|
|
7694
7837
|
required?: boolean | undefined;
|
|
@@ -7707,7 +7850,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7707
7850
|
hint?: string | undefined;
|
|
7708
7851
|
messages?: {
|
|
7709
7852
|
text: string;
|
|
7710
|
-
type: "
|
|
7853
|
+
type: "success" | "error" | "info" | "warning";
|
|
7711
7854
|
id?: number | undefined;
|
|
7712
7855
|
}[] | undefined;
|
|
7713
7856
|
required?: boolean | undefined;
|
|
@@ -7729,7 +7872,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7729
7872
|
hint?: string | undefined;
|
|
7730
7873
|
messages?: {
|
|
7731
7874
|
text: string;
|
|
7732
|
-
type: "
|
|
7875
|
+
type: "success" | "error" | "info" | "warning";
|
|
7733
7876
|
id?: number | undefined;
|
|
7734
7877
|
}[] | undefined;
|
|
7735
7878
|
required?: boolean | undefined;
|
|
@@ -7751,7 +7894,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7751
7894
|
hint?: string | undefined;
|
|
7752
7895
|
messages?: {
|
|
7753
7896
|
text: string;
|
|
7754
|
-
type: "
|
|
7897
|
+
type: "success" | "error" | "info" | "warning";
|
|
7755
7898
|
id?: number | undefined;
|
|
7756
7899
|
}[] | undefined;
|
|
7757
7900
|
required?: boolean | undefined;
|
|
@@ -7770,7 +7913,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7770
7913
|
hint?: string | undefined;
|
|
7771
7914
|
messages?: {
|
|
7772
7915
|
text: string;
|
|
7773
|
-
type: "
|
|
7916
|
+
type: "success" | "error" | "info" | "warning";
|
|
7774
7917
|
id?: number | undefined;
|
|
7775
7918
|
}[] | undefined;
|
|
7776
7919
|
required?: boolean | undefined;
|
|
@@ -7795,7 +7938,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7795
7938
|
hint?: string | undefined;
|
|
7796
7939
|
messages?: {
|
|
7797
7940
|
text: string;
|
|
7798
|
-
type: "
|
|
7941
|
+
type: "success" | "error" | "info" | "warning";
|
|
7799
7942
|
id?: number | undefined;
|
|
7800
7943
|
}[] | undefined;
|
|
7801
7944
|
required?: boolean | undefined;
|
|
@@ -7816,7 +7959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7816
7959
|
hint?: string | undefined;
|
|
7817
7960
|
messages?: {
|
|
7818
7961
|
text: string;
|
|
7819
|
-
type: "
|
|
7962
|
+
type: "success" | "error" | "info" | "warning";
|
|
7820
7963
|
id?: number | undefined;
|
|
7821
7964
|
}[] | undefined;
|
|
7822
7965
|
required?: boolean | undefined;
|
|
@@ -7837,7 +7980,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7837
7980
|
hint?: string | undefined;
|
|
7838
7981
|
messages?: {
|
|
7839
7982
|
text: string;
|
|
7840
|
-
type: "
|
|
7983
|
+
type: "success" | "error" | "info" | "warning";
|
|
7841
7984
|
id?: number | undefined;
|
|
7842
7985
|
}[] | undefined;
|
|
7843
7986
|
required?: boolean | undefined;
|
|
@@ -8068,7 +8211,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8068
8211
|
hint?: string | undefined;
|
|
8069
8212
|
messages?: {
|
|
8070
8213
|
text: string;
|
|
8071
|
-
type: "
|
|
8214
|
+
type: "success" | "error" | "info" | "warning";
|
|
8072
8215
|
id?: number | undefined;
|
|
8073
8216
|
}[] | undefined;
|
|
8074
8217
|
required?: boolean | undefined;
|
|
@@ -8086,7 +8229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8086
8229
|
hint?: string | undefined;
|
|
8087
8230
|
messages?: {
|
|
8088
8231
|
text: string;
|
|
8089
|
-
type: "
|
|
8232
|
+
type: "success" | "error" | "info" | "warning";
|
|
8090
8233
|
id?: number | undefined;
|
|
8091
8234
|
}[] | undefined;
|
|
8092
8235
|
required?: boolean | undefined;
|
|
@@ -8110,7 +8253,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8110
8253
|
hint?: string | undefined;
|
|
8111
8254
|
messages?: {
|
|
8112
8255
|
text: string;
|
|
8113
|
-
type: "
|
|
8256
|
+
type: "success" | "error" | "info" | "warning";
|
|
8114
8257
|
id?: number | undefined;
|
|
8115
8258
|
}[] | undefined;
|
|
8116
8259
|
required?: boolean | undefined;
|
|
@@ -8134,7 +8277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8134
8277
|
hint?: string | undefined;
|
|
8135
8278
|
messages?: {
|
|
8136
8279
|
text: string;
|
|
8137
|
-
type: "
|
|
8280
|
+
type: "success" | "error" | "info" | "warning";
|
|
8138
8281
|
id?: number | undefined;
|
|
8139
8282
|
}[] | undefined;
|
|
8140
8283
|
required?: boolean | undefined;
|
|
@@ -8158,7 +8301,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8158
8301
|
hint?: string | undefined;
|
|
8159
8302
|
messages?: {
|
|
8160
8303
|
text: string;
|
|
8161
|
-
type: "
|
|
8304
|
+
type: "success" | "error" | "info" | "warning";
|
|
8162
8305
|
id?: number | undefined;
|
|
8163
8306
|
}[] | undefined;
|
|
8164
8307
|
required?: boolean | undefined;
|
|
@@ -8187,7 +8330,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8187
8330
|
hint?: string | undefined;
|
|
8188
8331
|
messages?: {
|
|
8189
8332
|
text: string;
|
|
8190
|
-
type: "
|
|
8333
|
+
type: "success" | "error" | "info" | "warning";
|
|
8191
8334
|
id?: number | undefined;
|
|
8192
8335
|
}[] | undefined;
|
|
8193
8336
|
required?: boolean | undefined;
|
|
@@ -8202,7 +8345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8202
8345
|
hint?: string | undefined;
|
|
8203
8346
|
messages?: {
|
|
8204
8347
|
text: string;
|
|
8205
|
-
type: "
|
|
8348
|
+
type: "success" | "error" | "info" | "warning";
|
|
8206
8349
|
id?: number | undefined;
|
|
8207
8350
|
}[] | undefined;
|
|
8208
8351
|
required?: boolean | undefined;
|
|
@@ -8223,7 +8366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8223
8366
|
hint?: string | undefined;
|
|
8224
8367
|
messages?: {
|
|
8225
8368
|
text: string;
|
|
8226
|
-
type: "
|
|
8369
|
+
type: "success" | "error" | "info" | "warning";
|
|
8227
8370
|
id?: number | undefined;
|
|
8228
8371
|
}[] | undefined;
|
|
8229
8372
|
required?: boolean | undefined;
|
|
@@ -8248,7 +8391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8248
8391
|
hint?: string | undefined;
|
|
8249
8392
|
messages?: {
|
|
8250
8393
|
text: string;
|
|
8251
|
-
type: "
|
|
8394
|
+
type: "success" | "error" | "info" | "warning";
|
|
8252
8395
|
id?: number | undefined;
|
|
8253
8396
|
}[] | undefined;
|
|
8254
8397
|
required?: boolean | undefined;
|
|
@@ -8267,7 +8410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8267
8410
|
hint?: string | undefined;
|
|
8268
8411
|
messages?: {
|
|
8269
8412
|
text: string;
|
|
8270
|
-
type: "
|
|
8413
|
+
type: "success" | "error" | "info" | "warning";
|
|
8271
8414
|
id?: number | undefined;
|
|
8272
8415
|
}[] | undefined;
|
|
8273
8416
|
required?: boolean | undefined;
|
|
@@ -8287,7 +8430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8287
8430
|
hint?: string | undefined;
|
|
8288
8431
|
messages?: {
|
|
8289
8432
|
text: string;
|
|
8290
|
-
type: "
|
|
8433
|
+
type: "success" | "error" | "info" | "warning";
|
|
8291
8434
|
id?: number | undefined;
|
|
8292
8435
|
}[] | undefined;
|
|
8293
8436
|
required?: boolean | undefined;
|
|
@@ -8306,7 +8449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8306
8449
|
hint?: string | undefined;
|
|
8307
8450
|
messages?: {
|
|
8308
8451
|
text: string;
|
|
8309
|
-
type: "
|
|
8452
|
+
type: "success" | "error" | "info" | "warning";
|
|
8310
8453
|
id?: number | undefined;
|
|
8311
8454
|
}[] | undefined;
|
|
8312
8455
|
required?: boolean | undefined;
|
|
@@ -8328,7 +8471,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8328
8471
|
hint?: string | undefined;
|
|
8329
8472
|
messages?: {
|
|
8330
8473
|
text: string;
|
|
8331
|
-
type: "
|
|
8474
|
+
type: "success" | "error" | "info" | "warning";
|
|
8332
8475
|
id?: number | undefined;
|
|
8333
8476
|
}[] | undefined;
|
|
8334
8477
|
required?: boolean | undefined;
|
|
@@ -8350,7 +8493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8350
8493
|
hint?: string | undefined;
|
|
8351
8494
|
messages?: {
|
|
8352
8495
|
text: string;
|
|
8353
|
-
type: "
|
|
8496
|
+
type: "success" | "error" | "info" | "warning";
|
|
8354
8497
|
id?: number | undefined;
|
|
8355
8498
|
}[] | undefined;
|
|
8356
8499
|
required?: boolean | undefined;
|
|
@@ -8369,7 +8512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8369
8512
|
hint?: string | undefined;
|
|
8370
8513
|
messages?: {
|
|
8371
8514
|
text: string;
|
|
8372
|
-
type: "
|
|
8515
|
+
type: "success" | "error" | "info" | "warning";
|
|
8373
8516
|
id?: number | undefined;
|
|
8374
8517
|
}[] | undefined;
|
|
8375
8518
|
required?: boolean | undefined;
|
|
@@ -8394,7 +8537,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8394
8537
|
hint?: string | undefined;
|
|
8395
8538
|
messages?: {
|
|
8396
8539
|
text: string;
|
|
8397
|
-
type: "
|
|
8540
|
+
type: "success" | "error" | "info" | "warning";
|
|
8398
8541
|
id?: number | undefined;
|
|
8399
8542
|
}[] | undefined;
|
|
8400
8543
|
required?: boolean | undefined;
|
|
@@ -8415,7 +8558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8415
8558
|
hint?: string | undefined;
|
|
8416
8559
|
messages?: {
|
|
8417
8560
|
text: string;
|
|
8418
|
-
type: "
|
|
8561
|
+
type: "success" | "error" | "info" | "warning";
|
|
8419
8562
|
id?: number | undefined;
|
|
8420
8563
|
}[] | undefined;
|
|
8421
8564
|
required?: boolean | undefined;
|
|
@@ -8436,7 +8579,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8436
8579
|
hint?: string | undefined;
|
|
8437
8580
|
messages?: {
|
|
8438
8581
|
text: string;
|
|
8439
|
-
type: "
|
|
8582
|
+
type: "success" | "error" | "info" | "warning";
|
|
8440
8583
|
id?: number | undefined;
|
|
8441
8584
|
}[] | undefined;
|
|
8442
8585
|
required?: boolean | undefined;
|
|
@@ -8669,7 +8812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8669
8812
|
hint?: string | undefined;
|
|
8670
8813
|
messages?: {
|
|
8671
8814
|
text: string;
|
|
8672
|
-
type: "
|
|
8815
|
+
type: "success" | "error" | "info" | "warning";
|
|
8673
8816
|
id?: number | undefined;
|
|
8674
8817
|
}[] | undefined;
|
|
8675
8818
|
required?: boolean | undefined;
|
|
@@ -8687,7 +8830,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8687
8830
|
hint?: string | undefined;
|
|
8688
8831
|
messages?: {
|
|
8689
8832
|
text: string;
|
|
8690
|
-
type: "
|
|
8833
|
+
type: "success" | "error" | "info" | "warning";
|
|
8691
8834
|
id?: number | undefined;
|
|
8692
8835
|
}[] | undefined;
|
|
8693
8836
|
required?: boolean | undefined;
|
|
@@ -8711,7 +8854,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8711
8854
|
hint?: string | undefined;
|
|
8712
8855
|
messages?: {
|
|
8713
8856
|
text: string;
|
|
8714
|
-
type: "
|
|
8857
|
+
type: "success" | "error" | "info" | "warning";
|
|
8715
8858
|
id?: number | undefined;
|
|
8716
8859
|
}[] | undefined;
|
|
8717
8860
|
required?: boolean | undefined;
|
|
@@ -8735,7 +8878,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8735
8878
|
hint?: string | undefined;
|
|
8736
8879
|
messages?: {
|
|
8737
8880
|
text: string;
|
|
8738
|
-
type: "
|
|
8881
|
+
type: "success" | "error" | "info" | "warning";
|
|
8739
8882
|
id?: number | undefined;
|
|
8740
8883
|
}[] | undefined;
|
|
8741
8884
|
required?: boolean | undefined;
|
|
@@ -8759,7 +8902,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8759
8902
|
hint?: string | undefined;
|
|
8760
8903
|
messages?: {
|
|
8761
8904
|
text: string;
|
|
8762
|
-
type: "
|
|
8905
|
+
type: "success" | "error" | "info" | "warning";
|
|
8763
8906
|
id?: number | undefined;
|
|
8764
8907
|
}[] | undefined;
|
|
8765
8908
|
required?: boolean | undefined;
|
|
@@ -8784,7 +8927,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8784
8927
|
hint?: string | undefined;
|
|
8785
8928
|
messages?: {
|
|
8786
8929
|
text: string;
|
|
8787
|
-
type: "
|
|
8930
|
+
type: "success" | "error" | "info" | "warning";
|
|
8788
8931
|
id?: number | undefined;
|
|
8789
8932
|
}[] | undefined;
|
|
8790
8933
|
required?: boolean | undefined;
|
|
@@ -8799,7 +8942,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8799
8942
|
hint?: string | undefined;
|
|
8800
8943
|
messages?: {
|
|
8801
8944
|
text: string;
|
|
8802
|
-
type: "
|
|
8945
|
+
type: "success" | "error" | "info" | "warning";
|
|
8803
8946
|
id?: number | undefined;
|
|
8804
8947
|
}[] | undefined;
|
|
8805
8948
|
required?: boolean | undefined;
|
|
@@ -8820,7 +8963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8820
8963
|
hint?: string | undefined;
|
|
8821
8964
|
messages?: {
|
|
8822
8965
|
text: string;
|
|
8823
|
-
type: "
|
|
8966
|
+
type: "success" | "error" | "info" | "warning";
|
|
8824
8967
|
id?: number | undefined;
|
|
8825
8968
|
}[] | undefined;
|
|
8826
8969
|
required?: boolean | undefined;
|
|
@@ -8845,7 +8988,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8845
8988
|
hint?: string | undefined;
|
|
8846
8989
|
messages?: {
|
|
8847
8990
|
text: string;
|
|
8848
|
-
type: "
|
|
8991
|
+
type: "success" | "error" | "info" | "warning";
|
|
8849
8992
|
id?: number | undefined;
|
|
8850
8993
|
}[] | undefined;
|
|
8851
8994
|
required?: boolean | undefined;
|
|
@@ -8864,7 +9007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8864
9007
|
hint?: string | undefined;
|
|
8865
9008
|
messages?: {
|
|
8866
9009
|
text: string;
|
|
8867
|
-
type: "
|
|
9010
|
+
type: "success" | "error" | "info" | "warning";
|
|
8868
9011
|
id?: number | undefined;
|
|
8869
9012
|
}[] | undefined;
|
|
8870
9013
|
required?: boolean | undefined;
|
|
@@ -8884,7 +9027,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8884
9027
|
hint?: string | undefined;
|
|
8885
9028
|
messages?: {
|
|
8886
9029
|
text: string;
|
|
8887
|
-
type: "
|
|
9030
|
+
type: "success" | "error" | "info" | "warning";
|
|
8888
9031
|
id?: number | undefined;
|
|
8889
9032
|
}[] | undefined;
|
|
8890
9033
|
required?: boolean | undefined;
|
|
@@ -8903,7 +9046,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8903
9046
|
hint?: string | undefined;
|
|
8904
9047
|
messages?: {
|
|
8905
9048
|
text: string;
|
|
8906
|
-
type: "
|
|
9049
|
+
type: "success" | "error" | "info" | "warning";
|
|
8907
9050
|
id?: number | undefined;
|
|
8908
9051
|
}[] | undefined;
|
|
8909
9052
|
required?: boolean | undefined;
|
|
@@ -8925,7 +9068,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8925
9068
|
hint?: string | undefined;
|
|
8926
9069
|
messages?: {
|
|
8927
9070
|
text: string;
|
|
8928
|
-
type: "
|
|
9071
|
+
type: "success" | "error" | "info" | "warning";
|
|
8929
9072
|
id?: number | undefined;
|
|
8930
9073
|
}[] | undefined;
|
|
8931
9074
|
required?: boolean | undefined;
|
|
@@ -8947,7 +9090,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8947
9090
|
hint?: string | undefined;
|
|
8948
9091
|
messages?: {
|
|
8949
9092
|
text: string;
|
|
8950
|
-
type: "
|
|
9093
|
+
type: "success" | "error" | "info" | "warning";
|
|
8951
9094
|
id?: number | undefined;
|
|
8952
9095
|
}[] | undefined;
|
|
8953
9096
|
required?: boolean | undefined;
|
|
@@ -8966,7 +9109,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8966
9109
|
hint?: string | undefined;
|
|
8967
9110
|
messages?: {
|
|
8968
9111
|
text: string;
|
|
8969
|
-
type: "
|
|
9112
|
+
type: "success" | "error" | "info" | "warning";
|
|
8970
9113
|
id?: number | undefined;
|
|
8971
9114
|
}[] | undefined;
|
|
8972
9115
|
required?: boolean | undefined;
|
|
@@ -8991,7 +9134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8991
9134
|
hint?: string | undefined;
|
|
8992
9135
|
messages?: {
|
|
8993
9136
|
text: string;
|
|
8994
|
-
type: "
|
|
9137
|
+
type: "success" | "error" | "info" | "warning";
|
|
8995
9138
|
id?: number | undefined;
|
|
8996
9139
|
}[] | undefined;
|
|
8997
9140
|
required?: boolean | undefined;
|
|
@@ -9012,7 +9155,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9012
9155
|
hint?: string | undefined;
|
|
9013
9156
|
messages?: {
|
|
9014
9157
|
text: string;
|
|
9015
|
-
type: "
|
|
9158
|
+
type: "success" | "error" | "info" | "warning";
|
|
9016
9159
|
id?: number | undefined;
|
|
9017
9160
|
}[] | undefined;
|
|
9018
9161
|
required?: boolean | undefined;
|
|
@@ -9033,7 +9176,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9033
9176
|
hint?: string | undefined;
|
|
9034
9177
|
messages?: {
|
|
9035
9178
|
text: string;
|
|
9036
|
-
type: "
|
|
9179
|
+
type: "success" | "error" | "info" | "warning";
|
|
9037
9180
|
id?: number | undefined;
|
|
9038
9181
|
}[] | undefined;
|
|
9039
9182
|
required?: boolean | undefined;
|
|
@@ -9264,7 +9407,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9264
9407
|
hint?: string | undefined;
|
|
9265
9408
|
messages?: {
|
|
9266
9409
|
text: string;
|
|
9267
|
-
type: "
|
|
9410
|
+
type: "success" | "error" | "info" | "warning";
|
|
9268
9411
|
id?: number | undefined;
|
|
9269
9412
|
}[] | undefined;
|
|
9270
9413
|
required?: boolean | undefined;
|
|
@@ -9282,7 +9425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9282
9425
|
hint?: string | undefined;
|
|
9283
9426
|
messages?: {
|
|
9284
9427
|
text: string;
|
|
9285
|
-
type: "
|
|
9428
|
+
type: "success" | "error" | "info" | "warning";
|
|
9286
9429
|
id?: number | undefined;
|
|
9287
9430
|
}[] | undefined;
|
|
9288
9431
|
required?: boolean | undefined;
|
|
@@ -9306,7 +9449,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9306
9449
|
hint?: string | undefined;
|
|
9307
9450
|
messages?: {
|
|
9308
9451
|
text: string;
|
|
9309
|
-
type: "
|
|
9452
|
+
type: "success" | "error" | "info" | "warning";
|
|
9310
9453
|
id?: number | undefined;
|
|
9311
9454
|
}[] | undefined;
|
|
9312
9455
|
required?: boolean | undefined;
|
|
@@ -9330,7 +9473,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9330
9473
|
hint?: string | undefined;
|
|
9331
9474
|
messages?: {
|
|
9332
9475
|
text: string;
|
|
9333
|
-
type: "
|
|
9476
|
+
type: "success" | "error" | "info" | "warning";
|
|
9334
9477
|
id?: number | undefined;
|
|
9335
9478
|
}[] | undefined;
|
|
9336
9479
|
required?: boolean | undefined;
|
|
@@ -9354,7 +9497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9354
9497
|
hint?: string | undefined;
|
|
9355
9498
|
messages?: {
|
|
9356
9499
|
text: string;
|
|
9357
|
-
type: "
|
|
9500
|
+
type: "success" | "error" | "info" | "warning";
|
|
9358
9501
|
id?: number | undefined;
|
|
9359
9502
|
}[] | undefined;
|
|
9360
9503
|
required?: boolean | undefined;
|
|
@@ -9383,7 +9526,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9383
9526
|
hint?: string | undefined;
|
|
9384
9527
|
messages?: {
|
|
9385
9528
|
text: string;
|
|
9386
|
-
type: "
|
|
9529
|
+
type: "success" | "error" | "info" | "warning";
|
|
9387
9530
|
id?: number | undefined;
|
|
9388
9531
|
}[] | undefined;
|
|
9389
9532
|
required?: boolean | undefined;
|
|
@@ -9398,7 +9541,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9398
9541
|
hint?: string | undefined;
|
|
9399
9542
|
messages?: {
|
|
9400
9543
|
text: string;
|
|
9401
|
-
type: "
|
|
9544
|
+
type: "success" | "error" | "info" | "warning";
|
|
9402
9545
|
id?: number | undefined;
|
|
9403
9546
|
}[] | undefined;
|
|
9404
9547
|
required?: boolean | undefined;
|
|
@@ -9419,7 +9562,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9419
9562
|
hint?: string | undefined;
|
|
9420
9563
|
messages?: {
|
|
9421
9564
|
text: string;
|
|
9422
|
-
type: "
|
|
9565
|
+
type: "success" | "error" | "info" | "warning";
|
|
9423
9566
|
id?: number | undefined;
|
|
9424
9567
|
}[] | undefined;
|
|
9425
9568
|
required?: boolean | undefined;
|
|
@@ -9444,7 +9587,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9444
9587
|
hint?: string | undefined;
|
|
9445
9588
|
messages?: {
|
|
9446
9589
|
text: string;
|
|
9447
|
-
type: "
|
|
9590
|
+
type: "success" | "error" | "info" | "warning";
|
|
9448
9591
|
id?: number | undefined;
|
|
9449
9592
|
}[] | undefined;
|
|
9450
9593
|
required?: boolean | undefined;
|
|
@@ -9463,7 +9606,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9463
9606
|
hint?: string | undefined;
|
|
9464
9607
|
messages?: {
|
|
9465
9608
|
text: string;
|
|
9466
|
-
type: "
|
|
9609
|
+
type: "success" | "error" | "info" | "warning";
|
|
9467
9610
|
id?: number | undefined;
|
|
9468
9611
|
}[] | undefined;
|
|
9469
9612
|
required?: boolean | undefined;
|
|
@@ -9483,7 +9626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9483
9626
|
hint?: string | undefined;
|
|
9484
9627
|
messages?: {
|
|
9485
9628
|
text: string;
|
|
9486
|
-
type: "
|
|
9629
|
+
type: "success" | "error" | "info" | "warning";
|
|
9487
9630
|
id?: number | undefined;
|
|
9488
9631
|
}[] | undefined;
|
|
9489
9632
|
required?: boolean | undefined;
|
|
@@ -9502,7 +9645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9502
9645
|
hint?: string | undefined;
|
|
9503
9646
|
messages?: {
|
|
9504
9647
|
text: string;
|
|
9505
|
-
type: "
|
|
9648
|
+
type: "success" | "error" | "info" | "warning";
|
|
9506
9649
|
id?: number | undefined;
|
|
9507
9650
|
}[] | undefined;
|
|
9508
9651
|
required?: boolean | undefined;
|
|
@@ -9524,7 +9667,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9524
9667
|
hint?: string | undefined;
|
|
9525
9668
|
messages?: {
|
|
9526
9669
|
text: string;
|
|
9527
|
-
type: "
|
|
9670
|
+
type: "success" | "error" | "info" | "warning";
|
|
9528
9671
|
id?: number | undefined;
|
|
9529
9672
|
}[] | undefined;
|
|
9530
9673
|
required?: boolean | undefined;
|
|
@@ -9546,7 +9689,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9546
9689
|
hint?: string | undefined;
|
|
9547
9690
|
messages?: {
|
|
9548
9691
|
text: string;
|
|
9549
|
-
type: "
|
|
9692
|
+
type: "success" | "error" | "info" | "warning";
|
|
9550
9693
|
id?: number | undefined;
|
|
9551
9694
|
}[] | undefined;
|
|
9552
9695
|
required?: boolean | undefined;
|
|
@@ -9565,7 +9708,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9565
9708
|
hint?: string | undefined;
|
|
9566
9709
|
messages?: {
|
|
9567
9710
|
text: string;
|
|
9568
|
-
type: "
|
|
9711
|
+
type: "success" | "error" | "info" | "warning";
|
|
9569
9712
|
id?: number | undefined;
|
|
9570
9713
|
}[] | undefined;
|
|
9571
9714
|
required?: boolean | undefined;
|
|
@@ -9590,7 +9733,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9590
9733
|
hint?: string | undefined;
|
|
9591
9734
|
messages?: {
|
|
9592
9735
|
text: string;
|
|
9593
|
-
type: "
|
|
9736
|
+
type: "success" | "error" | "info" | "warning";
|
|
9594
9737
|
id?: number | undefined;
|
|
9595
9738
|
}[] | undefined;
|
|
9596
9739
|
required?: boolean | undefined;
|
|
@@ -9611,7 +9754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9611
9754
|
hint?: string | undefined;
|
|
9612
9755
|
messages?: {
|
|
9613
9756
|
text: string;
|
|
9614
|
-
type: "
|
|
9757
|
+
type: "success" | "error" | "info" | "warning";
|
|
9615
9758
|
id?: number | undefined;
|
|
9616
9759
|
}[] | undefined;
|
|
9617
9760
|
required?: boolean | undefined;
|
|
@@ -9632,7 +9775,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9632
9775
|
hint?: string | undefined;
|
|
9633
9776
|
messages?: {
|
|
9634
9777
|
text: string;
|
|
9635
|
-
type: "
|
|
9778
|
+
type: "success" | "error" | "info" | "warning";
|
|
9636
9779
|
id?: number | undefined;
|
|
9637
9780
|
}[] | undefined;
|
|
9638
9781
|
required?: boolean | undefined;
|
|
@@ -9862,7 +10005,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9862
10005
|
};
|
|
9863
10006
|
};
|
|
9864
10007
|
output: {
|
|
9865
|
-
prompt: "
|
|
10008
|
+
prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
|
|
9866
10009
|
language: string;
|
|
9867
10010
|
}[];
|
|
9868
10011
|
outputFormat: "json";
|
|
@@ -9900,7 +10043,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9900
10043
|
$get: {
|
|
9901
10044
|
input: {
|
|
9902
10045
|
param: {
|
|
9903
|
-
prompt: "
|
|
10046
|
+
prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
|
|
9904
10047
|
language: string;
|
|
9905
10048
|
};
|
|
9906
10049
|
} & {
|
|
@@ -9922,7 +10065,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9922
10065
|
$put: {
|
|
9923
10066
|
input: {
|
|
9924
10067
|
param: {
|
|
9925
|
-
prompt: "
|
|
10068
|
+
prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
|
|
9926
10069
|
language: string;
|
|
9927
10070
|
};
|
|
9928
10071
|
} & {
|
|
@@ -9946,7 +10089,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9946
10089
|
$delete: {
|
|
9947
10090
|
input: {
|
|
9948
10091
|
param: {
|
|
9949
|
-
prompt: "
|
|
10092
|
+
prompt: "organizations" | "status" | "login" | "signup" | "mfa" | "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";
|
|
9950
10093
|
language: string;
|
|
9951
10094
|
};
|
|
9952
10095
|
} & {
|
|
@@ -10085,7 +10228,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10085
10228
|
} | undefined;
|
|
10086
10229
|
} | undefined;
|
|
10087
10230
|
passkey_options?: {
|
|
10088
|
-
challenge_ui?: "
|
|
10231
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10089
10232
|
local_enrollment_enabled?: boolean | undefined;
|
|
10090
10233
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10091
10234
|
} | undefined;
|
|
@@ -10219,7 +10362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10219
10362
|
} | undefined;
|
|
10220
10363
|
} | undefined;
|
|
10221
10364
|
passkey_options?: {
|
|
10222
|
-
challenge_ui?: "
|
|
10365
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10223
10366
|
local_enrollment_enabled?: boolean | undefined;
|
|
10224
10367
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10225
10368
|
} | undefined;
|
|
@@ -10368,7 +10511,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10368
10511
|
} | undefined;
|
|
10369
10512
|
} | undefined;
|
|
10370
10513
|
passkey_options?: {
|
|
10371
|
-
challenge_ui?: "
|
|
10514
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10372
10515
|
local_enrollment_enabled?: boolean | undefined;
|
|
10373
10516
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10374
10517
|
} | undefined;
|
|
@@ -10547,7 +10690,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10547
10690
|
} | undefined;
|
|
10548
10691
|
} | undefined;
|
|
10549
10692
|
passkey_options?: {
|
|
10550
|
-
challenge_ui?: "
|
|
10693
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10551
10694
|
local_enrollment_enabled?: boolean | undefined;
|
|
10552
10695
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10553
10696
|
} | undefined;
|
|
@@ -10705,7 +10848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10705
10848
|
} | undefined;
|
|
10706
10849
|
} | undefined;
|
|
10707
10850
|
passkey_options?: {
|
|
10708
|
-
challenge_ui?: "
|
|
10851
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10709
10852
|
local_enrollment_enabled?: boolean | undefined;
|
|
10710
10853
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10711
10854
|
} | undefined;
|
|
@@ -10808,7 +10951,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10808
10951
|
};
|
|
10809
10952
|
} | {
|
|
10810
10953
|
mode: "inline";
|
|
10811
|
-
status: "
|
|
10954
|
+
status: "success" | "error";
|
|
10812
10955
|
connection_id: string;
|
|
10813
10956
|
connection_name: string;
|
|
10814
10957
|
strategy: string;
|
|
@@ -10844,7 +10987,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10844
10987
|
tenant_id: string;
|
|
10845
10988
|
created_at: string;
|
|
10846
10989
|
updated_at: string;
|
|
10847
|
-
deploymentStatus: "
|
|
10990
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
10848
10991
|
secrets?: {
|
|
10849
10992
|
[x: string]: string;
|
|
10850
10993
|
} | undefined;
|
|
@@ -10934,7 +11077,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10934
11077
|
tenant_id: string;
|
|
10935
11078
|
created_at: string;
|
|
10936
11079
|
updated_at: string;
|
|
10937
|
-
deploymentStatus: "
|
|
11080
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
10938
11081
|
secrets?: {
|
|
10939
11082
|
[x: string]: string;
|
|
10940
11083
|
} | undefined;
|
|
@@ -10982,7 +11125,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10982
11125
|
};
|
|
10983
11126
|
};
|
|
10984
11127
|
output: ({
|
|
10985
|
-
trigger_id: "
|
|
11128
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10986
11129
|
enabled: boolean;
|
|
10987
11130
|
synchronous: boolean;
|
|
10988
11131
|
created_at: string;
|
|
@@ -10994,7 +11137,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10994
11137
|
[x: string]: hono_utils_types.JSONValue;
|
|
10995
11138
|
} | undefined;
|
|
10996
11139
|
} | {
|
|
10997
|
-
trigger_id: "
|
|
11140
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
10998
11141
|
enabled: boolean;
|
|
10999
11142
|
synchronous: boolean;
|
|
11000
11143
|
created_at: string;
|
|
@@ -11006,7 +11149,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11006
11149
|
[x: string]: hono_utils_types.JSONValue;
|
|
11007
11150
|
} | undefined;
|
|
11008
11151
|
} | {
|
|
11009
|
-
trigger_id: "post-user-
|
|
11152
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
11010
11153
|
enabled: boolean;
|
|
11011
11154
|
synchronous: boolean;
|
|
11012
11155
|
created_at: string;
|
|
@@ -11018,7 +11161,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11018
11161
|
[x: string]: hono_utils_types.JSONValue;
|
|
11019
11162
|
} | undefined;
|
|
11020
11163
|
} | {
|
|
11021
|
-
trigger_id: "
|
|
11164
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
11022
11165
|
enabled: boolean;
|
|
11023
11166
|
synchronous: boolean;
|
|
11024
11167
|
created_at: string;
|
|
@@ -11034,7 +11177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11034
11177
|
limit: number;
|
|
11035
11178
|
length: number;
|
|
11036
11179
|
hooks: ({
|
|
11037
|
-
trigger_id: "
|
|
11180
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11038
11181
|
enabled: boolean;
|
|
11039
11182
|
synchronous: boolean;
|
|
11040
11183
|
created_at: string;
|
|
@@ -11046,7 +11189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11046
11189
|
[x: string]: hono_utils_types.JSONValue;
|
|
11047
11190
|
} | undefined;
|
|
11048
11191
|
} | {
|
|
11049
|
-
trigger_id: "
|
|
11192
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11050
11193
|
enabled: boolean;
|
|
11051
11194
|
synchronous: boolean;
|
|
11052
11195
|
created_at: string;
|
|
@@ -11058,7 +11201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11058
11201
|
[x: string]: hono_utils_types.JSONValue;
|
|
11059
11202
|
} | undefined;
|
|
11060
11203
|
} | {
|
|
11061
|
-
trigger_id: "post-user-
|
|
11204
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
11062
11205
|
enabled: boolean;
|
|
11063
11206
|
synchronous: boolean;
|
|
11064
11207
|
created_at: string;
|
|
@@ -11070,7 +11213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11070
11213
|
[x: string]: hono_utils_types.JSONValue;
|
|
11071
11214
|
} | undefined;
|
|
11072
11215
|
} | {
|
|
11073
|
-
trigger_id: "
|
|
11216
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
11074
11217
|
enabled: boolean;
|
|
11075
11218
|
synchronous: boolean;
|
|
11076
11219
|
created_at: string;
|
|
@@ -11097,7 +11240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11097
11240
|
};
|
|
11098
11241
|
} & {
|
|
11099
11242
|
json: {
|
|
11100
|
-
trigger_id: "
|
|
11243
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11101
11244
|
url: string;
|
|
11102
11245
|
enabled?: boolean | undefined;
|
|
11103
11246
|
synchronous?: boolean | undefined;
|
|
@@ -11105,7 +11248,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11105
11248
|
hook_id?: string | undefined;
|
|
11106
11249
|
metadata?: Record<string, unknown> | undefined;
|
|
11107
11250
|
} | {
|
|
11108
|
-
trigger_id: "
|
|
11251
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11109
11252
|
form_id: string;
|
|
11110
11253
|
enabled?: boolean | undefined;
|
|
11111
11254
|
synchronous?: boolean | undefined;
|
|
@@ -11113,7 +11256,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11113
11256
|
hook_id?: string | undefined;
|
|
11114
11257
|
metadata?: Record<string, unknown> | undefined;
|
|
11115
11258
|
} | {
|
|
11116
|
-
trigger_id: "post-user-
|
|
11259
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
11117
11260
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
11118
11261
|
enabled?: boolean | undefined;
|
|
11119
11262
|
synchronous?: boolean | undefined;
|
|
@@ -11121,7 +11264,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11121
11264
|
hook_id?: string | undefined;
|
|
11122
11265
|
metadata?: Record<string, unknown> | undefined;
|
|
11123
11266
|
} | {
|
|
11124
|
-
trigger_id: "
|
|
11267
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
11125
11268
|
code_id: string;
|
|
11126
11269
|
enabled?: boolean | undefined;
|
|
11127
11270
|
synchronous?: boolean | undefined;
|
|
@@ -11131,7 +11274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11131
11274
|
};
|
|
11132
11275
|
};
|
|
11133
11276
|
output: {
|
|
11134
|
-
trigger_id: "
|
|
11277
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11135
11278
|
enabled: boolean;
|
|
11136
11279
|
synchronous: boolean;
|
|
11137
11280
|
created_at: string;
|
|
@@ -11143,7 +11286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11143
11286
|
[x: string]: hono_utils_types.JSONValue;
|
|
11144
11287
|
} | undefined;
|
|
11145
11288
|
} | {
|
|
11146
|
-
trigger_id: "
|
|
11289
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11147
11290
|
enabled: boolean;
|
|
11148
11291
|
synchronous: boolean;
|
|
11149
11292
|
created_at: string;
|
|
@@ -11155,7 +11298,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11155
11298
|
[x: string]: hono_utils_types.JSONValue;
|
|
11156
11299
|
} | undefined;
|
|
11157
11300
|
} | {
|
|
11158
|
-
trigger_id: "post-user-
|
|
11301
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
11159
11302
|
enabled: boolean;
|
|
11160
11303
|
synchronous: boolean;
|
|
11161
11304
|
created_at: string;
|
|
@@ -11167,7 +11310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11167
11310
|
[x: string]: hono_utils_types.JSONValue;
|
|
11168
11311
|
} | undefined;
|
|
11169
11312
|
} | {
|
|
11170
|
-
trigger_id: "
|
|
11313
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
11171
11314
|
enabled: boolean;
|
|
11172
11315
|
synchronous: boolean;
|
|
11173
11316
|
created_at: string;
|
|
@@ -11213,7 +11356,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11213
11356
|
json: unknown;
|
|
11214
11357
|
};
|
|
11215
11358
|
output: {
|
|
11216
|
-
trigger_id: "
|
|
11359
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11217
11360
|
enabled: boolean;
|
|
11218
11361
|
synchronous: boolean;
|
|
11219
11362
|
created_at: string;
|
|
@@ -11225,7 +11368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11225
11368
|
[x: string]: hono_utils_types.JSONValue;
|
|
11226
11369
|
} | undefined;
|
|
11227
11370
|
} | {
|
|
11228
|
-
trigger_id: "
|
|
11371
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11229
11372
|
enabled: boolean;
|
|
11230
11373
|
synchronous: boolean;
|
|
11231
11374
|
created_at: string;
|
|
@@ -11237,7 +11380,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11237
11380
|
[x: string]: hono_utils_types.JSONValue;
|
|
11238
11381
|
} | undefined;
|
|
11239
11382
|
} | {
|
|
11240
|
-
trigger_id: "post-user-
|
|
11383
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
11241
11384
|
enabled: boolean;
|
|
11242
11385
|
synchronous: boolean;
|
|
11243
11386
|
created_at: string;
|
|
@@ -11249,7 +11392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11249
11392
|
[x: string]: hono_utils_types.JSONValue;
|
|
11250
11393
|
} | undefined;
|
|
11251
11394
|
} | {
|
|
11252
|
-
trigger_id: "
|
|
11395
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
11253
11396
|
enabled: boolean;
|
|
11254
11397
|
synchronous: boolean;
|
|
11255
11398
|
created_at: string;
|
|
@@ -11291,7 +11434,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11291
11434
|
};
|
|
11292
11435
|
};
|
|
11293
11436
|
output: {
|
|
11294
|
-
trigger_id: "
|
|
11437
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11295
11438
|
enabled: boolean;
|
|
11296
11439
|
synchronous: boolean;
|
|
11297
11440
|
created_at: string;
|
|
@@ -11303,7 +11446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11303
11446
|
[x: string]: hono_utils_types.JSONValue;
|
|
11304
11447
|
} | undefined;
|
|
11305
11448
|
} | {
|
|
11306
|
-
trigger_id: "
|
|
11449
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11307
11450
|
enabled: boolean;
|
|
11308
11451
|
synchronous: boolean;
|
|
11309
11452
|
created_at: string;
|
|
@@ -11315,7 +11458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11315
11458
|
[x: string]: hono_utils_types.JSONValue;
|
|
11316
11459
|
} | undefined;
|
|
11317
11460
|
} | {
|
|
11318
|
-
trigger_id: "post-user-
|
|
11461
|
+
trigger_id: "post-user-login" | "post-user-registration" | "post-user-update" | "credentials-exchange";
|
|
11319
11462
|
enabled: boolean;
|
|
11320
11463
|
synchronous: boolean;
|
|
11321
11464
|
created_at: string;
|
|
@@ -11327,7 +11470,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11327
11470
|
[x: string]: hono_utils_types.JSONValue;
|
|
11328
11471
|
} | undefined;
|
|
11329
11472
|
} | {
|
|
11330
|
-
trigger_id: "
|
|
11473
|
+
trigger_id: "post-user-login" | "pre-user-registration" | "post-user-registration" | "credentials-exchange";
|
|
11331
11474
|
enabled: boolean;
|
|
11332
11475
|
synchronous: boolean;
|
|
11333
11476
|
created_at: string;
|
|
@@ -11445,9 +11588,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11445
11588
|
tenant_id: string;
|
|
11446
11589
|
event_type: string;
|
|
11447
11590
|
log_type: string;
|
|
11448
|
-
category: "
|
|
11591
|
+
category: "api" | "user_action" | "admin_action" | "system";
|
|
11449
11592
|
actor: {
|
|
11450
|
-
type: "user" | "
|
|
11593
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
11451
11594
|
id?: string | undefined;
|
|
11452
11595
|
email?: string | undefined;
|
|
11453
11596
|
org_id?: string | undefined;
|
|
@@ -11757,7 +11900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11757
11900
|
created_at: string;
|
|
11758
11901
|
updated_at: string;
|
|
11759
11902
|
name: string;
|
|
11760
|
-
provider: "auth0" | "
|
|
11903
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11761
11904
|
connection: string;
|
|
11762
11905
|
enabled: boolean;
|
|
11763
11906
|
credentials: {
|
|
@@ -11789,7 +11932,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11789
11932
|
created_at: string;
|
|
11790
11933
|
updated_at: string;
|
|
11791
11934
|
name: string;
|
|
11792
|
-
provider: "auth0" | "
|
|
11935
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11793
11936
|
connection: string;
|
|
11794
11937
|
enabled: boolean;
|
|
11795
11938
|
credentials: {
|
|
@@ -11815,7 +11958,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11815
11958
|
} & {
|
|
11816
11959
|
json: {
|
|
11817
11960
|
name: string;
|
|
11818
|
-
provider: "auth0" | "
|
|
11961
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11819
11962
|
connection: string;
|
|
11820
11963
|
credentials: {
|
|
11821
11964
|
domain: string;
|
|
@@ -11832,7 +11975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11832
11975
|
created_at: string;
|
|
11833
11976
|
updated_at: string;
|
|
11834
11977
|
name: string;
|
|
11835
|
-
provider: "auth0" | "
|
|
11978
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11836
11979
|
connection: string;
|
|
11837
11980
|
enabled: boolean;
|
|
11838
11981
|
credentials: {
|
|
@@ -11863,7 +12006,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11863
12006
|
json: {
|
|
11864
12007
|
id?: string | undefined;
|
|
11865
12008
|
name?: string | undefined;
|
|
11866
|
-
provider?: "auth0" | "
|
|
12009
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
11867
12010
|
connection?: string | undefined;
|
|
11868
12011
|
enabled?: boolean | undefined;
|
|
11869
12012
|
credentials?: {
|
|
@@ -11879,7 +12022,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11879
12022
|
created_at: string;
|
|
11880
12023
|
updated_at: string;
|
|
11881
12024
|
name: string;
|
|
11882
|
-
provider: "auth0" | "
|
|
12025
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11883
12026
|
connection: string;
|
|
11884
12027
|
enabled: boolean;
|
|
11885
12028
|
credentials: {
|
|
@@ -11927,7 +12070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11927
12070
|
[x: string]: hono_utils_types.JSONValue;
|
|
11928
12071
|
};
|
|
11929
12072
|
id: string;
|
|
11930
|
-
status: "
|
|
12073
|
+
status: "suspended" | "active" | "paused";
|
|
11931
12074
|
filters?: {
|
|
11932
12075
|
type: string;
|
|
11933
12076
|
name: string;
|
|
@@ -11959,7 +12102,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11959
12102
|
[x: string]: hono_utils_types.JSONValue;
|
|
11960
12103
|
};
|
|
11961
12104
|
id: string;
|
|
11962
|
-
status: "
|
|
12105
|
+
status: "suspended" | "active" | "paused";
|
|
11963
12106
|
filters?: {
|
|
11964
12107
|
type: string;
|
|
11965
12108
|
name: string;
|
|
@@ -11984,7 +12127,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11984
12127
|
name: string;
|
|
11985
12128
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
11986
12129
|
sink: Record<string, unknown>;
|
|
11987
|
-
status?: "
|
|
12130
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11988
12131
|
filters?: {
|
|
11989
12132
|
type: string;
|
|
11990
12133
|
name: string;
|
|
@@ -11999,7 +12142,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11999
12142
|
[x: string]: hono_utils_types.JSONValue;
|
|
12000
12143
|
};
|
|
12001
12144
|
id: string;
|
|
12002
|
-
status: "
|
|
12145
|
+
status: "suspended" | "active" | "paused";
|
|
12003
12146
|
filters?: {
|
|
12004
12147
|
type: string;
|
|
12005
12148
|
name: string;
|
|
@@ -12034,7 +12177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12034
12177
|
}[] | undefined;
|
|
12035
12178
|
isPriority?: boolean | undefined;
|
|
12036
12179
|
id?: string | undefined;
|
|
12037
|
-
status?: "
|
|
12180
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
12038
12181
|
created_at?: string | undefined;
|
|
12039
12182
|
updated_at?: string | undefined;
|
|
12040
12183
|
};
|
|
@@ -12046,7 +12189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12046
12189
|
[x: string]: hono_utils_types.JSONValue;
|
|
12047
12190
|
};
|
|
12048
12191
|
id: string;
|
|
12049
|
-
status: "
|
|
12192
|
+
status: "suspended" | "active" | "paused";
|
|
12050
12193
|
filters?: {
|
|
12051
12194
|
type: string;
|
|
12052
12195
|
name: string;
|
|
@@ -12097,7 +12240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12097
12240
|
};
|
|
12098
12241
|
};
|
|
12099
12242
|
output: {
|
|
12100
|
-
type: "
|
|
12243
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12101
12244
|
date: string;
|
|
12102
12245
|
isMobile: boolean;
|
|
12103
12246
|
log_id: string;
|
|
@@ -12136,7 +12279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12136
12279
|
limit: number;
|
|
12137
12280
|
length: number;
|
|
12138
12281
|
logs: {
|
|
12139
|
-
type: "
|
|
12282
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12140
12283
|
date: string;
|
|
12141
12284
|
isMobile: boolean;
|
|
12142
12285
|
log_id: string;
|
|
@@ -12190,7 +12333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12190
12333
|
};
|
|
12191
12334
|
};
|
|
12192
12335
|
output: {
|
|
12193
|
-
type: "
|
|
12336
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12194
12337
|
date: string;
|
|
12195
12338
|
isMobile: boolean;
|
|
12196
12339
|
log_id: string;
|
|
@@ -12345,7 +12488,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12345
12488
|
audience?: string | undefined;
|
|
12346
12489
|
client_id?: string | undefined;
|
|
12347
12490
|
allow_any_organization?: string | undefined;
|
|
12348
|
-
subject_type?: "
|
|
12491
|
+
subject_type?: "client" | "user" | undefined;
|
|
12349
12492
|
};
|
|
12350
12493
|
} & {
|
|
12351
12494
|
header: {
|
|
@@ -12360,7 +12503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12360
12503
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12361
12504
|
allow_any_organization?: boolean | undefined;
|
|
12362
12505
|
is_system?: boolean | undefined;
|
|
12363
|
-
subject_type?: "
|
|
12506
|
+
subject_type?: "client" | "user" | undefined;
|
|
12364
12507
|
authorization_details_types?: string[] | undefined;
|
|
12365
12508
|
created_at?: string | undefined;
|
|
12366
12509
|
updated_at?: string | undefined;
|
|
@@ -12376,7 +12519,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12376
12519
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12377
12520
|
allow_any_organization?: boolean | undefined;
|
|
12378
12521
|
is_system?: boolean | undefined;
|
|
12379
|
-
subject_type?: "
|
|
12522
|
+
subject_type?: "client" | "user" | undefined;
|
|
12380
12523
|
authorization_details_types?: string[] | undefined;
|
|
12381
12524
|
created_at?: string | undefined;
|
|
12382
12525
|
updated_at?: string | undefined;
|
|
@@ -12407,7 +12550,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12407
12550
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12408
12551
|
allow_any_organization?: boolean | undefined;
|
|
12409
12552
|
is_system?: boolean | undefined;
|
|
12410
|
-
subject_type?: "
|
|
12553
|
+
subject_type?: "client" | "user" | undefined;
|
|
12411
12554
|
authorization_details_types?: string[] | undefined;
|
|
12412
12555
|
created_at?: string | undefined;
|
|
12413
12556
|
updated_at?: string | undefined;
|
|
@@ -12452,7 +12595,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12452
12595
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12453
12596
|
allow_any_organization?: boolean | undefined;
|
|
12454
12597
|
is_system?: boolean | undefined;
|
|
12455
|
-
subject_type?: "
|
|
12598
|
+
subject_type?: "client" | "user" | undefined;
|
|
12456
12599
|
authorization_details_types?: string[] | undefined;
|
|
12457
12600
|
};
|
|
12458
12601
|
};
|
|
@@ -12464,7 +12607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12464
12607
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12465
12608
|
allow_any_organization?: boolean | undefined;
|
|
12466
12609
|
is_system?: boolean | undefined;
|
|
12467
|
-
subject_type?: "
|
|
12610
|
+
subject_type?: "client" | "user" | undefined;
|
|
12468
12611
|
authorization_details_types?: string[] | undefined;
|
|
12469
12612
|
created_at?: string | undefined;
|
|
12470
12613
|
updated_at?: string | undefined;
|
|
@@ -12488,7 +12631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12488
12631
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12489
12632
|
allow_any_organization?: boolean | undefined;
|
|
12490
12633
|
is_system?: boolean | undefined;
|
|
12491
|
-
subject_type?: "
|
|
12634
|
+
subject_type?: "client" | "user" | undefined;
|
|
12492
12635
|
authorization_details_types?: string[] | undefined;
|
|
12493
12636
|
};
|
|
12494
12637
|
};
|
|
@@ -12500,7 +12643,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12500
12643
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12501
12644
|
allow_any_organization?: boolean | undefined;
|
|
12502
12645
|
is_system?: boolean | undefined;
|
|
12503
|
-
subject_type?: "
|
|
12646
|
+
subject_type?: "client" | "user" | undefined;
|
|
12504
12647
|
authorization_details_types?: string[] | undefined;
|
|
12505
12648
|
created_at?: string | undefined;
|
|
12506
12649
|
updated_at?: string | undefined;
|
|
@@ -12578,7 +12721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12578
12721
|
addons?: {
|
|
12579
12722
|
[x: string]: any;
|
|
12580
12723
|
} | undefined;
|
|
12581
|
-
token_endpoint_auth_method?: "none" | "
|
|
12724
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12582
12725
|
client_metadata?: {
|
|
12583
12726
|
[x: string]: string;
|
|
12584
12727
|
} | undefined;
|
|
@@ -12674,7 +12817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12674
12817
|
addons?: {
|
|
12675
12818
|
[x: string]: any;
|
|
12676
12819
|
} | undefined;
|
|
12677
|
-
token_endpoint_auth_method?: "none" | "
|
|
12820
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12678
12821
|
client_metadata?: {
|
|
12679
12822
|
[x: string]: string;
|
|
12680
12823
|
} | undefined;
|
|
@@ -12785,7 +12928,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12785
12928
|
addons?: {
|
|
12786
12929
|
[x: string]: any;
|
|
12787
12930
|
} | undefined;
|
|
12788
|
-
token_endpoint_auth_method?: "none" | "
|
|
12931
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12789
12932
|
client_metadata?: {
|
|
12790
12933
|
[x: string]: string;
|
|
12791
12934
|
} | undefined;
|
|
@@ -12895,7 +13038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12895
13038
|
custom_login_page_preview?: string | undefined;
|
|
12896
13039
|
form_template?: string | undefined;
|
|
12897
13040
|
addons?: Record<string, any> | undefined;
|
|
12898
|
-
token_endpoint_auth_method?: "none" | "
|
|
13041
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12899
13042
|
client_metadata?: Record<string, string> | undefined;
|
|
12900
13043
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12901
13044
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12975,7 +13118,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12975
13118
|
addons?: {
|
|
12976
13119
|
[x: string]: any;
|
|
12977
13120
|
} | undefined;
|
|
12978
|
-
token_endpoint_auth_method?: "none" | "
|
|
13121
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12979
13122
|
client_metadata?: {
|
|
12980
13123
|
[x: string]: string;
|
|
12981
13124
|
} | undefined;
|
|
@@ -13064,7 +13207,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13064
13207
|
custom_login_page_preview?: string | undefined;
|
|
13065
13208
|
form_template?: string | undefined;
|
|
13066
13209
|
addons?: Record<string, any> | undefined;
|
|
13067
|
-
token_endpoint_auth_method?: "none" | "
|
|
13210
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13068
13211
|
client_metadata?: Record<string, string> | undefined;
|
|
13069
13212
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13070
13213
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13144,7 +13287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13144
13287
|
addons?: {
|
|
13145
13288
|
[x: string]: any;
|
|
13146
13289
|
} | undefined;
|
|
13147
|
-
token_endpoint_auth_method?: "none" | "
|
|
13290
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13148
13291
|
client_metadata?: {
|
|
13149
13292
|
[x: string]: string;
|
|
13150
13293
|
} | undefined;
|
|
@@ -13313,7 +13456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13313
13456
|
} | undefined;
|
|
13314
13457
|
} | undefined;
|
|
13315
13458
|
passkey_options?: {
|
|
13316
|
-
challenge_ui?: "
|
|
13459
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
13317
13460
|
local_enrollment_enabled?: boolean | undefined;
|
|
13318
13461
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
13319
13462
|
} | undefined;
|
|
@@ -13467,7 +13610,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13467
13610
|
} | undefined;
|
|
13468
13611
|
} | undefined;
|
|
13469
13612
|
passkey_options?: {
|
|
13470
|
-
challenge_ui?: "
|
|
13613
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
13471
13614
|
local_enrollment_enabled?: boolean | undefined;
|
|
13472
13615
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
13473
13616
|
} | undefined;
|
|
@@ -14408,7 +14551,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14408
14551
|
};
|
|
14409
14552
|
};
|
|
14410
14553
|
output: {
|
|
14411
|
-
type: "
|
|
14554
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14412
14555
|
date: string;
|
|
14413
14556
|
isMobile: boolean;
|
|
14414
14557
|
log_id: string;
|
|
@@ -14447,7 +14590,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14447
14590
|
limit: number;
|
|
14448
14591
|
length: number;
|
|
14449
14592
|
logs: {
|
|
14450
|
-
type: "
|
|
14593
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14451
14594
|
date: string;
|
|
14452
14595
|
isMobile: boolean;
|
|
14453
14596
|
log_id: string;
|
|
@@ -14541,6 +14684,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14541
14684
|
permissions: {
|
|
14542
14685
|
permission_name: string;
|
|
14543
14686
|
resource_server_identifier: string;
|
|
14687
|
+
organization_id?: string | undefined;
|
|
14544
14688
|
}[];
|
|
14545
14689
|
};
|
|
14546
14690
|
};
|
|
@@ -14565,6 +14709,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14565
14709
|
permissions: {
|
|
14566
14710
|
permission_name: string;
|
|
14567
14711
|
resource_server_identifier: string;
|
|
14712
|
+
organization_id?: string | undefined;
|
|
14568
14713
|
}[];
|
|
14569
14714
|
};
|
|
14570
14715
|
};
|
|
@@ -14762,7 +14907,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14762
14907
|
};
|
|
14763
14908
|
} & {
|
|
14764
14909
|
json: {
|
|
14765
|
-
template: "
|
|
14910
|
+
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";
|
|
14766
14911
|
body: string;
|
|
14767
14912
|
from: string;
|
|
14768
14913
|
subject: string;
|
|
@@ -14783,7 +14928,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14783
14928
|
};
|
|
14784
14929
|
} & {
|
|
14785
14930
|
json: {
|
|
14786
|
-
template: "
|
|
14931
|
+
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";
|
|
14787
14932
|
body: string;
|
|
14788
14933
|
from: string;
|
|
14789
14934
|
subject: string;
|
|
@@ -14795,7 +14940,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14795
14940
|
};
|
|
14796
14941
|
};
|
|
14797
14942
|
output: {
|
|
14798
|
-
template: "
|
|
14943
|
+
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";
|
|
14799
14944
|
body: string;
|
|
14800
14945
|
from: string;
|
|
14801
14946
|
subject: string;
|
|
@@ -14818,7 +14963,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14818
14963
|
};
|
|
14819
14964
|
};
|
|
14820
14965
|
output: {
|
|
14821
|
-
name: "
|
|
14966
|
+
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";
|
|
14822
14967
|
body: string;
|
|
14823
14968
|
subject: string;
|
|
14824
14969
|
}[];
|
|
@@ -14831,7 +14976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14831
14976
|
$get: {
|
|
14832
14977
|
input: {
|
|
14833
14978
|
param: {
|
|
14834
|
-
templateName: "
|
|
14979
|
+
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";
|
|
14835
14980
|
};
|
|
14836
14981
|
} & {
|
|
14837
14982
|
header: {
|
|
@@ -14844,7 +14989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14844
14989
|
} | {
|
|
14845
14990
|
input: {
|
|
14846
14991
|
param: {
|
|
14847
|
-
templateName: "
|
|
14992
|
+
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";
|
|
14848
14993
|
};
|
|
14849
14994
|
} & {
|
|
14850
14995
|
header: {
|
|
@@ -14852,7 +14997,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14852
14997
|
};
|
|
14853
14998
|
};
|
|
14854
14999
|
output: {
|
|
14855
|
-
template: "
|
|
15000
|
+
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";
|
|
14856
15001
|
body: string;
|
|
14857
15002
|
from: string;
|
|
14858
15003
|
subject: string;
|
|
@@ -14871,7 +15016,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14871
15016
|
$put: {
|
|
14872
15017
|
input: {
|
|
14873
15018
|
param: {
|
|
14874
|
-
templateName: "
|
|
15019
|
+
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";
|
|
14875
15020
|
};
|
|
14876
15021
|
} & {
|
|
14877
15022
|
header: {
|
|
@@ -14879,7 +15024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14879
15024
|
};
|
|
14880
15025
|
} & {
|
|
14881
15026
|
json: {
|
|
14882
|
-
template: "
|
|
15027
|
+
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";
|
|
14883
15028
|
body: string;
|
|
14884
15029
|
subject: string;
|
|
14885
15030
|
syntax?: "liquid" | undefined;
|
|
@@ -14891,7 +15036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14891
15036
|
};
|
|
14892
15037
|
};
|
|
14893
15038
|
output: {
|
|
14894
|
-
template: "
|
|
15039
|
+
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";
|
|
14895
15040
|
body: string;
|
|
14896
15041
|
from: string;
|
|
14897
15042
|
subject: string;
|
|
@@ -14910,7 +15055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14910
15055
|
$patch: {
|
|
14911
15056
|
input: {
|
|
14912
15057
|
param: {
|
|
14913
|
-
templateName: "
|
|
15058
|
+
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";
|
|
14914
15059
|
};
|
|
14915
15060
|
} & {
|
|
14916
15061
|
header: {
|
|
@@ -14918,7 +15063,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14918
15063
|
};
|
|
14919
15064
|
} & {
|
|
14920
15065
|
json: {
|
|
14921
|
-
template?: "
|
|
15066
|
+
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;
|
|
14922
15067
|
body?: string | undefined;
|
|
14923
15068
|
from?: string | undefined;
|
|
14924
15069
|
subject?: string | undefined;
|
|
@@ -14935,7 +15080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14935
15080
|
} | {
|
|
14936
15081
|
input: {
|
|
14937
15082
|
param: {
|
|
14938
|
-
templateName: "
|
|
15083
|
+
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";
|
|
14939
15084
|
};
|
|
14940
15085
|
} & {
|
|
14941
15086
|
header: {
|
|
@@ -14943,7 +15088,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14943
15088
|
};
|
|
14944
15089
|
} & {
|
|
14945
15090
|
json: {
|
|
14946
|
-
template?: "
|
|
15091
|
+
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;
|
|
14947
15092
|
body?: string | undefined;
|
|
14948
15093
|
from?: string | undefined;
|
|
14949
15094
|
subject?: string | undefined;
|
|
@@ -14955,7 +15100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14955
15100
|
};
|
|
14956
15101
|
};
|
|
14957
15102
|
output: {
|
|
14958
|
-
template: "
|
|
15103
|
+
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";
|
|
14959
15104
|
body: string;
|
|
14960
15105
|
from: string;
|
|
14961
15106
|
subject: string;
|
|
@@ -14974,7 +15119,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14974
15119
|
$delete: {
|
|
14975
15120
|
input: {
|
|
14976
15121
|
param: {
|
|
14977
|
-
templateName: "
|
|
15122
|
+
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";
|
|
14978
15123
|
};
|
|
14979
15124
|
} & {
|
|
14980
15125
|
header: {
|
|
@@ -14987,7 +15132,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14987
15132
|
} | {
|
|
14988
15133
|
input: {
|
|
14989
15134
|
param: {
|
|
14990
|
-
templateName: "
|
|
15135
|
+
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";
|
|
14991
15136
|
};
|
|
14992
15137
|
} & {
|
|
14993
15138
|
header: {
|
|
@@ -15004,7 +15149,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15004
15149
|
$post: {
|
|
15005
15150
|
input: {
|
|
15006
15151
|
param: {
|
|
15007
|
-
templateName: "
|
|
15152
|
+
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";
|
|
15008
15153
|
};
|
|
15009
15154
|
} & {
|
|
15010
15155
|
header: {
|
|
@@ -15956,7 +16101,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15956
16101
|
} & {
|
|
15957
16102
|
json: {
|
|
15958
16103
|
body?: string | undefined;
|
|
15959
|
-
screen?: "
|
|
16104
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
15960
16105
|
branding?: {
|
|
15961
16106
|
colors?: {
|
|
15962
16107
|
primary: string;
|
|
@@ -16125,7 +16270,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16125
16270
|
json: {
|
|
16126
16271
|
bindings: {
|
|
16127
16272
|
ref: {
|
|
16128
|
-
type?: "
|
|
16273
|
+
type?: "action_name" | "action_id" | undefined;
|
|
16129
16274
|
value?: string | undefined;
|
|
16130
16275
|
id?: string | undefined;
|
|
16131
16276
|
name?: string | undefined;
|
|
@@ -16200,7 +16345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16200
16345
|
output: {
|
|
16201
16346
|
id: string;
|
|
16202
16347
|
trigger_id: string;
|
|
16203
|
-
status: "
|
|
16348
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
16204
16349
|
results: {
|
|
16205
16350
|
action_name: string;
|
|
16206
16351
|
error: {
|
|
@@ -16247,7 +16392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16247
16392
|
logs: {
|
|
16248
16393
|
action_name: string;
|
|
16249
16394
|
lines: {
|
|
16250
|
-
level: "
|
|
16395
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
16251
16396
|
message: string;
|
|
16252
16397
|
}[];
|
|
16253
16398
|
}[];
|
|
@@ -16914,7 +17059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16914
17059
|
args: hono_utils_types.JSONValue[];
|
|
16915
17060
|
}[];
|
|
16916
17061
|
logs: {
|
|
16917
|
-
level: "
|
|
17062
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
16918
17063
|
message: string;
|
|
16919
17064
|
}[];
|
|
16920
17065
|
error?: string | undefined;
|
|
@@ -17225,7 +17370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17225
17370
|
scope?: string | undefined;
|
|
17226
17371
|
grant_types?: string[] | undefined;
|
|
17227
17372
|
response_types?: string[] | undefined;
|
|
17228
|
-
token_endpoint_auth_method?: "none" | "
|
|
17373
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17229
17374
|
jwks_uri?: string | undefined;
|
|
17230
17375
|
jwks?: Record<string, unknown> | undefined;
|
|
17231
17376
|
software_id?: string | undefined;
|
|
@@ -17314,7 +17459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17314
17459
|
scope?: string | undefined;
|
|
17315
17460
|
grant_types?: string[] | undefined;
|
|
17316
17461
|
response_types?: string[] | undefined;
|
|
17317
|
-
token_endpoint_auth_method?: "none" | "
|
|
17462
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17318
17463
|
jwks_uri?: string | undefined;
|
|
17319
17464
|
jwks?: Record<string, unknown> | undefined;
|
|
17320
17465
|
software_id?: string | undefined;
|
|
@@ -17661,19 +17806,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17661
17806
|
send: "code" | "link";
|
|
17662
17807
|
authParams: {
|
|
17663
17808
|
username?: string | undefined;
|
|
17664
|
-
|
|
17809
|
+
scope?: string | undefined;
|
|
17665
17810
|
audience?: string | undefined;
|
|
17811
|
+
organization?: string | undefined;
|
|
17812
|
+
state?: string | undefined;
|
|
17666
17813
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17667
17814
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17668
|
-
|
|
17669
|
-
|
|
17670
|
-
nonce?: string | undefined;
|
|
17815
|
+
prompt?: string | undefined;
|
|
17816
|
+
ui_locales?: string | undefined;
|
|
17671
17817
|
redirect_uri?: string | undefined;
|
|
17672
17818
|
act_as?: string | undefined;
|
|
17673
|
-
|
|
17819
|
+
nonce?: string | undefined;
|
|
17674
17820
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17675
17821
|
code_challenge?: string | undefined;
|
|
17676
|
-
ui_locales?: string | undefined;
|
|
17677
17822
|
max_age?: number | undefined;
|
|
17678
17823
|
acr_values?: string | undefined;
|
|
17679
17824
|
claims?: {
|
|
@@ -17697,19 +17842,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17697
17842
|
send: "code" | "link";
|
|
17698
17843
|
authParams: {
|
|
17699
17844
|
username?: string | undefined;
|
|
17700
|
-
|
|
17845
|
+
scope?: string | undefined;
|
|
17701
17846
|
audience?: string | undefined;
|
|
17847
|
+
organization?: string | undefined;
|
|
17848
|
+
state?: string | undefined;
|
|
17702
17849
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17703
17850
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17704
|
-
|
|
17705
|
-
|
|
17706
|
-
nonce?: string | undefined;
|
|
17851
|
+
prompt?: string | undefined;
|
|
17852
|
+
ui_locales?: string | undefined;
|
|
17707
17853
|
redirect_uri?: string | undefined;
|
|
17708
17854
|
act_as?: string | undefined;
|
|
17709
|
-
|
|
17855
|
+
nonce?: string | undefined;
|
|
17710
17856
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17711
17857
|
code_challenge?: string | undefined;
|
|
17712
|
-
ui_locales?: string | undefined;
|
|
17713
17858
|
max_age?: number | undefined;
|
|
17714
17859
|
acr_values?: string | undefined;
|
|
17715
17860
|
claims?: {
|
|
@@ -17938,7 +18083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17938
18083
|
client_id: string;
|
|
17939
18084
|
username: string;
|
|
17940
18085
|
otp: string;
|
|
17941
|
-
realm: "
|
|
18086
|
+
realm: "email" | "sms";
|
|
17942
18087
|
} | {
|
|
17943
18088
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17944
18089
|
subject_token: string;
|
|
@@ -17985,7 +18130,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17985
18130
|
client_id: string;
|
|
17986
18131
|
username: string;
|
|
17987
18132
|
otp: string;
|
|
17988
|
-
realm: "
|
|
18133
|
+
realm: "email" | "sms";
|
|
17989
18134
|
} | {
|
|
17990
18135
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17991
18136
|
subject_token: string;
|
|
@@ -18037,7 +18182,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18037
18182
|
client_id: string;
|
|
18038
18183
|
username: string;
|
|
18039
18184
|
otp: string;
|
|
18040
|
-
realm: "
|
|
18185
|
+
realm: "email" | "sms";
|
|
18041
18186
|
} | {
|
|
18042
18187
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18043
18188
|
subject_token: string;
|
|
@@ -18084,7 +18229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18084
18229
|
client_id: string;
|
|
18085
18230
|
username: string;
|
|
18086
18231
|
otp: string;
|
|
18087
|
-
realm: "
|
|
18232
|
+
realm: "email" | "sms";
|
|
18088
18233
|
} | {
|
|
18089
18234
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18090
18235
|
subject_token: string;
|
|
@@ -18144,7 +18289,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18144
18289
|
client_id: string;
|
|
18145
18290
|
username: string;
|
|
18146
18291
|
otp: string;
|
|
18147
|
-
realm: "
|
|
18292
|
+
realm: "email" | "sms";
|
|
18148
18293
|
} | {
|
|
18149
18294
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18150
18295
|
subject_token: string;
|
|
@@ -18191,7 +18336,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18191
18336
|
client_id: string;
|
|
18192
18337
|
username: string;
|
|
18193
18338
|
otp: string;
|
|
18194
|
-
realm: "
|
|
18339
|
+
realm: "email" | "sms";
|
|
18195
18340
|
} | {
|
|
18196
18341
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18197
18342
|
subject_token: string;
|
|
@@ -18246,7 +18391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18246
18391
|
client_id: string;
|
|
18247
18392
|
username: string;
|
|
18248
18393
|
otp: string;
|
|
18249
|
-
realm: "
|
|
18394
|
+
realm: "email" | "sms";
|
|
18250
18395
|
} | {
|
|
18251
18396
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18252
18397
|
subject_token: string;
|
|
@@ -18293,7 +18438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18293
18438
|
client_id: string;
|
|
18294
18439
|
username: string;
|
|
18295
18440
|
otp: string;
|
|
18296
|
-
realm: "
|
|
18441
|
+
realm: "email" | "sms";
|
|
18297
18442
|
} | {
|
|
18298
18443
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18299
18444
|
subject_token: string;
|
|
@@ -18348,7 +18493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18348
18493
|
client_id: string;
|
|
18349
18494
|
username: string;
|
|
18350
18495
|
otp: string;
|
|
18351
|
-
realm: "
|
|
18496
|
+
realm: "email" | "sms";
|
|
18352
18497
|
} | {
|
|
18353
18498
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18354
18499
|
subject_token: string;
|
|
@@ -18395,7 +18540,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18395
18540
|
client_id: string;
|
|
18396
18541
|
username: string;
|
|
18397
18542
|
otp: string;
|
|
18398
|
-
realm: "
|
|
18543
|
+
realm: "email" | "sms";
|
|
18399
18544
|
} | {
|
|
18400
18545
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18401
18546
|
subject_token: string;
|
|
@@ -19615,7 +19760,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19615
19760
|
$get: {
|
|
19616
19761
|
input: {
|
|
19617
19762
|
param: {
|
|
19618
|
-
screen: "
|
|
19763
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19619
19764
|
};
|
|
19620
19765
|
} & {
|
|
19621
19766
|
query: {
|
|
@@ -19631,7 +19776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19631
19776
|
} | {
|
|
19632
19777
|
input: {
|
|
19633
19778
|
param: {
|
|
19634
|
-
screen: "
|
|
19779
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19635
19780
|
};
|
|
19636
19781
|
} & {
|
|
19637
19782
|
query: {
|
|
@@ -19647,7 +19792,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19647
19792
|
} | {
|
|
19648
19793
|
input: {
|
|
19649
19794
|
param: {
|
|
19650
|
-
screen: "
|
|
19795
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19651
19796
|
};
|
|
19652
19797
|
} & {
|
|
19653
19798
|
query: {
|
|
@@ -19667,7 +19812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19667
19812
|
$post: {
|
|
19668
19813
|
input: {
|
|
19669
19814
|
param: {
|
|
19670
|
-
screen: "
|
|
19815
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19671
19816
|
};
|
|
19672
19817
|
} & {
|
|
19673
19818
|
query: {
|
|
@@ -19685,7 +19830,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19685
19830
|
} | {
|
|
19686
19831
|
input: {
|
|
19687
19832
|
param: {
|
|
19688
|
-
screen: "
|
|
19833
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19689
19834
|
};
|
|
19690
19835
|
} & {
|
|
19691
19836
|
query: {
|
|
@@ -19783,5 +19928,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19783
19928
|
createX509Certificate: typeof createX509Certificate;
|
|
19784
19929
|
};
|
|
19785
19930
|
|
|
19786
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
|
|
19787
|
-
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, 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, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
|
|
19931
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
|
|
19932
|
+
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
|