authhero 8.21.0 → 8.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +142 -142
- package/dist/authhero.d.ts +529 -276
- package/dist/authhero.mjs +22201 -17447
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +7 -7
- package/dist/types/errors/is-http-exception-like.d.ts +11 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/index.d.ts +407 -273
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +46 -46
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +18 -18
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/well-known.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +110 -15
- package/dist/types/routes/management-api/connections.d.ts +21 -21
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- 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/index.d.ts +353 -220
- package/dist/types/routes/management-api/logs.d.ts +41 -3
- 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/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.d.ts +122 -0
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +10 -10
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/utils/crypto.d.ts +3 -0
- package/dist/types/utils/jwks.d.ts +4 -4
- package/dist/types/utils/jwt.d.ts +29 -0
- package/dist/types/utils/request-origin.d.ts +6 -0
- package/dist/types/utils/totp.d.ts +10 -0
- package/package.json +6 -7
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, Client, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
3
|
+
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, TenantsDataAdapter, ListParams, KeysAdapter, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
4
4
|
export * from '@authhero/adapter-interfaces';
|
|
5
5
|
import * as hono_types from 'hono/types';
|
|
6
6
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
@@ -2692,6 +2692,126 @@ interface BackfillResult {
|
|
|
2692
2692
|
*/
|
|
2693
2693
|
declare function backfillProxyHostsToKv(options: BackfillProxyHostsOptions): Promise<BackfillResult>;
|
|
2694
2694
|
|
|
2695
|
+
/**
|
|
2696
|
+
* Default dispatch-namespace binding name the synthesized route targets.
|
|
2697
|
+
* Must match the `[[dispatch_namespaces]] binding = "..."` declared in the
|
|
2698
|
+
* proxy Worker's wrangler config.
|
|
2699
|
+
*/
|
|
2700
|
+
declare const DEFAULT_WFP_DISPATCH_BINDING = "DISPATCHER";
|
|
2701
|
+
/**
|
|
2702
|
+
* Default script-name template, matching the WFP provisioner's default
|
|
2703
|
+
* (`scriptNameTemplate` in `@authhero/cloudflare-adapter`). Only used when the
|
|
2704
|
+
* tenant row carries no `worker_script_name` — the provisioner writes that
|
|
2705
|
+
* back on provision, and it is always preferred.
|
|
2706
|
+
*/
|
|
2707
|
+
declare const DEFAULT_WFP_SCRIPT_NAME_TEMPLATE = "{tenant_id}";
|
|
2708
|
+
/**
|
|
2709
|
+
* The platform subdomain a WFP tenant is served on: `{tenant_id}.{issuerHost}`.
|
|
2710
|
+
* Central so the publisher, the resolver, and any reconcile host-list
|
|
2711
|
+
* derivation all agree on the exact host (and therefore the KV key).
|
|
2712
|
+
*/
|
|
2713
|
+
declare function wfpTenantHost(tenantId: string, issuerHost: string): string;
|
|
2714
|
+
/**
|
|
2715
|
+
* Whether a tenant id can be served on a platform subdomain at all. Ids that
|
|
2716
|
+
* fail this (mixed case, dots, other URL-unsafe characters) are skipped by
|
|
2717
|
+
* `wrapTenantsAdapterWithWfpKvPublish` — publishing them would create KV keys
|
|
2718
|
+
* the resolver can never match. Give WFP tenants lowercase DNS-label ids.
|
|
2719
|
+
*/
|
|
2720
|
+
declare function isWfpSubdomainSafeTenantId(tenantId: string): boolean;
|
|
2721
|
+
interface WfpTenantHostResolverOptions {
|
|
2722
|
+
/** Tenant lookup — typically the control plane's tenants adapter. */
|
|
2723
|
+
tenants: Pick<TenantsDataAdapter, "get">;
|
|
2724
|
+
/**
|
|
2725
|
+
* The issuer host tenant subdomains hang off (e.g. `token.example.com`,
|
|
2726
|
+
* from `new URL(env.ISSUER).host`). A host resolves only when it is exactly
|
|
2727
|
+
* one label under this — `wpf.token.example.com`, not `a.b.token.example.com`.
|
|
2728
|
+
*/
|
|
2729
|
+
issuerHost: string;
|
|
2730
|
+
/** Dispatch-namespace binding name on the proxy Worker. */
|
|
2731
|
+
dispatchBinding?: string;
|
|
2732
|
+
/**
|
|
2733
|
+
* Fallback script-name template (`{tenant_id}` placeholder) for tenants
|
|
2734
|
+
* provisioned before `worker_script_name` was written back. Must match the
|
|
2735
|
+
* provisioner's template.
|
|
2736
|
+
*/
|
|
2737
|
+
scriptNameTemplate?: string;
|
|
2738
|
+
/** Optional per-request timeout (ms) forwarded to the dispatch handler. */
|
|
2739
|
+
dispatchTimeoutMs?: number;
|
|
2740
|
+
}
|
|
2741
|
+
/**
|
|
2742
|
+
* Build a `resolveHost` that maps a WFP tenant's platform subdomain
|
|
2743
|
+
* (`{tenant_id}.{issuerHost}`) to a synthetic `ResolvedHost` whose single
|
|
2744
|
+
* route dispatches into the tenant's own Worker via the proxy's
|
|
2745
|
+
* `dispatch_namespace` handler.
|
|
2746
|
+
*
|
|
2747
|
+
* Resolves only tenants with `deployment_type: "wfp"` AND
|
|
2748
|
+
* `provisioning_state: "ready"` — anything else returns `null` so the host
|
|
2749
|
+
* falls through to the proxy's fallback chain (typically the shared control
|
|
2750
|
+
* plane), which keeps a tenant serviceable while it is still provisioning.
|
|
2751
|
+
* No `custom_domains` row is involved; the mapping is derived entirely from
|
|
2752
|
+
* the tenant row, which stays the durable source of truth.
|
|
2753
|
+
*
|
|
2754
|
+
* Compose it behind the custom-domains resolver with `composeHostResolvers`
|
|
2755
|
+
* so an explicit `custom_domains` row for the same host always wins.
|
|
2756
|
+
*/
|
|
2757
|
+
declare function createWfpTenantHostResolver(options: WfpTenantHostResolverOptions): (host: string) => Promise<ResolvedHost | null>;
|
|
2758
|
+
/**
|
|
2759
|
+
* Chain host resolvers: first non-null wins, in argument order. Put the
|
|
2760
|
+
* custom-domains resolver first so an explicit `custom_domains` row overrides
|
|
2761
|
+
* a derived WFP tenant-subdomain route for the same host. Errors propagate —
|
|
2762
|
+
* a failing layer should surface (and let the caller's own fallback take
|
|
2763
|
+
* over), not be silently treated as a miss that could delete a live KV key.
|
|
2764
|
+
*/
|
|
2765
|
+
declare function composeHostResolvers(...resolvers: Array<(host: string) => Promise<ResolvedHost | null>>): (host: string) => Promise<ResolvedHost | null>;
|
|
2766
|
+
interface WfpTenantsKvPublishOptions {
|
|
2767
|
+
/** Tenants adapter whose writes should be mirrored to KV. */
|
|
2768
|
+
tenants: TenantsDataAdapter;
|
|
2769
|
+
/** KV namespace the resolved host blobs are published to. */
|
|
2770
|
+
kv: KvNamespaceWriter;
|
|
2771
|
+
/**
|
|
2772
|
+
* Cross-tenant host resolver used to recompute the blob after a write —
|
|
2773
|
+
* pass the SAME composed resolver (custom domains first, then
|
|
2774
|
+
* `createWfpTenantHostResolver`) that the control plane serves over HTTP,
|
|
2775
|
+
* so every publisher computes identical blobs for a host.
|
|
2776
|
+
*/
|
|
2777
|
+
resolveHost: (host: string) => Promise<ResolvedHost | null>;
|
|
2778
|
+
/** The issuer host tenant subdomains hang off — see `wfpTenantHost`. */
|
|
2779
|
+
issuerHost: string;
|
|
2780
|
+
/** Key prefix; must match the proxy reader. Defaults to the shared default. */
|
|
2781
|
+
keyPrefix?: string;
|
|
2782
|
+
/**
|
|
2783
|
+
* Optional `ctx.waitUntil` so the fire-and-forget KV publish runs to
|
|
2784
|
+
* completion without blocking (or failing) the originating write. When
|
|
2785
|
+
* omitted, the publish is detached with its rejection swallowed.
|
|
2786
|
+
*/
|
|
2787
|
+
waitUntil?: (promise: Promise<unknown>) => void;
|
|
2788
|
+
/** Optional hook invoked when a publish fails. */
|
|
2789
|
+
onError?: (err: unknown, ctx: {
|
|
2790
|
+
host: string;
|
|
2791
|
+
op: string;
|
|
2792
|
+
}) => void;
|
|
2793
|
+
}
|
|
2794
|
+
/**
|
|
2795
|
+
* Wrap a control plane's `tenants` adapter so every WFP-tenant mutation
|
|
2796
|
+
* republishes (or deletes) the tenant's platform-subdomain routing blob in KV
|
|
2797
|
+
* — the tenants-table counterpart of `wrapProxyAdaptersWithKvPublish`.
|
|
2798
|
+
*
|
|
2799
|
+
* This is the single choke-point for WFP subdomain routing: the provisioner
|
|
2800
|
+
* flips `provisioning_state` to `"ready"` through `tenants.update`, which
|
|
2801
|
+
* publishes the dispatch route the moment the tenant Worker is servable —
|
|
2802
|
+
* inline hook and durable-workflow paths alike, with no per-path wiring. A
|
|
2803
|
+
* remove deletes the key, so a deprovisioned tenant's host falls back to the
|
|
2804
|
+
* proxy's default chain instead of dispatching to a dead script.
|
|
2805
|
+
*
|
|
2806
|
+
* Shared (non-WFP) tenants never touch KV, and neither do wfp tenants whose
|
|
2807
|
+
* id is not a lowercase DNS label (`isWfpSubdomainSafeTenantId`) — such ids
|
|
2808
|
+
* cannot round-trip through a hostname, so publishing them would only create
|
|
2809
|
+
* dead keys. Publishing is fire-and-forget; silent drift is corrected by the
|
|
2810
|
+
* periodic reconcile (`backfillProxyHostsToKv` over `wfpTenantHost`-derived
|
|
2811
|
+
* hosts).
|
|
2812
|
+
*/
|
|
2813
|
+
declare function wrapTenantsAdapterWithWfpKvPublish(options: WfpTenantsKvPublishOptions): TenantsDataAdapter;
|
|
2814
|
+
|
|
2695
2815
|
/**
|
|
2696
2816
|
* Strict issuer equality: parse both `iss` and `expected` as URLs and compare
|
|
2697
2817
|
* the resulting hrefs after stripping any single trailing slash. No host-only
|
|
@@ -3185,8 +3305,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3185
3305
|
$get: {
|
|
3186
3306
|
input: {
|
|
3187
3307
|
query: {
|
|
3188
|
-
include_password_hashes?: "
|
|
3189
|
-
gzip?: "
|
|
3308
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3309
|
+
gzip?: "true" | "false" | undefined;
|
|
3190
3310
|
};
|
|
3191
3311
|
} & {
|
|
3192
3312
|
header: {
|
|
@@ -3199,8 +3319,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3199
3319
|
} | {
|
|
3200
3320
|
input: {
|
|
3201
3321
|
query: {
|
|
3202
|
-
include_password_hashes?: "
|
|
3203
|
-
gzip?: "
|
|
3322
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3323
|
+
gzip?: "true" | "false" | undefined;
|
|
3204
3324
|
};
|
|
3205
3325
|
} & {
|
|
3206
3326
|
header: {
|
|
@@ -3219,7 +3339,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3219
3339
|
$post: {
|
|
3220
3340
|
input: {
|
|
3221
3341
|
query: {
|
|
3222
|
-
include_password_hashes?: "
|
|
3342
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3223
3343
|
};
|
|
3224
3344
|
} & {
|
|
3225
3345
|
header: {
|
|
@@ -3413,7 +3533,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3413
3533
|
};
|
|
3414
3534
|
};
|
|
3415
3535
|
output: {
|
|
3416
|
-
name: "email" | "
|
|
3536
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
3417
3537
|
enabled: boolean;
|
|
3418
3538
|
trial_expired?: boolean | undefined;
|
|
3419
3539
|
}[];
|
|
@@ -3568,7 +3688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3568
3688
|
$get: {
|
|
3569
3689
|
input: {
|
|
3570
3690
|
param: {
|
|
3571
|
-
factor_name: "email" | "
|
|
3691
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
3572
3692
|
};
|
|
3573
3693
|
} & {
|
|
3574
3694
|
header: {
|
|
@@ -3576,7 +3696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3576
3696
|
};
|
|
3577
3697
|
};
|
|
3578
3698
|
output: {
|
|
3579
|
-
name: "email" | "
|
|
3699
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
3580
3700
|
enabled: boolean;
|
|
3581
3701
|
trial_expired?: boolean | undefined;
|
|
3582
3702
|
};
|
|
@@ -3589,7 +3709,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3589
3709
|
$put: {
|
|
3590
3710
|
input: {
|
|
3591
3711
|
param: {
|
|
3592
|
-
factor_name: "email" | "
|
|
3712
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
3593
3713
|
};
|
|
3594
3714
|
} & {
|
|
3595
3715
|
header: {
|
|
@@ -3601,7 +3721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3601
3721
|
};
|
|
3602
3722
|
};
|
|
3603
3723
|
output: {
|
|
3604
|
-
name: "email" | "
|
|
3724
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
3605
3725
|
enabled: boolean;
|
|
3606
3726
|
trial_expired?: boolean | undefined;
|
|
3607
3727
|
};
|
|
@@ -4381,9 +4501,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4381
4501
|
};
|
|
4382
4502
|
id?: string | undefined;
|
|
4383
4503
|
connection_id?: string | undefined;
|
|
4384
|
-
roles?: string[] | undefined;
|
|
4385
4504
|
app_metadata?: Record<string, any> | undefined;
|
|
4386
4505
|
user_metadata?: Record<string, any> | undefined;
|
|
4506
|
+
roles?: string[] | undefined;
|
|
4387
4507
|
ttl_sec?: number | undefined;
|
|
4388
4508
|
send_invitation_email?: boolean | undefined;
|
|
4389
4509
|
};
|
|
@@ -4568,8 +4688,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4568
4688
|
};
|
|
4569
4689
|
} & {
|
|
4570
4690
|
json: {
|
|
4571
|
-
assign_membership_on_login?: boolean | undefined;
|
|
4572
4691
|
show_as_button?: boolean | undefined;
|
|
4692
|
+
assign_membership_on_login?: boolean | undefined;
|
|
4573
4693
|
is_signup_enabled?: boolean | undefined;
|
|
4574
4694
|
};
|
|
4575
4695
|
};
|
|
@@ -5238,7 +5358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5238
5358
|
type: "REDIRECT";
|
|
5239
5359
|
action: "REDIRECT_USER";
|
|
5240
5360
|
params: {
|
|
5241
|
-
target: "custom" | "
|
|
5361
|
+
target: "custom" | "account" | "change-email";
|
|
5242
5362
|
custom_url?: string | undefined;
|
|
5243
5363
|
};
|
|
5244
5364
|
alias?: string | undefined;
|
|
@@ -5291,7 +5411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5291
5411
|
type: "REDIRECT";
|
|
5292
5412
|
action: "REDIRECT_USER";
|
|
5293
5413
|
params: {
|
|
5294
|
-
target: "custom" | "
|
|
5414
|
+
target: "custom" | "account" | "change-email";
|
|
5295
5415
|
custom_url?: string | undefined;
|
|
5296
5416
|
};
|
|
5297
5417
|
alias?: string | undefined;
|
|
@@ -5360,7 +5480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5360
5480
|
type: "REDIRECT";
|
|
5361
5481
|
action: "REDIRECT_USER";
|
|
5362
5482
|
params: {
|
|
5363
|
-
target: "custom" | "
|
|
5483
|
+
target: "custom" | "account" | "change-email";
|
|
5364
5484
|
custom_url?: string | undefined;
|
|
5365
5485
|
};
|
|
5366
5486
|
alias?: string | undefined;
|
|
@@ -5441,7 +5561,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5441
5561
|
type: "REDIRECT";
|
|
5442
5562
|
action: "REDIRECT_USER";
|
|
5443
5563
|
params: {
|
|
5444
|
-
target: "custom" | "
|
|
5564
|
+
target: "custom" | "account" | "change-email";
|
|
5445
5565
|
custom_url?: string | undefined;
|
|
5446
5566
|
};
|
|
5447
5567
|
alias?: string | undefined;
|
|
@@ -5489,7 +5609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5489
5609
|
type: "REDIRECT";
|
|
5490
5610
|
action: "REDIRECT_USER";
|
|
5491
5611
|
params: {
|
|
5492
|
-
target: "custom" | "
|
|
5612
|
+
target: "custom" | "account" | "change-email";
|
|
5493
5613
|
custom_url?: string | undefined;
|
|
5494
5614
|
};
|
|
5495
5615
|
alias?: string | undefined;
|
|
@@ -5549,7 +5669,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5549
5669
|
type: "REDIRECT";
|
|
5550
5670
|
action: "REDIRECT_USER";
|
|
5551
5671
|
params: {
|
|
5552
|
-
target: "custom" | "
|
|
5672
|
+
target: "custom" | "account" | "change-email";
|
|
5553
5673
|
custom_url?: string | undefined;
|
|
5554
5674
|
};
|
|
5555
5675
|
alias?: string | undefined;
|
|
@@ -5597,7 +5717,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5597
5717
|
type: "REDIRECT";
|
|
5598
5718
|
action: "REDIRECT_USER";
|
|
5599
5719
|
params: {
|
|
5600
|
-
target: "custom" | "
|
|
5720
|
+
target: "custom" | "account" | "change-email";
|
|
5601
5721
|
custom_url?: string | undefined;
|
|
5602
5722
|
};
|
|
5603
5723
|
alias?: string | undefined;
|
|
@@ -5815,7 +5935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5815
5935
|
hint?: string | undefined;
|
|
5816
5936
|
messages?: {
|
|
5817
5937
|
text: string;
|
|
5818
|
-
type: "
|
|
5938
|
+
type: "success" | "error" | "info" | "warning";
|
|
5819
5939
|
id?: number | undefined;
|
|
5820
5940
|
}[] | undefined;
|
|
5821
5941
|
required?: boolean | undefined;
|
|
@@ -5833,7 +5953,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5833
5953
|
hint?: string | undefined;
|
|
5834
5954
|
messages?: {
|
|
5835
5955
|
text: string;
|
|
5836
|
-
type: "
|
|
5956
|
+
type: "success" | "error" | "info" | "warning";
|
|
5837
5957
|
id?: number | undefined;
|
|
5838
5958
|
}[] | undefined;
|
|
5839
5959
|
required?: boolean | undefined;
|
|
@@ -5857,7 +5977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5857
5977
|
hint?: string | undefined;
|
|
5858
5978
|
messages?: {
|
|
5859
5979
|
text: string;
|
|
5860
|
-
type: "
|
|
5980
|
+
type: "success" | "error" | "info" | "warning";
|
|
5861
5981
|
id?: number | undefined;
|
|
5862
5982
|
}[] | undefined;
|
|
5863
5983
|
required?: boolean | undefined;
|
|
@@ -5881,7 +6001,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5881
6001
|
hint?: string | undefined;
|
|
5882
6002
|
messages?: {
|
|
5883
6003
|
text: string;
|
|
5884
|
-
type: "
|
|
6004
|
+
type: "success" | "error" | "info" | "warning";
|
|
5885
6005
|
id?: number | undefined;
|
|
5886
6006
|
}[] | undefined;
|
|
5887
6007
|
required?: boolean | undefined;
|
|
@@ -5905,7 +6025,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5905
6025
|
hint?: string | undefined;
|
|
5906
6026
|
messages?: {
|
|
5907
6027
|
text: string;
|
|
5908
|
-
type: "
|
|
6028
|
+
type: "success" | "error" | "info" | "warning";
|
|
5909
6029
|
id?: number | undefined;
|
|
5910
6030
|
}[] | undefined;
|
|
5911
6031
|
required?: boolean | undefined;
|
|
@@ -5934,7 +6054,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5934
6054
|
hint?: string | undefined;
|
|
5935
6055
|
messages?: {
|
|
5936
6056
|
text: string;
|
|
5937
|
-
type: "
|
|
6057
|
+
type: "success" | "error" | "info" | "warning";
|
|
5938
6058
|
id?: number | undefined;
|
|
5939
6059
|
}[] | undefined;
|
|
5940
6060
|
required?: boolean | undefined;
|
|
@@ -5949,7 +6069,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5949
6069
|
hint?: string | undefined;
|
|
5950
6070
|
messages?: {
|
|
5951
6071
|
text: string;
|
|
5952
|
-
type: "
|
|
6072
|
+
type: "success" | "error" | "info" | "warning";
|
|
5953
6073
|
id?: number | undefined;
|
|
5954
6074
|
}[] | undefined;
|
|
5955
6075
|
required?: boolean | undefined;
|
|
@@ -5970,7 +6090,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5970
6090
|
hint?: string | undefined;
|
|
5971
6091
|
messages?: {
|
|
5972
6092
|
text: string;
|
|
5973
|
-
type: "
|
|
6093
|
+
type: "success" | "error" | "info" | "warning";
|
|
5974
6094
|
id?: number | undefined;
|
|
5975
6095
|
}[] | undefined;
|
|
5976
6096
|
required?: boolean | undefined;
|
|
@@ -5995,7 +6115,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5995
6115
|
hint?: string | undefined;
|
|
5996
6116
|
messages?: {
|
|
5997
6117
|
text: string;
|
|
5998
|
-
type: "
|
|
6118
|
+
type: "success" | "error" | "info" | "warning";
|
|
5999
6119
|
id?: number | undefined;
|
|
6000
6120
|
}[] | undefined;
|
|
6001
6121
|
required?: boolean | undefined;
|
|
@@ -6014,7 +6134,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6014
6134
|
hint?: string | undefined;
|
|
6015
6135
|
messages?: {
|
|
6016
6136
|
text: string;
|
|
6017
|
-
type: "
|
|
6137
|
+
type: "success" | "error" | "info" | "warning";
|
|
6018
6138
|
id?: number | undefined;
|
|
6019
6139
|
}[] | undefined;
|
|
6020
6140
|
required?: boolean | undefined;
|
|
@@ -6034,7 +6154,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6034
6154
|
hint?: string | undefined;
|
|
6035
6155
|
messages?: {
|
|
6036
6156
|
text: string;
|
|
6037
|
-
type: "
|
|
6157
|
+
type: "success" | "error" | "info" | "warning";
|
|
6038
6158
|
id?: number | undefined;
|
|
6039
6159
|
}[] | undefined;
|
|
6040
6160
|
required?: boolean | undefined;
|
|
@@ -6053,7 +6173,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6053
6173
|
hint?: string | undefined;
|
|
6054
6174
|
messages?: {
|
|
6055
6175
|
text: string;
|
|
6056
|
-
type: "
|
|
6176
|
+
type: "success" | "error" | "info" | "warning";
|
|
6057
6177
|
id?: number | undefined;
|
|
6058
6178
|
}[] | undefined;
|
|
6059
6179
|
required?: boolean | undefined;
|
|
@@ -6075,7 +6195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6075
6195
|
hint?: string | undefined;
|
|
6076
6196
|
messages?: {
|
|
6077
6197
|
text: string;
|
|
6078
|
-
type: "
|
|
6198
|
+
type: "success" | "error" | "info" | "warning";
|
|
6079
6199
|
id?: number | undefined;
|
|
6080
6200
|
}[] | undefined;
|
|
6081
6201
|
required?: boolean | undefined;
|
|
@@ -6097,7 +6217,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6097
6217
|
hint?: string | undefined;
|
|
6098
6218
|
messages?: {
|
|
6099
6219
|
text: string;
|
|
6100
|
-
type: "
|
|
6220
|
+
type: "success" | "error" | "info" | "warning";
|
|
6101
6221
|
id?: number | undefined;
|
|
6102
6222
|
}[] | undefined;
|
|
6103
6223
|
required?: boolean | undefined;
|
|
@@ -6116,7 +6236,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6116
6236
|
hint?: string | undefined;
|
|
6117
6237
|
messages?: {
|
|
6118
6238
|
text: string;
|
|
6119
|
-
type: "
|
|
6239
|
+
type: "success" | "error" | "info" | "warning";
|
|
6120
6240
|
id?: number | undefined;
|
|
6121
6241
|
}[] | undefined;
|
|
6122
6242
|
required?: boolean | undefined;
|
|
@@ -6141,7 +6261,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6141
6261
|
hint?: string | undefined;
|
|
6142
6262
|
messages?: {
|
|
6143
6263
|
text: string;
|
|
6144
|
-
type: "
|
|
6264
|
+
type: "success" | "error" | "info" | "warning";
|
|
6145
6265
|
id?: number | undefined;
|
|
6146
6266
|
}[] | undefined;
|
|
6147
6267
|
required?: boolean | undefined;
|
|
@@ -6162,7 +6282,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6162
6282
|
hint?: string | undefined;
|
|
6163
6283
|
messages?: {
|
|
6164
6284
|
text: string;
|
|
6165
|
-
type: "
|
|
6285
|
+
type: "success" | "error" | "info" | "warning";
|
|
6166
6286
|
id?: number | undefined;
|
|
6167
6287
|
}[] | undefined;
|
|
6168
6288
|
required?: boolean | undefined;
|
|
@@ -6183,7 +6303,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6183
6303
|
hint?: string | undefined;
|
|
6184
6304
|
messages?: {
|
|
6185
6305
|
text: string;
|
|
6186
|
-
type: "
|
|
6306
|
+
type: "success" | "error" | "info" | "warning";
|
|
6187
6307
|
id?: number | undefined;
|
|
6188
6308
|
}[] | undefined;
|
|
6189
6309
|
required?: boolean | undefined;
|
|
@@ -6416,7 +6536,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6416
6536
|
hint?: string | undefined;
|
|
6417
6537
|
messages?: {
|
|
6418
6538
|
text: string;
|
|
6419
|
-
type: "
|
|
6539
|
+
type: "success" | "error" | "info" | "warning";
|
|
6420
6540
|
id?: number | undefined;
|
|
6421
6541
|
}[] | undefined;
|
|
6422
6542
|
required?: boolean | undefined;
|
|
@@ -6434,7 +6554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6434
6554
|
hint?: string | undefined;
|
|
6435
6555
|
messages?: {
|
|
6436
6556
|
text: string;
|
|
6437
|
-
type: "
|
|
6557
|
+
type: "success" | "error" | "info" | "warning";
|
|
6438
6558
|
id?: number | undefined;
|
|
6439
6559
|
}[] | undefined;
|
|
6440
6560
|
required?: boolean | undefined;
|
|
@@ -6458,7 +6578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6458
6578
|
hint?: string | undefined;
|
|
6459
6579
|
messages?: {
|
|
6460
6580
|
text: string;
|
|
6461
|
-
type: "
|
|
6581
|
+
type: "success" | "error" | "info" | "warning";
|
|
6462
6582
|
id?: number | undefined;
|
|
6463
6583
|
}[] | undefined;
|
|
6464
6584
|
required?: boolean | undefined;
|
|
@@ -6482,7 +6602,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6482
6602
|
hint?: string | undefined;
|
|
6483
6603
|
messages?: {
|
|
6484
6604
|
text: string;
|
|
6485
|
-
type: "
|
|
6605
|
+
type: "success" | "error" | "info" | "warning";
|
|
6486
6606
|
id?: number | undefined;
|
|
6487
6607
|
}[] | undefined;
|
|
6488
6608
|
required?: boolean | undefined;
|
|
@@ -6506,7 +6626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6506
6626
|
hint?: string | undefined;
|
|
6507
6627
|
messages?: {
|
|
6508
6628
|
text: string;
|
|
6509
|
-
type: "
|
|
6629
|
+
type: "success" | "error" | "info" | "warning";
|
|
6510
6630
|
id?: number | undefined;
|
|
6511
6631
|
}[] | undefined;
|
|
6512
6632
|
required?: boolean | undefined;
|
|
@@ -6535,7 +6655,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6535
6655
|
hint?: string | undefined;
|
|
6536
6656
|
messages?: {
|
|
6537
6657
|
text: string;
|
|
6538
|
-
type: "
|
|
6658
|
+
type: "success" | "error" | "info" | "warning";
|
|
6539
6659
|
id?: number | undefined;
|
|
6540
6660
|
}[] | undefined;
|
|
6541
6661
|
required?: boolean | undefined;
|
|
@@ -6550,7 +6670,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6550
6670
|
hint?: string | undefined;
|
|
6551
6671
|
messages?: {
|
|
6552
6672
|
text: string;
|
|
6553
|
-
type: "
|
|
6673
|
+
type: "success" | "error" | "info" | "warning";
|
|
6554
6674
|
id?: number | undefined;
|
|
6555
6675
|
}[] | undefined;
|
|
6556
6676
|
required?: boolean | undefined;
|
|
@@ -6571,7 +6691,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6571
6691
|
hint?: string | undefined;
|
|
6572
6692
|
messages?: {
|
|
6573
6693
|
text: string;
|
|
6574
|
-
type: "
|
|
6694
|
+
type: "success" | "error" | "info" | "warning";
|
|
6575
6695
|
id?: number | undefined;
|
|
6576
6696
|
}[] | undefined;
|
|
6577
6697
|
required?: boolean | undefined;
|
|
@@ -6596,7 +6716,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6596
6716
|
hint?: string | undefined;
|
|
6597
6717
|
messages?: {
|
|
6598
6718
|
text: string;
|
|
6599
|
-
type: "
|
|
6719
|
+
type: "success" | "error" | "info" | "warning";
|
|
6600
6720
|
id?: number | undefined;
|
|
6601
6721
|
}[] | undefined;
|
|
6602
6722
|
required?: boolean | undefined;
|
|
@@ -6615,7 +6735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6615
6735
|
hint?: string | undefined;
|
|
6616
6736
|
messages?: {
|
|
6617
6737
|
text: string;
|
|
6618
|
-
type: "
|
|
6738
|
+
type: "success" | "error" | "info" | "warning";
|
|
6619
6739
|
id?: number | undefined;
|
|
6620
6740
|
}[] | undefined;
|
|
6621
6741
|
required?: boolean | undefined;
|
|
@@ -6635,7 +6755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6635
6755
|
hint?: string | undefined;
|
|
6636
6756
|
messages?: {
|
|
6637
6757
|
text: string;
|
|
6638
|
-
type: "
|
|
6758
|
+
type: "success" | "error" | "info" | "warning";
|
|
6639
6759
|
id?: number | undefined;
|
|
6640
6760
|
}[] | undefined;
|
|
6641
6761
|
required?: boolean | undefined;
|
|
@@ -6654,7 +6774,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6654
6774
|
hint?: string | undefined;
|
|
6655
6775
|
messages?: {
|
|
6656
6776
|
text: string;
|
|
6657
|
-
type: "
|
|
6777
|
+
type: "success" | "error" | "info" | "warning";
|
|
6658
6778
|
id?: number | undefined;
|
|
6659
6779
|
}[] | undefined;
|
|
6660
6780
|
required?: boolean | undefined;
|
|
@@ -6676,7 +6796,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6676
6796
|
hint?: string | undefined;
|
|
6677
6797
|
messages?: {
|
|
6678
6798
|
text: string;
|
|
6679
|
-
type: "
|
|
6799
|
+
type: "success" | "error" | "info" | "warning";
|
|
6680
6800
|
id?: number | undefined;
|
|
6681
6801
|
}[] | undefined;
|
|
6682
6802
|
required?: boolean | undefined;
|
|
@@ -6698,7 +6818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6698
6818
|
hint?: string | undefined;
|
|
6699
6819
|
messages?: {
|
|
6700
6820
|
text: string;
|
|
6701
|
-
type: "
|
|
6821
|
+
type: "success" | "error" | "info" | "warning";
|
|
6702
6822
|
id?: number | undefined;
|
|
6703
6823
|
}[] | undefined;
|
|
6704
6824
|
required?: boolean | undefined;
|
|
@@ -6717,7 +6837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6717
6837
|
hint?: string | undefined;
|
|
6718
6838
|
messages?: {
|
|
6719
6839
|
text: string;
|
|
6720
|
-
type: "
|
|
6840
|
+
type: "success" | "error" | "info" | "warning";
|
|
6721
6841
|
id?: number | undefined;
|
|
6722
6842
|
}[] | undefined;
|
|
6723
6843
|
required?: boolean | undefined;
|
|
@@ -6742,7 +6862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6742
6862
|
hint?: string | undefined;
|
|
6743
6863
|
messages?: {
|
|
6744
6864
|
text: string;
|
|
6745
|
-
type: "
|
|
6865
|
+
type: "success" | "error" | "info" | "warning";
|
|
6746
6866
|
id?: number | undefined;
|
|
6747
6867
|
}[] | undefined;
|
|
6748
6868
|
required?: boolean | undefined;
|
|
@@ -6763,7 +6883,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6763
6883
|
hint?: string | undefined;
|
|
6764
6884
|
messages?: {
|
|
6765
6885
|
text: string;
|
|
6766
|
-
type: "
|
|
6886
|
+
type: "success" | "error" | "info" | "warning";
|
|
6767
6887
|
id?: number | undefined;
|
|
6768
6888
|
}[] | undefined;
|
|
6769
6889
|
required?: boolean | undefined;
|
|
@@ -6784,7 +6904,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6784
6904
|
hint?: string | undefined;
|
|
6785
6905
|
messages?: {
|
|
6786
6906
|
text: string;
|
|
6787
|
-
type: "
|
|
6907
|
+
type: "success" | "error" | "info" | "warning";
|
|
6788
6908
|
id?: number | undefined;
|
|
6789
6909
|
}[] | undefined;
|
|
6790
6910
|
required?: boolean | undefined;
|
|
@@ -7033,7 +7153,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7033
7153
|
hint?: string | undefined;
|
|
7034
7154
|
messages?: {
|
|
7035
7155
|
text: string;
|
|
7036
|
-
type: "
|
|
7156
|
+
type: "success" | "error" | "info" | "warning";
|
|
7037
7157
|
id?: number | undefined;
|
|
7038
7158
|
}[] | undefined;
|
|
7039
7159
|
required?: boolean | undefined;
|
|
@@ -7051,7 +7171,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7051
7171
|
hint?: string | undefined;
|
|
7052
7172
|
messages?: {
|
|
7053
7173
|
text: string;
|
|
7054
|
-
type: "
|
|
7174
|
+
type: "success" | "error" | "info" | "warning";
|
|
7055
7175
|
id?: number | undefined;
|
|
7056
7176
|
}[] | undefined;
|
|
7057
7177
|
required?: boolean | undefined;
|
|
@@ -7075,7 +7195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7075
7195
|
hint?: string | undefined;
|
|
7076
7196
|
messages?: {
|
|
7077
7197
|
text: string;
|
|
7078
|
-
type: "
|
|
7198
|
+
type: "success" | "error" | "info" | "warning";
|
|
7079
7199
|
id?: number | undefined;
|
|
7080
7200
|
}[] | undefined;
|
|
7081
7201
|
required?: boolean | undefined;
|
|
@@ -7099,7 +7219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7099
7219
|
hint?: string | undefined;
|
|
7100
7220
|
messages?: {
|
|
7101
7221
|
text: string;
|
|
7102
|
-
type: "
|
|
7222
|
+
type: "success" | "error" | "info" | "warning";
|
|
7103
7223
|
id?: number | undefined;
|
|
7104
7224
|
}[] | undefined;
|
|
7105
7225
|
required?: boolean | undefined;
|
|
@@ -7123,7 +7243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7123
7243
|
hint?: string | undefined;
|
|
7124
7244
|
messages?: {
|
|
7125
7245
|
text: string;
|
|
7126
|
-
type: "
|
|
7246
|
+
type: "success" | "error" | "info" | "warning";
|
|
7127
7247
|
id?: number | undefined;
|
|
7128
7248
|
}[] | undefined;
|
|
7129
7249
|
required?: boolean | undefined;
|
|
@@ -7152,7 +7272,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7152
7272
|
hint?: string | undefined;
|
|
7153
7273
|
messages?: {
|
|
7154
7274
|
text: string;
|
|
7155
|
-
type: "
|
|
7275
|
+
type: "success" | "error" | "info" | "warning";
|
|
7156
7276
|
id?: number | undefined;
|
|
7157
7277
|
}[] | undefined;
|
|
7158
7278
|
required?: boolean | undefined;
|
|
@@ -7167,7 +7287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7167
7287
|
hint?: string | undefined;
|
|
7168
7288
|
messages?: {
|
|
7169
7289
|
text: string;
|
|
7170
|
-
type: "
|
|
7290
|
+
type: "success" | "error" | "info" | "warning";
|
|
7171
7291
|
id?: number | undefined;
|
|
7172
7292
|
}[] | undefined;
|
|
7173
7293
|
required?: boolean | undefined;
|
|
@@ -7188,7 +7308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7188
7308
|
hint?: string | undefined;
|
|
7189
7309
|
messages?: {
|
|
7190
7310
|
text: string;
|
|
7191
|
-
type: "
|
|
7311
|
+
type: "success" | "error" | "info" | "warning";
|
|
7192
7312
|
id?: number | undefined;
|
|
7193
7313
|
}[] | undefined;
|
|
7194
7314
|
required?: boolean | undefined;
|
|
@@ -7213,7 +7333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7213
7333
|
hint?: string | undefined;
|
|
7214
7334
|
messages?: {
|
|
7215
7335
|
text: string;
|
|
7216
|
-
type: "
|
|
7336
|
+
type: "success" | "error" | "info" | "warning";
|
|
7217
7337
|
id?: number | undefined;
|
|
7218
7338
|
}[] | undefined;
|
|
7219
7339
|
required?: boolean | undefined;
|
|
@@ -7232,7 +7352,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7232
7352
|
hint?: string | undefined;
|
|
7233
7353
|
messages?: {
|
|
7234
7354
|
text: string;
|
|
7235
|
-
type: "
|
|
7355
|
+
type: "success" | "error" | "info" | "warning";
|
|
7236
7356
|
id?: number | undefined;
|
|
7237
7357
|
}[] | undefined;
|
|
7238
7358
|
required?: boolean | undefined;
|
|
@@ -7252,7 +7372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7252
7372
|
hint?: string | undefined;
|
|
7253
7373
|
messages?: {
|
|
7254
7374
|
text: string;
|
|
7255
|
-
type: "
|
|
7375
|
+
type: "success" | "error" | "info" | "warning";
|
|
7256
7376
|
id?: number | undefined;
|
|
7257
7377
|
}[] | undefined;
|
|
7258
7378
|
required?: boolean | undefined;
|
|
@@ -7271,7 +7391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7271
7391
|
hint?: string | undefined;
|
|
7272
7392
|
messages?: {
|
|
7273
7393
|
text: string;
|
|
7274
|
-
type: "
|
|
7394
|
+
type: "success" | "error" | "info" | "warning";
|
|
7275
7395
|
id?: number | undefined;
|
|
7276
7396
|
}[] | undefined;
|
|
7277
7397
|
required?: boolean | undefined;
|
|
@@ -7293,7 +7413,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7293
7413
|
hint?: string | undefined;
|
|
7294
7414
|
messages?: {
|
|
7295
7415
|
text: string;
|
|
7296
|
-
type: "
|
|
7416
|
+
type: "success" | "error" | "info" | "warning";
|
|
7297
7417
|
id?: number | undefined;
|
|
7298
7418
|
}[] | undefined;
|
|
7299
7419
|
required?: boolean | undefined;
|
|
@@ -7315,7 +7435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7315
7435
|
hint?: string | undefined;
|
|
7316
7436
|
messages?: {
|
|
7317
7437
|
text: string;
|
|
7318
|
-
type: "
|
|
7438
|
+
type: "success" | "error" | "info" | "warning";
|
|
7319
7439
|
id?: number | undefined;
|
|
7320
7440
|
}[] | undefined;
|
|
7321
7441
|
required?: boolean | undefined;
|
|
@@ -7334,7 +7454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7334
7454
|
hint?: string | undefined;
|
|
7335
7455
|
messages?: {
|
|
7336
7456
|
text: string;
|
|
7337
|
-
type: "
|
|
7457
|
+
type: "success" | "error" | "info" | "warning";
|
|
7338
7458
|
id?: number | undefined;
|
|
7339
7459
|
}[] | undefined;
|
|
7340
7460
|
required?: boolean | undefined;
|
|
@@ -7359,7 +7479,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7359
7479
|
hint?: string | undefined;
|
|
7360
7480
|
messages?: {
|
|
7361
7481
|
text: string;
|
|
7362
|
-
type: "
|
|
7482
|
+
type: "success" | "error" | "info" | "warning";
|
|
7363
7483
|
id?: number | undefined;
|
|
7364
7484
|
}[] | undefined;
|
|
7365
7485
|
required?: boolean | undefined;
|
|
@@ -7380,7 +7500,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7380
7500
|
hint?: string | undefined;
|
|
7381
7501
|
messages?: {
|
|
7382
7502
|
text: string;
|
|
7383
|
-
type: "
|
|
7503
|
+
type: "success" | "error" | "info" | "warning";
|
|
7384
7504
|
id?: number | undefined;
|
|
7385
7505
|
}[] | undefined;
|
|
7386
7506
|
required?: boolean | undefined;
|
|
@@ -7401,7 +7521,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7401
7521
|
hint?: string | undefined;
|
|
7402
7522
|
messages?: {
|
|
7403
7523
|
text: string;
|
|
7404
|
-
type: "
|
|
7524
|
+
type: "success" | "error" | "info" | "warning";
|
|
7405
7525
|
id?: number | undefined;
|
|
7406
7526
|
}[] | undefined;
|
|
7407
7527
|
required?: boolean | undefined;
|
|
@@ -7655,7 +7775,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7655
7775
|
hint?: string | undefined;
|
|
7656
7776
|
messages?: {
|
|
7657
7777
|
text: string;
|
|
7658
|
-
type: "
|
|
7778
|
+
type: "success" | "error" | "info" | "warning";
|
|
7659
7779
|
id?: number | undefined;
|
|
7660
7780
|
}[] | undefined;
|
|
7661
7781
|
required?: boolean | undefined;
|
|
@@ -7673,7 +7793,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7673
7793
|
hint?: string | undefined;
|
|
7674
7794
|
messages?: {
|
|
7675
7795
|
text: string;
|
|
7676
|
-
type: "
|
|
7796
|
+
type: "success" | "error" | "info" | "warning";
|
|
7677
7797
|
id?: number | undefined;
|
|
7678
7798
|
}[] | undefined;
|
|
7679
7799
|
required?: boolean | undefined;
|
|
@@ -7697,7 +7817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7697
7817
|
hint?: string | undefined;
|
|
7698
7818
|
messages?: {
|
|
7699
7819
|
text: string;
|
|
7700
|
-
type: "
|
|
7820
|
+
type: "success" | "error" | "info" | "warning";
|
|
7701
7821
|
id?: number | undefined;
|
|
7702
7822
|
}[] | undefined;
|
|
7703
7823
|
required?: boolean | undefined;
|
|
@@ -7721,7 +7841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7721
7841
|
hint?: string | undefined;
|
|
7722
7842
|
messages?: {
|
|
7723
7843
|
text: string;
|
|
7724
|
-
type: "
|
|
7844
|
+
type: "success" | "error" | "info" | "warning";
|
|
7725
7845
|
id?: number | undefined;
|
|
7726
7846
|
}[] | undefined;
|
|
7727
7847
|
required?: boolean | undefined;
|
|
@@ -7745,7 +7865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7745
7865
|
hint?: string | undefined;
|
|
7746
7866
|
messages?: {
|
|
7747
7867
|
text: string;
|
|
7748
|
-
type: "
|
|
7868
|
+
type: "success" | "error" | "info" | "warning";
|
|
7749
7869
|
id?: number | undefined;
|
|
7750
7870
|
}[] | undefined;
|
|
7751
7871
|
required?: boolean | undefined;
|
|
@@ -7770,7 +7890,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7770
7890
|
hint?: string | undefined;
|
|
7771
7891
|
messages?: {
|
|
7772
7892
|
text: string;
|
|
7773
|
-
type: "
|
|
7893
|
+
type: "success" | "error" | "info" | "warning";
|
|
7774
7894
|
id?: number | undefined;
|
|
7775
7895
|
}[] | undefined;
|
|
7776
7896
|
required?: boolean | undefined;
|
|
@@ -7785,7 +7905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7785
7905
|
hint?: string | undefined;
|
|
7786
7906
|
messages?: {
|
|
7787
7907
|
text: string;
|
|
7788
|
-
type: "
|
|
7908
|
+
type: "success" | "error" | "info" | "warning";
|
|
7789
7909
|
id?: number | undefined;
|
|
7790
7910
|
}[] | undefined;
|
|
7791
7911
|
required?: boolean | undefined;
|
|
@@ -7806,7 +7926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7806
7926
|
hint?: string | undefined;
|
|
7807
7927
|
messages?: {
|
|
7808
7928
|
text: string;
|
|
7809
|
-
type: "
|
|
7929
|
+
type: "success" | "error" | "info" | "warning";
|
|
7810
7930
|
id?: number | undefined;
|
|
7811
7931
|
}[] | undefined;
|
|
7812
7932
|
required?: boolean | undefined;
|
|
@@ -7831,7 +7951,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7831
7951
|
hint?: string | undefined;
|
|
7832
7952
|
messages?: {
|
|
7833
7953
|
text: string;
|
|
7834
|
-
type: "
|
|
7954
|
+
type: "success" | "error" | "info" | "warning";
|
|
7835
7955
|
id?: number | undefined;
|
|
7836
7956
|
}[] | undefined;
|
|
7837
7957
|
required?: boolean | undefined;
|
|
@@ -7850,7 +7970,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7850
7970
|
hint?: string | undefined;
|
|
7851
7971
|
messages?: {
|
|
7852
7972
|
text: string;
|
|
7853
|
-
type: "
|
|
7973
|
+
type: "success" | "error" | "info" | "warning";
|
|
7854
7974
|
id?: number | undefined;
|
|
7855
7975
|
}[] | undefined;
|
|
7856
7976
|
required?: boolean | undefined;
|
|
@@ -7870,7 +7990,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7870
7990
|
hint?: string | undefined;
|
|
7871
7991
|
messages?: {
|
|
7872
7992
|
text: string;
|
|
7873
|
-
type: "
|
|
7993
|
+
type: "success" | "error" | "info" | "warning";
|
|
7874
7994
|
id?: number | undefined;
|
|
7875
7995
|
}[] | undefined;
|
|
7876
7996
|
required?: boolean | undefined;
|
|
@@ -7889,7 +8009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7889
8009
|
hint?: string | undefined;
|
|
7890
8010
|
messages?: {
|
|
7891
8011
|
text: string;
|
|
7892
|
-
type: "
|
|
8012
|
+
type: "success" | "error" | "info" | "warning";
|
|
7893
8013
|
id?: number | undefined;
|
|
7894
8014
|
}[] | undefined;
|
|
7895
8015
|
required?: boolean | undefined;
|
|
@@ -7911,7 +8031,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7911
8031
|
hint?: string | undefined;
|
|
7912
8032
|
messages?: {
|
|
7913
8033
|
text: string;
|
|
7914
|
-
type: "
|
|
8034
|
+
type: "success" | "error" | "info" | "warning";
|
|
7915
8035
|
id?: number | undefined;
|
|
7916
8036
|
}[] | undefined;
|
|
7917
8037
|
required?: boolean | undefined;
|
|
@@ -7933,7 +8053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7933
8053
|
hint?: string | undefined;
|
|
7934
8054
|
messages?: {
|
|
7935
8055
|
text: string;
|
|
7936
|
-
type: "
|
|
8056
|
+
type: "success" | "error" | "info" | "warning";
|
|
7937
8057
|
id?: number | undefined;
|
|
7938
8058
|
}[] | undefined;
|
|
7939
8059
|
required?: boolean | undefined;
|
|
@@ -7952,7 +8072,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7952
8072
|
hint?: string | undefined;
|
|
7953
8073
|
messages?: {
|
|
7954
8074
|
text: string;
|
|
7955
|
-
type: "
|
|
8075
|
+
type: "success" | "error" | "info" | "warning";
|
|
7956
8076
|
id?: number | undefined;
|
|
7957
8077
|
}[] | undefined;
|
|
7958
8078
|
required?: boolean | undefined;
|
|
@@ -7977,7 +8097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7977
8097
|
hint?: string | undefined;
|
|
7978
8098
|
messages?: {
|
|
7979
8099
|
text: string;
|
|
7980
|
-
type: "
|
|
8100
|
+
type: "success" | "error" | "info" | "warning";
|
|
7981
8101
|
id?: number | undefined;
|
|
7982
8102
|
}[] | undefined;
|
|
7983
8103
|
required?: boolean | undefined;
|
|
@@ -7998,7 +8118,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7998
8118
|
hint?: string | undefined;
|
|
7999
8119
|
messages?: {
|
|
8000
8120
|
text: string;
|
|
8001
|
-
type: "
|
|
8121
|
+
type: "success" | "error" | "info" | "warning";
|
|
8002
8122
|
id?: number | undefined;
|
|
8003
8123
|
}[] | undefined;
|
|
8004
8124
|
required?: boolean | undefined;
|
|
@@ -8019,7 +8139,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8019
8139
|
hint?: string | undefined;
|
|
8020
8140
|
messages?: {
|
|
8021
8141
|
text: string;
|
|
8022
|
-
type: "
|
|
8142
|
+
type: "success" | "error" | "info" | "warning";
|
|
8023
8143
|
id?: number | undefined;
|
|
8024
8144
|
}[] | undefined;
|
|
8025
8145
|
required?: boolean | undefined;
|
|
@@ -8250,7 +8370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8250
8370
|
hint?: string | undefined;
|
|
8251
8371
|
messages?: {
|
|
8252
8372
|
text: string;
|
|
8253
|
-
type: "
|
|
8373
|
+
type: "success" | "error" | "info" | "warning";
|
|
8254
8374
|
id?: number | undefined;
|
|
8255
8375
|
}[] | undefined;
|
|
8256
8376
|
required?: boolean | undefined;
|
|
@@ -8268,7 +8388,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8268
8388
|
hint?: string | undefined;
|
|
8269
8389
|
messages?: {
|
|
8270
8390
|
text: string;
|
|
8271
|
-
type: "
|
|
8391
|
+
type: "success" | "error" | "info" | "warning";
|
|
8272
8392
|
id?: number | undefined;
|
|
8273
8393
|
}[] | undefined;
|
|
8274
8394
|
required?: boolean | undefined;
|
|
@@ -8292,7 +8412,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8292
8412
|
hint?: string | undefined;
|
|
8293
8413
|
messages?: {
|
|
8294
8414
|
text: string;
|
|
8295
|
-
type: "
|
|
8415
|
+
type: "success" | "error" | "info" | "warning";
|
|
8296
8416
|
id?: number | undefined;
|
|
8297
8417
|
}[] | undefined;
|
|
8298
8418
|
required?: boolean | undefined;
|
|
@@ -8316,7 +8436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8316
8436
|
hint?: string | undefined;
|
|
8317
8437
|
messages?: {
|
|
8318
8438
|
text: string;
|
|
8319
|
-
type: "
|
|
8439
|
+
type: "success" | "error" | "info" | "warning";
|
|
8320
8440
|
id?: number | undefined;
|
|
8321
8441
|
}[] | undefined;
|
|
8322
8442
|
required?: boolean | undefined;
|
|
@@ -8340,7 +8460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8340
8460
|
hint?: string | undefined;
|
|
8341
8461
|
messages?: {
|
|
8342
8462
|
text: string;
|
|
8343
|
-
type: "
|
|
8463
|
+
type: "success" | "error" | "info" | "warning";
|
|
8344
8464
|
id?: number | undefined;
|
|
8345
8465
|
}[] | undefined;
|
|
8346
8466
|
required?: boolean | undefined;
|
|
@@ -8369,7 +8489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8369
8489
|
hint?: string | undefined;
|
|
8370
8490
|
messages?: {
|
|
8371
8491
|
text: string;
|
|
8372
|
-
type: "
|
|
8492
|
+
type: "success" | "error" | "info" | "warning";
|
|
8373
8493
|
id?: number | undefined;
|
|
8374
8494
|
}[] | undefined;
|
|
8375
8495
|
required?: boolean | undefined;
|
|
@@ -8384,7 +8504,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8384
8504
|
hint?: string | undefined;
|
|
8385
8505
|
messages?: {
|
|
8386
8506
|
text: string;
|
|
8387
|
-
type: "
|
|
8507
|
+
type: "success" | "error" | "info" | "warning";
|
|
8388
8508
|
id?: number | undefined;
|
|
8389
8509
|
}[] | undefined;
|
|
8390
8510
|
required?: boolean | undefined;
|
|
@@ -8405,7 +8525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8405
8525
|
hint?: string | undefined;
|
|
8406
8526
|
messages?: {
|
|
8407
8527
|
text: string;
|
|
8408
|
-
type: "
|
|
8528
|
+
type: "success" | "error" | "info" | "warning";
|
|
8409
8529
|
id?: number | undefined;
|
|
8410
8530
|
}[] | undefined;
|
|
8411
8531
|
required?: boolean | undefined;
|
|
@@ -8430,7 +8550,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8430
8550
|
hint?: string | undefined;
|
|
8431
8551
|
messages?: {
|
|
8432
8552
|
text: string;
|
|
8433
|
-
type: "
|
|
8553
|
+
type: "success" | "error" | "info" | "warning";
|
|
8434
8554
|
id?: number | undefined;
|
|
8435
8555
|
}[] | undefined;
|
|
8436
8556
|
required?: boolean | undefined;
|
|
@@ -8449,7 +8569,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8449
8569
|
hint?: string | undefined;
|
|
8450
8570
|
messages?: {
|
|
8451
8571
|
text: string;
|
|
8452
|
-
type: "
|
|
8572
|
+
type: "success" | "error" | "info" | "warning";
|
|
8453
8573
|
id?: number | undefined;
|
|
8454
8574
|
}[] | undefined;
|
|
8455
8575
|
required?: boolean | undefined;
|
|
@@ -8469,7 +8589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8469
8589
|
hint?: string | undefined;
|
|
8470
8590
|
messages?: {
|
|
8471
8591
|
text: string;
|
|
8472
|
-
type: "
|
|
8592
|
+
type: "success" | "error" | "info" | "warning";
|
|
8473
8593
|
id?: number | undefined;
|
|
8474
8594
|
}[] | undefined;
|
|
8475
8595
|
required?: boolean | undefined;
|
|
@@ -8488,7 +8608,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8488
8608
|
hint?: string | undefined;
|
|
8489
8609
|
messages?: {
|
|
8490
8610
|
text: string;
|
|
8491
|
-
type: "
|
|
8611
|
+
type: "success" | "error" | "info" | "warning";
|
|
8492
8612
|
id?: number | undefined;
|
|
8493
8613
|
}[] | undefined;
|
|
8494
8614
|
required?: boolean | undefined;
|
|
@@ -8510,7 +8630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8510
8630
|
hint?: string | undefined;
|
|
8511
8631
|
messages?: {
|
|
8512
8632
|
text: string;
|
|
8513
|
-
type: "
|
|
8633
|
+
type: "success" | "error" | "info" | "warning";
|
|
8514
8634
|
id?: number | undefined;
|
|
8515
8635
|
}[] | undefined;
|
|
8516
8636
|
required?: boolean | undefined;
|
|
@@ -8532,7 +8652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8532
8652
|
hint?: string | undefined;
|
|
8533
8653
|
messages?: {
|
|
8534
8654
|
text: string;
|
|
8535
|
-
type: "
|
|
8655
|
+
type: "success" | "error" | "info" | "warning";
|
|
8536
8656
|
id?: number | undefined;
|
|
8537
8657
|
}[] | undefined;
|
|
8538
8658
|
required?: boolean | undefined;
|
|
@@ -8551,7 +8671,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8551
8671
|
hint?: string | undefined;
|
|
8552
8672
|
messages?: {
|
|
8553
8673
|
text: string;
|
|
8554
|
-
type: "
|
|
8674
|
+
type: "success" | "error" | "info" | "warning";
|
|
8555
8675
|
id?: number | undefined;
|
|
8556
8676
|
}[] | undefined;
|
|
8557
8677
|
required?: boolean | undefined;
|
|
@@ -8576,7 +8696,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8576
8696
|
hint?: string | undefined;
|
|
8577
8697
|
messages?: {
|
|
8578
8698
|
text: string;
|
|
8579
|
-
type: "
|
|
8699
|
+
type: "success" | "error" | "info" | "warning";
|
|
8580
8700
|
id?: number | undefined;
|
|
8581
8701
|
}[] | undefined;
|
|
8582
8702
|
required?: boolean | undefined;
|
|
@@ -8597,7 +8717,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8597
8717
|
hint?: string | undefined;
|
|
8598
8718
|
messages?: {
|
|
8599
8719
|
text: string;
|
|
8600
|
-
type: "
|
|
8720
|
+
type: "success" | "error" | "info" | "warning";
|
|
8601
8721
|
id?: number | undefined;
|
|
8602
8722
|
}[] | undefined;
|
|
8603
8723
|
required?: boolean | undefined;
|
|
@@ -8618,7 +8738,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8618
8738
|
hint?: string | undefined;
|
|
8619
8739
|
messages?: {
|
|
8620
8740
|
text: string;
|
|
8621
|
-
type: "
|
|
8741
|
+
type: "success" | "error" | "info" | "warning";
|
|
8622
8742
|
id?: number | undefined;
|
|
8623
8743
|
}[] | undefined;
|
|
8624
8744
|
required?: boolean | undefined;
|
|
@@ -8851,7 +8971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8851
8971
|
hint?: string | undefined;
|
|
8852
8972
|
messages?: {
|
|
8853
8973
|
text: string;
|
|
8854
|
-
type: "
|
|
8974
|
+
type: "success" | "error" | "info" | "warning";
|
|
8855
8975
|
id?: number | undefined;
|
|
8856
8976
|
}[] | undefined;
|
|
8857
8977
|
required?: boolean | undefined;
|
|
@@ -8869,7 +8989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8869
8989
|
hint?: string | undefined;
|
|
8870
8990
|
messages?: {
|
|
8871
8991
|
text: string;
|
|
8872
|
-
type: "
|
|
8992
|
+
type: "success" | "error" | "info" | "warning";
|
|
8873
8993
|
id?: number | undefined;
|
|
8874
8994
|
}[] | undefined;
|
|
8875
8995
|
required?: boolean | undefined;
|
|
@@ -8893,7 +9013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8893
9013
|
hint?: string | undefined;
|
|
8894
9014
|
messages?: {
|
|
8895
9015
|
text: string;
|
|
8896
|
-
type: "
|
|
9016
|
+
type: "success" | "error" | "info" | "warning";
|
|
8897
9017
|
id?: number | undefined;
|
|
8898
9018
|
}[] | undefined;
|
|
8899
9019
|
required?: boolean | undefined;
|
|
@@ -8917,7 +9037,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8917
9037
|
hint?: string | undefined;
|
|
8918
9038
|
messages?: {
|
|
8919
9039
|
text: string;
|
|
8920
|
-
type: "
|
|
9040
|
+
type: "success" | "error" | "info" | "warning";
|
|
8921
9041
|
id?: number | undefined;
|
|
8922
9042
|
}[] | undefined;
|
|
8923
9043
|
required?: boolean | undefined;
|
|
@@ -8941,7 +9061,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8941
9061
|
hint?: string | undefined;
|
|
8942
9062
|
messages?: {
|
|
8943
9063
|
text: string;
|
|
8944
|
-
type: "
|
|
9064
|
+
type: "success" | "error" | "info" | "warning";
|
|
8945
9065
|
id?: number | undefined;
|
|
8946
9066
|
}[] | undefined;
|
|
8947
9067
|
required?: boolean | undefined;
|
|
@@ -8966,7 +9086,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8966
9086
|
hint?: string | undefined;
|
|
8967
9087
|
messages?: {
|
|
8968
9088
|
text: string;
|
|
8969
|
-
type: "
|
|
9089
|
+
type: "success" | "error" | "info" | "warning";
|
|
8970
9090
|
id?: number | undefined;
|
|
8971
9091
|
}[] | undefined;
|
|
8972
9092
|
required?: boolean | undefined;
|
|
@@ -8981,7 +9101,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8981
9101
|
hint?: string | undefined;
|
|
8982
9102
|
messages?: {
|
|
8983
9103
|
text: string;
|
|
8984
|
-
type: "
|
|
9104
|
+
type: "success" | "error" | "info" | "warning";
|
|
8985
9105
|
id?: number | undefined;
|
|
8986
9106
|
}[] | undefined;
|
|
8987
9107
|
required?: boolean | undefined;
|
|
@@ -9002,7 +9122,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9002
9122
|
hint?: string | undefined;
|
|
9003
9123
|
messages?: {
|
|
9004
9124
|
text: string;
|
|
9005
|
-
type: "
|
|
9125
|
+
type: "success" | "error" | "info" | "warning";
|
|
9006
9126
|
id?: number | undefined;
|
|
9007
9127
|
}[] | undefined;
|
|
9008
9128
|
required?: boolean | undefined;
|
|
@@ -9027,7 +9147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9027
9147
|
hint?: string | undefined;
|
|
9028
9148
|
messages?: {
|
|
9029
9149
|
text: string;
|
|
9030
|
-
type: "
|
|
9150
|
+
type: "success" | "error" | "info" | "warning";
|
|
9031
9151
|
id?: number | undefined;
|
|
9032
9152
|
}[] | undefined;
|
|
9033
9153
|
required?: boolean | undefined;
|
|
@@ -9046,7 +9166,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9046
9166
|
hint?: string | undefined;
|
|
9047
9167
|
messages?: {
|
|
9048
9168
|
text: string;
|
|
9049
|
-
type: "
|
|
9169
|
+
type: "success" | "error" | "info" | "warning";
|
|
9050
9170
|
id?: number | undefined;
|
|
9051
9171
|
}[] | undefined;
|
|
9052
9172
|
required?: boolean | undefined;
|
|
@@ -9066,7 +9186,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9066
9186
|
hint?: string | undefined;
|
|
9067
9187
|
messages?: {
|
|
9068
9188
|
text: string;
|
|
9069
|
-
type: "
|
|
9189
|
+
type: "success" | "error" | "info" | "warning";
|
|
9070
9190
|
id?: number | undefined;
|
|
9071
9191
|
}[] | undefined;
|
|
9072
9192
|
required?: boolean | undefined;
|
|
@@ -9085,7 +9205,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9085
9205
|
hint?: string | undefined;
|
|
9086
9206
|
messages?: {
|
|
9087
9207
|
text: string;
|
|
9088
|
-
type: "
|
|
9208
|
+
type: "success" | "error" | "info" | "warning";
|
|
9089
9209
|
id?: number | undefined;
|
|
9090
9210
|
}[] | undefined;
|
|
9091
9211
|
required?: boolean | undefined;
|
|
@@ -9107,7 +9227,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9107
9227
|
hint?: string | undefined;
|
|
9108
9228
|
messages?: {
|
|
9109
9229
|
text: string;
|
|
9110
|
-
type: "
|
|
9230
|
+
type: "success" | "error" | "info" | "warning";
|
|
9111
9231
|
id?: number | undefined;
|
|
9112
9232
|
}[] | undefined;
|
|
9113
9233
|
required?: boolean | undefined;
|
|
@@ -9129,7 +9249,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9129
9249
|
hint?: string | undefined;
|
|
9130
9250
|
messages?: {
|
|
9131
9251
|
text: string;
|
|
9132
|
-
type: "
|
|
9252
|
+
type: "success" | "error" | "info" | "warning";
|
|
9133
9253
|
id?: number | undefined;
|
|
9134
9254
|
}[] | undefined;
|
|
9135
9255
|
required?: boolean | undefined;
|
|
@@ -9148,7 +9268,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9148
9268
|
hint?: string | undefined;
|
|
9149
9269
|
messages?: {
|
|
9150
9270
|
text: string;
|
|
9151
|
-
type: "
|
|
9271
|
+
type: "success" | "error" | "info" | "warning";
|
|
9152
9272
|
id?: number | undefined;
|
|
9153
9273
|
}[] | undefined;
|
|
9154
9274
|
required?: boolean | undefined;
|
|
@@ -9173,7 +9293,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9173
9293
|
hint?: string | undefined;
|
|
9174
9294
|
messages?: {
|
|
9175
9295
|
text: string;
|
|
9176
|
-
type: "
|
|
9296
|
+
type: "success" | "error" | "info" | "warning";
|
|
9177
9297
|
id?: number | undefined;
|
|
9178
9298
|
}[] | undefined;
|
|
9179
9299
|
required?: boolean | undefined;
|
|
@@ -9194,7 +9314,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9194
9314
|
hint?: string | undefined;
|
|
9195
9315
|
messages?: {
|
|
9196
9316
|
text: string;
|
|
9197
|
-
type: "
|
|
9317
|
+
type: "success" | "error" | "info" | "warning";
|
|
9198
9318
|
id?: number | undefined;
|
|
9199
9319
|
}[] | undefined;
|
|
9200
9320
|
required?: boolean | undefined;
|
|
@@ -9215,7 +9335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9215
9335
|
hint?: string | undefined;
|
|
9216
9336
|
messages?: {
|
|
9217
9337
|
text: string;
|
|
9218
|
-
type: "
|
|
9338
|
+
type: "success" | "error" | "info" | "warning";
|
|
9219
9339
|
id?: number | undefined;
|
|
9220
9340
|
}[] | undefined;
|
|
9221
9341
|
required?: boolean | undefined;
|
|
@@ -9446,7 +9566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9446
9566
|
hint?: string | undefined;
|
|
9447
9567
|
messages?: {
|
|
9448
9568
|
text: string;
|
|
9449
|
-
type: "
|
|
9569
|
+
type: "success" | "error" | "info" | "warning";
|
|
9450
9570
|
id?: number | undefined;
|
|
9451
9571
|
}[] | undefined;
|
|
9452
9572
|
required?: boolean | undefined;
|
|
@@ -9464,7 +9584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9464
9584
|
hint?: string | undefined;
|
|
9465
9585
|
messages?: {
|
|
9466
9586
|
text: string;
|
|
9467
|
-
type: "
|
|
9587
|
+
type: "success" | "error" | "info" | "warning";
|
|
9468
9588
|
id?: number | undefined;
|
|
9469
9589
|
}[] | undefined;
|
|
9470
9590
|
required?: boolean | undefined;
|
|
@@ -9488,7 +9608,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9488
9608
|
hint?: string | undefined;
|
|
9489
9609
|
messages?: {
|
|
9490
9610
|
text: string;
|
|
9491
|
-
type: "
|
|
9611
|
+
type: "success" | "error" | "info" | "warning";
|
|
9492
9612
|
id?: number | undefined;
|
|
9493
9613
|
}[] | undefined;
|
|
9494
9614
|
required?: boolean | undefined;
|
|
@@ -9512,7 +9632,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9512
9632
|
hint?: string | undefined;
|
|
9513
9633
|
messages?: {
|
|
9514
9634
|
text: string;
|
|
9515
|
-
type: "
|
|
9635
|
+
type: "success" | "error" | "info" | "warning";
|
|
9516
9636
|
id?: number | undefined;
|
|
9517
9637
|
}[] | undefined;
|
|
9518
9638
|
required?: boolean | undefined;
|
|
@@ -9536,7 +9656,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9536
9656
|
hint?: string | undefined;
|
|
9537
9657
|
messages?: {
|
|
9538
9658
|
text: string;
|
|
9539
|
-
type: "
|
|
9659
|
+
type: "success" | "error" | "info" | "warning";
|
|
9540
9660
|
id?: number | undefined;
|
|
9541
9661
|
}[] | undefined;
|
|
9542
9662
|
required?: boolean | undefined;
|
|
@@ -9565,7 +9685,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9565
9685
|
hint?: string | undefined;
|
|
9566
9686
|
messages?: {
|
|
9567
9687
|
text: string;
|
|
9568
|
-
type: "
|
|
9688
|
+
type: "success" | "error" | "info" | "warning";
|
|
9569
9689
|
id?: number | undefined;
|
|
9570
9690
|
}[] | undefined;
|
|
9571
9691
|
required?: boolean | undefined;
|
|
@@ -9580,7 +9700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9580
9700
|
hint?: string | undefined;
|
|
9581
9701
|
messages?: {
|
|
9582
9702
|
text: string;
|
|
9583
|
-
type: "
|
|
9703
|
+
type: "success" | "error" | "info" | "warning";
|
|
9584
9704
|
id?: number | undefined;
|
|
9585
9705
|
}[] | undefined;
|
|
9586
9706
|
required?: boolean | undefined;
|
|
@@ -9601,7 +9721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9601
9721
|
hint?: string | undefined;
|
|
9602
9722
|
messages?: {
|
|
9603
9723
|
text: string;
|
|
9604
|
-
type: "
|
|
9724
|
+
type: "success" | "error" | "info" | "warning";
|
|
9605
9725
|
id?: number | undefined;
|
|
9606
9726
|
}[] | undefined;
|
|
9607
9727
|
required?: boolean | undefined;
|
|
@@ -9626,7 +9746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9626
9746
|
hint?: string | undefined;
|
|
9627
9747
|
messages?: {
|
|
9628
9748
|
text: string;
|
|
9629
|
-
type: "
|
|
9749
|
+
type: "success" | "error" | "info" | "warning";
|
|
9630
9750
|
id?: number | undefined;
|
|
9631
9751
|
}[] | undefined;
|
|
9632
9752
|
required?: boolean | undefined;
|
|
@@ -9645,7 +9765,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9645
9765
|
hint?: string | undefined;
|
|
9646
9766
|
messages?: {
|
|
9647
9767
|
text: string;
|
|
9648
|
-
type: "
|
|
9768
|
+
type: "success" | "error" | "info" | "warning";
|
|
9649
9769
|
id?: number | undefined;
|
|
9650
9770
|
}[] | undefined;
|
|
9651
9771
|
required?: boolean | undefined;
|
|
@@ -9665,7 +9785,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9665
9785
|
hint?: string | undefined;
|
|
9666
9786
|
messages?: {
|
|
9667
9787
|
text: string;
|
|
9668
|
-
type: "
|
|
9788
|
+
type: "success" | "error" | "info" | "warning";
|
|
9669
9789
|
id?: number | undefined;
|
|
9670
9790
|
}[] | undefined;
|
|
9671
9791
|
required?: boolean | undefined;
|
|
@@ -9684,7 +9804,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9684
9804
|
hint?: string | undefined;
|
|
9685
9805
|
messages?: {
|
|
9686
9806
|
text: string;
|
|
9687
|
-
type: "
|
|
9807
|
+
type: "success" | "error" | "info" | "warning";
|
|
9688
9808
|
id?: number | undefined;
|
|
9689
9809
|
}[] | undefined;
|
|
9690
9810
|
required?: boolean | undefined;
|
|
@@ -9706,7 +9826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9706
9826
|
hint?: string | undefined;
|
|
9707
9827
|
messages?: {
|
|
9708
9828
|
text: string;
|
|
9709
|
-
type: "
|
|
9829
|
+
type: "success" | "error" | "info" | "warning";
|
|
9710
9830
|
id?: number | undefined;
|
|
9711
9831
|
}[] | undefined;
|
|
9712
9832
|
required?: boolean | undefined;
|
|
@@ -9728,7 +9848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9728
9848
|
hint?: string | undefined;
|
|
9729
9849
|
messages?: {
|
|
9730
9850
|
text: string;
|
|
9731
|
-
type: "
|
|
9851
|
+
type: "success" | "error" | "info" | "warning";
|
|
9732
9852
|
id?: number | undefined;
|
|
9733
9853
|
}[] | undefined;
|
|
9734
9854
|
required?: boolean | undefined;
|
|
@@ -9747,7 +9867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9747
9867
|
hint?: string | undefined;
|
|
9748
9868
|
messages?: {
|
|
9749
9869
|
text: string;
|
|
9750
|
-
type: "
|
|
9870
|
+
type: "success" | "error" | "info" | "warning";
|
|
9751
9871
|
id?: number | undefined;
|
|
9752
9872
|
}[] | undefined;
|
|
9753
9873
|
required?: boolean | undefined;
|
|
@@ -9772,7 +9892,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9772
9892
|
hint?: string | undefined;
|
|
9773
9893
|
messages?: {
|
|
9774
9894
|
text: string;
|
|
9775
|
-
type: "
|
|
9895
|
+
type: "success" | "error" | "info" | "warning";
|
|
9776
9896
|
id?: number | undefined;
|
|
9777
9897
|
}[] | undefined;
|
|
9778
9898
|
required?: boolean | undefined;
|
|
@@ -9793,7 +9913,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9793
9913
|
hint?: string | undefined;
|
|
9794
9914
|
messages?: {
|
|
9795
9915
|
text: string;
|
|
9796
|
-
type: "
|
|
9916
|
+
type: "success" | "error" | "info" | "warning";
|
|
9797
9917
|
id?: number | undefined;
|
|
9798
9918
|
}[] | undefined;
|
|
9799
9919
|
required?: boolean | undefined;
|
|
@@ -9814,7 +9934,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9814
9934
|
hint?: string | undefined;
|
|
9815
9935
|
messages?: {
|
|
9816
9936
|
text: string;
|
|
9817
|
-
type: "
|
|
9937
|
+
type: "success" | "error" | "info" | "warning";
|
|
9818
9938
|
id?: number | undefined;
|
|
9819
9939
|
}[] | undefined;
|
|
9820
9940
|
required?: boolean | undefined;
|
|
@@ -10044,7 +10164,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10044
10164
|
};
|
|
10045
10165
|
};
|
|
10046
10166
|
output: {
|
|
10047
|
-
prompt: "
|
|
10167
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "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";
|
|
10048
10168
|
language: string;
|
|
10049
10169
|
}[];
|
|
10050
10170
|
outputFormat: "json";
|
|
@@ -10082,7 +10202,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10082
10202
|
$get: {
|
|
10083
10203
|
input: {
|
|
10084
10204
|
param: {
|
|
10085
|
-
prompt: "
|
|
10205
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "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";
|
|
10086
10206
|
language: string;
|
|
10087
10207
|
};
|
|
10088
10208
|
} & {
|
|
@@ -10104,7 +10224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10104
10224
|
$put: {
|
|
10105
10225
|
input: {
|
|
10106
10226
|
param: {
|
|
10107
|
-
prompt: "
|
|
10227
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "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";
|
|
10108
10228
|
language: string;
|
|
10109
10229
|
};
|
|
10110
10230
|
} & {
|
|
@@ -10128,7 +10248,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10128
10248
|
$delete: {
|
|
10129
10249
|
input: {
|
|
10130
10250
|
param: {
|
|
10131
|
-
prompt: "
|
|
10251
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "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";
|
|
10132
10252
|
language: string;
|
|
10133
10253
|
};
|
|
10134
10254
|
} & {
|
|
@@ -10220,7 +10340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10220
10340
|
active?: boolean | undefined;
|
|
10221
10341
|
} | undefined;
|
|
10222
10342
|
signup?: {
|
|
10223
|
-
status?: "
|
|
10343
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10224
10344
|
verification?: {
|
|
10225
10345
|
active?: boolean | undefined;
|
|
10226
10346
|
} | undefined;
|
|
@@ -10230,14 +10350,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10230
10350
|
} | undefined;
|
|
10231
10351
|
unique?: boolean | undefined;
|
|
10232
10352
|
profile_required?: boolean | undefined;
|
|
10233
|
-
verification_method?: "
|
|
10353
|
+
verification_method?: "link" | "code" | undefined;
|
|
10234
10354
|
} | undefined;
|
|
10235
10355
|
username?: {
|
|
10236
10356
|
identifier?: {
|
|
10237
10357
|
active?: boolean | undefined;
|
|
10238
10358
|
} | undefined;
|
|
10239
10359
|
signup?: {
|
|
10240
|
-
status?: "
|
|
10360
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10241
10361
|
} | undefined;
|
|
10242
10362
|
validation?: {
|
|
10243
10363
|
max_length?: number | undefined;
|
|
@@ -10254,7 +10374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10254
10374
|
active?: boolean | undefined;
|
|
10255
10375
|
} | undefined;
|
|
10256
10376
|
signup?: {
|
|
10257
|
-
status?: "
|
|
10377
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10258
10378
|
} | undefined;
|
|
10259
10379
|
} | undefined;
|
|
10260
10380
|
} | undefined;
|
|
@@ -10354,7 +10474,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10354
10474
|
active?: boolean | undefined;
|
|
10355
10475
|
} | undefined;
|
|
10356
10476
|
signup?: {
|
|
10357
|
-
status?: "
|
|
10477
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10358
10478
|
verification?: {
|
|
10359
10479
|
active?: boolean | undefined;
|
|
10360
10480
|
} | undefined;
|
|
@@ -10364,14 +10484,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10364
10484
|
} | undefined;
|
|
10365
10485
|
unique?: boolean | undefined;
|
|
10366
10486
|
profile_required?: boolean | undefined;
|
|
10367
|
-
verification_method?: "
|
|
10487
|
+
verification_method?: "link" | "code" | undefined;
|
|
10368
10488
|
} | undefined;
|
|
10369
10489
|
username?: {
|
|
10370
10490
|
identifier?: {
|
|
10371
10491
|
active?: boolean | undefined;
|
|
10372
10492
|
} | undefined;
|
|
10373
10493
|
signup?: {
|
|
10374
|
-
status?: "
|
|
10494
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10375
10495
|
} | undefined;
|
|
10376
10496
|
validation?: {
|
|
10377
10497
|
max_length?: number | undefined;
|
|
@@ -10388,7 +10508,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10388
10508
|
active?: boolean | undefined;
|
|
10389
10509
|
} | undefined;
|
|
10390
10510
|
signup?: {
|
|
10391
|
-
status?: "
|
|
10511
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10392
10512
|
} | undefined;
|
|
10393
10513
|
} | undefined;
|
|
10394
10514
|
} | undefined;
|
|
@@ -10504,7 +10624,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10504
10624
|
active?: boolean | undefined;
|
|
10505
10625
|
} | undefined;
|
|
10506
10626
|
signup?: {
|
|
10507
|
-
status?: "
|
|
10627
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10508
10628
|
verification?: {
|
|
10509
10629
|
active?: boolean | undefined;
|
|
10510
10630
|
} | undefined;
|
|
@@ -10514,14 +10634,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10514
10634
|
} | undefined;
|
|
10515
10635
|
unique?: boolean | undefined;
|
|
10516
10636
|
profile_required?: boolean | undefined;
|
|
10517
|
-
verification_method?: "
|
|
10637
|
+
verification_method?: "link" | "code" | undefined;
|
|
10518
10638
|
} | undefined;
|
|
10519
10639
|
username?: {
|
|
10520
10640
|
identifier?: {
|
|
10521
10641
|
active?: boolean | undefined;
|
|
10522
10642
|
} | undefined;
|
|
10523
10643
|
signup?: {
|
|
10524
|
-
status?: "
|
|
10644
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10525
10645
|
} | undefined;
|
|
10526
10646
|
validation?: {
|
|
10527
10647
|
max_length?: number | undefined;
|
|
@@ -10538,7 +10658,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10538
10658
|
active?: boolean | undefined;
|
|
10539
10659
|
} | undefined;
|
|
10540
10660
|
signup?: {
|
|
10541
|
-
status?: "
|
|
10661
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10542
10662
|
} | undefined;
|
|
10543
10663
|
} | undefined;
|
|
10544
10664
|
} | undefined;
|
|
@@ -10683,7 +10803,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10683
10803
|
active?: boolean | undefined;
|
|
10684
10804
|
} | undefined;
|
|
10685
10805
|
signup?: {
|
|
10686
|
-
status?: "
|
|
10806
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10687
10807
|
verification?: {
|
|
10688
10808
|
active?: boolean | undefined;
|
|
10689
10809
|
} | undefined;
|
|
@@ -10693,14 +10813,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10693
10813
|
} | undefined;
|
|
10694
10814
|
unique?: boolean | undefined;
|
|
10695
10815
|
profile_required?: boolean | undefined;
|
|
10696
|
-
verification_method?: "
|
|
10816
|
+
verification_method?: "link" | "code" | undefined;
|
|
10697
10817
|
} | undefined;
|
|
10698
10818
|
username?: {
|
|
10699
10819
|
identifier?: {
|
|
10700
10820
|
active?: boolean | undefined;
|
|
10701
10821
|
} | undefined;
|
|
10702
10822
|
signup?: {
|
|
10703
|
-
status?: "
|
|
10823
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10704
10824
|
} | undefined;
|
|
10705
10825
|
validation?: {
|
|
10706
10826
|
max_length?: number | undefined;
|
|
@@ -10717,7 +10837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10717
10837
|
active?: boolean | undefined;
|
|
10718
10838
|
} | undefined;
|
|
10719
10839
|
signup?: {
|
|
10720
|
-
status?: "
|
|
10840
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10721
10841
|
} | undefined;
|
|
10722
10842
|
} | undefined;
|
|
10723
10843
|
} | undefined;
|
|
@@ -10841,7 +10961,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10841
10961
|
active?: boolean | undefined;
|
|
10842
10962
|
} | undefined;
|
|
10843
10963
|
signup?: {
|
|
10844
|
-
status?: "
|
|
10964
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10845
10965
|
verification?: {
|
|
10846
10966
|
active?: boolean | undefined;
|
|
10847
10967
|
} | undefined;
|
|
@@ -10851,14 +10971,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10851
10971
|
} | undefined;
|
|
10852
10972
|
unique?: boolean | undefined;
|
|
10853
10973
|
profile_required?: boolean | undefined;
|
|
10854
|
-
verification_method?: "
|
|
10974
|
+
verification_method?: "link" | "code" | undefined;
|
|
10855
10975
|
} | undefined;
|
|
10856
10976
|
username?: {
|
|
10857
10977
|
identifier?: {
|
|
10858
10978
|
active?: boolean | undefined;
|
|
10859
10979
|
} | undefined;
|
|
10860
10980
|
signup?: {
|
|
10861
|
-
status?: "
|
|
10981
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10862
10982
|
} | undefined;
|
|
10863
10983
|
validation?: {
|
|
10864
10984
|
max_length?: number | undefined;
|
|
@@ -10875,7 +10995,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10875
10995
|
active?: boolean | undefined;
|
|
10876
10996
|
} | undefined;
|
|
10877
10997
|
signup?: {
|
|
10878
|
-
status?: "
|
|
10998
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10879
10999
|
} | undefined;
|
|
10880
11000
|
} | undefined;
|
|
10881
11001
|
} | undefined;
|
|
@@ -10991,7 +11111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10991
11111
|
};
|
|
10992
11112
|
} | {
|
|
10993
11113
|
mode: "inline";
|
|
10994
|
-
status: "
|
|
11114
|
+
status: "success" | "error";
|
|
10995
11115
|
connection_id: string;
|
|
10996
11116
|
connection_name: string;
|
|
10997
11117
|
strategy: string;
|
|
@@ -12281,7 +12401,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12281
12401
|
};
|
|
12282
12402
|
};
|
|
12283
12403
|
output: {
|
|
12284
|
-
type: "
|
|
12404
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
12285
12405
|
date: string;
|
|
12286
12406
|
isMobile: boolean;
|
|
12287
12407
|
log_id: string;
|
|
@@ -12320,7 +12440,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12320
12440
|
limit: number;
|
|
12321
12441
|
length: number;
|
|
12322
12442
|
logs: {
|
|
12323
|
-
type: "
|
|
12443
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
12324
12444
|
date: string;
|
|
12325
12445
|
isMobile: boolean;
|
|
12326
12446
|
log_id: string;
|
|
@@ -12357,6 +12477,44 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12357
12477
|
}[];
|
|
12358
12478
|
total?: number | undefined;
|
|
12359
12479
|
next?: string | undefined;
|
|
12480
|
+
} | {
|
|
12481
|
+
logs: {
|
|
12482
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
12483
|
+
date: string;
|
|
12484
|
+
isMobile: boolean;
|
|
12485
|
+
log_id: string;
|
|
12486
|
+
description?: string | undefined;
|
|
12487
|
+
ip?: string | undefined;
|
|
12488
|
+
user_agent?: string | undefined;
|
|
12489
|
+
details?: any;
|
|
12490
|
+
user_id?: string | undefined;
|
|
12491
|
+
user_name?: string | undefined;
|
|
12492
|
+
connection?: string | undefined;
|
|
12493
|
+
connection_id?: string | undefined;
|
|
12494
|
+
client_id?: string | undefined;
|
|
12495
|
+
client_name?: string | undefined;
|
|
12496
|
+
audience?: string | undefined;
|
|
12497
|
+
scope?: string | undefined;
|
|
12498
|
+
strategy?: string | undefined;
|
|
12499
|
+
strategy_type?: string | undefined;
|
|
12500
|
+
hostname?: string | undefined;
|
|
12501
|
+
auth0_client?: {
|
|
12502
|
+
name: string;
|
|
12503
|
+
version: string;
|
|
12504
|
+
env?: {
|
|
12505
|
+
node?: string | undefined;
|
|
12506
|
+
} | undefined;
|
|
12507
|
+
} | undefined;
|
|
12508
|
+
location_info?: {
|
|
12509
|
+
country_code: string;
|
|
12510
|
+
city_name: string;
|
|
12511
|
+
latitude: string;
|
|
12512
|
+
longitude: string;
|
|
12513
|
+
time_zone: string;
|
|
12514
|
+
continent_code: string;
|
|
12515
|
+
} | undefined;
|
|
12516
|
+
}[];
|
|
12517
|
+
next?: string | undefined;
|
|
12360
12518
|
};
|
|
12361
12519
|
outputFormat: "json";
|
|
12362
12520
|
status: 200;
|
|
@@ -12375,7 +12533,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12375
12533
|
};
|
|
12376
12534
|
};
|
|
12377
12535
|
output: {
|
|
12378
|
-
type: "
|
|
12536
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
12379
12537
|
date: string;
|
|
12380
12538
|
isMobile: boolean;
|
|
12381
12539
|
log_id: string;
|
|
@@ -12531,7 +12689,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12531
12689
|
audience?: string | undefined;
|
|
12532
12690
|
client_id?: string | undefined;
|
|
12533
12691
|
allow_any_organization?: string | undefined;
|
|
12534
|
-
subject_type?: "
|
|
12692
|
+
subject_type?: "user" | "client" | undefined;
|
|
12535
12693
|
};
|
|
12536
12694
|
} & {
|
|
12537
12695
|
header: {
|
|
@@ -12546,7 +12704,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12546
12704
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12547
12705
|
allow_any_organization?: boolean | undefined;
|
|
12548
12706
|
is_system?: boolean | undefined;
|
|
12549
|
-
subject_type?: "
|
|
12707
|
+
subject_type?: "user" | "client" | undefined;
|
|
12550
12708
|
authorization_details_types?: string[] | undefined;
|
|
12551
12709
|
created_at?: string | undefined;
|
|
12552
12710
|
updated_at?: string | undefined;
|
|
@@ -12562,7 +12720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12562
12720
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12563
12721
|
allow_any_organization?: boolean | undefined;
|
|
12564
12722
|
is_system?: boolean | undefined;
|
|
12565
|
-
subject_type?: "
|
|
12723
|
+
subject_type?: "user" | "client" | undefined;
|
|
12566
12724
|
authorization_details_types?: string[] | undefined;
|
|
12567
12725
|
created_at?: string | undefined;
|
|
12568
12726
|
updated_at?: string | undefined;
|
|
@@ -12578,7 +12736,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12578
12736
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12579
12737
|
allow_any_organization?: boolean | undefined;
|
|
12580
12738
|
is_system?: boolean | undefined;
|
|
12581
|
-
subject_type?: "
|
|
12739
|
+
subject_type?: "user" | "client" | undefined;
|
|
12582
12740
|
authorization_details_types?: string[] | undefined;
|
|
12583
12741
|
created_at?: string | undefined;
|
|
12584
12742
|
updated_at?: string | undefined;
|
|
@@ -12609,7 +12767,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12609
12767
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12610
12768
|
allow_any_organization?: boolean | undefined;
|
|
12611
12769
|
is_system?: boolean | undefined;
|
|
12612
|
-
subject_type?: "
|
|
12770
|
+
subject_type?: "user" | "client" | undefined;
|
|
12613
12771
|
authorization_details_types?: string[] | undefined;
|
|
12614
12772
|
created_at?: string | undefined;
|
|
12615
12773
|
updated_at?: string | undefined;
|
|
@@ -12654,7 +12812,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12654
12812
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12655
12813
|
allow_any_organization?: boolean | undefined;
|
|
12656
12814
|
is_system?: boolean | undefined;
|
|
12657
|
-
subject_type?: "
|
|
12815
|
+
subject_type?: "user" | "client" | undefined;
|
|
12658
12816
|
authorization_details_types?: string[] | undefined;
|
|
12659
12817
|
};
|
|
12660
12818
|
};
|
|
@@ -12666,7 +12824,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12666
12824
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12667
12825
|
allow_any_organization?: boolean | undefined;
|
|
12668
12826
|
is_system?: boolean | undefined;
|
|
12669
|
-
subject_type?: "
|
|
12827
|
+
subject_type?: "user" | "client" | undefined;
|
|
12670
12828
|
authorization_details_types?: string[] | undefined;
|
|
12671
12829
|
created_at?: string | undefined;
|
|
12672
12830
|
updated_at?: string | undefined;
|
|
@@ -12690,7 +12848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12690
12848
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12691
12849
|
allow_any_organization?: boolean | undefined;
|
|
12692
12850
|
is_system?: boolean | undefined;
|
|
12693
|
-
subject_type?: "
|
|
12851
|
+
subject_type?: "user" | "client" | undefined;
|
|
12694
12852
|
authorization_details_types?: string[] | undefined;
|
|
12695
12853
|
};
|
|
12696
12854
|
};
|
|
@@ -12702,7 +12860,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12702
12860
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
12703
12861
|
allow_any_organization?: boolean | undefined;
|
|
12704
12862
|
is_system?: boolean | undefined;
|
|
12705
|
-
subject_type?: "
|
|
12863
|
+
subject_type?: "user" | "client" | undefined;
|
|
12706
12864
|
authorization_details_types?: string[] | undefined;
|
|
12707
12865
|
created_at?: string | undefined;
|
|
12708
12866
|
updated_at?: string | undefined;
|
|
@@ -12780,7 +12938,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12780
12938
|
addons?: {
|
|
12781
12939
|
[x: string]: any;
|
|
12782
12940
|
} | undefined;
|
|
12783
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
12941
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12784
12942
|
client_metadata?: {
|
|
12785
12943
|
[x: string]: string;
|
|
12786
12944
|
} | undefined;
|
|
@@ -12876,7 +13034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12876
13034
|
addons?: {
|
|
12877
13035
|
[x: string]: any;
|
|
12878
13036
|
} | undefined;
|
|
12879
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
13037
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12880
13038
|
client_metadata?: {
|
|
12881
13039
|
[x: string]: string;
|
|
12882
13040
|
} | undefined;
|
|
@@ -12922,6 +13080,101 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12922
13080
|
}[];
|
|
12923
13081
|
total?: number | undefined;
|
|
12924
13082
|
next?: string | undefined;
|
|
13083
|
+
} | {
|
|
13084
|
+
clients: {
|
|
13085
|
+
created_at: string;
|
|
13086
|
+
updated_at: string;
|
|
13087
|
+
name: string;
|
|
13088
|
+
global: boolean;
|
|
13089
|
+
is_first_party: boolean;
|
|
13090
|
+
oidc_conformant: boolean;
|
|
13091
|
+
auth0_conformant: boolean;
|
|
13092
|
+
sso: boolean;
|
|
13093
|
+
sso_disabled: boolean;
|
|
13094
|
+
cross_origin_authentication: boolean;
|
|
13095
|
+
custom_login_page_on: boolean;
|
|
13096
|
+
require_pushed_authorization_requests: boolean;
|
|
13097
|
+
require_proof_of_possession: boolean;
|
|
13098
|
+
client_id: string;
|
|
13099
|
+
description?: string | undefined;
|
|
13100
|
+
client_secret?: string | undefined;
|
|
13101
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
13102
|
+
logo_uri?: string | undefined;
|
|
13103
|
+
callbacks?: string[] | undefined;
|
|
13104
|
+
allowed_origins?: string[] | undefined;
|
|
13105
|
+
web_origins?: string[] | undefined;
|
|
13106
|
+
client_aliases?: string[] | undefined;
|
|
13107
|
+
allowed_clients?: string[] | undefined;
|
|
13108
|
+
connections?: string[] | undefined;
|
|
13109
|
+
allowed_logout_urls?: string[] | undefined;
|
|
13110
|
+
session_transfer?: {
|
|
13111
|
+
[x: string]: any;
|
|
13112
|
+
} | undefined;
|
|
13113
|
+
oidc_logout?: {
|
|
13114
|
+
[x: string]: any;
|
|
13115
|
+
} | undefined;
|
|
13116
|
+
grant_types?: string[] | undefined;
|
|
13117
|
+
jwt_configuration?: {
|
|
13118
|
+
[x: string]: any;
|
|
13119
|
+
} | undefined;
|
|
13120
|
+
signing_keys?: {
|
|
13121
|
+
[x: string]: any;
|
|
13122
|
+
}[] | undefined;
|
|
13123
|
+
encryption_key?: {
|
|
13124
|
+
[x: string]: any;
|
|
13125
|
+
} | undefined;
|
|
13126
|
+
cross_origin_loc?: string | undefined;
|
|
13127
|
+
custom_login_page?: string | undefined;
|
|
13128
|
+
custom_login_page_preview?: string | undefined;
|
|
13129
|
+
form_template?: string | undefined;
|
|
13130
|
+
addons?: {
|
|
13131
|
+
[x: string]: any;
|
|
13132
|
+
} | undefined;
|
|
13133
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13134
|
+
client_metadata?: {
|
|
13135
|
+
[x: string]: string;
|
|
13136
|
+
} | undefined;
|
|
13137
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13138
|
+
mobile?: {
|
|
13139
|
+
[x: string]: any;
|
|
13140
|
+
} | undefined;
|
|
13141
|
+
initiate_login_uri?: string | undefined;
|
|
13142
|
+
native_social_login?: {
|
|
13143
|
+
[x: string]: any;
|
|
13144
|
+
} | undefined;
|
|
13145
|
+
refresh_token?: {
|
|
13146
|
+
rotation_type?: "rotating" | "non-rotating" | undefined;
|
|
13147
|
+
leeway?: number | undefined;
|
|
13148
|
+
expiration_type?: "expiring" | "non-expiring" | undefined;
|
|
13149
|
+
token_lifetime?: number | undefined;
|
|
13150
|
+
infinite_token_lifetime?: boolean | undefined;
|
|
13151
|
+
idle_token_lifetime?: number | undefined;
|
|
13152
|
+
infinite_idle_token_lifetime?: boolean | undefined;
|
|
13153
|
+
} | undefined;
|
|
13154
|
+
default_organization?: {
|
|
13155
|
+
[x: string]: any;
|
|
13156
|
+
} | undefined;
|
|
13157
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
13158
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
13159
|
+
client_authentication_methods?: {
|
|
13160
|
+
[x: string]: any;
|
|
13161
|
+
} | undefined;
|
|
13162
|
+
signed_request_object?: {
|
|
13163
|
+
[x: string]: any;
|
|
13164
|
+
} | undefined;
|
|
13165
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
13166
|
+
par_request_expiry?: number | undefined;
|
|
13167
|
+
token_quota?: {
|
|
13168
|
+
[x: string]: any;
|
|
13169
|
+
} | undefined;
|
|
13170
|
+
owner_user_id?: string | undefined;
|
|
13171
|
+
registration_type?: "manual" | "open_dcr" | "iat_dcr" | undefined;
|
|
13172
|
+
registration_metadata?: {
|
|
13173
|
+
[x: string]: any;
|
|
13174
|
+
} | undefined;
|
|
13175
|
+
user_linking_mode?: "builtin" | "off" | undefined;
|
|
13176
|
+
}[];
|
|
13177
|
+
next?: string | undefined;
|
|
12925
13178
|
};
|
|
12926
13179
|
outputFormat: "json";
|
|
12927
13180
|
status: 200;
|
|
@@ -12988,7 +13241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12988
13241
|
addons?: {
|
|
12989
13242
|
[x: string]: any;
|
|
12990
13243
|
} | undefined;
|
|
12991
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
13244
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12992
13245
|
client_metadata?: {
|
|
12993
13246
|
[x: string]: string;
|
|
12994
13247
|
} | undefined;
|
|
@@ -13098,7 +13351,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13098
13351
|
custom_login_page_preview?: string | undefined;
|
|
13099
13352
|
form_template?: string | undefined;
|
|
13100
13353
|
addons?: Record<string, any> | undefined;
|
|
13101
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
13354
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13102
13355
|
client_metadata?: Record<string, string> | undefined;
|
|
13103
13356
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13104
13357
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13178,7 +13431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13178
13431
|
addons?: {
|
|
13179
13432
|
[x: string]: any;
|
|
13180
13433
|
} | undefined;
|
|
13181
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
13434
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13182
13435
|
client_metadata?: {
|
|
13183
13436
|
[x: string]: string;
|
|
13184
13437
|
} | undefined;
|
|
@@ -13267,7 +13520,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13267
13520
|
custom_login_page_preview?: string | undefined;
|
|
13268
13521
|
form_template?: string | undefined;
|
|
13269
13522
|
addons?: Record<string, any> | undefined;
|
|
13270
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
13523
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13271
13524
|
client_metadata?: Record<string, string> | undefined;
|
|
13272
13525
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13273
13526
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13347,7 +13600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13347
13600
|
addons?: {
|
|
13348
13601
|
[x: string]: any;
|
|
13349
13602
|
} | undefined;
|
|
13350
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
13603
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13351
13604
|
client_metadata?: {
|
|
13352
13605
|
[x: string]: string;
|
|
13353
13606
|
} | undefined;
|
|
@@ -13469,7 +13722,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13469
13722
|
active?: boolean | undefined;
|
|
13470
13723
|
} | undefined;
|
|
13471
13724
|
signup?: {
|
|
13472
|
-
status?: "
|
|
13725
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13473
13726
|
verification?: {
|
|
13474
13727
|
active?: boolean | undefined;
|
|
13475
13728
|
} | undefined;
|
|
@@ -13479,14 +13732,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13479
13732
|
} | undefined;
|
|
13480
13733
|
unique?: boolean | undefined;
|
|
13481
13734
|
profile_required?: boolean | undefined;
|
|
13482
|
-
verification_method?: "
|
|
13735
|
+
verification_method?: "link" | "code" | undefined;
|
|
13483
13736
|
} | undefined;
|
|
13484
13737
|
username?: {
|
|
13485
13738
|
identifier?: {
|
|
13486
13739
|
active?: boolean | undefined;
|
|
13487
13740
|
} | undefined;
|
|
13488
13741
|
signup?: {
|
|
13489
|
-
status?: "
|
|
13742
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13490
13743
|
} | undefined;
|
|
13491
13744
|
validation?: {
|
|
13492
13745
|
max_length?: number | undefined;
|
|
@@ -13503,7 +13756,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13503
13756
|
active?: boolean | undefined;
|
|
13504
13757
|
} | undefined;
|
|
13505
13758
|
signup?: {
|
|
13506
|
-
status?: "
|
|
13759
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13507
13760
|
} | undefined;
|
|
13508
13761
|
} | undefined;
|
|
13509
13762
|
} | undefined;
|
|
@@ -13623,7 +13876,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13623
13876
|
active?: boolean | undefined;
|
|
13624
13877
|
} | undefined;
|
|
13625
13878
|
signup?: {
|
|
13626
|
-
status?: "
|
|
13879
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13627
13880
|
verification?: {
|
|
13628
13881
|
active?: boolean | undefined;
|
|
13629
13882
|
} | undefined;
|
|
@@ -13633,14 +13886,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13633
13886
|
} | undefined;
|
|
13634
13887
|
unique?: boolean | undefined;
|
|
13635
13888
|
profile_required?: boolean | undefined;
|
|
13636
|
-
verification_method?: "
|
|
13889
|
+
verification_method?: "link" | "code" | undefined;
|
|
13637
13890
|
} | undefined;
|
|
13638
13891
|
username?: {
|
|
13639
13892
|
identifier?: {
|
|
13640
13893
|
active?: boolean | undefined;
|
|
13641
13894
|
} | undefined;
|
|
13642
13895
|
signup?: {
|
|
13643
|
-
status?: "
|
|
13896
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13644
13897
|
} | undefined;
|
|
13645
13898
|
validation?: {
|
|
13646
13899
|
max_length?: number | undefined;
|
|
@@ -13657,7 +13910,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13657
13910
|
active?: boolean | undefined;
|
|
13658
13911
|
} | undefined;
|
|
13659
13912
|
signup?: {
|
|
13660
|
-
status?: "
|
|
13913
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13661
13914
|
} | undefined;
|
|
13662
13915
|
} | undefined;
|
|
13663
13916
|
} | undefined;
|
|
@@ -14614,7 +14867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14614
14867
|
};
|
|
14615
14868
|
};
|
|
14616
14869
|
output: {
|
|
14617
|
-
type: "
|
|
14870
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
14618
14871
|
date: string;
|
|
14619
14872
|
isMobile: boolean;
|
|
14620
14873
|
log_id: string;
|
|
@@ -14653,7 +14906,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14653
14906
|
limit: number;
|
|
14654
14907
|
length: number;
|
|
14655
14908
|
logs: {
|
|
14656
|
-
type: "
|
|
14909
|
+
type: "gd_send_sms" | "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" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms_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";
|
|
14657
14910
|
date: string;
|
|
14658
14911
|
isMobile: boolean;
|
|
14659
14912
|
log_id: string;
|
|
@@ -14972,7 +15225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14972
15225
|
};
|
|
14973
15226
|
} & {
|
|
14974
15227
|
json: {
|
|
14975
|
-
template: "
|
|
15228
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14976
15229
|
body: string;
|
|
14977
15230
|
from: string;
|
|
14978
15231
|
subject: string;
|
|
@@ -14993,7 +15246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14993
15246
|
};
|
|
14994
15247
|
} & {
|
|
14995
15248
|
json: {
|
|
14996
|
-
template: "
|
|
15249
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14997
15250
|
body: string;
|
|
14998
15251
|
from: string;
|
|
14999
15252
|
subject: string;
|
|
@@ -15005,7 +15258,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15005
15258
|
};
|
|
15006
15259
|
};
|
|
15007
15260
|
output: {
|
|
15008
|
-
template: "
|
|
15261
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15009
15262
|
body: string;
|
|
15010
15263
|
from: string;
|
|
15011
15264
|
subject: string;
|
|
@@ -15028,7 +15281,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15028
15281
|
};
|
|
15029
15282
|
};
|
|
15030
15283
|
output: {
|
|
15031
|
-
name: "
|
|
15284
|
+
name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15032
15285
|
body: string;
|
|
15033
15286
|
subject: string;
|
|
15034
15287
|
}[];
|
|
@@ -15041,7 +15294,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15041
15294
|
$get: {
|
|
15042
15295
|
input: {
|
|
15043
15296
|
param: {
|
|
15044
|
-
templateName: "
|
|
15297
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15045
15298
|
};
|
|
15046
15299
|
} & {
|
|
15047
15300
|
header: {
|
|
@@ -15054,7 +15307,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15054
15307
|
} | {
|
|
15055
15308
|
input: {
|
|
15056
15309
|
param: {
|
|
15057
|
-
templateName: "
|
|
15310
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15058
15311
|
};
|
|
15059
15312
|
} & {
|
|
15060
15313
|
header: {
|
|
@@ -15062,7 +15315,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15062
15315
|
};
|
|
15063
15316
|
};
|
|
15064
15317
|
output: {
|
|
15065
|
-
template: "
|
|
15318
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15066
15319
|
body: string;
|
|
15067
15320
|
from: string;
|
|
15068
15321
|
subject: string;
|
|
@@ -15081,7 +15334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15081
15334
|
$put: {
|
|
15082
15335
|
input: {
|
|
15083
15336
|
param: {
|
|
15084
|
-
templateName: "
|
|
15337
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15085
15338
|
};
|
|
15086
15339
|
} & {
|
|
15087
15340
|
header: {
|
|
@@ -15089,7 +15342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15089
15342
|
};
|
|
15090
15343
|
} & {
|
|
15091
15344
|
json: {
|
|
15092
|
-
template: "
|
|
15345
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15093
15346
|
body: string;
|
|
15094
15347
|
subject: string;
|
|
15095
15348
|
syntax?: "liquid" | undefined;
|
|
@@ -15101,7 +15354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15101
15354
|
};
|
|
15102
15355
|
};
|
|
15103
15356
|
output: {
|
|
15104
|
-
template: "
|
|
15357
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15105
15358
|
body: string;
|
|
15106
15359
|
from: string;
|
|
15107
15360
|
subject: string;
|
|
@@ -15120,7 +15373,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15120
15373
|
$patch: {
|
|
15121
15374
|
input: {
|
|
15122
15375
|
param: {
|
|
15123
|
-
templateName: "
|
|
15376
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15124
15377
|
};
|
|
15125
15378
|
} & {
|
|
15126
15379
|
header: {
|
|
@@ -15128,7 +15381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15128
15381
|
};
|
|
15129
15382
|
} & {
|
|
15130
15383
|
json: {
|
|
15131
|
-
template?: "
|
|
15384
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
15132
15385
|
body?: string | undefined;
|
|
15133
15386
|
from?: string | undefined;
|
|
15134
15387
|
subject?: string | undefined;
|
|
@@ -15145,7 +15398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15145
15398
|
} | {
|
|
15146
15399
|
input: {
|
|
15147
15400
|
param: {
|
|
15148
|
-
templateName: "
|
|
15401
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15149
15402
|
};
|
|
15150
15403
|
} & {
|
|
15151
15404
|
header: {
|
|
@@ -15153,7 +15406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15153
15406
|
};
|
|
15154
15407
|
} & {
|
|
15155
15408
|
json: {
|
|
15156
|
-
template?: "
|
|
15409
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
15157
15410
|
body?: string | undefined;
|
|
15158
15411
|
from?: string | undefined;
|
|
15159
15412
|
subject?: string | undefined;
|
|
@@ -15165,7 +15418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15165
15418
|
};
|
|
15166
15419
|
};
|
|
15167
15420
|
output: {
|
|
15168
|
-
template: "
|
|
15421
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15169
15422
|
body: string;
|
|
15170
15423
|
from: string;
|
|
15171
15424
|
subject: string;
|
|
@@ -15184,7 +15437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15184
15437
|
$delete: {
|
|
15185
15438
|
input: {
|
|
15186
15439
|
param: {
|
|
15187
|
-
templateName: "
|
|
15440
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15188
15441
|
};
|
|
15189
15442
|
} & {
|
|
15190
15443
|
header: {
|
|
@@ -15197,7 +15450,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15197
15450
|
} | {
|
|
15198
15451
|
input: {
|
|
15199
15452
|
param: {
|
|
15200
|
-
templateName: "
|
|
15453
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15201
15454
|
};
|
|
15202
15455
|
} & {
|
|
15203
15456
|
header: {
|
|
@@ -15214,7 +15467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15214
15467
|
$post: {
|
|
15215
15468
|
input: {
|
|
15216
15469
|
param: {
|
|
15217
|
-
templateName: "
|
|
15470
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
15218
15471
|
};
|
|
15219
15472
|
} & {
|
|
15220
15473
|
header: {
|
|
@@ -16166,7 +16419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16166
16419
|
} & {
|
|
16167
16420
|
json: {
|
|
16168
16421
|
body?: string | undefined;
|
|
16169
|
-
screen?: "
|
|
16422
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
16170
16423
|
branding?: {
|
|
16171
16424
|
colors?: {
|
|
16172
16425
|
primary: string;
|
|
@@ -16457,7 +16710,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16457
16710
|
logs: {
|
|
16458
16711
|
action_name: string;
|
|
16459
16712
|
lines: {
|
|
16460
|
-
level: "
|
|
16713
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16461
16714
|
message: string;
|
|
16462
16715
|
}[];
|
|
16463
16716
|
}[];
|
|
@@ -17126,7 +17379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17126
17379
|
args: hono_utils_types.JSONValue[];
|
|
17127
17380
|
}[];
|
|
17128
17381
|
logs: {
|
|
17129
|
-
level: "
|
|
17382
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
17130
17383
|
message: string;
|
|
17131
17384
|
}[];
|
|
17132
17385
|
error?: string | undefined;
|
|
@@ -17437,7 +17690,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17437
17690
|
scope?: string | undefined;
|
|
17438
17691
|
grant_types?: string[] | undefined;
|
|
17439
17692
|
response_types?: string[] | undefined;
|
|
17440
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
17693
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17441
17694
|
jwks_uri?: string | undefined;
|
|
17442
17695
|
jwks?: Record<string, unknown> | undefined;
|
|
17443
17696
|
software_id?: string | undefined;
|
|
@@ -17526,7 +17779,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17526
17779
|
scope?: string | undefined;
|
|
17527
17780
|
grant_types?: string[] | undefined;
|
|
17528
17781
|
response_types?: string[] | undefined;
|
|
17529
|
-
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "
|
|
17782
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17530
17783
|
jwks_uri?: string | undefined;
|
|
17531
17784
|
jwks?: Record<string, unknown> | undefined;
|
|
17532
17785
|
software_id?: string | undefined;
|
|
@@ -17583,7 +17836,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17583
17836
|
client_id: string;
|
|
17584
17837
|
redirect_url?: string | undefined;
|
|
17585
17838
|
login_hint?: string | undefined;
|
|
17586
|
-
screen_hint?: "
|
|
17839
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
17587
17840
|
};
|
|
17588
17841
|
};
|
|
17589
17842
|
output: {};
|
|
@@ -17595,7 +17848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17595
17848
|
client_id: string;
|
|
17596
17849
|
redirect_url?: string | undefined;
|
|
17597
17850
|
login_hint?: string | undefined;
|
|
17598
|
-
screen_hint?: "
|
|
17851
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
17599
17852
|
};
|
|
17600
17853
|
};
|
|
17601
17854
|
output: {
|
|
@@ -17672,9 +17925,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17672
17925
|
request_uri?: string | undefined;
|
|
17673
17926
|
};
|
|
17674
17927
|
};
|
|
17675
|
-
output: {
|
|
17676
|
-
|
|
17677
|
-
|
|
17928
|
+
output: string | {
|
|
17929
|
+
access_token: string;
|
|
17930
|
+
token_type: string;
|
|
17931
|
+
expires_in: number;
|
|
17932
|
+
id_token?: string | undefined;
|
|
17933
|
+
scope?: string | undefined;
|
|
17934
|
+
state?: string | undefined;
|
|
17935
|
+
refresh_token?: string | undefined;
|
|
17936
|
+
};
|
|
17937
|
+
outputFormat: "json";
|
|
17938
|
+
status: 200;
|
|
17678
17939
|
} | {
|
|
17679
17940
|
input: {
|
|
17680
17941
|
query: {
|
|
@@ -17706,17 +17967,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17706
17967
|
request_uri?: string | undefined;
|
|
17707
17968
|
};
|
|
17708
17969
|
};
|
|
17709
|
-
output:
|
|
17710
|
-
|
|
17711
|
-
|
|
17712
|
-
expires_in: number;
|
|
17713
|
-
id_token?: string | undefined;
|
|
17714
|
-
scope?: string | undefined;
|
|
17715
|
-
state?: string | undefined;
|
|
17716
|
-
refresh_token?: string | undefined;
|
|
17717
|
-
};
|
|
17718
|
-
outputFormat: "json";
|
|
17719
|
-
status: 200;
|
|
17970
|
+
output: {};
|
|
17971
|
+
outputFormat: string;
|
|
17972
|
+
status: 302;
|
|
17720
17973
|
} | {
|
|
17721
17974
|
input: {
|
|
17722
17975
|
query: {
|
|
@@ -17870,21 +18123,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17870
18123
|
connection: "email";
|
|
17871
18124
|
client_id: string;
|
|
17872
18125
|
email: string;
|
|
17873
|
-
send: "
|
|
18126
|
+
send: "link" | "code";
|
|
17874
18127
|
authParams: {
|
|
17875
|
-
audience?: string | undefined;
|
|
17876
|
-
scope?: string | undefined;
|
|
17877
|
-
username?: string | undefined;
|
|
17878
|
-
organization?: string | undefined;
|
|
17879
18128
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17880
18129
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17881
|
-
|
|
18130
|
+
scope?: string | undefined;
|
|
18131
|
+
username?: string | undefined;
|
|
17882
18132
|
nonce?: string | undefined;
|
|
17883
|
-
|
|
18133
|
+
state?: string | undefined;
|
|
18134
|
+
audience?: string | undefined;
|
|
18135
|
+
code_challenge?: string | undefined;
|
|
18136
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17884
18137
|
redirect_uri?: string | undefined;
|
|
18138
|
+
act_as?: string | undefined;
|
|
18139
|
+
organization?: string | undefined;
|
|
17885
18140
|
prompt?: string | undefined;
|
|
17886
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17887
|
-
code_challenge?: string | undefined;
|
|
17888
18141
|
ui_locales?: string | undefined;
|
|
17889
18142
|
max_age?: number | undefined;
|
|
17890
18143
|
acr_values?: string | undefined;
|
|
@@ -17906,21 +18159,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17906
18159
|
client_id: string;
|
|
17907
18160
|
connection: "sms";
|
|
17908
18161
|
phone_number: string;
|
|
17909
|
-
send: "
|
|
18162
|
+
send: "link" | "code";
|
|
17910
18163
|
authParams: {
|
|
17911
|
-
audience?: string | undefined;
|
|
17912
|
-
scope?: string | undefined;
|
|
17913
|
-
username?: string | undefined;
|
|
17914
|
-
organization?: string | undefined;
|
|
17915
18164
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17916
18165
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17917
|
-
|
|
18166
|
+
scope?: string | undefined;
|
|
18167
|
+
username?: string | undefined;
|
|
17918
18168
|
nonce?: string | undefined;
|
|
17919
|
-
|
|
18169
|
+
state?: string | undefined;
|
|
18170
|
+
audience?: string | undefined;
|
|
18171
|
+
code_challenge?: string | undefined;
|
|
18172
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17920
18173
|
redirect_uri?: string | undefined;
|
|
18174
|
+
act_as?: string | undefined;
|
|
18175
|
+
organization?: string | undefined;
|
|
17921
18176
|
prompt?: string | undefined;
|
|
17922
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17923
|
-
code_challenge?: string | undefined;
|
|
17924
18177
|
ui_locales?: string | undefined;
|
|
17925
18178
|
max_age?: number | undefined;
|
|
17926
18179
|
acr_values?: string | undefined;
|
|
@@ -18052,14 +18305,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18052
18305
|
input: {
|
|
18053
18306
|
form: {
|
|
18054
18307
|
token: string;
|
|
18055
|
-
token_type_hint?: "
|
|
18308
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
18056
18309
|
client_id?: string | undefined;
|
|
18057
18310
|
client_secret?: string | undefined;
|
|
18058
18311
|
};
|
|
18059
18312
|
} & {
|
|
18060
18313
|
json: {
|
|
18061
18314
|
token: string;
|
|
18062
|
-
token_type_hint?: "
|
|
18315
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
18063
18316
|
client_id?: string | undefined;
|
|
18064
18317
|
client_secret?: string | undefined;
|
|
18065
18318
|
};
|
|
@@ -18071,14 +18324,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18071
18324
|
input: {
|
|
18072
18325
|
form: {
|
|
18073
18326
|
token: string;
|
|
18074
|
-
token_type_hint?: "
|
|
18327
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
18075
18328
|
client_id?: string | undefined;
|
|
18076
18329
|
client_secret?: string | undefined;
|
|
18077
18330
|
};
|
|
18078
18331
|
} & {
|
|
18079
18332
|
json: {
|
|
18080
18333
|
token: string;
|
|
18081
|
-
token_type_hint?: "
|
|
18334
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
18082
18335
|
client_id?: string | undefined;
|
|
18083
18336
|
client_secret?: string | undefined;
|
|
18084
18337
|
};
|
|
@@ -18093,14 +18346,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18093
18346
|
input: {
|
|
18094
18347
|
form: {
|
|
18095
18348
|
token: string;
|
|
18096
|
-
token_type_hint?: "
|
|
18349
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
18097
18350
|
client_id?: string | undefined;
|
|
18098
18351
|
client_secret?: string | undefined;
|
|
18099
18352
|
};
|
|
18100
18353
|
} & {
|
|
18101
18354
|
json: {
|
|
18102
18355
|
token: string;
|
|
18103
|
-
token_type_hint?: "
|
|
18356
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
18104
18357
|
client_id?: string | undefined;
|
|
18105
18358
|
client_secret?: string | undefined;
|
|
18106
18359
|
};
|
|
@@ -18635,8 +18888,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18635
18888
|
input: {};
|
|
18636
18889
|
output: {
|
|
18637
18890
|
keys: {
|
|
18638
|
-
alg: "
|
|
18639
|
-
kty: "
|
|
18891
|
+
alg: "HS256" | "HS384" | "HS512" | "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512";
|
|
18892
|
+
kty: "RSA" | "EC" | "oct";
|
|
18640
18893
|
kid?: string | undefined;
|
|
18641
18894
|
use?: "sig" | "enc" | undefined;
|
|
18642
18895
|
n?: string | undefined;
|
|
@@ -18825,7 +19078,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18825
19078
|
};
|
|
18826
19079
|
output: {};
|
|
18827
19080
|
outputFormat: string;
|
|
18828
|
-
status:
|
|
19081
|
+
status: 302;
|
|
18829
19082
|
} | {
|
|
18830
19083
|
input: {
|
|
18831
19084
|
query: {
|
|
@@ -18839,7 +19092,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18839
19092
|
};
|
|
18840
19093
|
output: {};
|
|
18841
19094
|
outputFormat: string;
|
|
18842
|
-
status:
|
|
19095
|
+
status: 200;
|
|
18843
19096
|
} | {
|
|
18844
19097
|
input: {
|
|
18845
19098
|
query: {
|
|
@@ -19448,7 +19701,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19448
19701
|
} & {
|
|
19449
19702
|
form: {
|
|
19450
19703
|
username: string;
|
|
19451
|
-
login_selection?: "
|
|
19704
|
+
login_selection?: "code" | "password" | undefined;
|
|
19452
19705
|
};
|
|
19453
19706
|
};
|
|
19454
19707
|
output: {};
|
|
@@ -19462,7 +19715,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19462
19715
|
} & {
|
|
19463
19716
|
form: {
|
|
19464
19717
|
username: string;
|
|
19465
|
-
login_selection?: "
|
|
19718
|
+
login_selection?: "code" | "password" | undefined;
|
|
19466
19719
|
};
|
|
19467
19720
|
};
|
|
19468
19721
|
output: {};
|
|
@@ -19827,7 +20080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19827
20080
|
$get: {
|
|
19828
20081
|
input: {
|
|
19829
20082
|
param: {
|
|
19830
|
-
screen: "signup" | "
|
|
20083
|
+
screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19831
20084
|
};
|
|
19832
20085
|
} & {
|
|
19833
20086
|
query: {
|
|
@@ -19843,7 +20096,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19843
20096
|
} | {
|
|
19844
20097
|
input: {
|
|
19845
20098
|
param: {
|
|
19846
|
-
screen: "signup" | "
|
|
20099
|
+
screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19847
20100
|
};
|
|
19848
20101
|
} & {
|
|
19849
20102
|
query: {
|
|
@@ -19859,7 +20112,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19859
20112
|
} | {
|
|
19860
20113
|
input: {
|
|
19861
20114
|
param: {
|
|
19862
|
-
screen: "signup" | "
|
|
20115
|
+
screen: "signup" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19863
20116
|
};
|
|
19864
20117
|
} & {
|
|
19865
20118
|
query: {
|
|
@@ -19879,7 +20132,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19879
20132
|
$post: {
|
|
19880
20133
|
input: {
|
|
19881
20134
|
param: {
|
|
19882
|
-
screen: "signup" | "
|
|
20135
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19883
20136
|
};
|
|
19884
20137
|
} & {
|
|
19885
20138
|
query: {
|
|
@@ -19897,7 +20150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19897
20150
|
} | {
|
|
19898
20151
|
input: {
|
|
19899
20152
|
param: {
|
|
19900
|
-
screen: "signup" | "
|
|
20153
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19901
20154
|
};
|
|
19902
20155
|
} & {
|
|
19903
20156
|
query: {
|
|
@@ -19995,5 +20248,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19995
20248
|
createX509Certificate: typeof createX509Certificate;
|
|
19996
20249
|
};
|
|
19997
20250
|
|
|
19998
|
-
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 };
|
|
19999
|
-
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
|
|
20251
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
20252
|
+
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantOperationExecutorBinding, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
|