authhero 8.9.2 → 8.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +97 -97
- package/dist/authhero.d.ts +299 -209
- package/dist/authhero.mjs +8850 -8686
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +224 -207
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +12 -12
- package/dist/types/routes/management-api/clients.d.ts +9 -9
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +198 -182
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenant-export-import.d.ts +16 -0
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/kv-publish.d.ts +75 -0
- package/dist/types/routes/proxy-control-plane/kv-publish.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/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/strategies/microsoft-entra.d.ts +14 -0
- package/dist/types/strategies/waad.d.ts +14 -0
- package/dist/types/types/IdToken.d.ts +4 -4
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { SamlSigner } from '@authhero/saml/core';
|
|
|
10
10
|
export { HttpSamlSigner, SamlSigner } from '@authhero/saml/core';
|
|
11
11
|
import { Context, Next, Handler, MiddlewareHandler } from 'hono';
|
|
12
12
|
import * as _authhero_proxy from '@authhero/proxy';
|
|
13
|
+
import { ResolvedHost, KvNamespaceWriter } from '@authhero/proxy';
|
|
13
14
|
export { PROXY_RESOLVE_HOST_SCOPE } from '@authhero/proxy';
|
|
14
15
|
import { FC, PropsWithChildren, JSXNode } from 'hono/jsx';
|
|
15
16
|
import * as hono_jsx_jsx_dev_runtime from 'hono/jsx/jsx-dev-runtime';
|
|
@@ -2440,6 +2441,79 @@ interface CreateApplySyncEventsOptions {
|
|
|
2440
2441
|
*/
|
|
2441
2442
|
declare function createApplySyncEvents(options: CreateApplySyncEventsOptions): (events: SyncEvent[]) => Promise<void>;
|
|
2442
2443
|
|
|
2444
|
+
interface KvPublishOptions {
|
|
2445
|
+
/** Custom-domains adapter whose writes should be mirrored to KV. */
|
|
2446
|
+
customDomains: CustomDomainsAdapter;
|
|
2447
|
+
/** Proxy-routes adapter whose writes should be mirrored to KV. */
|
|
2448
|
+
proxyRoutes: ProxyRoutesAdapter;
|
|
2449
|
+
/** KV namespace the resolved host blobs are published to. */
|
|
2450
|
+
kv: KvNamespaceWriter;
|
|
2451
|
+
/**
|
|
2452
|
+
* Cross-tenant host resolver — the same function passed to
|
|
2453
|
+
* `createProxyControlPlaneApp`. Used to recompute the full `ResolvedHost`
|
|
2454
|
+
* blob for a host after any write.
|
|
2455
|
+
*/
|
|
2456
|
+
resolveHost: (host: string) => Promise<ResolvedHost | null>;
|
|
2457
|
+
/** Key prefix; must match the proxy reader. Defaults to the shared default. */
|
|
2458
|
+
keyPrefix?: string;
|
|
2459
|
+
/**
|
|
2460
|
+
* Optional `ctx.waitUntil` so the fire-and-forget KV publish runs to
|
|
2461
|
+
* completion without blocking (or failing) the originating write. When
|
|
2462
|
+
* omitted, the publish is detached with its rejection swallowed.
|
|
2463
|
+
*/
|
|
2464
|
+
waitUntil?: (promise: Promise<unknown>) => void;
|
|
2465
|
+
/** Optional hook invoked when a publish fails. */
|
|
2466
|
+
onError?: (err: unknown, ctx: {
|
|
2467
|
+
host: string;
|
|
2468
|
+
op: string;
|
|
2469
|
+
}) => void;
|
|
2470
|
+
}
|
|
2471
|
+
interface WrappedProxyAdapters {
|
|
2472
|
+
customDomains: CustomDomainsAdapter;
|
|
2473
|
+
proxyRoutes: ProxyRoutesAdapter;
|
|
2474
|
+
}
|
|
2475
|
+
/**
|
|
2476
|
+
* Wrap a control plane's `customDomains` + `proxyRoutes` adapters so every
|
|
2477
|
+
* mutation recomputes the affected host's full `ResolvedHost` blob and
|
|
2478
|
+
* publishes it to a Cloudflare KV namespace (fire-and-forget). The proxy reads
|
|
2479
|
+
* that blob via `createKvProxyAdapter` instead of the two-hop HTTP control
|
|
2480
|
+
* plane.
|
|
2481
|
+
*
|
|
2482
|
+
* The wrapped pair is the single choke-point: pass it to BOTH the management-api
|
|
2483
|
+
* app (direct control-plane writes) AND `createApplySyncEvents` (WFP
|
|
2484
|
+
* `/sync`-applied writes) so KV stays in sync regardless of write origin.
|
|
2485
|
+
*
|
|
2486
|
+
* Publishing never blocks or fails the underlying write — a dropped `KV.put`
|
|
2487
|
+
* causes at-most transient drift, mitigated by the proxy's HTTP fallback on KV
|
|
2488
|
+
* miss and a periodic reconcile (`backfillProxyHostsToKv`).
|
|
2489
|
+
*/
|
|
2490
|
+
declare function wrapProxyAdaptersWithKvPublish(options: KvPublishOptions): WrappedProxyAdapters;
|
|
2491
|
+
interface BackfillProxyHostsOptions {
|
|
2492
|
+
/**
|
|
2493
|
+
* Hosts to (re)publish. The adapter interface exposes no cross-tenant domain
|
|
2494
|
+
* list, so the caller supplies these — typically from a direct DB query over
|
|
2495
|
+
* all custom domains.
|
|
2496
|
+
*/
|
|
2497
|
+
hosts: string[];
|
|
2498
|
+
/** Cross-tenant host resolver (same as `createProxyControlPlaneApp`). */
|
|
2499
|
+
resolveHost: (host: string) => Promise<ResolvedHost | null>;
|
|
2500
|
+
/** KV namespace to publish into. */
|
|
2501
|
+
kv: KvNamespaceWriter;
|
|
2502
|
+
/** Key prefix; must match the proxy reader. Defaults to the shared default. */
|
|
2503
|
+
keyPrefix?: string;
|
|
2504
|
+
}
|
|
2505
|
+
interface BackfillResult {
|
|
2506
|
+
published: number;
|
|
2507
|
+
deleted: number;
|
|
2508
|
+
failed: string[];
|
|
2509
|
+
}
|
|
2510
|
+
/**
|
|
2511
|
+
* Publish (or delete, for hosts that no longer resolve) the resolved blob for
|
|
2512
|
+
* each supplied host into KV. Used for the one-time migration backfill and as
|
|
2513
|
+
* the primitive a periodic reconcile cron calls to correct silent drift.
|
|
2514
|
+
*/
|
|
2515
|
+
declare function backfillProxyHostsToKv(options: BackfillProxyHostsOptions): Promise<BackfillResult>;
|
|
2516
|
+
|
|
2443
2517
|
/**
|
|
2444
2518
|
* Strict issuer equality: parse both `iss` and `expected` as URLs and compare
|
|
2445
2519
|
* the resulting hrefs after stripping any single trailing slash. No host-only
|
|
@@ -2933,8 +3007,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2933
3007
|
$get: {
|
|
2934
3008
|
input: {
|
|
2935
3009
|
query: {
|
|
2936
|
-
include_password_hashes?: "
|
|
2937
|
-
gzip?: "
|
|
3010
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3011
|
+
gzip?: "true" | "false" | undefined;
|
|
2938
3012
|
};
|
|
2939
3013
|
} & {
|
|
2940
3014
|
header: {
|
|
@@ -2944,6 +3018,22 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2944
3018
|
output: Response;
|
|
2945
3019
|
outputFormat: "json";
|
|
2946
3020
|
status: hono_utils_http_status.StatusCode;
|
|
3021
|
+
} | {
|
|
3022
|
+
input: {
|
|
3023
|
+
query: {
|
|
3024
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
3025
|
+
gzip?: "true" | "false" | undefined;
|
|
3026
|
+
};
|
|
3027
|
+
} & {
|
|
3028
|
+
header: {
|
|
3029
|
+
"tenant-id"?: string | undefined;
|
|
3030
|
+
};
|
|
3031
|
+
};
|
|
3032
|
+
output: {
|
|
3033
|
+
message: string;
|
|
3034
|
+
};
|
|
3035
|
+
outputFormat: "json";
|
|
3036
|
+
status: 500;
|
|
2947
3037
|
};
|
|
2948
3038
|
};
|
|
2949
3039
|
} & {
|
|
@@ -2951,7 +3041,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2951
3041
|
$post: {
|
|
2952
3042
|
input: {
|
|
2953
3043
|
query: {
|
|
2954
|
-
include_password_hashes?: "
|
|
3044
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
2955
3045
|
};
|
|
2956
3046
|
} & {
|
|
2957
3047
|
header: {
|
|
@@ -3005,7 +3095,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3005
3095
|
};
|
|
3006
3096
|
} & {
|
|
3007
3097
|
json: {
|
|
3008
|
-
type: "email" | "
|
|
3098
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
3009
3099
|
phone_number?: string | undefined;
|
|
3010
3100
|
totp_secret?: string | undefined;
|
|
3011
3101
|
credential_id?: string | undefined;
|
|
@@ -3145,7 +3235,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3145
3235
|
};
|
|
3146
3236
|
};
|
|
3147
3237
|
output: {
|
|
3148
|
-
name: "email" | "
|
|
3238
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3149
3239
|
enabled: boolean;
|
|
3150
3240
|
trial_expired?: boolean | undefined;
|
|
3151
3241
|
}[];
|
|
@@ -3300,7 +3390,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3300
3390
|
$get: {
|
|
3301
3391
|
input: {
|
|
3302
3392
|
param: {
|
|
3303
|
-
factor_name: "email" | "
|
|
3393
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3304
3394
|
};
|
|
3305
3395
|
} & {
|
|
3306
3396
|
header: {
|
|
@@ -3308,7 +3398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3308
3398
|
};
|
|
3309
3399
|
};
|
|
3310
3400
|
output: {
|
|
3311
|
-
name: "email" | "
|
|
3401
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3312
3402
|
enabled: boolean;
|
|
3313
3403
|
trial_expired?: boolean | undefined;
|
|
3314
3404
|
};
|
|
@@ -3321,7 +3411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3321
3411
|
$put: {
|
|
3322
3412
|
input: {
|
|
3323
3413
|
param: {
|
|
3324
|
-
factor_name: "email" | "
|
|
3414
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3325
3415
|
};
|
|
3326
3416
|
} & {
|
|
3327
3417
|
header: {
|
|
@@ -3333,7 +3423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3333
3423
|
};
|
|
3334
3424
|
};
|
|
3335
3425
|
output: {
|
|
3336
|
-
name: "email" | "
|
|
3426
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3337
3427
|
enabled: boolean;
|
|
3338
3428
|
trial_expired?: boolean | undefined;
|
|
3339
3429
|
};
|
|
@@ -4078,9 +4168,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4078
4168
|
invitee: {
|
|
4079
4169
|
email?: string | undefined;
|
|
4080
4170
|
};
|
|
4171
|
+
id?: string | undefined;
|
|
4081
4172
|
app_metadata?: Record<string, any> | undefined;
|
|
4082
4173
|
user_metadata?: Record<string, any> | undefined;
|
|
4083
|
-
id?: string | undefined;
|
|
4084
4174
|
connection_id?: string | undefined;
|
|
4085
4175
|
roles?: string[] | undefined;
|
|
4086
4176
|
ttl_sec?: number | undefined;
|
|
@@ -4266,8 +4356,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4266
4356
|
};
|
|
4267
4357
|
} & {
|
|
4268
4358
|
json: {
|
|
4269
|
-
assign_membership_on_login?: boolean | undefined;
|
|
4270
4359
|
show_as_button?: boolean | undefined;
|
|
4360
|
+
assign_membership_on_login?: boolean | undefined;
|
|
4271
4361
|
is_signup_enabled?: boolean | undefined;
|
|
4272
4362
|
};
|
|
4273
4363
|
};
|
|
@@ -4933,7 +5023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4933
5023
|
type: "REDIRECT";
|
|
4934
5024
|
action: "REDIRECT_USER";
|
|
4935
5025
|
params: {
|
|
4936
|
-
target: "custom" | "
|
|
5026
|
+
target: "custom" | "change-email" | "account";
|
|
4937
5027
|
custom_url?: string | undefined;
|
|
4938
5028
|
};
|
|
4939
5029
|
alias?: string | undefined;
|
|
@@ -4986,7 +5076,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4986
5076
|
type: "REDIRECT";
|
|
4987
5077
|
action: "REDIRECT_USER";
|
|
4988
5078
|
params: {
|
|
4989
|
-
target: "custom" | "
|
|
5079
|
+
target: "custom" | "change-email" | "account";
|
|
4990
5080
|
custom_url?: string | undefined;
|
|
4991
5081
|
};
|
|
4992
5082
|
alias?: string | undefined;
|
|
@@ -5054,7 +5144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5054
5144
|
type: "REDIRECT";
|
|
5055
5145
|
action: "REDIRECT_USER";
|
|
5056
5146
|
params: {
|
|
5057
|
-
target: "custom" | "
|
|
5147
|
+
target: "custom" | "change-email" | "account";
|
|
5058
5148
|
custom_url?: string | undefined;
|
|
5059
5149
|
};
|
|
5060
5150
|
alias?: string | undefined;
|
|
@@ -5135,7 +5225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5135
5225
|
type: "REDIRECT";
|
|
5136
5226
|
action: "REDIRECT_USER";
|
|
5137
5227
|
params: {
|
|
5138
|
-
target: "custom" | "
|
|
5228
|
+
target: "custom" | "change-email" | "account";
|
|
5139
5229
|
custom_url?: string | undefined;
|
|
5140
5230
|
};
|
|
5141
5231
|
alias?: string | undefined;
|
|
@@ -5183,7 +5273,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5183
5273
|
type: "REDIRECT";
|
|
5184
5274
|
action: "REDIRECT_USER";
|
|
5185
5275
|
params: {
|
|
5186
|
-
target: "custom" | "
|
|
5276
|
+
target: "custom" | "change-email" | "account";
|
|
5187
5277
|
custom_url?: string | undefined;
|
|
5188
5278
|
};
|
|
5189
5279
|
alias?: string | undefined;
|
|
@@ -5243,7 +5333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5243
5333
|
type: "REDIRECT";
|
|
5244
5334
|
action: "REDIRECT_USER";
|
|
5245
5335
|
params: {
|
|
5246
|
-
target: "custom" | "
|
|
5336
|
+
target: "custom" | "change-email" | "account";
|
|
5247
5337
|
custom_url?: string | undefined;
|
|
5248
5338
|
};
|
|
5249
5339
|
alias?: string | undefined;
|
|
@@ -5291,7 +5381,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5291
5381
|
type: "REDIRECT";
|
|
5292
5382
|
action: "REDIRECT_USER";
|
|
5293
5383
|
params: {
|
|
5294
|
-
target: "custom" | "
|
|
5384
|
+
target: "custom" | "change-email" | "account";
|
|
5295
5385
|
custom_url?: string | undefined;
|
|
5296
5386
|
};
|
|
5297
5387
|
alias?: string | undefined;
|
|
@@ -5509,7 +5599,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5509
5599
|
hint?: string | undefined;
|
|
5510
5600
|
messages?: {
|
|
5511
5601
|
text: string;
|
|
5512
|
-
type: "
|
|
5602
|
+
type: "success" | "error" | "info" | "warning";
|
|
5513
5603
|
id?: number | undefined;
|
|
5514
5604
|
}[] | undefined;
|
|
5515
5605
|
required?: boolean | undefined;
|
|
@@ -5527,7 +5617,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5527
5617
|
hint?: string | undefined;
|
|
5528
5618
|
messages?: {
|
|
5529
5619
|
text: string;
|
|
5530
|
-
type: "
|
|
5620
|
+
type: "success" | "error" | "info" | "warning";
|
|
5531
5621
|
id?: number | undefined;
|
|
5532
5622
|
}[] | undefined;
|
|
5533
5623
|
required?: boolean | undefined;
|
|
@@ -5551,7 +5641,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5551
5641
|
hint?: string | undefined;
|
|
5552
5642
|
messages?: {
|
|
5553
5643
|
text: string;
|
|
5554
|
-
type: "
|
|
5644
|
+
type: "success" | "error" | "info" | "warning";
|
|
5555
5645
|
id?: number | undefined;
|
|
5556
5646
|
}[] | undefined;
|
|
5557
5647
|
required?: boolean | undefined;
|
|
@@ -5575,7 +5665,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5575
5665
|
hint?: string | undefined;
|
|
5576
5666
|
messages?: {
|
|
5577
5667
|
text: string;
|
|
5578
|
-
type: "
|
|
5668
|
+
type: "success" | "error" | "info" | "warning";
|
|
5579
5669
|
id?: number | undefined;
|
|
5580
5670
|
}[] | undefined;
|
|
5581
5671
|
required?: boolean | undefined;
|
|
@@ -5599,7 +5689,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5599
5689
|
hint?: string | undefined;
|
|
5600
5690
|
messages?: {
|
|
5601
5691
|
text: string;
|
|
5602
|
-
type: "
|
|
5692
|
+
type: "success" | "error" | "info" | "warning";
|
|
5603
5693
|
id?: number | undefined;
|
|
5604
5694
|
}[] | undefined;
|
|
5605
5695
|
required?: boolean | undefined;
|
|
@@ -5628,7 +5718,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5628
5718
|
hint?: string | undefined;
|
|
5629
5719
|
messages?: {
|
|
5630
5720
|
text: string;
|
|
5631
|
-
type: "
|
|
5721
|
+
type: "success" | "error" | "info" | "warning";
|
|
5632
5722
|
id?: number | undefined;
|
|
5633
5723
|
}[] | undefined;
|
|
5634
5724
|
required?: boolean | undefined;
|
|
@@ -5643,7 +5733,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5643
5733
|
hint?: string | undefined;
|
|
5644
5734
|
messages?: {
|
|
5645
5735
|
text: string;
|
|
5646
|
-
type: "
|
|
5736
|
+
type: "success" | "error" | "info" | "warning";
|
|
5647
5737
|
id?: number | undefined;
|
|
5648
5738
|
}[] | undefined;
|
|
5649
5739
|
required?: boolean | undefined;
|
|
@@ -5664,7 +5754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5664
5754
|
hint?: string | undefined;
|
|
5665
5755
|
messages?: {
|
|
5666
5756
|
text: string;
|
|
5667
|
-
type: "
|
|
5757
|
+
type: "success" | "error" | "info" | "warning";
|
|
5668
5758
|
id?: number | undefined;
|
|
5669
5759
|
}[] | undefined;
|
|
5670
5760
|
required?: boolean | undefined;
|
|
@@ -5689,7 +5779,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5689
5779
|
hint?: string | undefined;
|
|
5690
5780
|
messages?: {
|
|
5691
5781
|
text: string;
|
|
5692
|
-
type: "
|
|
5782
|
+
type: "success" | "error" | "info" | "warning";
|
|
5693
5783
|
id?: number | undefined;
|
|
5694
5784
|
}[] | undefined;
|
|
5695
5785
|
required?: boolean | undefined;
|
|
@@ -5708,7 +5798,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5708
5798
|
hint?: string | undefined;
|
|
5709
5799
|
messages?: {
|
|
5710
5800
|
text: string;
|
|
5711
|
-
type: "
|
|
5801
|
+
type: "success" | "error" | "info" | "warning";
|
|
5712
5802
|
id?: number | undefined;
|
|
5713
5803
|
}[] | undefined;
|
|
5714
5804
|
required?: boolean | undefined;
|
|
@@ -5728,7 +5818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5728
5818
|
hint?: string | undefined;
|
|
5729
5819
|
messages?: {
|
|
5730
5820
|
text: string;
|
|
5731
|
-
type: "
|
|
5821
|
+
type: "success" | "error" | "info" | "warning";
|
|
5732
5822
|
id?: number | undefined;
|
|
5733
5823
|
}[] | undefined;
|
|
5734
5824
|
required?: boolean | undefined;
|
|
@@ -5747,7 +5837,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5747
5837
|
hint?: string | undefined;
|
|
5748
5838
|
messages?: {
|
|
5749
5839
|
text: string;
|
|
5750
|
-
type: "
|
|
5840
|
+
type: "success" | "error" | "info" | "warning";
|
|
5751
5841
|
id?: number | undefined;
|
|
5752
5842
|
}[] | undefined;
|
|
5753
5843
|
required?: boolean | undefined;
|
|
@@ -5769,7 +5859,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5769
5859
|
hint?: string | undefined;
|
|
5770
5860
|
messages?: {
|
|
5771
5861
|
text: string;
|
|
5772
|
-
type: "
|
|
5862
|
+
type: "success" | "error" | "info" | "warning";
|
|
5773
5863
|
id?: number | undefined;
|
|
5774
5864
|
}[] | undefined;
|
|
5775
5865
|
required?: boolean | undefined;
|
|
@@ -5791,7 +5881,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5791
5881
|
hint?: string | undefined;
|
|
5792
5882
|
messages?: {
|
|
5793
5883
|
text: string;
|
|
5794
|
-
type: "
|
|
5884
|
+
type: "success" | "error" | "info" | "warning";
|
|
5795
5885
|
id?: number | undefined;
|
|
5796
5886
|
}[] | undefined;
|
|
5797
5887
|
required?: boolean | undefined;
|
|
@@ -5810,7 +5900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5810
5900
|
hint?: string | undefined;
|
|
5811
5901
|
messages?: {
|
|
5812
5902
|
text: string;
|
|
5813
|
-
type: "
|
|
5903
|
+
type: "success" | "error" | "info" | "warning";
|
|
5814
5904
|
id?: number | undefined;
|
|
5815
5905
|
}[] | undefined;
|
|
5816
5906
|
required?: boolean | undefined;
|
|
@@ -5835,7 +5925,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5835
5925
|
hint?: string | undefined;
|
|
5836
5926
|
messages?: {
|
|
5837
5927
|
text: string;
|
|
5838
|
-
type: "
|
|
5928
|
+
type: "success" | "error" | "info" | "warning";
|
|
5839
5929
|
id?: number | undefined;
|
|
5840
5930
|
}[] | undefined;
|
|
5841
5931
|
required?: boolean | undefined;
|
|
@@ -5856,7 +5946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5856
5946
|
hint?: string | undefined;
|
|
5857
5947
|
messages?: {
|
|
5858
5948
|
text: string;
|
|
5859
|
-
type: "
|
|
5949
|
+
type: "success" | "error" | "info" | "warning";
|
|
5860
5950
|
id?: number | undefined;
|
|
5861
5951
|
}[] | undefined;
|
|
5862
5952
|
required?: boolean | undefined;
|
|
@@ -5877,7 +5967,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5877
5967
|
hint?: string | undefined;
|
|
5878
5968
|
messages?: {
|
|
5879
5969
|
text: string;
|
|
5880
|
-
type: "
|
|
5970
|
+
type: "success" | "error" | "info" | "warning";
|
|
5881
5971
|
id?: number | undefined;
|
|
5882
5972
|
}[] | undefined;
|
|
5883
5973
|
required?: boolean | undefined;
|
|
@@ -6110,7 +6200,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6110
6200
|
hint?: string | undefined;
|
|
6111
6201
|
messages?: {
|
|
6112
6202
|
text: string;
|
|
6113
|
-
type: "
|
|
6203
|
+
type: "success" | "error" | "info" | "warning";
|
|
6114
6204
|
id?: number | undefined;
|
|
6115
6205
|
}[] | undefined;
|
|
6116
6206
|
required?: boolean | undefined;
|
|
@@ -6128,7 +6218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6128
6218
|
hint?: string | undefined;
|
|
6129
6219
|
messages?: {
|
|
6130
6220
|
text: string;
|
|
6131
|
-
type: "
|
|
6221
|
+
type: "success" | "error" | "info" | "warning";
|
|
6132
6222
|
id?: number | undefined;
|
|
6133
6223
|
}[] | undefined;
|
|
6134
6224
|
required?: boolean | undefined;
|
|
@@ -6152,7 +6242,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6152
6242
|
hint?: string | undefined;
|
|
6153
6243
|
messages?: {
|
|
6154
6244
|
text: string;
|
|
6155
|
-
type: "
|
|
6245
|
+
type: "success" | "error" | "info" | "warning";
|
|
6156
6246
|
id?: number | undefined;
|
|
6157
6247
|
}[] | undefined;
|
|
6158
6248
|
required?: boolean | undefined;
|
|
@@ -6176,7 +6266,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6176
6266
|
hint?: string | undefined;
|
|
6177
6267
|
messages?: {
|
|
6178
6268
|
text: string;
|
|
6179
|
-
type: "
|
|
6269
|
+
type: "success" | "error" | "info" | "warning";
|
|
6180
6270
|
id?: number | undefined;
|
|
6181
6271
|
}[] | undefined;
|
|
6182
6272
|
required?: boolean | undefined;
|
|
@@ -6200,7 +6290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6200
6290
|
hint?: string | undefined;
|
|
6201
6291
|
messages?: {
|
|
6202
6292
|
text: string;
|
|
6203
|
-
type: "
|
|
6293
|
+
type: "success" | "error" | "info" | "warning";
|
|
6204
6294
|
id?: number | undefined;
|
|
6205
6295
|
}[] | undefined;
|
|
6206
6296
|
required?: boolean | undefined;
|
|
@@ -6229,7 +6319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6229
6319
|
hint?: string | undefined;
|
|
6230
6320
|
messages?: {
|
|
6231
6321
|
text: string;
|
|
6232
|
-
type: "
|
|
6322
|
+
type: "success" | "error" | "info" | "warning";
|
|
6233
6323
|
id?: number | undefined;
|
|
6234
6324
|
}[] | undefined;
|
|
6235
6325
|
required?: boolean | undefined;
|
|
@@ -6244,7 +6334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6244
6334
|
hint?: string | undefined;
|
|
6245
6335
|
messages?: {
|
|
6246
6336
|
text: string;
|
|
6247
|
-
type: "
|
|
6337
|
+
type: "success" | "error" | "info" | "warning";
|
|
6248
6338
|
id?: number | undefined;
|
|
6249
6339
|
}[] | undefined;
|
|
6250
6340
|
required?: boolean | undefined;
|
|
@@ -6265,7 +6355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6265
6355
|
hint?: string | undefined;
|
|
6266
6356
|
messages?: {
|
|
6267
6357
|
text: string;
|
|
6268
|
-
type: "
|
|
6358
|
+
type: "success" | "error" | "info" | "warning";
|
|
6269
6359
|
id?: number | undefined;
|
|
6270
6360
|
}[] | undefined;
|
|
6271
6361
|
required?: boolean | undefined;
|
|
@@ -6290,7 +6380,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6290
6380
|
hint?: string | undefined;
|
|
6291
6381
|
messages?: {
|
|
6292
6382
|
text: string;
|
|
6293
|
-
type: "
|
|
6383
|
+
type: "success" | "error" | "info" | "warning";
|
|
6294
6384
|
id?: number | undefined;
|
|
6295
6385
|
}[] | undefined;
|
|
6296
6386
|
required?: boolean | undefined;
|
|
@@ -6309,7 +6399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6309
6399
|
hint?: string | undefined;
|
|
6310
6400
|
messages?: {
|
|
6311
6401
|
text: string;
|
|
6312
|
-
type: "
|
|
6402
|
+
type: "success" | "error" | "info" | "warning";
|
|
6313
6403
|
id?: number | undefined;
|
|
6314
6404
|
}[] | undefined;
|
|
6315
6405
|
required?: boolean | undefined;
|
|
@@ -6329,7 +6419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6329
6419
|
hint?: string | undefined;
|
|
6330
6420
|
messages?: {
|
|
6331
6421
|
text: string;
|
|
6332
|
-
type: "
|
|
6422
|
+
type: "success" | "error" | "info" | "warning";
|
|
6333
6423
|
id?: number | undefined;
|
|
6334
6424
|
}[] | undefined;
|
|
6335
6425
|
required?: boolean | undefined;
|
|
@@ -6348,7 +6438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6348
6438
|
hint?: string | undefined;
|
|
6349
6439
|
messages?: {
|
|
6350
6440
|
text: string;
|
|
6351
|
-
type: "
|
|
6441
|
+
type: "success" | "error" | "info" | "warning";
|
|
6352
6442
|
id?: number | undefined;
|
|
6353
6443
|
}[] | undefined;
|
|
6354
6444
|
required?: boolean | undefined;
|
|
@@ -6370,7 +6460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6370
6460
|
hint?: string | undefined;
|
|
6371
6461
|
messages?: {
|
|
6372
6462
|
text: string;
|
|
6373
|
-
type: "
|
|
6463
|
+
type: "success" | "error" | "info" | "warning";
|
|
6374
6464
|
id?: number | undefined;
|
|
6375
6465
|
}[] | undefined;
|
|
6376
6466
|
required?: boolean | undefined;
|
|
@@ -6392,7 +6482,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6392
6482
|
hint?: string | undefined;
|
|
6393
6483
|
messages?: {
|
|
6394
6484
|
text: string;
|
|
6395
|
-
type: "
|
|
6485
|
+
type: "success" | "error" | "info" | "warning";
|
|
6396
6486
|
id?: number | undefined;
|
|
6397
6487
|
}[] | undefined;
|
|
6398
6488
|
required?: boolean | undefined;
|
|
@@ -6411,7 +6501,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6411
6501
|
hint?: string | undefined;
|
|
6412
6502
|
messages?: {
|
|
6413
6503
|
text: string;
|
|
6414
|
-
type: "
|
|
6504
|
+
type: "success" | "error" | "info" | "warning";
|
|
6415
6505
|
id?: number | undefined;
|
|
6416
6506
|
}[] | undefined;
|
|
6417
6507
|
required?: boolean | undefined;
|
|
@@ -6436,7 +6526,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6436
6526
|
hint?: string | undefined;
|
|
6437
6527
|
messages?: {
|
|
6438
6528
|
text: string;
|
|
6439
|
-
type: "
|
|
6529
|
+
type: "success" | "error" | "info" | "warning";
|
|
6440
6530
|
id?: number | undefined;
|
|
6441
6531
|
}[] | undefined;
|
|
6442
6532
|
required?: boolean | undefined;
|
|
@@ -6457,7 +6547,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6457
6547
|
hint?: string | undefined;
|
|
6458
6548
|
messages?: {
|
|
6459
6549
|
text: string;
|
|
6460
|
-
type: "
|
|
6550
|
+
type: "success" | "error" | "info" | "warning";
|
|
6461
6551
|
id?: number | undefined;
|
|
6462
6552
|
}[] | undefined;
|
|
6463
6553
|
required?: boolean | undefined;
|
|
@@ -6478,7 +6568,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6478
6568
|
hint?: string | undefined;
|
|
6479
6569
|
messages?: {
|
|
6480
6570
|
text: string;
|
|
6481
|
-
type: "
|
|
6571
|
+
type: "success" | "error" | "info" | "warning";
|
|
6482
6572
|
id?: number | undefined;
|
|
6483
6573
|
}[] | undefined;
|
|
6484
6574
|
required?: boolean | undefined;
|
|
@@ -6726,7 +6816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6726
6816
|
hint?: string | undefined;
|
|
6727
6817
|
messages?: {
|
|
6728
6818
|
text: string;
|
|
6729
|
-
type: "
|
|
6819
|
+
type: "success" | "error" | "info" | "warning";
|
|
6730
6820
|
id?: number | undefined;
|
|
6731
6821
|
}[] | undefined;
|
|
6732
6822
|
required?: boolean | undefined;
|
|
@@ -6744,7 +6834,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6744
6834
|
hint?: string | undefined;
|
|
6745
6835
|
messages?: {
|
|
6746
6836
|
text: string;
|
|
6747
|
-
type: "
|
|
6837
|
+
type: "success" | "error" | "info" | "warning";
|
|
6748
6838
|
id?: number | undefined;
|
|
6749
6839
|
}[] | undefined;
|
|
6750
6840
|
required?: boolean | undefined;
|
|
@@ -6768,7 +6858,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6768
6858
|
hint?: string | undefined;
|
|
6769
6859
|
messages?: {
|
|
6770
6860
|
text: string;
|
|
6771
|
-
type: "
|
|
6861
|
+
type: "success" | "error" | "info" | "warning";
|
|
6772
6862
|
id?: number | undefined;
|
|
6773
6863
|
}[] | undefined;
|
|
6774
6864
|
required?: boolean | undefined;
|
|
@@ -6792,7 +6882,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6792
6882
|
hint?: string | undefined;
|
|
6793
6883
|
messages?: {
|
|
6794
6884
|
text: string;
|
|
6795
|
-
type: "
|
|
6885
|
+
type: "success" | "error" | "info" | "warning";
|
|
6796
6886
|
id?: number | undefined;
|
|
6797
6887
|
}[] | undefined;
|
|
6798
6888
|
required?: boolean | undefined;
|
|
@@ -6816,7 +6906,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6816
6906
|
hint?: string | undefined;
|
|
6817
6907
|
messages?: {
|
|
6818
6908
|
text: string;
|
|
6819
|
-
type: "
|
|
6909
|
+
type: "success" | "error" | "info" | "warning";
|
|
6820
6910
|
id?: number | undefined;
|
|
6821
6911
|
}[] | undefined;
|
|
6822
6912
|
required?: boolean | undefined;
|
|
@@ -6845,7 +6935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6845
6935
|
hint?: string | undefined;
|
|
6846
6936
|
messages?: {
|
|
6847
6937
|
text: string;
|
|
6848
|
-
type: "
|
|
6938
|
+
type: "success" | "error" | "info" | "warning";
|
|
6849
6939
|
id?: number | undefined;
|
|
6850
6940
|
}[] | undefined;
|
|
6851
6941
|
required?: boolean | undefined;
|
|
@@ -6860,7 +6950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6860
6950
|
hint?: string | undefined;
|
|
6861
6951
|
messages?: {
|
|
6862
6952
|
text: string;
|
|
6863
|
-
type: "
|
|
6953
|
+
type: "success" | "error" | "info" | "warning";
|
|
6864
6954
|
id?: number | undefined;
|
|
6865
6955
|
}[] | undefined;
|
|
6866
6956
|
required?: boolean | undefined;
|
|
@@ -6881,7 +6971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6881
6971
|
hint?: string | undefined;
|
|
6882
6972
|
messages?: {
|
|
6883
6973
|
text: string;
|
|
6884
|
-
type: "
|
|
6974
|
+
type: "success" | "error" | "info" | "warning";
|
|
6885
6975
|
id?: number | undefined;
|
|
6886
6976
|
}[] | undefined;
|
|
6887
6977
|
required?: boolean | undefined;
|
|
@@ -6906,7 +6996,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6906
6996
|
hint?: string | undefined;
|
|
6907
6997
|
messages?: {
|
|
6908
6998
|
text: string;
|
|
6909
|
-
type: "
|
|
6999
|
+
type: "success" | "error" | "info" | "warning";
|
|
6910
7000
|
id?: number | undefined;
|
|
6911
7001
|
}[] | undefined;
|
|
6912
7002
|
required?: boolean | undefined;
|
|
@@ -6925,7 +7015,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6925
7015
|
hint?: string | undefined;
|
|
6926
7016
|
messages?: {
|
|
6927
7017
|
text: string;
|
|
6928
|
-
type: "
|
|
7018
|
+
type: "success" | "error" | "info" | "warning";
|
|
6929
7019
|
id?: number | undefined;
|
|
6930
7020
|
}[] | undefined;
|
|
6931
7021
|
required?: boolean | undefined;
|
|
@@ -6945,7 +7035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6945
7035
|
hint?: string | undefined;
|
|
6946
7036
|
messages?: {
|
|
6947
7037
|
text: string;
|
|
6948
|
-
type: "
|
|
7038
|
+
type: "success" | "error" | "info" | "warning";
|
|
6949
7039
|
id?: number | undefined;
|
|
6950
7040
|
}[] | undefined;
|
|
6951
7041
|
required?: boolean | undefined;
|
|
@@ -6964,7 +7054,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6964
7054
|
hint?: string | undefined;
|
|
6965
7055
|
messages?: {
|
|
6966
7056
|
text: string;
|
|
6967
|
-
type: "
|
|
7057
|
+
type: "success" | "error" | "info" | "warning";
|
|
6968
7058
|
id?: number | undefined;
|
|
6969
7059
|
}[] | undefined;
|
|
6970
7060
|
required?: boolean | undefined;
|
|
@@ -6986,7 +7076,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6986
7076
|
hint?: string | undefined;
|
|
6987
7077
|
messages?: {
|
|
6988
7078
|
text: string;
|
|
6989
|
-
type: "
|
|
7079
|
+
type: "success" | "error" | "info" | "warning";
|
|
6990
7080
|
id?: number | undefined;
|
|
6991
7081
|
}[] | undefined;
|
|
6992
7082
|
required?: boolean | undefined;
|
|
@@ -7008,7 +7098,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7008
7098
|
hint?: string | undefined;
|
|
7009
7099
|
messages?: {
|
|
7010
7100
|
text: string;
|
|
7011
|
-
type: "
|
|
7101
|
+
type: "success" | "error" | "info" | "warning";
|
|
7012
7102
|
id?: number | undefined;
|
|
7013
7103
|
}[] | undefined;
|
|
7014
7104
|
required?: boolean | undefined;
|
|
@@ -7027,7 +7117,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7027
7117
|
hint?: string | undefined;
|
|
7028
7118
|
messages?: {
|
|
7029
7119
|
text: string;
|
|
7030
|
-
type: "
|
|
7120
|
+
type: "success" | "error" | "info" | "warning";
|
|
7031
7121
|
id?: number | undefined;
|
|
7032
7122
|
}[] | undefined;
|
|
7033
7123
|
required?: boolean | undefined;
|
|
@@ -7052,7 +7142,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7052
7142
|
hint?: string | undefined;
|
|
7053
7143
|
messages?: {
|
|
7054
7144
|
text: string;
|
|
7055
|
-
type: "
|
|
7145
|
+
type: "success" | "error" | "info" | "warning";
|
|
7056
7146
|
id?: number | undefined;
|
|
7057
7147
|
}[] | undefined;
|
|
7058
7148
|
required?: boolean | undefined;
|
|
@@ -7073,7 +7163,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7073
7163
|
hint?: string | undefined;
|
|
7074
7164
|
messages?: {
|
|
7075
7165
|
text: string;
|
|
7076
|
-
type: "
|
|
7166
|
+
type: "success" | "error" | "info" | "warning";
|
|
7077
7167
|
id?: number | undefined;
|
|
7078
7168
|
}[] | undefined;
|
|
7079
7169
|
required?: boolean | undefined;
|
|
@@ -7094,7 +7184,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7094
7184
|
hint?: string | undefined;
|
|
7095
7185
|
messages?: {
|
|
7096
7186
|
text: string;
|
|
7097
|
-
type: "
|
|
7187
|
+
type: "success" | "error" | "info" | "warning";
|
|
7098
7188
|
id?: number | undefined;
|
|
7099
7189
|
}[] | undefined;
|
|
7100
7190
|
required?: boolean | undefined;
|
|
@@ -7348,7 +7438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7348
7438
|
hint?: string | undefined;
|
|
7349
7439
|
messages?: {
|
|
7350
7440
|
text: string;
|
|
7351
|
-
type: "
|
|
7441
|
+
type: "success" | "error" | "info" | "warning";
|
|
7352
7442
|
id?: number | undefined;
|
|
7353
7443
|
}[] | undefined;
|
|
7354
7444
|
required?: boolean | undefined;
|
|
@@ -7366,7 +7456,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7366
7456
|
hint?: string | undefined;
|
|
7367
7457
|
messages?: {
|
|
7368
7458
|
text: string;
|
|
7369
|
-
type: "
|
|
7459
|
+
type: "success" | "error" | "info" | "warning";
|
|
7370
7460
|
id?: number | undefined;
|
|
7371
7461
|
}[] | undefined;
|
|
7372
7462
|
required?: boolean | undefined;
|
|
@@ -7390,7 +7480,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7390
7480
|
hint?: string | undefined;
|
|
7391
7481
|
messages?: {
|
|
7392
7482
|
text: string;
|
|
7393
|
-
type: "
|
|
7483
|
+
type: "success" | "error" | "info" | "warning";
|
|
7394
7484
|
id?: number | undefined;
|
|
7395
7485
|
}[] | undefined;
|
|
7396
7486
|
required?: boolean | undefined;
|
|
@@ -7414,7 +7504,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7414
7504
|
hint?: string | undefined;
|
|
7415
7505
|
messages?: {
|
|
7416
7506
|
text: string;
|
|
7417
|
-
type: "
|
|
7507
|
+
type: "success" | "error" | "info" | "warning";
|
|
7418
7508
|
id?: number | undefined;
|
|
7419
7509
|
}[] | undefined;
|
|
7420
7510
|
required?: boolean | undefined;
|
|
@@ -7438,7 +7528,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7438
7528
|
hint?: string | undefined;
|
|
7439
7529
|
messages?: {
|
|
7440
7530
|
text: string;
|
|
7441
|
-
type: "
|
|
7531
|
+
type: "success" | "error" | "info" | "warning";
|
|
7442
7532
|
id?: number | undefined;
|
|
7443
7533
|
}[] | undefined;
|
|
7444
7534
|
required?: boolean | undefined;
|
|
@@ -7463,7 +7553,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7463
7553
|
hint?: string | undefined;
|
|
7464
7554
|
messages?: {
|
|
7465
7555
|
text: string;
|
|
7466
|
-
type: "
|
|
7556
|
+
type: "success" | "error" | "info" | "warning";
|
|
7467
7557
|
id?: number | undefined;
|
|
7468
7558
|
}[] | undefined;
|
|
7469
7559
|
required?: boolean | undefined;
|
|
@@ -7478,7 +7568,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7478
7568
|
hint?: string | undefined;
|
|
7479
7569
|
messages?: {
|
|
7480
7570
|
text: string;
|
|
7481
|
-
type: "
|
|
7571
|
+
type: "success" | "error" | "info" | "warning";
|
|
7482
7572
|
id?: number | undefined;
|
|
7483
7573
|
}[] | undefined;
|
|
7484
7574
|
required?: boolean | undefined;
|
|
@@ -7499,7 +7589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7499
7589
|
hint?: string | undefined;
|
|
7500
7590
|
messages?: {
|
|
7501
7591
|
text: string;
|
|
7502
|
-
type: "
|
|
7592
|
+
type: "success" | "error" | "info" | "warning";
|
|
7503
7593
|
id?: number | undefined;
|
|
7504
7594
|
}[] | undefined;
|
|
7505
7595
|
required?: boolean | undefined;
|
|
@@ -7524,7 +7614,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7524
7614
|
hint?: string | undefined;
|
|
7525
7615
|
messages?: {
|
|
7526
7616
|
text: string;
|
|
7527
|
-
type: "
|
|
7617
|
+
type: "success" | "error" | "info" | "warning";
|
|
7528
7618
|
id?: number | undefined;
|
|
7529
7619
|
}[] | undefined;
|
|
7530
7620
|
required?: boolean | undefined;
|
|
@@ -7543,7 +7633,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7543
7633
|
hint?: string | undefined;
|
|
7544
7634
|
messages?: {
|
|
7545
7635
|
text: string;
|
|
7546
|
-
type: "
|
|
7636
|
+
type: "success" | "error" | "info" | "warning";
|
|
7547
7637
|
id?: number | undefined;
|
|
7548
7638
|
}[] | undefined;
|
|
7549
7639
|
required?: boolean | undefined;
|
|
@@ -7563,7 +7653,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7563
7653
|
hint?: string | undefined;
|
|
7564
7654
|
messages?: {
|
|
7565
7655
|
text: string;
|
|
7566
|
-
type: "
|
|
7656
|
+
type: "success" | "error" | "info" | "warning";
|
|
7567
7657
|
id?: number | undefined;
|
|
7568
7658
|
}[] | undefined;
|
|
7569
7659
|
required?: boolean | undefined;
|
|
@@ -7582,7 +7672,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7582
7672
|
hint?: string | undefined;
|
|
7583
7673
|
messages?: {
|
|
7584
7674
|
text: string;
|
|
7585
|
-
type: "
|
|
7675
|
+
type: "success" | "error" | "info" | "warning";
|
|
7586
7676
|
id?: number | undefined;
|
|
7587
7677
|
}[] | undefined;
|
|
7588
7678
|
required?: boolean | undefined;
|
|
@@ -7604,7 +7694,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7604
7694
|
hint?: string | undefined;
|
|
7605
7695
|
messages?: {
|
|
7606
7696
|
text: string;
|
|
7607
|
-
type: "
|
|
7697
|
+
type: "success" | "error" | "info" | "warning";
|
|
7608
7698
|
id?: number | undefined;
|
|
7609
7699
|
}[] | undefined;
|
|
7610
7700
|
required?: boolean | undefined;
|
|
@@ -7626,7 +7716,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7626
7716
|
hint?: string | undefined;
|
|
7627
7717
|
messages?: {
|
|
7628
7718
|
text: string;
|
|
7629
|
-
type: "
|
|
7719
|
+
type: "success" | "error" | "info" | "warning";
|
|
7630
7720
|
id?: number | undefined;
|
|
7631
7721
|
}[] | undefined;
|
|
7632
7722
|
required?: boolean | undefined;
|
|
@@ -7645,7 +7735,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7645
7735
|
hint?: string | undefined;
|
|
7646
7736
|
messages?: {
|
|
7647
7737
|
text: string;
|
|
7648
|
-
type: "
|
|
7738
|
+
type: "success" | "error" | "info" | "warning";
|
|
7649
7739
|
id?: number | undefined;
|
|
7650
7740
|
}[] | undefined;
|
|
7651
7741
|
required?: boolean | undefined;
|
|
@@ -7670,7 +7760,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7670
7760
|
hint?: string | undefined;
|
|
7671
7761
|
messages?: {
|
|
7672
7762
|
text: string;
|
|
7673
|
-
type: "
|
|
7763
|
+
type: "success" | "error" | "info" | "warning";
|
|
7674
7764
|
id?: number | undefined;
|
|
7675
7765
|
}[] | undefined;
|
|
7676
7766
|
required?: boolean | undefined;
|
|
@@ -7691,7 +7781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7691
7781
|
hint?: string | undefined;
|
|
7692
7782
|
messages?: {
|
|
7693
7783
|
text: string;
|
|
7694
|
-
type: "
|
|
7784
|
+
type: "success" | "error" | "info" | "warning";
|
|
7695
7785
|
id?: number | undefined;
|
|
7696
7786
|
}[] | undefined;
|
|
7697
7787
|
required?: boolean | undefined;
|
|
@@ -7712,7 +7802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7712
7802
|
hint?: string | undefined;
|
|
7713
7803
|
messages?: {
|
|
7714
7804
|
text: string;
|
|
7715
|
-
type: "
|
|
7805
|
+
type: "success" | "error" | "info" | "warning";
|
|
7716
7806
|
id?: number | undefined;
|
|
7717
7807
|
}[] | undefined;
|
|
7718
7808
|
required?: boolean | undefined;
|
|
@@ -7943,7 +8033,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7943
8033
|
hint?: string | undefined;
|
|
7944
8034
|
messages?: {
|
|
7945
8035
|
text: string;
|
|
7946
|
-
type: "
|
|
8036
|
+
type: "success" | "error" | "info" | "warning";
|
|
7947
8037
|
id?: number | undefined;
|
|
7948
8038
|
}[] | undefined;
|
|
7949
8039
|
required?: boolean | undefined;
|
|
@@ -7961,7 +8051,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7961
8051
|
hint?: string | undefined;
|
|
7962
8052
|
messages?: {
|
|
7963
8053
|
text: string;
|
|
7964
|
-
type: "
|
|
8054
|
+
type: "success" | "error" | "info" | "warning";
|
|
7965
8055
|
id?: number | undefined;
|
|
7966
8056
|
}[] | undefined;
|
|
7967
8057
|
required?: boolean | undefined;
|
|
@@ -7985,7 +8075,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7985
8075
|
hint?: string | undefined;
|
|
7986
8076
|
messages?: {
|
|
7987
8077
|
text: string;
|
|
7988
|
-
type: "
|
|
8078
|
+
type: "success" | "error" | "info" | "warning";
|
|
7989
8079
|
id?: number | undefined;
|
|
7990
8080
|
}[] | undefined;
|
|
7991
8081
|
required?: boolean | undefined;
|
|
@@ -8009,7 +8099,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8009
8099
|
hint?: string | undefined;
|
|
8010
8100
|
messages?: {
|
|
8011
8101
|
text: string;
|
|
8012
|
-
type: "
|
|
8102
|
+
type: "success" | "error" | "info" | "warning";
|
|
8013
8103
|
id?: number | undefined;
|
|
8014
8104
|
}[] | undefined;
|
|
8015
8105
|
required?: boolean | undefined;
|
|
@@ -8033,7 +8123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8033
8123
|
hint?: string | undefined;
|
|
8034
8124
|
messages?: {
|
|
8035
8125
|
text: string;
|
|
8036
|
-
type: "
|
|
8126
|
+
type: "success" | "error" | "info" | "warning";
|
|
8037
8127
|
id?: number | undefined;
|
|
8038
8128
|
}[] | undefined;
|
|
8039
8129
|
required?: boolean | undefined;
|
|
@@ -8062,7 +8152,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8062
8152
|
hint?: string | undefined;
|
|
8063
8153
|
messages?: {
|
|
8064
8154
|
text: string;
|
|
8065
|
-
type: "
|
|
8155
|
+
type: "success" | "error" | "info" | "warning";
|
|
8066
8156
|
id?: number | undefined;
|
|
8067
8157
|
}[] | undefined;
|
|
8068
8158
|
required?: boolean | undefined;
|
|
@@ -8077,7 +8167,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8077
8167
|
hint?: string | undefined;
|
|
8078
8168
|
messages?: {
|
|
8079
8169
|
text: string;
|
|
8080
|
-
type: "
|
|
8170
|
+
type: "success" | "error" | "info" | "warning";
|
|
8081
8171
|
id?: number | undefined;
|
|
8082
8172
|
}[] | undefined;
|
|
8083
8173
|
required?: boolean | undefined;
|
|
@@ -8098,7 +8188,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8098
8188
|
hint?: string | undefined;
|
|
8099
8189
|
messages?: {
|
|
8100
8190
|
text: string;
|
|
8101
|
-
type: "
|
|
8191
|
+
type: "success" | "error" | "info" | "warning";
|
|
8102
8192
|
id?: number | undefined;
|
|
8103
8193
|
}[] | undefined;
|
|
8104
8194
|
required?: boolean | undefined;
|
|
@@ -8123,7 +8213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8123
8213
|
hint?: string | undefined;
|
|
8124
8214
|
messages?: {
|
|
8125
8215
|
text: string;
|
|
8126
|
-
type: "
|
|
8216
|
+
type: "success" | "error" | "info" | "warning";
|
|
8127
8217
|
id?: number | undefined;
|
|
8128
8218
|
}[] | undefined;
|
|
8129
8219
|
required?: boolean | undefined;
|
|
@@ -8142,7 +8232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8142
8232
|
hint?: string | undefined;
|
|
8143
8233
|
messages?: {
|
|
8144
8234
|
text: string;
|
|
8145
|
-
type: "
|
|
8235
|
+
type: "success" | "error" | "info" | "warning";
|
|
8146
8236
|
id?: number | undefined;
|
|
8147
8237
|
}[] | undefined;
|
|
8148
8238
|
required?: boolean | undefined;
|
|
@@ -8162,7 +8252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8162
8252
|
hint?: string | undefined;
|
|
8163
8253
|
messages?: {
|
|
8164
8254
|
text: string;
|
|
8165
|
-
type: "
|
|
8255
|
+
type: "success" | "error" | "info" | "warning";
|
|
8166
8256
|
id?: number | undefined;
|
|
8167
8257
|
}[] | undefined;
|
|
8168
8258
|
required?: boolean | undefined;
|
|
@@ -8181,7 +8271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8181
8271
|
hint?: string | undefined;
|
|
8182
8272
|
messages?: {
|
|
8183
8273
|
text: string;
|
|
8184
|
-
type: "
|
|
8274
|
+
type: "success" | "error" | "info" | "warning";
|
|
8185
8275
|
id?: number | undefined;
|
|
8186
8276
|
}[] | undefined;
|
|
8187
8277
|
required?: boolean | undefined;
|
|
@@ -8203,7 +8293,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8203
8293
|
hint?: string | undefined;
|
|
8204
8294
|
messages?: {
|
|
8205
8295
|
text: string;
|
|
8206
|
-
type: "
|
|
8296
|
+
type: "success" | "error" | "info" | "warning";
|
|
8207
8297
|
id?: number | undefined;
|
|
8208
8298
|
}[] | undefined;
|
|
8209
8299
|
required?: boolean | undefined;
|
|
@@ -8225,7 +8315,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8225
8315
|
hint?: string | undefined;
|
|
8226
8316
|
messages?: {
|
|
8227
8317
|
text: string;
|
|
8228
|
-
type: "
|
|
8318
|
+
type: "success" | "error" | "info" | "warning";
|
|
8229
8319
|
id?: number | undefined;
|
|
8230
8320
|
}[] | undefined;
|
|
8231
8321
|
required?: boolean | undefined;
|
|
@@ -8244,7 +8334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8244
8334
|
hint?: string | undefined;
|
|
8245
8335
|
messages?: {
|
|
8246
8336
|
text: string;
|
|
8247
|
-
type: "
|
|
8337
|
+
type: "success" | "error" | "info" | "warning";
|
|
8248
8338
|
id?: number | undefined;
|
|
8249
8339
|
}[] | undefined;
|
|
8250
8340
|
required?: boolean | undefined;
|
|
@@ -8269,7 +8359,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8269
8359
|
hint?: string | undefined;
|
|
8270
8360
|
messages?: {
|
|
8271
8361
|
text: string;
|
|
8272
|
-
type: "
|
|
8362
|
+
type: "success" | "error" | "info" | "warning";
|
|
8273
8363
|
id?: number | undefined;
|
|
8274
8364
|
}[] | undefined;
|
|
8275
8365
|
required?: boolean | undefined;
|
|
@@ -8290,7 +8380,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8290
8380
|
hint?: string | undefined;
|
|
8291
8381
|
messages?: {
|
|
8292
8382
|
text: string;
|
|
8293
|
-
type: "
|
|
8383
|
+
type: "success" | "error" | "info" | "warning";
|
|
8294
8384
|
id?: number | undefined;
|
|
8295
8385
|
}[] | undefined;
|
|
8296
8386
|
required?: boolean | undefined;
|
|
@@ -8311,7 +8401,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8311
8401
|
hint?: string | undefined;
|
|
8312
8402
|
messages?: {
|
|
8313
8403
|
text: string;
|
|
8314
|
-
type: "
|
|
8404
|
+
type: "success" | "error" | "info" | "warning";
|
|
8315
8405
|
id?: number | undefined;
|
|
8316
8406
|
}[] | undefined;
|
|
8317
8407
|
required?: boolean | undefined;
|
|
@@ -8544,7 +8634,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8544
8634
|
hint?: string | undefined;
|
|
8545
8635
|
messages?: {
|
|
8546
8636
|
text: string;
|
|
8547
|
-
type: "
|
|
8637
|
+
type: "success" | "error" | "info" | "warning";
|
|
8548
8638
|
id?: number | undefined;
|
|
8549
8639
|
}[] | undefined;
|
|
8550
8640
|
required?: boolean | undefined;
|
|
@@ -8562,7 +8652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8562
8652
|
hint?: string | undefined;
|
|
8563
8653
|
messages?: {
|
|
8564
8654
|
text: string;
|
|
8565
|
-
type: "
|
|
8655
|
+
type: "success" | "error" | "info" | "warning";
|
|
8566
8656
|
id?: number | undefined;
|
|
8567
8657
|
}[] | undefined;
|
|
8568
8658
|
required?: boolean | undefined;
|
|
@@ -8586,7 +8676,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8586
8676
|
hint?: string | undefined;
|
|
8587
8677
|
messages?: {
|
|
8588
8678
|
text: string;
|
|
8589
|
-
type: "
|
|
8679
|
+
type: "success" | "error" | "info" | "warning";
|
|
8590
8680
|
id?: number | undefined;
|
|
8591
8681
|
}[] | undefined;
|
|
8592
8682
|
required?: boolean | undefined;
|
|
@@ -8610,7 +8700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8610
8700
|
hint?: string | undefined;
|
|
8611
8701
|
messages?: {
|
|
8612
8702
|
text: string;
|
|
8613
|
-
type: "
|
|
8703
|
+
type: "success" | "error" | "info" | "warning";
|
|
8614
8704
|
id?: number | undefined;
|
|
8615
8705
|
}[] | undefined;
|
|
8616
8706
|
required?: boolean | undefined;
|
|
@@ -8634,7 +8724,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8634
8724
|
hint?: string | undefined;
|
|
8635
8725
|
messages?: {
|
|
8636
8726
|
text: string;
|
|
8637
|
-
type: "
|
|
8727
|
+
type: "success" | "error" | "info" | "warning";
|
|
8638
8728
|
id?: number | undefined;
|
|
8639
8729
|
}[] | undefined;
|
|
8640
8730
|
required?: boolean | undefined;
|
|
@@ -8659,7 +8749,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8659
8749
|
hint?: string | undefined;
|
|
8660
8750
|
messages?: {
|
|
8661
8751
|
text: string;
|
|
8662
|
-
type: "
|
|
8752
|
+
type: "success" | "error" | "info" | "warning";
|
|
8663
8753
|
id?: number | undefined;
|
|
8664
8754
|
}[] | undefined;
|
|
8665
8755
|
required?: boolean | undefined;
|
|
@@ -8674,7 +8764,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8674
8764
|
hint?: string | undefined;
|
|
8675
8765
|
messages?: {
|
|
8676
8766
|
text: string;
|
|
8677
|
-
type: "
|
|
8767
|
+
type: "success" | "error" | "info" | "warning";
|
|
8678
8768
|
id?: number | undefined;
|
|
8679
8769
|
}[] | undefined;
|
|
8680
8770
|
required?: boolean | undefined;
|
|
@@ -8695,7 +8785,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8695
8785
|
hint?: string | undefined;
|
|
8696
8786
|
messages?: {
|
|
8697
8787
|
text: string;
|
|
8698
|
-
type: "
|
|
8788
|
+
type: "success" | "error" | "info" | "warning";
|
|
8699
8789
|
id?: number | undefined;
|
|
8700
8790
|
}[] | undefined;
|
|
8701
8791
|
required?: boolean | undefined;
|
|
@@ -8720,7 +8810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8720
8810
|
hint?: string | undefined;
|
|
8721
8811
|
messages?: {
|
|
8722
8812
|
text: string;
|
|
8723
|
-
type: "
|
|
8813
|
+
type: "success" | "error" | "info" | "warning";
|
|
8724
8814
|
id?: number | undefined;
|
|
8725
8815
|
}[] | undefined;
|
|
8726
8816
|
required?: boolean | undefined;
|
|
@@ -8739,7 +8829,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8739
8829
|
hint?: string | undefined;
|
|
8740
8830
|
messages?: {
|
|
8741
8831
|
text: string;
|
|
8742
|
-
type: "
|
|
8832
|
+
type: "success" | "error" | "info" | "warning";
|
|
8743
8833
|
id?: number | undefined;
|
|
8744
8834
|
}[] | undefined;
|
|
8745
8835
|
required?: boolean | undefined;
|
|
@@ -8759,7 +8849,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8759
8849
|
hint?: string | undefined;
|
|
8760
8850
|
messages?: {
|
|
8761
8851
|
text: string;
|
|
8762
|
-
type: "
|
|
8852
|
+
type: "success" | "error" | "info" | "warning";
|
|
8763
8853
|
id?: number | undefined;
|
|
8764
8854
|
}[] | undefined;
|
|
8765
8855
|
required?: boolean | undefined;
|
|
@@ -8778,7 +8868,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8778
8868
|
hint?: string | undefined;
|
|
8779
8869
|
messages?: {
|
|
8780
8870
|
text: string;
|
|
8781
|
-
type: "
|
|
8871
|
+
type: "success" | "error" | "info" | "warning";
|
|
8782
8872
|
id?: number | undefined;
|
|
8783
8873
|
}[] | undefined;
|
|
8784
8874
|
required?: boolean | undefined;
|
|
@@ -8800,7 +8890,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8800
8890
|
hint?: string | undefined;
|
|
8801
8891
|
messages?: {
|
|
8802
8892
|
text: string;
|
|
8803
|
-
type: "
|
|
8893
|
+
type: "success" | "error" | "info" | "warning";
|
|
8804
8894
|
id?: number | undefined;
|
|
8805
8895
|
}[] | undefined;
|
|
8806
8896
|
required?: boolean | undefined;
|
|
@@ -8822,7 +8912,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8822
8912
|
hint?: string | undefined;
|
|
8823
8913
|
messages?: {
|
|
8824
8914
|
text: string;
|
|
8825
|
-
type: "
|
|
8915
|
+
type: "success" | "error" | "info" | "warning";
|
|
8826
8916
|
id?: number | undefined;
|
|
8827
8917
|
}[] | undefined;
|
|
8828
8918
|
required?: boolean | undefined;
|
|
@@ -8841,7 +8931,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8841
8931
|
hint?: string | undefined;
|
|
8842
8932
|
messages?: {
|
|
8843
8933
|
text: string;
|
|
8844
|
-
type: "
|
|
8934
|
+
type: "success" | "error" | "info" | "warning";
|
|
8845
8935
|
id?: number | undefined;
|
|
8846
8936
|
}[] | undefined;
|
|
8847
8937
|
required?: boolean | undefined;
|
|
@@ -8866,7 +8956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8866
8956
|
hint?: string | undefined;
|
|
8867
8957
|
messages?: {
|
|
8868
8958
|
text: string;
|
|
8869
|
-
type: "
|
|
8959
|
+
type: "success" | "error" | "info" | "warning";
|
|
8870
8960
|
id?: number | undefined;
|
|
8871
8961
|
}[] | undefined;
|
|
8872
8962
|
required?: boolean | undefined;
|
|
@@ -8887,7 +8977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8887
8977
|
hint?: string | undefined;
|
|
8888
8978
|
messages?: {
|
|
8889
8979
|
text: string;
|
|
8890
|
-
type: "
|
|
8980
|
+
type: "success" | "error" | "info" | "warning";
|
|
8891
8981
|
id?: number | undefined;
|
|
8892
8982
|
}[] | undefined;
|
|
8893
8983
|
required?: boolean | undefined;
|
|
@@ -8908,7 +8998,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8908
8998
|
hint?: string | undefined;
|
|
8909
8999
|
messages?: {
|
|
8910
9000
|
text: string;
|
|
8911
|
-
type: "
|
|
9001
|
+
type: "success" | "error" | "info" | "warning";
|
|
8912
9002
|
id?: number | undefined;
|
|
8913
9003
|
}[] | undefined;
|
|
8914
9004
|
required?: boolean | undefined;
|
|
@@ -9139,7 +9229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9139
9229
|
hint?: string | undefined;
|
|
9140
9230
|
messages?: {
|
|
9141
9231
|
text: string;
|
|
9142
|
-
type: "
|
|
9232
|
+
type: "success" | "error" | "info" | "warning";
|
|
9143
9233
|
id?: number | undefined;
|
|
9144
9234
|
}[] | undefined;
|
|
9145
9235
|
required?: boolean | undefined;
|
|
@@ -9157,7 +9247,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9157
9247
|
hint?: string | undefined;
|
|
9158
9248
|
messages?: {
|
|
9159
9249
|
text: string;
|
|
9160
|
-
type: "
|
|
9250
|
+
type: "success" | "error" | "info" | "warning";
|
|
9161
9251
|
id?: number | undefined;
|
|
9162
9252
|
}[] | undefined;
|
|
9163
9253
|
required?: boolean | undefined;
|
|
@@ -9181,7 +9271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9181
9271
|
hint?: string | undefined;
|
|
9182
9272
|
messages?: {
|
|
9183
9273
|
text: string;
|
|
9184
|
-
type: "
|
|
9274
|
+
type: "success" | "error" | "info" | "warning";
|
|
9185
9275
|
id?: number | undefined;
|
|
9186
9276
|
}[] | undefined;
|
|
9187
9277
|
required?: boolean | undefined;
|
|
@@ -9205,7 +9295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9205
9295
|
hint?: string | undefined;
|
|
9206
9296
|
messages?: {
|
|
9207
9297
|
text: string;
|
|
9208
|
-
type: "
|
|
9298
|
+
type: "success" | "error" | "info" | "warning";
|
|
9209
9299
|
id?: number | undefined;
|
|
9210
9300
|
}[] | undefined;
|
|
9211
9301
|
required?: boolean | undefined;
|
|
@@ -9229,7 +9319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9229
9319
|
hint?: string | undefined;
|
|
9230
9320
|
messages?: {
|
|
9231
9321
|
text: string;
|
|
9232
|
-
type: "
|
|
9322
|
+
type: "success" | "error" | "info" | "warning";
|
|
9233
9323
|
id?: number | undefined;
|
|
9234
9324
|
}[] | undefined;
|
|
9235
9325
|
required?: boolean | undefined;
|
|
@@ -9258,7 +9348,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9258
9348
|
hint?: string | undefined;
|
|
9259
9349
|
messages?: {
|
|
9260
9350
|
text: string;
|
|
9261
|
-
type: "
|
|
9351
|
+
type: "success" | "error" | "info" | "warning";
|
|
9262
9352
|
id?: number | undefined;
|
|
9263
9353
|
}[] | undefined;
|
|
9264
9354
|
required?: boolean | undefined;
|
|
@@ -9273,7 +9363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9273
9363
|
hint?: string | undefined;
|
|
9274
9364
|
messages?: {
|
|
9275
9365
|
text: string;
|
|
9276
|
-
type: "
|
|
9366
|
+
type: "success" | "error" | "info" | "warning";
|
|
9277
9367
|
id?: number | undefined;
|
|
9278
9368
|
}[] | undefined;
|
|
9279
9369
|
required?: boolean | undefined;
|
|
@@ -9294,7 +9384,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9294
9384
|
hint?: string | undefined;
|
|
9295
9385
|
messages?: {
|
|
9296
9386
|
text: string;
|
|
9297
|
-
type: "
|
|
9387
|
+
type: "success" | "error" | "info" | "warning";
|
|
9298
9388
|
id?: number | undefined;
|
|
9299
9389
|
}[] | undefined;
|
|
9300
9390
|
required?: boolean | undefined;
|
|
@@ -9319,7 +9409,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9319
9409
|
hint?: string | undefined;
|
|
9320
9410
|
messages?: {
|
|
9321
9411
|
text: string;
|
|
9322
|
-
type: "
|
|
9412
|
+
type: "success" | "error" | "info" | "warning";
|
|
9323
9413
|
id?: number | undefined;
|
|
9324
9414
|
}[] | undefined;
|
|
9325
9415
|
required?: boolean | undefined;
|
|
@@ -9338,7 +9428,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9338
9428
|
hint?: string | undefined;
|
|
9339
9429
|
messages?: {
|
|
9340
9430
|
text: string;
|
|
9341
|
-
type: "
|
|
9431
|
+
type: "success" | "error" | "info" | "warning";
|
|
9342
9432
|
id?: number | undefined;
|
|
9343
9433
|
}[] | undefined;
|
|
9344
9434
|
required?: boolean | undefined;
|
|
@@ -9358,7 +9448,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9358
9448
|
hint?: string | undefined;
|
|
9359
9449
|
messages?: {
|
|
9360
9450
|
text: string;
|
|
9361
|
-
type: "
|
|
9451
|
+
type: "success" | "error" | "info" | "warning";
|
|
9362
9452
|
id?: number | undefined;
|
|
9363
9453
|
}[] | undefined;
|
|
9364
9454
|
required?: boolean | undefined;
|
|
@@ -9377,7 +9467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9377
9467
|
hint?: string | undefined;
|
|
9378
9468
|
messages?: {
|
|
9379
9469
|
text: string;
|
|
9380
|
-
type: "
|
|
9470
|
+
type: "success" | "error" | "info" | "warning";
|
|
9381
9471
|
id?: number | undefined;
|
|
9382
9472
|
}[] | undefined;
|
|
9383
9473
|
required?: boolean | undefined;
|
|
@@ -9399,7 +9489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9399
9489
|
hint?: string | undefined;
|
|
9400
9490
|
messages?: {
|
|
9401
9491
|
text: string;
|
|
9402
|
-
type: "
|
|
9492
|
+
type: "success" | "error" | "info" | "warning";
|
|
9403
9493
|
id?: number | undefined;
|
|
9404
9494
|
}[] | undefined;
|
|
9405
9495
|
required?: boolean | undefined;
|
|
@@ -9421,7 +9511,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9421
9511
|
hint?: string | undefined;
|
|
9422
9512
|
messages?: {
|
|
9423
9513
|
text: string;
|
|
9424
|
-
type: "
|
|
9514
|
+
type: "success" | "error" | "info" | "warning";
|
|
9425
9515
|
id?: number | undefined;
|
|
9426
9516
|
}[] | undefined;
|
|
9427
9517
|
required?: boolean | undefined;
|
|
@@ -9440,7 +9530,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9440
9530
|
hint?: string | undefined;
|
|
9441
9531
|
messages?: {
|
|
9442
9532
|
text: string;
|
|
9443
|
-
type: "
|
|
9533
|
+
type: "success" | "error" | "info" | "warning";
|
|
9444
9534
|
id?: number | undefined;
|
|
9445
9535
|
}[] | undefined;
|
|
9446
9536
|
required?: boolean | undefined;
|
|
@@ -9465,7 +9555,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9465
9555
|
hint?: string | undefined;
|
|
9466
9556
|
messages?: {
|
|
9467
9557
|
text: string;
|
|
9468
|
-
type: "
|
|
9558
|
+
type: "success" | "error" | "info" | "warning";
|
|
9469
9559
|
id?: number | undefined;
|
|
9470
9560
|
}[] | undefined;
|
|
9471
9561
|
required?: boolean | undefined;
|
|
@@ -9486,7 +9576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9486
9576
|
hint?: string | undefined;
|
|
9487
9577
|
messages?: {
|
|
9488
9578
|
text: string;
|
|
9489
|
-
type: "
|
|
9579
|
+
type: "success" | "error" | "info" | "warning";
|
|
9490
9580
|
id?: number | undefined;
|
|
9491
9581
|
}[] | undefined;
|
|
9492
9582
|
required?: boolean | undefined;
|
|
@@ -9507,7 +9597,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9507
9597
|
hint?: string | undefined;
|
|
9508
9598
|
messages?: {
|
|
9509
9599
|
text: string;
|
|
9510
|
-
type: "
|
|
9600
|
+
type: "success" | "error" | "info" | "warning";
|
|
9511
9601
|
id?: number | undefined;
|
|
9512
9602
|
}[] | undefined;
|
|
9513
9603
|
required?: boolean | undefined;
|
|
@@ -9737,7 +9827,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9737
9827
|
};
|
|
9738
9828
|
};
|
|
9739
9829
|
output: {
|
|
9740
|
-
prompt: "status" | "organizations" | "
|
|
9830
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9741
9831
|
language: string;
|
|
9742
9832
|
}[];
|
|
9743
9833
|
outputFormat: "json";
|
|
@@ -9775,7 +9865,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9775
9865
|
$get: {
|
|
9776
9866
|
input: {
|
|
9777
9867
|
param: {
|
|
9778
|
-
prompt: "status" | "organizations" | "
|
|
9868
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9779
9869
|
language: string;
|
|
9780
9870
|
};
|
|
9781
9871
|
} & {
|
|
@@ -9797,7 +9887,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9797
9887
|
$put: {
|
|
9798
9888
|
input: {
|
|
9799
9889
|
param: {
|
|
9800
|
-
prompt: "status" | "organizations" | "
|
|
9890
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9801
9891
|
language: string;
|
|
9802
9892
|
};
|
|
9803
9893
|
} & {
|
|
@@ -9821,7 +9911,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9821
9911
|
$delete: {
|
|
9822
9912
|
input: {
|
|
9823
9913
|
param: {
|
|
9824
|
-
prompt: "status" | "organizations" | "
|
|
9914
|
+
prompt: "signup" | "status" | "organizations" | "mfa" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9825
9915
|
language: string;
|
|
9826
9916
|
};
|
|
9827
9917
|
} & {
|
|
@@ -10683,7 +10773,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10683
10773
|
};
|
|
10684
10774
|
} | {
|
|
10685
10775
|
mode: "inline";
|
|
10686
|
-
status: "
|
|
10776
|
+
status: "success" | "error";
|
|
10687
10777
|
connection_id: string;
|
|
10688
10778
|
connection_name: string;
|
|
10689
10779
|
strategy: string;
|
|
@@ -11970,7 +12060,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11970
12060
|
};
|
|
11971
12061
|
};
|
|
11972
12062
|
output: {
|
|
11973
|
-
type: "
|
|
12063
|
+
type: "fh" | "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" | "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" | "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";
|
|
11974
12064
|
date: string;
|
|
11975
12065
|
isMobile: boolean;
|
|
11976
12066
|
log_id: string;
|
|
@@ -12009,7 +12099,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12009
12099
|
limit: number;
|
|
12010
12100
|
length: number;
|
|
12011
12101
|
logs: {
|
|
12012
|
-
type: "
|
|
12102
|
+
type: "fh" | "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" | "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" | "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";
|
|
12013
12103
|
date: string;
|
|
12014
12104
|
isMobile: boolean;
|
|
12015
12105
|
log_id: string;
|
|
@@ -12063,7 +12153,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12063
12153
|
};
|
|
12064
12154
|
};
|
|
12065
12155
|
output: {
|
|
12066
|
-
type: "
|
|
12156
|
+
type: "fh" | "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" | "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" | "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";
|
|
12067
12157
|
date: string;
|
|
12068
12158
|
isMobile: boolean;
|
|
12069
12159
|
log_id: string;
|
|
@@ -12451,7 +12541,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12451
12541
|
addons?: {
|
|
12452
12542
|
[x: string]: any;
|
|
12453
12543
|
} | undefined;
|
|
12454
|
-
token_endpoint_auth_method?: "
|
|
12544
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12455
12545
|
client_metadata?: {
|
|
12456
12546
|
[x: string]: string;
|
|
12457
12547
|
} | undefined;
|
|
@@ -12547,7 +12637,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12547
12637
|
addons?: {
|
|
12548
12638
|
[x: string]: any;
|
|
12549
12639
|
} | undefined;
|
|
12550
|
-
token_endpoint_auth_method?: "
|
|
12640
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12551
12641
|
client_metadata?: {
|
|
12552
12642
|
[x: string]: string;
|
|
12553
12643
|
} | undefined;
|
|
@@ -12658,7 +12748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12658
12748
|
addons?: {
|
|
12659
12749
|
[x: string]: any;
|
|
12660
12750
|
} | undefined;
|
|
12661
|
-
token_endpoint_auth_method?: "
|
|
12751
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12662
12752
|
client_metadata?: {
|
|
12663
12753
|
[x: string]: string;
|
|
12664
12754
|
} | undefined;
|
|
@@ -12768,7 +12858,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12768
12858
|
custom_login_page_preview?: string | undefined;
|
|
12769
12859
|
form_template?: string | undefined;
|
|
12770
12860
|
addons?: Record<string, any> | undefined;
|
|
12771
|
-
token_endpoint_auth_method?: "
|
|
12861
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12772
12862
|
client_metadata?: Record<string, string> | undefined;
|
|
12773
12863
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12774
12864
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12848,7 +12938,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12848
12938
|
addons?: {
|
|
12849
12939
|
[x: string]: any;
|
|
12850
12940
|
} | undefined;
|
|
12851
|
-
token_endpoint_auth_method?: "
|
|
12941
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12852
12942
|
client_metadata?: {
|
|
12853
12943
|
[x: string]: string;
|
|
12854
12944
|
} | undefined;
|
|
@@ -12937,7 +13027,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12937
13027
|
custom_login_page_preview?: string | undefined;
|
|
12938
13028
|
form_template?: string | undefined;
|
|
12939
13029
|
addons?: Record<string, any> | undefined;
|
|
12940
|
-
token_endpoint_auth_method?: "
|
|
13030
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12941
13031
|
client_metadata?: Record<string, string> | undefined;
|
|
12942
13032
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12943
13033
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13017,7 +13107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13017
13107
|
addons?: {
|
|
13018
13108
|
[x: string]: any;
|
|
13019
13109
|
} | undefined;
|
|
13020
|
-
token_endpoint_auth_method?: "
|
|
13110
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13021
13111
|
client_metadata?: {
|
|
13022
13112
|
[x: string]: string;
|
|
13023
13113
|
} | undefined;
|
|
@@ -14281,7 +14371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14281
14371
|
};
|
|
14282
14372
|
};
|
|
14283
14373
|
output: {
|
|
14284
|
-
type: "
|
|
14374
|
+
type: "fh" | "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" | "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" | "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";
|
|
14285
14375
|
date: string;
|
|
14286
14376
|
isMobile: boolean;
|
|
14287
14377
|
log_id: string;
|
|
@@ -14320,7 +14410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14320
14410
|
limit: number;
|
|
14321
14411
|
length: number;
|
|
14322
14412
|
logs: {
|
|
14323
|
-
type: "
|
|
14413
|
+
type: "fh" | "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" | "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" | "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";
|
|
14324
14414
|
date: string;
|
|
14325
14415
|
isMobile: boolean;
|
|
14326
14416
|
log_id: string;
|
|
@@ -14635,7 +14725,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14635
14725
|
};
|
|
14636
14726
|
} & {
|
|
14637
14727
|
json: {
|
|
14638
|
-
template: "verify_email" | "
|
|
14728
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14639
14729
|
body: string;
|
|
14640
14730
|
from: string;
|
|
14641
14731
|
subject: string;
|
|
@@ -14656,7 +14746,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14656
14746
|
};
|
|
14657
14747
|
} & {
|
|
14658
14748
|
json: {
|
|
14659
|
-
template: "verify_email" | "
|
|
14749
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14660
14750
|
body: string;
|
|
14661
14751
|
from: string;
|
|
14662
14752
|
subject: string;
|
|
@@ -14668,7 +14758,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14668
14758
|
};
|
|
14669
14759
|
};
|
|
14670
14760
|
output: {
|
|
14671
|
-
template: "verify_email" | "
|
|
14761
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14672
14762
|
body: string;
|
|
14673
14763
|
from: string;
|
|
14674
14764
|
subject: string;
|
|
@@ -14691,7 +14781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14691
14781
|
};
|
|
14692
14782
|
};
|
|
14693
14783
|
output: {
|
|
14694
|
-
name: "verify_email" | "
|
|
14784
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14695
14785
|
body: string;
|
|
14696
14786
|
subject: string;
|
|
14697
14787
|
}[];
|
|
@@ -14704,7 +14794,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14704
14794
|
$get: {
|
|
14705
14795
|
input: {
|
|
14706
14796
|
param: {
|
|
14707
|
-
templateName: "verify_email" | "
|
|
14797
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14708
14798
|
};
|
|
14709
14799
|
} & {
|
|
14710
14800
|
header: {
|
|
@@ -14717,7 +14807,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14717
14807
|
} | {
|
|
14718
14808
|
input: {
|
|
14719
14809
|
param: {
|
|
14720
|
-
templateName: "verify_email" | "
|
|
14810
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14721
14811
|
};
|
|
14722
14812
|
} & {
|
|
14723
14813
|
header: {
|
|
@@ -14725,7 +14815,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14725
14815
|
};
|
|
14726
14816
|
};
|
|
14727
14817
|
output: {
|
|
14728
|
-
template: "verify_email" | "
|
|
14818
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14729
14819
|
body: string;
|
|
14730
14820
|
from: string;
|
|
14731
14821
|
subject: string;
|
|
@@ -14744,7 +14834,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14744
14834
|
$put: {
|
|
14745
14835
|
input: {
|
|
14746
14836
|
param: {
|
|
14747
|
-
templateName: "verify_email" | "
|
|
14837
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14748
14838
|
};
|
|
14749
14839
|
} & {
|
|
14750
14840
|
header: {
|
|
@@ -14752,7 +14842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14752
14842
|
};
|
|
14753
14843
|
} & {
|
|
14754
14844
|
json: {
|
|
14755
|
-
template: "verify_email" | "
|
|
14845
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14756
14846
|
body: string;
|
|
14757
14847
|
subject: string;
|
|
14758
14848
|
syntax?: "liquid" | undefined;
|
|
@@ -14764,7 +14854,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14764
14854
|
};
|
|
14765
14855
|
};
|
|
14766
14856
|
output: {
|
|
14767
|
-
template: "verify_email" | "
|
|
14857
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14768
14858
|
body: string;
|
|
14769
14859
|
from: string;
|
|
14770
14860
|
subject: string;
|
|
@@ -14783,7 +14873,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14783
14873
|
$patch: {
|
|
14784
14874
|
input: {
|
|
14785
14875
|
param: {
|
|
14786
|
-
templateName: "verify_email" | "
|
|
14876
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14787
14877
|
};
|
|
14788
14878
|
} & {
|
|
14789
14879
|
header: {
|
|
@@ -14791,7 +14881,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14791
14881
|
};
|
|
14792
14882
|
} & {
|
|
14793
14883
|
json: {
|
|
14794
|
-
template?: "verify_email" | "
|
|
14884
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14795
14885
|
body?: string | undefined;
|
|
14796
14886
|
from?: string | undefined;
|
|
14797
14887
|
subject?: string | undefined;
|
|
@@ -14808,7 +14898,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14808
14898
|
} | {
|
|
14809
14899
|
input: {
|
|
14810
14900
|
param: {
|
|
14811
|
-
templateName: "verify_email" | "
|
|
14901
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14812
14902
|
};
|
|
14813
14903
|
} & {
|
|
14814
14904
|
header: {
|
|
@@ -14816,7 +14906,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14816
14906
|
};
|
|
14817
14907
|
} & {
|
|
14818
14908
|
json: {
|
|
14819
|
-
template?: "verify_email" | "
|
|
14909
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14820
14910
|
body?: string | undefined;
|
|
14821
14911
|
from?: string | undefined;
|
|
14822
14912
|
subject?: string | undefined;
|
|
@@ -14828,7 +14918,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14828
14918
|
};
|
|
14829
14919
|
};
|
|
14830
14920
|
output: {
|
|
14831
|
-
template: "verify_email" | "
|
|
14921
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14832
14922
|
body: string;
|
|
14833
14923
|
from: string;
|
|
14834
14924
|
subject: string;
|
|
@@ -14847,7 +14937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14847
14937
|
$delete: {
|
|
14848
14938
|
input: {
|
|
14849
14939
|
param: {
|
|
14850
|
-
templateName: "verify_email" | "
|
|
14940
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14851
14941
|
};
|
|
14852
14942
|
} & {
|
|
14853
14943
|
header: {
|
|
@@ -14860,7 +14950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14860
14950
|
} | {
|
|
14861
14951
|
input: {
|
|
14862
14952
|
param: {
|
|
14863
|
-
templateName: "verify_email" | "
|
|
14953
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14864
14954
|
};
|
|
14865
14955
|
} & {
|
|
14866
14956
|
header: {
|
|
@@ -14877,7 +14967,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14877
14967
|
$post: {
|
|
14878
14968
|
input: {
|
|
14879
14969
|
param: {
|
|
14880
|
-
templateName: "verify_email" | "
|
|
14970
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14881
14971
|
};
|
|
14882
14972
|
} & {
|
|
14883
14973
|
header: {
|
|
@@ -15829,7 +15919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15829
15919
|
} & {
|
|
15830
15920
|
json: {
|
|
15831
15921
|
body?: string | undefined;
|
|
15832
|
-
screen?: "
|
|
15922
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
15833
15923
|
branding?: {
|
|
15834
15924
|
colors?: {
|
|
15835
15925
|
primary: string;
|
|
@@ -16120,7 +16210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16120
16210
|
logs: {
|
|
16121
16211
|
action_name: string;
|
|
16122
16212
|
lines: {
|
|
16123
|
-
level: "
|
|
16213
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16124
16214
|
message: string;
|
|
16125
16215
|
}[];
|
|
16126
16216
|
}[];
|
|
@@ -16787,7 +16877,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16787
16877
|
args: hono_utils_types.JSONValue[];
|
|
16788
16878
|
}[];
|
|
16789
16879
|
logs: {
|
|
16790
|
-
level: "
|
|
16880
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16791
16881
|
message: string;
|
|
16792
16882
|
}[];
|
|
16793
16883
|
error?: string | undefined;
|
|
@@ -17098,7 +17188,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17098
17188
|
scope?: string | undefined;
|
|
17099
17189
|
grant_types?: string[] | undefined;
|
|
17100
17190
|
response_types?: string[] | undefined;
|
|
17101
|
-
token_endpoint_auth_method?: "
|
|
17191
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17102
17192
|
jwks_uri?: string | undefined;
|
|
17103
17193
|
jwks?: Record<string, unknown> | undefined;
|
|
17104
17194
|
software_id?: string | undefined;
|
|
@@ -17187,7 +17277,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17187
17277
|
scope?: string | undefined;
|
|
17188
17278
|
grant_types?: string[] | undefined;
|
|
17189
17279
|
response_types?: string[] | undefined;
|
|
17190
|
-
token_endpoint_auth_method?: "
|
|
17280
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17191
17281
|
jwks_uri?: string | undefined;
|
|
17192
17282
|
jwks?: Record<string, unknown> | undefined;
|
|
17193
17283
|
software_id?: string | undefined;
|
|
@@ -17244,7 +17334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17244
17334
|
client_id: string;
|
|
17245
17335
|
redirect_url?: string | undefined;
|
|
17246
17336
|
login_hint?: string | undefined;
|
|
17247
|
-
screen_hint?: "
|
|
17337
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
17248
17338
|
};
|
|
17249
17339
|
};
|
|
17250
17340
|
output: {};
|
|
@@ -17256,7 +17346,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17256
17346
|
client_id: string;
|
|
17257
17347
|
redirect_url?: string | undefined;
|
|
17258
17348
|
login_hint?: string | undefined;
|
|
17259
|
-
screen_hint?: "
|
|
17349
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
17260
17350
|
};
|
|
17261
17351
|
};
|
|
17262
17352
|
output: {
|
|
@@ -17533,19 +17623,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17533
17623
|
email: string;
|
|
17534
17624
|
send: "code" | "link";
|
|
17535
17625
|
authParams: {
|
|
17536
|
-
username?: string | undefined;
|
|
17537
|
-
audience?: string | undefined;
|
|
17538
|
-
scope?: string | undefined;
|
|
17539
|
-
state?: string | undefined;
|
|
17540
17626
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17541
17627
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17542
|
-
|
|
17543
|
-
|
|
17544
|
-
redirect_uri?: string | undefined;
|
|
17628
|
+
scope?: string | undefined;
|
|
17629
|
+
username?: string | undefined;
|
|
17545
17630
|
nonce?: string | undefined;
|
|
17631
|
+
state?: string | undefined;
|
|
17546
17632
|
act_as?: string | undefined;
|
|
17633
|
+
redirect_uri?: string | undefined;
|
|
17634
|
+
audience?: string | undefined;
|
|
17547
17635
|
organization?: string | undefined;
|
|
17548
17636
|
prompt?: string | undefined;
|
|
17637
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17638
|
+
code_challenge?: string | undefined;
|
|
17549
17639
|
ui_locales?: string | undefined;
|
|
17550
17640
|
max_age?: number | undefined;
|
|
17551
17641
|
acr_values?: string | undefined;
|
|
@@ -17569,19 +17659,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17569
17659
|
phone_number: string;
|
|
17570
17660
|
send: "code" | "link";
|
|
17571
17661
|
authParams: {
|
|
17572
|
-
username?: string | undefined;
|
|
17573
|
-
audience?: string | undefined;
|
|
17574
|
-
scope?: string | undefined;
|
|
17575
|
-
state?: string | undefined;
|
|
17576
17662
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17577
17663
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17578
|
-
|
|
17579
|
-
|
|
17580
|
-
redirect_uri?: string | undefined;
|
|
17664
|
+
scope?: string | undefined;
|
|
17665
|
+
username?: string | undefined;
|
|
17581
17666
|
nonce?: string | undefined;
|
|
17667
|
+
state?: string | undefined;
|
|
17582
17668
|
act_as?: string | undefined;
|
|
17669
|
+
redirect_uri?: string | undefined;
|
|
17670
|
+
audience?: string | undefined;
|
|
17583
17671
|
organization?: string | undefined;
|
|
17584
17672
|
prompt?: string | undefined;
|
|
17673
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17674
|
+
code_challenge?: string | undefined;
|
|
17585
17675
|
ui_locales?: string | undefined;
|
|
17586
17676
|
max_age?: number | undefined;
|
|
17587
17677
|
acr_values?: string | undefined;
|
|
@@ -19109,7 +19199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19109
19199
|
} & {
|
|
19110
19200
|
form: {
|
|
19111
19201
|
username: string;
|
|
19112
|
-
login_selection?: "
|
|
19202
|
+
login_selection?: "code" | "password" | undefined;
|
|
19113
19203
|
};
|
|
19114
19204
|
};
|
|
19115
19205
|
output: {};
|
|
@@ -19123,7 +19213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19123
19213
|
} & {
|
|
19124
19214
|
form: {
|
|
19125
19215
|
username: string;
|
|
19126
|
-
login_selection?: "
|
|
19216
|
+
login_selection?: "code" | "password" | undefined;
|
|
19127
19217
|
};
|
|
19128
19218
|
};
|
|
19129
19219
|
output: {};
|
|
@@ -19488,7 +19578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19488
19578
|
$get: {
|
|
19489
19579
|
input: {
|
|
19490
19580
|
param: {
|
|
19491
|
-
screen: "signup" | "
|
|
19581
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "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";
|
|
19492
19582
|
};
|
|
19493
19583
|
} & {
|
|
19494
19584
|
query: {
|
|
@@ -19504,7 +19594,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19504
19594
|
} | {
|
|
19505
19595
|
input: {
|
|
19506
19596
|
param: {
|
|
19507
|
-
screen: "signup" | "
|
|
19597
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "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";
|
|
19508
19598
|
};
|
|
19509
19599
|
} & {
|
|
19510
19600
|
query: {
|
|
@@ -19520,7 +19610,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19520
19610
|
} | {
|
|
19521
19611
|
input: {
|
|
19522
19612
|
param: {
|
|
19523
|
-
screen: "signup" | "
|
|
19613
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "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";
|
|
19524
19614
|
};
|
|
19525
19615
|
} & {
|
|
19526
19616
|
query: {
|
|
@@ -19540,7 +19630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19540
19630
|
$post: {
|
|
19541
19631
|
input: {
|
|
19542
19632
|
param: {
|
|
19543
|
-
screen: "signup" | "
|
|
19633
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "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";
|
|
19544
19634
|
};
|
|
19545
19635
|
} & {
|
|
19546
19636
|
query: {
|
|
@@ -19558,7 +19648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19558
19648
|
} | {
|
|
19559
19649
|
input: {
|
|
19560
19650
|
param: {
|
|
19561
|
-
screen: "signup" | "
|
|
19651
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "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";
|
|
19562
19652
|
};
|
|
19563
19653
|
} & {
|
|
19564
19654
|
query: {
|
|
@@ -19656,5 +19746,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19656
19746
|
createX509Certificate: typeof createX509Certificate;
|
|
19657
19747
|
};
|
|
19658
19748
|
|
|
19659
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil };
|
|
19660
|
-
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|
|
19749
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wrapProxyAdaptersWithKvPublish };
|
|
19750
|
+
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WrappedProxyAdapters };
|