authhero 8.9.2 → 8.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +109 -109
- package/dist/authhero.d.ts +358 -268
- package/dist/authhero.mjs +8283 -8163
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/index.d.ts +283 -266
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.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 +17 -17
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- 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/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +240 -224
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- 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 +6 -6
- package/dist/types/routes/management-api/themes.d.ts +9 -9
- 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 +10 -10
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/IdToken.d.ts +2 -2
- package/package.json +4 -4
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: "
|
|
3098
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
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: "
|
|
3238
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "
|
|
3393
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "
|
|
3401
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "
|
|
3414
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "
|
|
3426
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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;
|
|
@@ -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" | "
|
|
9830
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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" | "
|
|
9868
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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" | "
|
|
9890
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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" | "
|
|
9914
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9825
9915
|
language: string;
|
|
9826
9916
|
};
|
|
9827
9917
|
} & {
|
|
@@ -9913,7 +10003,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9913
10003
|
active?: boolean | undefined;
|
|
9914
10004
|
} | undefined;
|
|
9915
10005
|
signup?: {
|
|
9916
|
-
status?: "
|
|
10006
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
9917
10007
|
verification?: {
|
|
9918
10008
|
active?: boolean | undefined;
|
|
9919
10009
|
} | undefined;
|
|
@@ -9930,7 +10020,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9930
10020
|
active?: boolean | undefined;
|
|
9931
10021
|
} | undefined;
|
|
9932
10022
|
signup?: {
|
|
9933
|
-
status?: "
|
|
10023
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
9934
10024
|
} | undefined;
|
|
9935
10025
|
validation?: {
|
|
9936
10026
|
max_length?: number | undefined;
|
|
@@ -9947,7 +10037,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9947
10037
|
active?: boolean | undefined;
|
|
9948
10038
|
} | undefined;
|
|
9949
10039
|
signup?: {
|
|
9950
|
-
status?: "
|
|
10040
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
9951
10041
|
} | undefined;
|
|
9952
10042
|
} | undefined;
|
|
9953
10043
|
} | undefined;
|
|
@@ -10047,7 +10137,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10047
10137
|
active?: boolean | undefined;
|
|
10048
10138
|
} | undefined;
|
|
10049
10139
|
signup?: {
|
|
10050
|
-
status?: "
|
|
10140
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10051
10141
|
verification?: {
|
|
10052
10142
|
active?: boolean | undefined;
|
|
10053
10143
|
} | undefined;
|
|
@@ -10064,7 +10154,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10064
10154
|
active?: boolean | undefined;
|
|
10065
10155
|
} | undefined;
|
|
10066
10156
|
signup?: {
|
|
10067
|
-
status?: "
|
|
10157
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10068
10158
|
} | undefined;
|
|
10069
10159
|
validation?: {
|
|
10070
10160
|
max_length?: number | undefined;
|
|
@@ -10081,7 +10171,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10081
10171
|
active?: boolean | undefined;
|
|
10082
10172
|
} | undefined;
|
|
10083
10173
|
signup?: {
|
|
10084
|
-
status?: "
|
|
10174
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10085
10175
|
} | undefined;
|
|
10086
10176
|
} | undefined;
|
|
10087
10177
|
} | undefined;
|
|
@@ -10196,7 +10286,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10196
10286
|
active?: boolean | undefined;
|
|
10197
10287
|
} | undefined;
|
|
10198
10288
|
signup?: {
|
|
10199
|
-
status?: "
|
|
10289
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10200
10290
|
verification?: {
|
|
10201
10291
|
active?: boolean | undefined;
|
|
10202
10292
|
} | undefined;
|
|
@@ -10213,7 +10303,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10213
10303
|
active?: boolean | undefined;
|
|
10214
10304
|
} | undefined;
|
|
10215
10305
|
signup?: {
|
|
10216
|
-
status?: "
|
|
10306
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10217
10307
|
} | undefined;
|
|
10218
10308
|
validation?: {
|
|
10219
10309
|
max_length?: number | undefined;
|
|
@@ -10230,7 +10320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10230
10320
|
active?: boolean | undefined;
|
|
10231
10321
|
} | undefined;
|
|
10232
10322
|
signup?: {
|
|
10233
|
-
status?: "
|
|
10323
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10234
10324
|
} | undefined;
|
|
10235
10325
|
} | undefined;
|
|
10236
10326
|
} | undefined;
|
|
@@ -10375,7 +10465,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10375
10465
|
active?: boolean | undefined;
|
|
10376
10466
|
} | undefined;
|
|
10377
10467
|
signup?: {
|
|
10378
|
-
status?: "
|
|
10468
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10379
10469
|
verification?: {
|
|
10380
10470
|
active?: boolean | undefined;
|
|
10381
10471
|
} | undefined;
|
|
@@ -10392,7 +10482,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10392
10482
|
active?: boolean | undefined;
|
|
10393
10483
|
} | undefined;
|
|
10394
10484
|
signup?: {
|
|
10395
|
-
status?: "
|
|
10485
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10396
10486
|
} | undefined;
|
|
10397
10487
|
validation?: {
|
|
10398
10488
|
max_length?: number | undefined;
|
|
@@ -10409,7 +10499,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10409
10499
|
active?: boolean | undefined;
|
|
10410
10500
|
} | undefined;
|
|
10411
10501
|
signup?: {
|
|
10412
|
-
status?: "
|
|
10502
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10413
10503
|
} | undefined;
|
|
10414
10504
|
} | undefined;
|
|
10415
10505
|
} | undefined;
|
|
@@ -10533,7 +10623,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10533
10623
|
active?: boolean | undefined;
|
|
10534
10624
|
} | undefined;
|
|
10535
10625
|
signup?: {
|
|
10536
|
-
status?: "
|
|
10626
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10537
10627
|
verification?: {
|
|
10538
10628
|
active?: boolean | undefined;
|
|
10539
10629
|
} | undefined;
|
|
@@ -10550,7 +10640,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10550
10640
|
active?: boolean | undefined;
|
|
10551
10641
|
} | undefined;
|
|
10552
10642
|
signup?: {
|
|
10553
|
-
status?: "
|
|
10643
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10554
10644
|
} | undefined;
|
|
10555
10645
|
validation?: {
|
|
10556
10646
|
max_length?: number | undefined;
|
|
@@ -10567,7 +10657,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10567
10657
|
active?: boolean | undefined;
|
|
10568
10658
|
} | undefined;
|
|
10569
10659
|
signup?: {
|
|
10570
|
-
status?: "
|
|
10660
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10571
10661
|
} | undefined;
|
|
10572
10662
|
} | undefined;
|
|
10573
10663
|
} | undefined;
|
|
@@ -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;
|
|
@@ -10719,7 +10809,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10719
10809
|
tenant_id: string;
|
|
10720
10810
|
created_at: string;
|
|
10721
10811
|
updated_at: string;
|
|
10722
|
-
deploymentStatus: "
|
|
10812
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
10723
10813
|
secrets?: {
|
|
10724
10814
|
[x: string]: string;
|
|
10725
10815
|
} | undefined;
|
|
@@ -10809,7 +10899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10809
10899
|
tenant_id: string;
|
|
10810
10900
|
created_at: string;
|
|
10811
10901
|
updated_at: string;
|
|
10812
|
-
deploymentStatus: "
|
|
10902
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
10813
10903
|
secrets?: {
|
|
10814
10904
|
[x: string]: string;
|
|
10815
10905
|
} | undefined;
|
|
@@ -11322,7 +11412,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11322
11412
|
log_type: string;
|
|
11323
11413
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11324
11414
|
actor: {
|
|
11325
|
-
type: "user" | "
|
|
11415
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
11326
11416
|
id?: string | undefined;
|
|
11327
11417
|
email?: string | undefined;
|
|
11328
11418
|
org_id?: string | undefined;
|
|
@@ -11630,7 +11720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11630
11720
|
created_at: string;
|
|
11631
11721
|
updated_at: string;
|
|
11632
11722
|
name: string;
|
|
11633
|
-
provider: "auth0" | "
|
|
11723
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11634
11724
|
connection: string;
|
|
11635
11725
|
enabled: boolean;
|
|
11636
11726
|
credentials: {
|
|
@@ -11662,7 +11752,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11662
11752
|
created_at: string;
|
|
11663
11753
|
updated_at: string;
|
|
11664
11754
|
name: string;
|
|
11665
|
-
provider: "auth0" | "
|
|
11755
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11666
11756
|
connection: string;
|
|
11667
11757
|
enabled: boolean;
|
|
11668
11758
|
credentials: {
|
|
@@ -11688,7 +11778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11688
11778
|
} & {
|
|
11689
11779
|
json: {
|
|
11690
11780
|
name: string;
|
|
11691
|
-
provider: "auth0" | "
|
|
11781
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11692
11782
|
connection: string;
|
|
11693
11783
|
credentials: {
|
|
11694
11784
|
domain: string;
|
|
@@ -11705,7 +11795,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11705
11795
|
created_at: string;
|
|
11706
11796
|
updated_at: string;
|
|
11707
11797
|
name: string;
|
|
11708
|
-
provider: "auth0" | "
|
|
11798
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11709
11799
|
connection: string;
|
|
11710
11800
|
enabled: boolean;
|
|
11711
11801
|
credentials: {
|
|
@@ -11736,7 +11826,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11736
11826
|
json: {
|
|
11737
11827
|
id?: string | undefined;
|
|
11738
11828
|
name?: string | undefined;
|
|
11739
|
-
provider?: "auth0" | "
|
|
11829
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
11740
11830
|
connection?: string | undefined;
|
|
11741
11831
|
enabled?: boolean | undefined;
|
|
11742
11832
|
credentials?: {
|
|
@@ -11752,7 +11842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11752
11842
|
created_at: string;
|
|
11753
11843
|
updated_at: string;
|
|
11754
11844
|
name: string;
|
|
11755
|
-
provider: "auth0" | "
|
|
11845
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11756
11846
|
connection: string;
|
|
11757
11847
|
enabled: boolean;
|
|
11758
11848
|
credentials: {
|
|
@@ -11800,7 +11890,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11800
11890
|
[x: string]: hono_utils_types.JSONValue;
|
|
11801
11891
|
};
|
|
11802
11892
|
id: string;
|
|
11803
|
-
status: "
|
|
11893
|
+
status: "suspended" | "active" | "paused";
|
|
11804
11894
|
filters?: {
|
|
11805
11895
|
type: string;
|
|
11806
11896
|
name: string;
|
|
@@ -11832,7 +11922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11832
11922
|
[x: string]: hono_utils_types.JSONValue;
|
|
11833
11923
|
};
|
|
11834
11924
|
id: string;
|
|
11835
|
-
status: "
|
|
11925
|
+
status: "suspended" | "active" | "paused";
|
|
11836
11926
|
filters?: {
|
|
11837
11927
|
type: string;
|
|
11838
11928
|
name: string;
|
|
@@ -11857,7 +11947,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11857
11947
|
name: string;
|
|
11858
11948
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
11859
11949
|
sink: Record<string, unknown>;
|
|
11860
|
-
status?: "
|
|
11950
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11861
11951
|
filters?: {
|
|
11862
11952
|
type: string;
|
|
11863
11953
|
name: string;
|
|
@@ -11872,7 +11962,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11872
11962
|
[x: string]: hono_utils_types.JSONValue;
|
|
11873
11963
|
};
|
|
11874
11964
|
id: string;
|
|
11875
|
-
status: "
|
|
11965
|
+
status: "suspended" | "active" | "paused";
|
|
11876
11966
|
filters?: {
|
|
11877
11967
|
type: string;
|
|
11878
11968
|
name: string;
|
|
@@ -11907,7 +11997,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11907
11997
|
}[] | undefined;
|
|
11908
11998
|
isPriority?: boolean | undefined;
|
|
11909
11999
|
id?: string | undefined;
|
|
11910
|
-
status?: "
|
|
12000
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11911
12001
|
created_at?: string | undefined;
|
|
11912
12002
|
updated_at?: string | undefined;
|
|
11913
12003
|
};
|
|
@@ -11919,7 +12009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11919
12009
|
[x: string]: hono_utils_types.JSONValue;
|
|
11920
12010
|
};
|
|
11921
12011
|
id: string;
|
|
11922
|
-
status: "
|
|
12012
|
+
status: "suspended" | "active" | "paused";
|
|
11923
12013
|
filters?: {
|
|
11924
12014
|
type: string;
|
|
11925
12015
|
name: string;
|
|
@@ -11970,7 +12060,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11970
12060
|
};
|
|
11971
12061
|
};
|
|
11972
12062
|
output: {
|
|
11973
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
12063
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
12102
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
12156
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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;
|
|
@@ -13139,7 +13229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13139
13229
|
active?: boolean | undefined;
|
|
13140
13230
|
} | undefined;
|
|
13141
13231
|
signup?: {
|
|
13142
|
-
status?: "
|
|
13232
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13143
13233
|
verification?: {
|
|
13144
13234
|
active?: boolean | undefined;
|
|
13145
13235
|
} | undefined;
|
|
@@ -13156,7 +13246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13156
13246
|
active?: boolean | undefined;
|
|
13157
13247
|
} | undefined;
|
|
13158
13248
|
signup?: {
|
|
13159
|
-
status?: "
|
|
13249
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13160
13250
|
} | undefined;
|
|
13161
13251
|
validation?: {
|
|
13162
13252
|
max_length?: number | undefined;
|
|
@@ -13173,7 +13263,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13173
13263
|
active?: boolean | undefined;
|
|
13174
13264
|
} | undefined;
|
|
13175
13265
|
signup?: {
|
|
13176
|
-
status?: "
|
|
13266
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13177
13267
|
} | undefined;
|
|
13178
13268
|
} | undefined;
|
|
13179
13269
|
} | undefined;
|
|
@@ -13293,7 +13383,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13293
13383
|
active?: boolean | undefined;
|
|
13294
13384
|
} | undefined;
|
|
13295
13385
|
signup?: {
|
|
13296
|
-
status?: "
|
|
13386
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13297
13387
|
verification?: {
|
|
13298
13388
|
active?: boolean | undefined;
|
|
13299
13389
|
} | undefined;
|
|
@@ -13310,7 +13400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13310
13400
|
active?: boolean | undefined;
|
|
13311
13401
|
} | undefined;
|
|
13312
13402
|
signup?: {
|
|
13313
|
-
status?: "
|
|
13403
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13314
13404
|
} | undefined;
|
|
13315
13405
|
validation?: {
|
|
13316
13406
|
max_length?: number | undefined;
|
|
@@ -13327,7 +13417,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13327
13417
|
active?: boolean | undefined;
|
|
13328
13418
|
} | undefined;
|
|
13329
13419
|
signup?: {
|
|
13330
|
-
status?: "
|
|
13420
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
13331
13421
|
} | undefined;
|
|
13332
13422
|
} | undefined;
|
|
13333
13423
|
} | undefined;
|
|
@@ -14281,7 +14371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14281
14371
|
};
|
|
14282
14372
|
};
|
|
14283
14373
|
output: {
|
|
14284
|
-
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
14374
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "
|
|
14413
|
+
type: "fn" | "i" | "fapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "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: "
|
|
14728
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14749
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14761
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14784
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14797
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14810
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14818
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14837
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14845
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14857
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14876
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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?: "
|
|
14884
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
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: "
|
|
14901
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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?: "
|
|
14909
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
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: "
|
|
14921
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14940
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14953
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
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: "
|
|
14970
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14881
14971
|
};
|
|
14882
14972
|
} & {
|
|
14883
14973
|
header: {
|
|
@@ -15160,7 +15250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15160
15250
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15161
15251
|
custom_domain_id: string;
|
|
15162
15252
|
primary: boolean;
|
|
15163
|
-
status: "
|
|
15253
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15164
15254
|
verification_method?: "txt" | undefined;
|
|
15165
15255
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15166
15256
|
domain_metadata?: {
|
|
@@ -15201,7 +15291,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15201
15291
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15202
15292
|
custom_domain_id: string;
|
|
15203
15293
|
primary: boolean;
|
|
15204
|
-
status: "
|
|
15294
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15205
15295
|
verification_method?: "txt" | undefined;
|
|
15206
15296
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15207
15297
|
domain_metadata?: {
|
|
@@ -15265,7 +15355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15265
15355
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15266
15356
|
custom_domain_id: string;
|
|
15267
15357
|
primary: boolean;
|
|
15268
|
-
status: "
|
|
15358
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15269
15359
|
verification_method?: "txt" | undefined;
|
|
15270
15360
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15271
15361
|
domain_metadata?: {
|
|
@@ -15312,7 +15402,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15312
15402
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15313
15403
|
custom_domain_id: string;
|
|
15314
15404
|
primary: boolean;
|
|
15315
|
-
status: "
|
|
15405
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15316
15406
|
verification_method?: "txt" | undefined;
|
|
15317
15407
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15318
15408
|
domain_metadata?: {
|
|
@@ -15358,7 +15448,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15358
15448
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15359
15449
|
custom_domain_id: string;
|
|
15360
15450
|
primary: boolean;
|
|
15361
|
-
status: "
|
|
15451
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15362
15452
|
verification_method?: "txt" | undefined;
|
|
15363
15453
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15364
15454
|
domain_metadata?: {
|
|
@@ -15399,7 +15489,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15399
15489
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15400
15490
|
custom_domain_id: string;
|
|
15401
15491
|
primary: boolean;
|
|
15402
|
-
status: "
|
|
15492
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
15403
15493
|
verification_method?: "txt" | undefined;
|
|
15404
15494
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15405
15495
|
domain_metadata?: {
|
|
@@ -15498,12 +15588,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15498
15588
|
background_color: string;
|
|
15499
15589
|
background_image_url: string;
|
|
15500
15590
|
page_layout: "center" | "left" | "right";
|
|
15501
|
-
logo_placement?: "
|
|
15591
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
15502
15592
|
};
|
|
15503
15593
|
widget: {
|
|
15504
15594
|
header_text_alignment: "center" | "left" | "right";
|
|
15505
15595
|
logo_height: number;
|
|
15506
|
-
logo_position: "
|
|
15596
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
15507
15597
|
logo_url: string;
|
|
15508
15598
|
social_buttons_layout: "bottom" | "top";
|
|
15509
15599
|
};
|
|
@@ -15588,12 +15678,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15588
15678
|
background_color: string;
|
|
15589
15679
|
background_image_url: string;
|
|
15590
15680
|
page_layout: "center" | "left" | "right";
|
|
15591
|
-
logo_placement?: "
|
|
15681
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
15592
15682
|
};
|
|
15593
15683
|
widget: {
|
|
15594
15684
|
header_text_alignment: "center" | "left" | "right";
|
|
15595
15685
|
logo_height: number;
|
|
15596
|
-
logo_position: "
|
|
15686
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
15597
15687
|
logo_url: string;
|
|
15598
15688
|
social_buttons_layout: "bottom" | "top";
|
|
15599
15689
|
};
|
|
@@ -15667,12 +15757,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15667
15757
|
background_color: string;
|
|
15668
15758
|
background_image_url: string;
|
|
15669
15759
|
page_layout: "center" | "left" | "right";
|
|
15670
|
-
logo_placement?: "
|
|
15760
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
15671
15761
|
};
|
|
15672
15762
|
widget: {
|
|
15673
15763
|
header_text_alignment: "center" | "left" | "right";
|
|
15674
15764
|
logo_height: number;
|
|
15675
|
-
logo_position: "
|
|
15765
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
15676
15766
|
logo_url: string;
|
|
15677
15767
|
social_buttons_layout: "bottom" | "top";
|
|
15678
15768
|
};
|
|
@@ -15829,7 +15919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15829
15919
|
} & {
|
|
15830
15920
|
json: {
|
|
15831
15921
|
body?: string | undefined;
|
|
15832
|
-
screen?: "password" | "
|
|
15922
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
15833
15923
|
branding?: {
|
|
15834
15924
|
colors?: {
|
|
15835
15925
|
primary: string;
|
|
@@ -15915,12 +16005,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15915
16005
|
background_color: string;
|
|
15916
16006
|
background_image_url: string;
|
|
15917
16007
|
page_layout: "center" | "left" | "right";
|
|
15918
|
-
logo_placement?: "
|
|
16008
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
15919
16009
|
} | undefined;
|
|
15920
16010
|
widget?: {
|
|
15921
16011
|
header_text_alignment: "center" | "left" | "right";
|
|
15922
16012
|
logo_height: number;
|
|
15923
|
-
logo_position: "
|
|
16013
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
15924
16014
|
logo_url: string;
|
|
15925
16015
|
social_buttons_layout: "bottom" | "top";
|
|
15926
16016
|
} | undefined;
|
|
@@ -15998,7 +16088,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15998
16088
|
json: {
|
|
15999
16089
|
bindings: {
|
|
16000
16090
|
ref: {
|
|
16001
|
-
type?: "
|
|
16091
|
+
type?: "action_id" | "action_name" | undefined;
|
|
16002
16092
|
value?: string | undefined;
|
|
16003
16093
|
id?: string | undefined;
|
|
16004
16094
|
name?: string | undefined;
|
|
@@ -16073,7 +16163,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16073
16163
|
output: {
|
|
16074
16164
|
id: string;
|
|
16075
16165
|
trigger_id: string;
|
|
16076
|
-
status: "
|
|
16166
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
16077
16167
|
results: {
|
|
16078
16168
|
action_name: string;
|
|
16079
16169
|
error: {
|
|
@@ -16848,7 +16938,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16848
16938
|
message: string;
|
|
16849
16939
|
};
|
|
16850
16940
|
outputFormat: "json";
|
|
16851
|
-
status:
|
|
16941
|
+
status: 500;
|
|
16852
16942
|
} | {
|
|
16853
16943
|
input: {
|
|
16854
16944
|
query: {
|
|
@@ -16866,7 +16956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16866
16956
|
message: string;
|
|
16867
16957
|
};
|
|
16868
16958
|
outputFormat: "json";
|
|
16869
|
-
status:
|
|
16959
|
+
status: 400;
|
|
16870
16960
|
};
|
|
16871
16961
|
};
|
|
16872
16962
|
} & {
|
|
@@ -16904,7 +16994,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16904
16994
|
message: string;
|
|
16905
16995
|
};
|
|
16906
16996
|
outputFormat: "json";
|
|
16907
|
-
status:
|
|
16997
|
+
status: 500;
|
|
16908
16998
|
} | {
|
|
16909
16999
|
input: {
|
|
16910
17000
|
form: {
|
|
@@ -16922,7 +17012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16922
17012
|
message: string;
|
|
16923
17013
|
};
|
|
16924
17014
|
outputFormat: "json";
|
|
16925
|
-
status:
|
|
17015
|
+
status: 400;
|
|
16926
17016
|
};
|
|
16927
17017
|
};
|
|
16928
17018
|
}, "/login/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -16960,7 +17050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16960
17050
|
message: string;
|
|
16961
17051
|
};
|
|
16962
17052
|
outputFormat: "json";
|
|
16963
|
-
status:
|
|
17053
|
+
status: 500;
|
|
16964
17054
|
} | {
|
|
16965
17055
|
input: {
|
|
16966
17056
|
query: {
|
|
@@ -16978,7 +17068,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16978
17068
|
message: string;
|
|
16979
17069
|
};
|
|
16980
17070
|
outputFormat: "json";
|
|
16981
|
-
status:
|
|
17071
|
+
status: 400;
|
|
16982
17072
|
};
|
|
16983
17073
|
};
|
|
16984
17074
|
} & {
|
|
@@ -17016,7 +17106,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17016
17106
|
message: string;
|
|
17017
17107
|
};
|
|
17018
17108
|
outputFormat: "json";
|
|
17019
|
-
status:
|
|
17109
|
+
status: 500;
|
|
17020
17110
|
} | {
|
|
17021
17111
|
input: {
|
|
17022
17112
|
form: {
|
|
@@ -17034,7 +17124,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17034
17124
|
message: string;
|
|
17035
17125
|
};
|
|
17036
17126
|
outputFormat: "json";
|
|
17037
|
-
status:
|
|
17127
|
+
status: 400;
|
|
17038
17128
|
};
|
|
17039
17129
|
};
|
|
17040
17130
|
}, "/callback"> & hono_types.MergeSchemaPath<{
|
|
@@ -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: {
|
|
@@ -17534,18 +17624,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17534
17624
|
send: "code" | "link";
|
|
17535
17625
|
authParams: {
|
|
17536
17626
|
username?: string | undefined;
|
|
17537
|
-
audience?: string | undefined;
|
|
17538
17627
|
scope?: string | undefined;
|
|
17539
17628
|
state?: string | undefined;
|
|
17629
|
+
audience?: string | undefined;
|
|
17540
17630
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17541
17631
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17542
|
-
|
|
17543
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17544
|
-
redirect_uri?: string | undefined;
|
|
17545
|
-
nonce?: string | undefined;
|
|
17632
|
+
prompt?: string | undefined;
|
|
17546
17633
|
act_as?: string | undefined;
|
|
17634
|
+
redirect_uri?: string | undefined;
|
|
17547
17635
|
organization?: string | undefined;
|
|
17548
|
-
|
|
17636
|
+
nonce?: 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;
|
|
@@ -17570,18 +17660,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17570
17660
|
send: "code" | "link";
|
|
17571
17661
|
authParams: {
|
|
17572
17662
|
username?: string | undefined;
|
|
17573
|
-
audience?: string | undefined;
|
|
17574
17663
|
scope?: string | undefined;
|
|
17575
17664
|
state?: string | undefined;
|
|
17665
|
+
audience?: string | undefined;
|
|
17576
17666
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17577
17667
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17578
|
-
|
|
17579
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17580
|
-
redirect_uri?: string | undefined;
|
|
17581
|
-
nonce?: string | undefined;
|
|
17668
|
+
prompt?: string | undefined;
|
|
17582
17669
|
act_as?: string | undefined;
|
|
17670
|
+
redirect_uri?: string | undefined;
|
|
17583
17671
|
organization?: string | undefined;
|
|
17584
|
-
|
|
17672
|
+
nonce?: 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;
|
|
@@ -17646,7 +17736,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17646
17736
|
error_description?: string | undefined;
|
|
17647
17737
|
};
|
|
17648
17738
|
outputFormat: "json";
|
|
17649
|
-
status:
|
|
17739
|
+
status: 500;
|
|
17650
17740
|
} | {
|
|
17651
17741
|
input: {
|
|
17652
17742
|
query: {
|
|
@@ -17667,7 +17757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17667
17757
|
error_description?: string | undefined;
|
|
17668
17758
|
};
|
|
17669
17759
|
outputFormat: "json";
|
|
17670
|
-
status:
|
|
17760
|
+
status: 400;
|
|
17671
17761
|
};
|
|
17672
17762
|
};
|
|
17673
17763
|
}, "/passwordless"> & hono_types.MergeSchemaPath<{
|
|
@@ -17811,7 +17901,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17811
17901
|
client_id: string;
|
|
17812
17902
|
username: string;
|
|
17813
17903
|
otp: string;
|
|
17814
|
-
realm: "
|
|
17904
|
+
realm: "sms" | "email";
|
|
17815
17905
|
} | {
|
|
17816
17906
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17817
17907
|
subject_token: string;
|
|
@@ -17858,7 +17948,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17858
17948
|
client_id: string;
|
|
17859
17949
|
username: string;
|
|
17860
17950
|
otp: string;
|
|
17861
|
-
realm: "
|
|
17951
|
+
realm: "sms" | "email";
|
|
17862
17952
|
} | {
|
|
17863
17953
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17864
17954
|
subject_token: string;
|
|
@@ -17910,7 +18000,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17910
18000
|
client_id: string;
|
|
17911
18001
|
username: string;
|
|
17912
18002
|
otp: string;
|
|
17913
|
-
realm: "
|
|
18003
|
+
realm: "sms" | "email";
|
|
17914
18004
|
} | {
|
|
17915
18005
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17916
18006
|
subject_token: string;
|
|
@@ -17957,7 +18047,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17957
18047
|
client_id: string;
|
|
17958
18048
|
username: string;
|
|
17959
18049
|
otp: string;
|
|
17960
|
-
realm: "
|
|
18050
|
+
realm: "sms" | "email";
|
|
17961
18051
|
} | {
|
|
17962
18052
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17963
18053
|
subject_token: string;
|
|
@@ -18017,7 +18107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18017
18107
|
client_id: string;
|
|
18018
18108
|
username: string;
|
|
18019
18109
|
otp: string;
|
|
18020
|
-
realm: "
|
|
18110
|
+
realm: "sms" | "email";
|
|
18021
18111
|
} | {
|
|
18022
18112
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18023
18113
|
subject_token: string;
|
|
@@ -18064,7 +18154,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18064
18154
|
client_id: string;
|
|
18065
18155
|
username: string;
|
|
18066
18156
|
otp: string;
|
|
18067
|
-
realm: "
|
|
18157
|
+
realm: "sms" | "email";
|
|
18068
18158
|
} | {
|
|
18069
18159
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18070
18160
|
subject_token: string;
|
|
@@ -18119,7 +18209,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18119
18209
|
client_id: string;
|
|
18120
18210
|
username: string;
|
|
18121
18211
|
otp: string;
|
|
18122
|
-
realm: "
|
|
18212
|
+
realm: "sms" | "email";
|
|
18123
18213
|
} | {
|
|
18124
18214
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18125
18215
|
subject_token: string;
|
|
@@ -18166,7 +18256,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18166
18256
|
client_id: string;
|
|
18167
18257
|
username: string;
|
|
18168
18258
|
otp: string;
|
|
18169
|
-
realm: "
|
|
18259
|
+
realm: "sms" | "email";
|
|
18170
18260
|
} | {
|
|
18171
18261
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18172
18262
|
subject_token: string;
|
|
@@ -18221,7 +18311,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18221
18311
|
client_id: string;
|
|
18222
18312
|
username: string;
|
|
18223
18313
|
otp: string;
|
|
18224
|
-
realm: "
|
|
18314
|
+
realm: "sms" | "email";
|
|
18225
18315
|
} | {
|
|
18226
18316
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18227
18317
|
subject_token: string;
|
|
@@ -18268,7 +18358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18268
18358
|
client_id: string;
|
|
18269
18359
|
username: string;
|
|
18270
18360
|
otp: string;
|
|
18271
|
-
realm: "
|
|
18361
|
+
realm: "sms" | "email";
|
|
18272
18362
|
} | {
|
|
18273
18363
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
18274
18364
|
subject_token: string;
|
|
@@ -18621,7 +18711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18621
18711
|
};
|
|
18622
18712
|
output: {};
|
|
18623
18713
|
outputFormat: string;
|
|
18624
|
-
status:
|
|
18714
|
+
status: 500;
|
|
18625
18715
|
} | {
|
|
18626
18716
|
input: {
|
|
18627
18717
|
query: {
|
|
@@ -18630,7 +18720,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18630
18720
|
};
|
|
18631
18721
|
output: {};
|
|
18632
18722
|
outputFormat: string;
|
|
18633
|
-
status:
|
|
18723
|
+
status: 302;
|
|
18634
18724
|
} | {
|
|
18635
18725
|
input: {
|
|
18636
18726
|
query: {
|
|
@@ -18639,7 +18729,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18639
18729
|
};
|
|
18640
18730
|
output: {};
|
|
18641
18731
|
outputFormat: string;
|
|
18642
|
-
status:
|
|
18732
|
+
status: 400;
|
|
18643
18733
|
};
|
|
18644
18734
|
};
|
|
18645
18735
|
}, "/continue"> & hono_types.MergeSchemaPath<{
|
|
@@ -19488,7 +19578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19488
19578
|
$get: {
|
|
19489
19579
|
input: {
|
|
19490
19580
|
param: {
|
|
19491
|
-
screen: "
|
|
19581
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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: "
|
|
19597
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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: "
|
|
19613
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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: "
|
|
19633
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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: "
|
|
19651
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
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 };
|