authhero 5.17.1 → 5.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/p-35c8b265.entry.js +1 -0
- package/dist/authhero.cjs +139 -136
- package/dist/authhero.d.ts +425 -194
- package/dist/authhero.mjs +10490 -9833
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/emails/defaults/Layout.d.ts +3 -3
- package/dist/types/emails/defaults/PrimaryButton.d.ts +5 -2
- package/dist/types/helpers/consent.d.ts +31 -0
- package/dist/types/helpers/control-plane-sync-events.d.ts +67 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/default-destinations.d.ts +11 -0
- package/dist/types/helpers/outbox-destinations/control-plane-sync.d.ts +35 -0
- package/dist/types/helpers/outbox-destinations/logs.d.ts +2 -0
- package/dist/types/index.d.ts +285 -191
- package/dist/types/middlewares/index.d.ts +3 -0
- package/dist/types/middlewares/prefer.d.ts +12 -0
- 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/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/email-templates.d.ts +31 -14
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/grants.d.ts +80 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +250 -159
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/proxy-routes.d.ts +1 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +34 -1
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/screens/consent.d.ts +9 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/state-machines/login-session.d.ts +12 -1
- package/dist/types/types/AuthHeroConfig.d.ts +26 -0
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/types/Variables.d.ts +2 -0
- package/package.json +5 -5
- package/dist/assets/u/widget/p-f0f9eca3.entry.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
2
2
|
import * as hono_utils_types from 'hono/utils/types';
|
|
3
3
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
4
|
-
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
4
|
+
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
5
5
|
export * from '@authhero/adapter-interfaces';
|
|
6
6
|
import * as hono_types from 'hono/types';
|
|
7
7
|
import { z, OpenAPIHono } from '@hono/zod-openapi';
|
|
@@ -22,6 +22,14 @@ declare const auth0ClientSchema: z.ZodObject<{
|
|
|
22
22
|
}, z.core.$strip>;
|
|
23
23
|
type Auth0Client = z.infer<typeof auth0ClientSchema>;
|
|
24
24
|
|
|
25
|
+
declare const PREFER_TOKENS: readonly ["include-linked"];
|
|
26
|
+
type PreferToken = (typeof PREFER_TOKENS)[number];
|
|
27
|
+
interface PreferState {
|
|
28
|
+
has(token: PreferToken): boolean;
|
|
29
|
+
applied(token: PreferToken): void;
|
|
30
|
+
appliedTokens(): PreferToken[];
|
|
31
|
+
}
|
|
32
|
+
|
|
25
33
|
type Variables = {
|
|
26
34
|
tenant_id: string;
|
|
27
35
|
ip: string;
|
|
@@ -47,6 +55,7 @@ type Variables = {
|
|
|
47
55
|
auth0_client?: Auth0Client;
|
|
48
56
|
useragent?: string;
|
|
49
57
|
countryCode?: CountryCode;
|
|
58
|
+
prefer?: PreferState;
|
|
50
59
|
outboxEventPromises?: Promise<string>[];
|
|
51
60
|
backgroundPromises?: Promise<void>[];
|
|
52
61
|
client_authenticated_via_assertion?: boolean;
|
|
@@ -769,6 +778,49 @@ type Hooks = {
|
|
|
769
778
|
onFetchUserInfo?: OnFetchUserInfo;
|
|
770
779
|
};
|
|
771
780
|
|
|
781
|
+
declare const CONTROL_PLANE_SYNC_EVENT_PREFIX = "controlplane.sync.";
|
|
782
|
+
type SyncEntity = "custom_domain" | "proxy_route";
|
|
783
|
+
type SyncOp = "created" | "updated" | "deleted";
|
|
784
|
+
/**
|
|
785
|
+
* Wire shape posted from the tenant shard to the control plane. The destination
|
|
786
|
+
* serializes one event per HTTP request; the receiver accepts a batch
|
|
787
|
+
* (`{ events: [...] }`) for forward compatibility with a future
|
|
788
|
+
* batched-delivery destination.
|
|
789
|
+
*/
|
|
790
|
+
type SyncEvent = {
|
|
791
|
+
event_id: string;
|
|
792
|
+
tenant_id: string;
|
|
793
|
+
entity: "custom_domain";
|
|
794
|
+
op: "created" | "updated";
|
|
795
|
+
aggregate_id: string;
|
|
796
|
+
payload: CustomDomain;
|
|
797
|
+
occurred_at: string;
|
|
798
|
+
} | {
|
|
799
|
+
event_id: string;
|
|
800
|
+
tenant_id: string;
|
|
801
|
+
entity: "custom_domain";
|
|
802
|
+
op: "deleted";
|
|
803
|
+
aggregate_id: string;
|
|
804
|
+
payload: CustomDomain;
|
|
805
|
+
occurred_at: string;
|
|
806
|
+
} | {
|
|
807
|
+
event_id: string;
|
|
808
|
+
tenant_id: string;
|
|
809
|
+
entity: "proxy_route";
|
|
810
|
+
op: "created" | "updated";
|
|
811
|
+
aggregate_id: string;
|
|
812
|
+
payload: ProxyRoute;
|
|
813
|
+
occurred_at: string;
|
|
814
|
+
} | {
|
|
815
|
+
event_id: string;
|
|
816
|
+
tenant_id: string;
|
|
817
|
+
entity: "proxy_route";
|
|
818
|
+
op: "deleted";
|
|
819
|
+
aggregate_id: string;
|
|
820
|
+
payload: ProxyRoute;
|
|
821
|
+
occurred_at: string;
|
|
822
|
+
};
|
|
823
|
+
|
|
772
824
|
/**
|
|
773
825
|
* Management API audience for cross-tenant operations.
|
|
774
826
|
* Used when managing tenants from the main tenant with org-scoped tokens.
|
|
@@ -1095,6 +1147,32 @@ interface AuthHeroConfig {
|
|
|
1095
1147
|
proxyControlPlane?: {
|
|
1096
1148
|
resolveHost: (host: string) => Promise<_authhero_proxy.ResolvedHost | null>;
|
|
1097
1149
|
authenticate: (request: Request) => Promise<boolean> | boolean;
|
|
1150
|
+
/**
|
|
1151
|
+
* Optional receiver for `POST /sync` events emitted by tenant shards via
|
|
1152
|
+
* the `ControlPlaneSyncDestination`. Mount on the control-plane authhero
|
|
1153
|
+
* instance only. Implementations MUST be idempotent — the outbox retries
|
|
1154
|
+
* on transient failures. Use `createApplySyncEvents({ customDomains,
|
|
1155
|
+
* proxyRoutes })` (exported from `authhero`) for the default
|
|
1156
|
+
* adapter-backed implementation.
|
|
1157
|
+
*/
|
|
1158
|
+
applySyncEvents?: (events: SyncEvent[]) => Promise<void>;
|
|
1159
|
+
};
|
|
1160
|
+
/**
|
|
1161
|
+
* Optional outbox-driven replication of `custom_domains` and `proxy_routes`
|
|
1162
|
+
* mutations to a global proxy control plane. When set, every successful
|
|
1163
|
+
* write on this tenant shard enqueues a `controlplane.sync.*` outbox event;
|
|
1164
|
+
* the `ControlPlaneSyncDestination` POSTs each event to
|
|
1165
|
+
* `${baseUrl}/api/v2/proxy/control-plane/sync`. Requires the outbox to be
|
|
1166
|
+
* enabled (`outbox: { enabled: true }`).
|
|
1167
|
+
*
|
|
1168
|
+
* Leave unset for single-DB deployments — the proxy reads the same database
|
|
1169
|
+
* the management API writes to, so replication is unnecessary.
|
|
1170
|
+
*/
|
|
1171
|
+
controlPlaneSync?: {
|
|
1172
|
+
/** Base URL of the control-plane authhero instance. */
|
|
1173
|
+
baseUrl: string;
|
|
1174
|
+
/** Per-request timeout for the sync POST (default: 10_000ms). */
|
|
1175
|
+
timeoutMs?: number;
|
|
1098
1176
|
};
|
|
1099
1177
|
/**
|
|
1100
1178
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
@@ -1920,6 +1998,17 @@ interface CreateDefaultDestinationsConfig {
|
|
|
1920
1998
|
getServiceToken?: GetServiceToken;
|
|
1921
1999
|
/** Webhook HTTP request timeout in ms (default: 10_000). */
|
|
1922
2000
|
webhookTimeoutMs?: number;
|
|
2001
|
+
/**
|
|
2002
|
+
* When set, drains `controlplane.sync.*` events to the control-plane
|
|
2003
|
+
* authhero instance at the given base URL. Mirrors the per-request
|
|
2004
|
+
* `ControlPlaneSyncDestination` wired in the management API, so cron-drain
|
|
2005
|
+
* deliveries don't lose events that missed per-request processing.
|
|
2006
|
+
* Requires `getServiceToken`.
|
|
2007
|
+
*/
|
|
2008
|
+
controlPlaneSync?: {
|
|
2009
|
+
baseUrl: string;
|
|
2010
|
+
timeoutMs?: number;
|
|
2011
|
+
};
|
|
1923
2012
|
/**
|
|
1924
2013
|
* Custom webhook invoker — same shape as the `webhookInvoker` option on
|
|
1925
2014
|
* `init()`. When provided, `hook.*` events are dispatched by calling this
|
|
@@ -2020,6 +2109,8 @@ declare class LogsDestination implements EventDestination {
|
|
|
2020
2109
|
/**
|
|
2021
2110
|
* Only accept log-shaped events. `hook.*` events are dispatch tasks for
|
|
2022
2111
|
* webhook / code-hook destinations and are not audit log entries.
|
|
2112
|
+
* `controlplane.sync.*` events are replication tasks for the
|
|
2113
|
+
* ControlPlaneSyncDestination and likewise shouldn't appear in audit logs.
|
|
2023
2114
|
*/
|
|
2024
2115
|
accepts(event: AuditEvent): boolean;
|
|
2025
2116
|
transform(event: AuditEvent): {
|
|
@@ -2059,6 +2150,55 @@ declare class RegistrationFinalizerDestination implements EventDestination {
|
|
|
2059
2150
|
deliver(tasks: FinalizationTask[]): Promise<void>;
|
|
2060
2151
|
}
|
|
2061
2152
|
|
|
2153
|
+
interface ControlPlaneSyncDestinationOptions {
|
|
2154
|
+
/** Base URL of the control-plane authhero instance, e.g. `https://controlplane.example.com`. */
|
|
2155
|
+
baseUrl: string;
|
|
2156
|
+
/** Mints a bearer token to authenticate the sync POST. */
|
|
2157
|
+
getServiceToken: GetServiceToken;
|
|
2158
|
+
/** Per-request timeout (default: 10s). */
|
|
2159
|
+
timeoutMs?: number;
|
|
2160
|
+
/** Override for tests. */
|
|
2161
|
+
fetchImpl?: typeof fetch;
|
|
2162
|
+
}
|
|
2163
|
+
/**
|
|
2164
|
+
* Delivers `controlplane.sync.*` outbox events to the global control-plane
|
|
2165
|
+
* `POST /api/v2/proxy/control-plane/sync` endpoint. Each POST carries one event
|
|
2166
|
+
* with `Idempotency-Key: {event.id}` so the receiver can dedupe retries.
|
|
2167
|
+
*
|
|
2168
|
+
* The receiver MUST be idempotent: the outbox retries on network failure even
|
|
2169
|
+
* after a successful write, so a `created` may arrive twice and a stale
|
|
2170
|
+
* `updated` may arrive after a newer `deleted`. The default receiver in
|
|
2171
|
+
* `proxy-control-plane/index.ts` handles both cases.
|
|
2172
|
+
*/
|
|
2173
|
+
declare class ControlPlaneSyncDestination implements EventDestination {
|
|
2174
|
+
name: string;
|
|
2175
|
+
private baseUrl;
|
|
2176
|
+
private getServiceToken;
|
|
2177
|
+
private timeoutMs;
|
|
2178
|
+
private fetchImpl;
|
|
2179
|
+
constructor(options: ControlPlaneSyncDestinationOptions);
|
|
2180
|
+
accepts(event: AuditEvent): boolean;
|
|
2181
|
+
transform(event: AuditEvent): SyncEvent;
|
|
2182
|
+
deliver(events: SyncEvent[]): Promise<void>;
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
interface CreateApplySyncEventsOptions {
|
|
2186
|
+
customDomains: CustomDomainsAdapter;
|
|
2187
|
+
proxyRoutes?: ProxyRoutesAdapter;
|
|
2188
|
+
}
|
|
2189
|
+
/**
|
|
2190
|
+
* Build an idempotent `applySyncEvents` implementation backed by a local
|
|
2191
|
+
* `CustomDomainsAdapter` / `ProxyRoutesAdapter`. Handles the three retry
|
|
2192
|
+
* shapes the outbox can produce:
|
|
2193
|
+
*
|
|
2194
|
+
* - duplicate `created` (retry after the previous succeeded but
|
|
2195
|
+
* `markProcessed` failed) — falls back to `update`.
|
|
2196
|
+
* - `updated` for a row that doesn't exist locally yet (a `created`
|
|
2197
|
+
* delivery is still in flight or lost) — falls back to `create`.
|
|
2198
|
+
* - `deleted` for a row that's already gone — no-op success.
|
|
2199
|
+
*/
|
|
2200
|
+
declare function createApplySyncEvents(options: CreateApplySyncEventsOptions): (events: SyncEvent[]) => Promise<void>;
|
|
2201
|
+
|
|
2062
2202
|
/**
|
|
2063
2203
|
* Options for the entity hooks wrapper
|
|
2064
2204
|
*/
|
|
@@ -2515,7 +2655,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2515
2655
|
};
|
|
2516
2656
|
} & {
|
|
2517
2657
|
json: {
|
|
2518
|
-
type: "
|
|
2658
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2519
2659
|
phone_number?: string | undefined;
|
|
2520
2660
|
totp_secret?: string | undefined;
|
|
2521
2661
|
credential_id?: string | undefined;
|
|
@@ -2655,7 +2795,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2655
2795
|
};
|
|
2656
2796
|
};
|
|
2657
2797
|
output: {
|
|
2658
|
-
name: "
|
|
2798
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2659
2799
|
enabled: boolean;
|
|
2660
2800
|
trial_expired?: boolean | undefined;
|
|
2661
2801
|
}[];
|
|
@@ -2810,7 +2950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2810
2950
|
$get: {
|
|
2811
2951
|
input: {
|
|
2812
2952
|
param: {
|
|
2813
|
-
factor_name: "
|
|
2953
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2814
2954
|
};
|
|
2815
2955
|
} & {
|
|
2816
2956
|
header: {
|
|
@@ -2818,7 +2958,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2818
2958
|
};
|
|
2819
2959
|
};
|
|
2820
2960
|
output: {
|
|
2821
|
-
name: "
|
|
2961
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2822
2962
|
enabled: boolean;
|
|
2823
2963
|
trial_expired?: boolean | undefined;
|
|
2824
2964
|
};
|
|
@@ -2831,7 +2971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2831
2971
|
$put: {
|
|
2832
2972
|
input: {
|
|
2833
2973
|
param: {
|
|
2834
|
-
factor_name: "
|
|
2974
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2835
2975
|
};
|
|
2836
2976
|
} & {
|
|
2837
2977
|
header: {
|
|
@@ -2843,7 +2983,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2843
2983
|
};
|
|
2844
2984
|
};
|
|
2845
2985
|
output: {
|
|
2846
|
-
name: "
|
|
2986
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2847
2987
|
enabled: boolean;
|
|
2848
2988
|
trial_expired?: boolean | undefined;
|
|
2849
2989
|
};
|
|
@@ -3369,7 +3509,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3369
3509
|
};
|
|
3370
3510
|
output: {};
|
|
3371
3511
|
outputFormat: string;
|
|
3372
|
-
status:
|
|
3512
|
+
status: 204;
|
|
3373
3513
|
};
|
|
3374
3514
|
};
|
|
3375
3515
|
} & {
|
|
@@ -3588,10 +3728,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3588
3728
|
invitee: {
|
|
3589
3729
|
email?: string | undefined;
|
|
3590
3730
|
};
|
|
3731
|
+
id?: string | undefined;
|
|
3591
3732
|
app_metadata?: Record<string, any> | undefined;
|
|
3592
3733
|
user_metadata?: Record<string, any> | undefined;
|
|
3593
3734
|
connection_id?: string | undefined;
|
|
3594
|
-
id?: string | undefined;
|
|
3595
3735
|
roles?: string[] | undefined;
|
|
3596
3736
|
ttl_sec?: number | undefined;
|
|
3597
3737
|
send_invitation_email?: boolean | undefined;
|
|
@@ -5019,7 +5159,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5019
5159
|
hint?: string | undefined;
|
|
5020
5160
|
messages?: {
|
|
5021
5161
|
text: string;
|
|
5022
|
-
type: "
|
|
5162
|
+
type: "error" | "success" | "info" | "warning";
|
|
5023
5163
|
id?: number | undefined;
|
|
5024
5164
|
}[] | undefined;
|
|
5025
5165
|
required?: boolean | undefined;
|
|
@@ -5037,7 +5177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5037
5177
|
hint?: string | undefined;
|
|
5038
5178
|
messages?: {
|
|
5039
5179
|
text: string;
|
|
5040
|
-
type: "
|
|
5180
|
+
type: "error" | "success" | "info" | "warning";
|
|
5041
5181
|
id?: number | undefined;
|
|
5042
5182
|
}[] | undefined;
|
|
5043
5183
|
required?: boolean | undefined;
|
|
@@ -5061,7 +5201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5061
5201
|
hint?: string | undefined;
|
|
5062
5202
|
messages?: {
|
|
5063
5203
|
text: string;
|
|
5064
|
-
type: "
|
|
5204
|
+
type: "error" | "success" | "info" | "warning";
|
|
5065
5205
|
id?: number | undefined;
|
|
5066
5206
|
}[] | undefined;
|
|
5067
5207
|
required?: boolean | undefined;
|
|
@@ -5085,7 +5225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5085
5225
|
hint?: string | undefined;
|
|
5086
5226
|
messages?: {
|
|
5087
5227
|
text: string;
|
|
5088
|
-
type: "
|
|
5228
|
+
type: "error" | "success" | "info" | "warning";
|
|
5089
5229
|
id?: number | undefined;
|
|
5090
5230
|
}[] | undefined;
|
|
5091
5231
|
required?: boolean | undefined;
|
|
@@ -5114,7 +5254,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5114
5254
|
hint?: string | undefined;
|
|
5115
5255
|
messages?: {
|
|
5116
5256
|
text: string;
|
|
5117
|
-
type: "
|
|
5257
|
+
type: "error" | "success" | "info" | "warning";
|
|
5118
5258
|
id?: number | undefined;
|
|
5119
5259
|
}[] | undefined;
|
|
5120
5260
|
required?: boolean | undefined;
|
|
@@ -5129,7 +5269,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5129
5269
|
hint?: string | undefined;
|
|
5130
5270
|
messages?: {
|
|
5131
5271
|
text: string;
|
|
5132
|
-
type: "
|
|
5272
|
+
type: "error" | "success" | "info" | "warning";
|
|
5133
5273
|
id?: number | undefined;
|
|
5134
5274
|
}[] | undefined;
|
|
5135
5275
|
required?: boolean | undefined;
|
|
@@ -5150,7 +5290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5150
5290
|
hint?: string | undefined;
|
|
5151
5291
|
messages?: {
|
|
5152
5292
|
text: string;
|
|
5153
|
-
type: "
|
|
5293
|
+
type: "error" | "success" | "info" | "warning";
|
|
5154
5294
|
id?: number | undefined;
|
|
5155
5295
|
}[] | undefined;
|
|
5156
5296
|
required?: boolean | undefined;
|
|
@@ -5175,7 +5315,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5175
5315
|
hint?: string | undefined;
|
|
5176
5316
|
messages?: {
|
|
5177
5317
|
text: string;
|
|
5178
|
-
type: "
|
|
5318
|
+
type: "error" | "success" | "info" | "warning";
|
|
5179
5319
|
id?: number | undefined;
|
|
5180
5320
|
}[] | undefined;
|
|
5181
5321
|
required?: boolean | undefined;
|
|
@@ -5194,7 +5334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5194
5334
|
hint?: string | undefined;
|
|
5195
5335
|
messages?: {
|
|
5196
5336
|
text: string;
|
|
5197
|
-
type: "
|
|
5337
|
+
type: "error" | "success" | "info" | "warning";
|
|
5198
5338
|
id?: number | undefined;
|
|
5199
5339
|
}[] | undefined;
|
|
5200
5340
|
required?: boolean | undefined;
|
|
@@ -5214,7 +5354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5214
5354
|
hint?: string | undefined;
|
|
5215
5355
|
messages?: {
|
|
5216
5356
|
text: string;
|
|
5217
|
-
type: "
|
|
5357
|
+
type: "error" | "success" | "info" | "warning";
|
|
5218
5358
|
id?: number | undefined;
|
|
5219
5359
|
}[] | undefined;
|
|
5220
5360
|
required?: boolean | undefined;
|
|
@@ -5233,7 +5373,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5233
5373
|
hint?: string | undefined;
|
|
5234
5374
|
messages?: {
|
|
5235
5375
|
text: string;
|
|
5236
|
-
type: "
|
|
5376
|
+
type: "error" | "success" | "info" | "warning";
|
|
5237
5377
|
id?: number | undefined;
|
|
5238
5378
|
}[] | undefined;
|
|
5239
5379
|
required?: boolean | undefined;
|
|
@@ -5255,7 +5395,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5255
5395
|
hint?: string | undefined;
|
|
5256
5396
|
messages?: {
|
|
5257
5397
|
text: string;
|
|
5258
|
-
type: "
|
|
5398
|
+
type: "error" | "success" | "info" | "warning";
|
|
5259
5399
|
id?: number | undefined;
|
|
5260
5400
|
}[] | undefined;
|
|
5261
5401
|
required?: boolean | undefined;
|
|
@@ -5277,7 +5417,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5277
5417
|
hint?: string | undefined;
|
|
5278
5418
|
messages?: {
|
|
5279
5419
|
text: string;
|
|
5280
|
-
type: "
|
|
5420
|
+
type: "error" | "success" | "info" | "warning";
|
|
5281
5421
|
id?: number | undefined;
|
|
5282
5422
|
}[] | undefined;
|
|
5283
5423
|
required?: boolean | undefined;
|
|
@@ -5296,7 +5436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5296
5436
|
hint?: string | undefined;
|
|
5297
5437
|
messages?: {
|
|
5298
5438
|
text: string;
|
|
5299
|
-
type: "
|
|
5439
|
+
type: "error" | "success" | "info" | "warning";
|
|
5300
5440
|
id?: number | undefined;
|
|
5301
5441
|
}[] | undefined;
|
|
5302
5442
|
required?: boolean | undefined;
|
|
@@ -5321,7 +5461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5321
5461
|
hint?: string | undefined;
|
|
5322
5462
|
messages?: {
|
|
5323
5463
|
text: string;
|
|
5324
|
-
type: "
|
|
5464
|
+
type: "error" | "success" | "info" | "warning";
|
|
5325
5465
|
id?: number | undefined;
|
|
5326
5466
|
}[] | undefined;
|
|
5327
5467
|
required?: boolean | undefined;
|
|
@@ -5342,7 +5482,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5342
5482
|
hint?: string | undefined;
|
|
5343
5483
|
messages?: {
|
|
5344
5484
|
text: string;
|
|
5345
|
-
type: "
|
|
5485
|
+
type: "error" | "success" | "info" | "warning";
|
|
5346
5486
|
id?: number | undefined;
|
|
5347
5487
|
}[] | undefined;
|
|
5348
5488
|
required?: boolean | undefined;
|
|
@@ -5363,7 +5503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5363
5503
|
hint?: string | undefined;
|
|
5364
5504
|
messages?: {
|
|
5365
5505
|
text: string;
|
|
5366
|
-
type: "
|
|
5506
|
+
type: "error" | "success" | "info" | "warning";
|
|
5367
5507
|
id?: number | undefined;
|
|
5368
5508
|
}[] | undefined;
|
|
5369
5509
|
required?: boolean | undefined;
|
|
@@ -5596,7 +5736,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5596
5736
|
hint?: string | undefined;
|
|
5597
5737
|
messages?: {
|
|
5598
5738
|
text: string;
|
|
5599
|
-
type: "
|
|
5739
|
+
type: "error" | "success" | "info" | "warning";
|
|
5600
5740
|
id?: number | undefined;
|
|
5601
5741
|
}[] | undefined;
|
|
5602
5742
|
required?: boolean | undefined;
|
|
@@ -5614,7 +5754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5614
5754
|
hint?: string | undefined;
|
|
5615
5755
|
messages?: {
|
|
5616
5756
|
text: string;
|
|
5617
|
-
type: "
|
|
5757
|
+
type: "error" | "success" | "info" | "warning";
|
|
5618
5758
|
id?: number | undefined;
|
|
5619
5759
|
}[] | undefined;
|
|
5620
5760
|
required?: boolean | undefined;
|
|
@@ -5638,7 +5778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5638
5778
|
hint?: string | undefined;
|
|
5639
5779
|
messages?: {
|
|
5640
5780
|
text: string;
|
|
5641
|
-
type: "
|
|
5781
|
+
type: "error" | "success" | "info" | "warning";
|
|
5642
5782
|
id?: number | undefined;
|
|
5643
5783
|
}[] | undefined;
|
|
5644
5784
|
required?: boolean | undefined;
|
|
@@ -5662,7 +5802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5662
5802
|
hint?: string | undefined;
|
|
5663
5803
|
messages?: {
|
|
5664
5804
|
text: string;
|
|
5665
|
-
type: "
|
|
5805
|
+
type: "error" | "success" | "info" | "warning";
|
|
5666
5806
|
id?: number | undefined;
|
|
5667
5807
|
}[] | undefined;
|
|
5668
5808
|
required?: boolean | undefined;
|
|
@@ -5691,7 +5831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5691
5831
|
hint?: string | undefined;
|
|
5692
5832
|
messages?: {
|
|
5693
5833
|
text: string;
|
|
5694
|
-
type: "
|
|
5834
|
+
type: "error" | "success" | "info" | "warning";
|
|
5695
5835
|
id?: number | undefined;
|
|
5696
5836
|
}[] | undefined;
|
|
5697
5837
|
required?: boolean | undefined;
|
|
@@ -5706,7 +5846,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5706
5846
|
hint?: string | undefined;
|
|
5707
5847
|
messages?: {
|
|
5708
5848
|
text: string;
|
|
5709
|
-
type: "
|
|
5849
|
+
type: "error" | "success" | "info" | "warning";
|
|
5710
5850
|
id?: number | undefined;
|
|
5711
5851
|
}[] | undefined;
|
|
5712
5852
|
required?: boolean | undefined;
|
|
@@ -5727,7 +5867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5727
5867
|
hint?: string | undefined;
|
|
5728
5868
|
messages?: {
|
|
5729
5869
|
text: string;
|
|
5730
|
-
type: "
|
|
5870
|
+
type: "error" | "success" | "info" | "warning";
|
|
5731
5871
|
id?: number | undefined;
|
|
5732
5872
|
}[] | undefined;
|
|
5733
5873
|
required?: boolean | undefined;
|
|
@@ -5752,7 +5892,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5752
5892
|
hint?: string | undefined;
|
|
5753
5893
|
messages?: {
|
|
5754
5894
|
text: string;
|
|
5755
|
-
type: "
|
|
5895
|
+
type: "error" | "success" | "info" | "warning";
|
|
5756
5896
|
id?: number | undefined;
|
|
5757
5897
|
}[] | undefined;
|
|
5758
5898
|
required?: boolean | undefined;
|
|
@@ -5771,7 +5911,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5771
5911
|
hint?: string | undefined;
|
|
5772
5912
|
messages?: {
|
|
5773
5913
|
text: string;
|
|
5774
|
-
type: "
|
|
5914
|
+
type: "error" | "success" | "info" | "warning";
|
|
5775
5915
|
id?: number | undefined;
|
|
5776
5916
|
}[] | undefined;
|
|
5777
5917
|
required?: boolean | undefined;
|
|
@@ -5791,7 +5931,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5791
5931
|
hint?: string | undefined;
|
|
5792
5932
|
messages?: {
|
|
5793
5933
|
text: string;
|
|
5794
|
-
type: "
|
|
5934
|
+
type: "error" | "success" | "info" | "warning";
|
|
5795
5935
|
id?: number | undefined;
|
|
5796
5936
|
}[] | undefined;
|
|
5797
5937
|
required?: boolean | undefined;
|
|
@@ -5810,7 +5950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5810
5950
|
hint?: string | undefined;
|
|
5811
5951
|
messages?: {
|
|
5812
5952
|
text: string;
|
|
5813
|
-
type: "
|
|
5953
|
+
type: "error" | "success" | "info" | "warning";
|
|
5814
5954
|
id?: number | undefined;
|
|
5815
5955
|
}[] | undefined;
|
|
5816
5956
|
required?: boolean | undefined;
|
|
@@ -5832,7 +5972,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5832
5972
|
hint?: string | undefined;
|
|
5833
5973
|
messages?: {
|
|
5834
5974
|
text: string;
|
|
5835
|
-
type: "
|
|
5975
|
+
type: "error" | "success" | "info" | "warning";
|
|
5836
5976
|
id?: number | undefined;
|
|
5837
5977
|
}[] | undefined;
|
|
5838
5978
|
required?: boolean | undefined;
|
|
@@ -5854,7 +5994,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5854
5994
|
hint?: string | undefined;
|
|
5855
5995
|
messages?: {
|
|
5856
5996
|
text: string;
|
|
5857
|
-
type: "
|
|
5997
|
+
type: "error" | "success" | "info" | "warning";
|
|
5858
5998
|
id?: number | undefined;
|
|
5859
5999
|
}[] | undefined;
|
|
5860
6000
|
required?: boolean | undefined;
|
|
@@ -5873,7 +6013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5873
6013
|
hint?: string | undefined;
|
|
5874
6014
|
messages?: {
|
|
5875
6015
|
text: string;
|
|
5876
|
-
type: "
|
|
6016
|
+
type: "error" | "success" | "info" | "warning";
|
|
5877
6017
|
id?: number | undefined;
|
|
5878
6018
|
}[] | undefined;
|
|
5879
6019
|
required?: boolean | undefined;
|
|
@@ -5898,7 +6038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5898
6038
|
hint?: string | undefined;
|
|
5899
6039
|
messages?: {
|
|
5900
6040
|
text: string;
|
|
5901
|
-
type: "
|
|
6041
|
+
type: "error" | "success" | "info" | "warning";
|
|
5902
6042
|
id?: number | undefined;
|
|
5903
6043
|
}[] | undefined;
|
|
5904
6044
|
required?: boolean | undefined;
|
|
@@ -5919,7 +6059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5919
6059
|
hint?: string | undefined;
|
|
5920
6060
|
messages?: {
|
|
5921
6061
|
text: string;
|
|
5922
|
-
type: "
|
|
6062
|
+
type: "error" | "success" | "info" | "warning";
|
|
5923
6063
|
id?: number | undefined;
|
|
5924
6064
|
}[] | undefined;
|
|
5925
6065
|
required?: boolean | undefined;
|
|
@@ -5940,7 +6080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5940
6080
|
hint?: string | undefined;
|
|
5941
6081
|
messages?: {
|
|
5942
6082
|
text: string;
|
|
5943
|
-
type: "
|
|
6083
|
+
type: "error" | "success" | "info" | "warning";
|
|
5944
6084
|
id?: number | undefined;
|
|
5945
6085
|
}[] | undefined;
|
|
5946
6086
|
required?: boolean | undefined;
|
|
@@ -6188,7 +6328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6188
6328
|
hint?: string | undefined;
|
|
6189
6329
|
messages?: {
|
|
6190
6330
|
text: string;
|
|
6191
|
-
type: "
|
|
6331
|
+
type: "error" | "success" | "info" | "warning";
|
|
6192
6332
|
id?: number | undefined;
|
|
6193
6333
|
}[] | undefined;
|
|
6194
6334
|
required?: boolean | undefined;
|
|
@@ -6206,7 +6346,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6206
6346
|
hint?: string | undefined;
|
|
6207
6347
|
messages?: {
|
|
6208
6348
|
text: string;
|
|
6209
|
-
type: "
|
|
6349
|
+
type: "error" | "success" | "info" | "warning";
|
|
6210
6350
|
id?: number | undefined;
|
|
6211
6351
|
}[] | undefined;
|
|
6212
6352
|
required?: boolean | undefined;
|
|
@@ -6230,7 +6370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6230
6370
|
hint?: string | undefined;
|
|
6231
6371
|
messages?: {
|
|
6232
6372
|
text: string;
|
|
6233
|
-
type: "
|
|
6373
|
+
type: "error" | "success" | "info" | "warning";
|
|
6234
6374
|
id?: number | undefined;
|
|
6235
6375
|
}[] | undefined;
|
|
6236
6376
|
required?: boolean | undefined;
|
|
@@ -6254,7 +6394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6254
6394
|
hint?: string | undefined;
|
|
6255
6395
|
messages?: {
|
|
6256
6396
|
text: string;
|
|
6257
|
-
type: "
|
|
6397
|
+
type: "error" | "success" | "info" | "warning";
|
|
6258
6398
|
id?: number | undefined;
|
|
6259
6399
|
}[] | undefined;
|
|
6260
6400
|
required?: boolean | undefined;
|
|
@@ -6283,7 +6423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6283
6423
|
hint?: string | undefined;
|
|
6284
6424
|
messages?: {
|
|
6285
6425
|
text: string;
|
|
6286
|
-
type: "
|
|
6426
|
+
type: "error" | "success" | "info" | "warning";
|
|
6287
6427
|
id?: number | undefined;
|
|
6288
6428
|
}[] | undefined;
|
|
6289
6429
|
required?: boolean | undefined;
|
|
@@ -6298,7 +6438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6298
6438
|
hint?: string | undefined;
|
|
6299
6439
|
messages?: {
|
|
6300
6440
|
text: string;
|
|
6301
|
-
type: "
|
|
6441
|
+
type: "error" | "success" | "info" | "warning";
|
|
6302
6442
|
id?: number | undefined;
|
|
6303
6443
|
}[] | undefined;
|
|
6304
6444
|
required?: boolean | undefined;
|
|
@@ -6319,7 +6459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6319
6459
|
hint?: string | undefined;
|
|
6320
6460
|
messages?: {
|
|
6321
6461
|
text: string;
|
|
6322
|
-
type: "
|
|
6462
|
+
type: "error" | "success" | "info" | "warning";
|
|
6323
6463
|
id?: number | undefined;
|
|
6324
6464
|
}[] | undefined;
|
|
6325
6465
|
required?: boolean | undefined;
|
|
@@ -6344,7 +6484,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6344
6484
|
hint?: string | undefined;
|
|
6345
6485
|
messages?: {
|
|
6346
6486
|
text: string;
|
|
6347
|
-
type: "
|
|
6487
|
+
type: "error" | "success" | "info" | "warning";
|
|
6348
6488
|
id?: number | undefined;
|
|
6349
6489
|
}[] | undefined;
|
|
6350
6490
|
required?: boolean | undefined;
|
|
@@ -6363,7 +6503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6363
6503
|
hint?: string | undefined;
|
|
6364
6504
|
messages?: {
|
|
6365
6505
|
text: string;
|
|
6366
|
-
type: "
|
|
6506
|
+
type: "error" | "success" | "info" | "warning";
|
|
6367
6507
|
id?: number | undefined;
|
|
6368
6508
|
}[] | undefined;
|
|
6369
6509
|
required?: boolean | undefined;
|
|
@@ -6383,7 +6523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6383
6523
|
hint?: string | undefined;
|
|
6384
6524
|
messages?: {
|
|
6385
6525
|
text: string;
|
|
6386
|
-
type: "
|
|
6526
|
+
type: "error" | "success" | "info" | "warning";
|
|
6387
6527
|
id?: number | undefined;
|
|
6388
6528
|
}[] | undefined;
|
|
6389
6529
|
required?: boolean | undefined;
|
|
@@ -6402,7 +6542,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6402
6542
|
hint?: string | undefined;
|
|
6403
6543
|
messages?: {
|
|
6404
6544
|
text: string;
|
|
6405
|
-
type: "
|
|
6545
|
+
type: "error" | "success" | "info" | "warning";
|
|
6406
6546
|
id?: number | undefined;
|
|
6407
6547
|
}[] | undefined;
|
|
6408
6548
|
required?: boolean | undefined;
|
|
@@ -6424,7 +6564,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6424
6564
|
hint?: string | undefined;
|
|
6425
6565
|
messages?: {
|
|
6426
6566
|
text: string;
|
|
6427
|
-
type: "
|
|
6567
|
+
type: "error" | "success" | "info" | "warning";
|
|
6428
6568
|
id?: number | undefined;
|
|
6429
6569
|
}[] | undefined;
|
|
6430
6570
|
required?: boolean | undefined;
|
|
@@ -6446,7 +6586,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6446
6586
|
hint?: string | undefined;
|
|
6447
6587
|
messages?: {
|
|
6448
6588
|
text: string;
|
|
6449
|
-
type: "
|
|
6589
|
+
type: "error" | "success" | "info" | "warning";
|
|
6450
6590
|
id?: number | undefined;
|
|
6451
6591
|
}[] | undefined;
|
|
6452
6592
|
required?: boolean | undefined;
|
|
@@ -6465,7 +6605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6465
6605
|
hint?: string | undefined;
|
|
6466
6606
|
messages?: {
|
|
6467
6607
|
text: string;
|
|
6468
|
-
type: "
|
|
6608
|
+
type: "error" | "success" | "info" | "warning";
|
|
6469
6609
|
id?: number | undefined;
|
|
6470
6610
|
}[] | undefined;
|
|
6471
6611
|
required?: boolean | undefined;
|
|
@@ -6490,7 +6630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6490
6630
|
hint?: string | undefined;
|
|
6491
6631
|
messages?: {
|
|
6492
6632
|
text: string;
|
|
6493
|
-
type: "
|
|
6633
|
+
type: "error" | "success" | "info" | "warning";
|
|
6494
6634
|
id?: number | undefined;
|
|
6495
6635
|
}[] | undefined;
|
|
6496
6636
|
required?: boolean | undefined;
|
|
@@ -6511,7 +6651,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6511
6651
|
hint?: string | undefined;
|
|
6512
6652
|
messages?: {
|
|
6513
6653
|
text: string;
|
|
6514
|
-
type: "
|
|
6654
|
+
type: "error" | "success" | "info" | "warning";
|
|
6515
6655
|
id?: number | undefined;
|
|
6516
6656
|
}[] | undefined;
|
|
6517
6657
|
required?: boolean | undefined;
|
|
@@ -6532,7 +6672,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6532
6672
|
hint?: string | undefined;
|
|
6533
6673
|
messages?: {
|
|
6534
6674
|
text: string;
|
|
6535
|
-
type: "
|
|
6675
|
+
type: "error" | "success" | "info" | "warning";
|
|
6536
6676
|
id?: number | undefined;
|
|
6537
6677
|
}[] | undefined;
|
|
6538
6678
|
required?: boolean | undefined;
|
|
@@ -6786,7 +6926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6786
6926
|
hint?: string | undefined;
|
|
6787
6927
|
messages?: {
|
|
6788
6928
|
text: string;
|
|
6789
|
-
type: "
|
|
6929
|
+
type: "error" | "success" | "info" | "warning";
|
|
6790
6930
|
id?: number | undefined;
|
|
6791
6931
|
}[] | undefined;
|
|
6792
6932
|
required?: boolean | undefined;
|
|
@@ -6804,7 +6944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6804
6944
|
hint?: string | undefined;
|
|
6805
6945
|
messages?: {
|
|
6806
6946
|
text: string;
|
|
6807
|
-
type: "
|
|
6947
|
+
type: "error" | "success" | "info" | "warning";
|
|
6808
6948
|
id?: number | undefined;
|
|
6809
6949
|
}[] | undefined;
|
|
6810
6950
|
required?: boolean | undefined;
|
|
@@ -6828,7 +6968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6828
6968
|
hint?: string | undefined;
|
|
6829
6969
|
messages?: {
|
|
6830
6970
|
text: string;
|
|
6831
|
-
type: "
|
|
6971
|
+
type: "error" | "success" | "info" | "warning";
|
|
6832
6972
|
id?: number | undefined;
|
|
6833
6973
|
}[] | undefined;
|
|
6834
6974
|
required?: boolean | undefined;
|
|
@@ -6852,7 +6992,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6852
6992
|
hint?: string | undefined;
|
|
6853
6993
|
messages?: {
|
|
6854
6994
|
text: string;
|
|
6855
|
-
type: "
|
|
6995
|
+
type: "error" | "success" | "info" | "warning";
|
|
6856
6996
|
id?: number | undefined;
|
|
6857
6997
|
}[] | undefined;
|
|
6858
6998
|
required?: boolean | undefined;
|
|
@@ -6877,7 +7017,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6877
7017
|
hint?: string | undefined;
|
|
6878
7018
|
messages?: {
|
|
6879
7019
|
text: string;
|
|
6880
|
-
type: "
|
|
7020
|
+
type: "error" | "success" | "info" | "warning";
|
|
6881
7021
|
id?: number | undefined;
|
|
6882
7022
|
}[] | undefined;
|
|
6883
7023
|
required?: boolean | undefined;
|
|
@@ -6892,7 +7032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6892
7032
|
hint?: string | undefined;
|
|
6893
7033
|
messages?: {
|
|
6894
7034
|
text: string;
|
|
6895
|
-
type: "
|
|
7035
|
+
type: "error" | "success" | "info" | "warning";
|
|
6896
7036
|
id?: number | undefined;
|
|
6897
7037
|
}[] | undefined;
|
|
6898
7038
|
required?: boolean | undefined;
|
|
@@ -6913,7 +7053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6913
7053
|
hint?: string | undefined;
|
|
6914
7054
|
messages?: {
|
|
6915
7055
|
text: string;
|
|
6916
|
-
type: "
|
|
7056
|
+
type: "error" | "success" | "info" | "warning";
|
|
6917
7057
|
id?: number | undefined;
|
|
6918
7058
|
}[] | undefined;
|
|
6919
7059
|
required?: boolean | undefined;
|
|
@@ -6938,7 +7078,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6938
7078
|
hint?: string | undefined;
|
|
6939
7079
|
messages?: {
|
|
6940
7080
|
text: string;
|
|
6941
|
-
type: "
|
|
7081
|
+
type: "error" | "success" | "info" | "warning";
|
|
6942
7082
|
id?: number | undefined;
|
|
6943
7083
|
}[] | undefined;
|
|
6944
7084
|
required?: boolean | undefined;
|
|
@@ -6957,7 +7097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6957
7097
|
hint?: string | undefined;
|
|
6958
7098
|
messages?: {
|
|
6959
7099
|
text: string;
|
|
6960
|
-
type: "
|
|
7100
|
+
type: "error" | "success" | "info" | "warning";
|
|
6961
7101
|
id?: number | undefined;
|
|
6962
7102
|
}[] | undefined;
|
|
6963
7103
|
required?: boolean | undefined;
|
|
@@ -6977,7 +7117,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6977
7117
|
hint?: string | undefined;
|
|
6978
7118
|
messages?: {
|
|
6979
7119
|
text: string;
|
|
6980
|
-
type: "
|
|
7120
|
+
type: "error" | "success" | "info" | "warning";
|
|
6981
7121
|
id?: number | undefined;
|
|
6982
7122
|
}[] | undefined;
|
|
6983
7123
|
required?: boolean | undefined;
|
|
@@ -6996,7 +7136,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6996
7136
|
hint?: string | undefined;
|
|
6997
7137
|
messages?: {
|
|
6998
7138
|
text: string;
|
|
6999
|
-
type: "
|
|
7139
|
+
type: "error" | "success" | "info" | "warning";
|
|
7000
7140
|
id?: number | undefined;
|
|
7001
7141
|
}[] | undefined;
|
|
7002
7142
|
required?: boolean | undefined;
|
|
@@ -7018,7 +7158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7018
7158
|
hint?: string | undefined;
|
|
7019
7159
|
messages?: {
|
|
7020
7160
|
text: string;
|
|
7021
|
-
type: "
|
|
7161
|
+
type: "error" | "success" | "info" | "warning";
|
|
7022
7162
|
id?: number | undefined;
|
|
7023
7163
|
}[] | undefined;
|
|
7024
7164
|
required?: boolean | undefined;
|
|
@@ -7040,7 +7180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7040
7180
|
hint?: string | undefined;
|
|
7041
7181
|
messages?: {
|
|
7042
7182
|
text: string;
|
|
7043
|
-
type: "
|
|
7183
|
+
type: "error" | "success" | "info" | "warning";
|
|
7044
7184
|
id?: number | undefined;
|
|
7045
7185
|
}[] | undefined;
|
|
7046
7186
|
required?: boolean | undefined;
|
|
@@ -7059,7 +7199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7059
7199
|
hint?: string | undefined;
|
|
7060
7200
|
messages?: {
|
|
7061
7201
|
text: string;
|
|
7062
|
-
type: "
|
|
7202
|
+
type: "error" | "success" | "info" | "warning";
|
|
7063
7203
|
id?: number | undefined;
|
|
7064
7204
|
}[] | undefined;
|
|
7065
7205
|
required?: boolean | undefined;
|
|
@@ -7084,7 +7224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7084
7224
|
hint?: string | undefined;
|
|
7085
7225
|
messages?: {
|
|
7086
7226
|
text: string;
|
|
7087
|
-
type: "
|
|
7227
|
+
type: "error" | "success" | "info" | "warning";
|
|
7088
7228
|
id?: number | undefined;
|
|
7089
7229
|
}[] | undefined;
|
|
7090
7230
|
required?: boolean | undefined;
|
|
@@ -7105,7 +7245,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7105
7245
|
hint?: string | undefined;
|
|
7106
7246
|
messages?: {
|
|
7107
7247
|
text: string;
|
|
7108
|
-
type: "
|
|
7248
|
+
type: "error" | "success" | "info" | "warning";
|
|
7109
7249
|
id?: number | undefined;
|
|
7110
7250
|
}[] | undefined;
|
|
7111
7251
|
required?: boolean | undefined;
|
|
@@ -7126,7 +7266,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7126
7266
|
hint?: string | undefined;
|
|
7127
7267
|
messages?: {
|
|
7128
7268
|
text: string;
|
|
7129
|
-
type: "
|
|
7269
|
+
type: "error" | "success" | "info" | "warning";
|
|
7130
7270
|
id?: number | undefined;
|
|
7131
7271
|
}[] | undefined;
|
|
7132
7272
|
required?: boolean | undefined;
|
|
@@ -7357,7 +7497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7357
7497
|
hint?: string | undefined;
|
|
7358
7498
|
messages?: {
|
|
7359
7499
|
text: string;
|
|
7360
|
-
type: "
|
|
7500
|
+
type: "error" | "success" | "info" | "warning";
|
|
7361
7501
|
id?: number | undefined;
|
|
7362
7502
|
}[] | undefined;
|
|
7363
7503
|
required?: boolean | undefined;
|
|
@@ -7375,7 +7515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7375
7515
|
hint?: string | undefined;
|
|
7376
7516
|
messages?: {
|
|
7377
7517
|
text: string;
|
|
7378
|
-
type: "
|
|
7518
|
+
type: "error" | "success" | "info" | "warning";
|
|
7379
7519
|
id?: number | undefined;
|
|
7380
7520
|
}[] | undefined;
|
|
7381
7521
|
required?: boolean | undefined;
|
|
@@ -7399,7 +7539,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7399
7539
|
hint?: string | undefined;
|
|
7400
7540
|
messages?: {
|
|
7401
7541
|
text: string;
|
|
7402
|
-
type: "
|
|
7542
|
+
type: "error" | "success" | "info" | "warning";
|
|
7403
7543
|
id?: number | undefined;
|
|
7404
7544
|
}[] | undefined;
|
|
7405
7545
|
required?: boolean | undefined;
|
|
@@ -7423,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7423
7563
|
hint?: string | undefined;
|
|
7424
7564
|
messages?: {
|
|
7425
7565
|
text: string;
|
|
7426
|
-
type: "
|
|
7566
|
+
type: "error" | "success" | "info" | "warning";
|
|
7427
7567
|
id?: number | undefined;
|
|
7428
7568
|
}[] | undefined;
|
|
7429
7569
|
required?: boolean | undefined;
|
|
@@ -7452,7 +7592,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7452
7592
|
hint?: string | undefined;
|
|
7453
7593
|
messages?: {
|
|
7454
7594
|
text: string;
|
|
7455
|
-
type: "
|
|
7595
|
+
type: "error" | "success" | "info" | "warning";
|
|
7456
7596
|
id?: number | undefined;
|
|
7457
7597
|
}[] | undefined;
|
|
7458
7598
|
required?: boolean | undefined;
|
|
@@ -7467,7 +7607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7467
7607
|
hint?: string | undefined;
|
|
7468
7608
|
messages?: {
|
|
7469
7609
|
text: string;
|
|
7470
|
-
type: "
|
|
7610
|
+
type: "error" | "success" | "info" | "warning";
|
|
7471
7611
|
id?: number | undefined;
|
|
7472
7612
|
}[] | undefined;
|
|
7473
7613
|
required?: boolean | undefined;
|
|
@@ -7488,7 +7628,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7488
7628
|
hint?: string | undefined;
|
|
7489
7629
|
messages?: {
|
|
7490
7630
|
text: string;
|
|
7491
|
-
type: "
|
|
7631
|
+
type: "error" | "success" | "info" | "warning";
|
|
7492
7632
|
id?: number | undefined;
|
|
7493
7633
|
}[] | undefined;
|
|
7494
7634
|
required?: boolean | undefined;
|
|
@@ -7513,7 +7653,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7513
7653
|
hint?: string | undefined;
|
|
7514
7654
|
messages?: {
|
|
7515
7655
|
text: string;
|
|
7516
|
-
type: "
|
|
7656
|
+
type: "error" | "success" | "info" | "warning";
|
|
7517
7657
|
id?: number | undefined;
|
|
7518
7658
|
}[] | undefined;
|
|
7519
7659
|
required?: boolean | undefined;
|
|
@@ -7532,7 +7672,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7532
7672
|
hint?: string | undefined;
|
|
7533
7673
|
messages?: {
|
|
7534
7674
|
text: string;
|
|
7535
|
-
type: "
|
|
7675
|
+
type: "error" | "success" | "info" | "warning";
|
|
7536
7676
|
id?: number | undefined;
|
|
7537
7677
|
}[] | undefined;
|
|
7538
7678
|
required?: boolean | undefined;
|
|
@@ -7552,7 +7692,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7552
7692
|
hint?: string | undefined;
|
|
7553
7693
|
messages?: {
|
|
7554
7694
|
text: string;
|
|
7555
|
-
type: "
|
|
7695
|
+
type: "error" | "success" | "info" | "warning";
|
|
7556
7696
|
id?: number | undefined;
|
|
7557
7697
|
}[] | undefined;
|
|
7558
7698
|
required?: boolean | undefined;
|
|
@@ -7571,7 +7711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7571
7711
|
hint?: string | undefined;
|
|
7572
7712
|
messages?: {
|
|
7573
7713
|
text: string;
|
|
7574
|
-
type: "
|
|
7714
|
+
type: "error" | "success" | "info" | "warning";
|
|
7575
7715
|
id?: number | undefined;
|
|
7576
7716
|
}[] | undefined;
|
|
7577
7717
|
required?: boolean | undefined;
|
|
@@ -7593,7 +7733,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7593
7733
|
hint?: string | undefined;
|
|
7594
7734
|
messages?: {
|
|
7595
7735
|
text: string;
|
|
7596
|
-
type: "
|
|
7736
|
+
type: "error" | "success" | "info" | "warning";
|
|
7597
7737
|
id?: number | undefined;
|
|
7598
7738
|
}[] | undefined;
|
|
7599
7739
|
required?: boolean | undefined;
|
|
@@ -7615,7 +7755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7615
7755
|
hint?: string | undefined;
|
|
7616
7756
|
messages?: {
|
|
7617
7757
|
text: string;
|
|
7618
|
-
type: "
|
|
7758
|
+
type: "error" | "success" | "info" | "warning";
|
|
7619
7759
|
id?: number | undefined;
|
|
7620
7760
|
}[] | undefined;
|
|
7621
7761
|
required?: boolean | undefined;
|
|
@@ -7634,7 +7774,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7634
7774
|
hint?: string | undefined;
|
|
7635
7775
|
messages?: {
|
|
7636
7776
|
text: string;
|
|
7637
|
-
type: "
|
|
7777
|
+
type: "error" | "success" | "info" | "warning";
|
|
7638
7778
|
id?: number | undefined;
|
|
7639
7779
|
}[] | undefined;
|
|
7640
7780
|
required?: boolean | undefined;
|
|
@@ -7659,7 +7799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7659
7799
|
hint?: string | undefined;
|
|
7660
7800
|
messages?: {
|
|
7661
7801
|
text: string;
|
|
7662
|
-
type: "
|
|
7802
|
+
type: "error" | "success" | "info" | "warning";
|
|
7663
7803
|
id?: number | undefined;
|
|
7664
7804
|
}[] | undefined;
|
|
7665
7805
|
required?: boolean | undefined;
|
|
@@ -7680,7 +7820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7680
7820
|
hint?: string | undefined;
|
|
7681
7821
|
messages?: {
|
|
7682
7822
|
text: string;
|
|
7683
|
-
type: "
|
|
7823
|
+
type: "error" | "success" | "info" | "warning";
|
|
7684
7824
|
id?: number | undefined;
|
|
7685
7825
|
}[] | undefined;
|
|
7686
7826
|
required?: boolean | undefined;
|
|
@@ -7701,7 +7841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7701
7841
|
hint?: string | undefined;
|
|
7702
7842
|
messages?: {
|
|
7703
7843
|
text: string;
|
|
7704
|
-
type: "
|
|
7844
|
+
type: "error" | "success" | "info" | "warning";
|
|
7705
7845
|
id?: number | undefined;
|
|
7706
7846
|
}[] | undefined;
|
|
7707
7847
|
required?: boolean | undefined;
|
|
@@ -7934,7 +8074,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7934
8074
|
hint?: string | undefined;
|
|
7935
8075
|
messages?: {
|
|
7936
8076
|
text: string;
|
|
7937
|
-
type: "
|
|
8077
|
+
type: "error" | "success" | "info" | "warning";
|
|
7938
8078
|
id?: number | undefined;
|
|
7939
8079
|
}[] | undefined;
|
|
7940
8080
|
required?: boolean | undefined;
|
|
@@ -7952,7 +8092,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7952
8092
|
hint?: string | undefined;
|
|
7953
8093
|
messages?: {
|
|
7954
8094
|
text: string;
|
|
7955
|
-
type: "
|
|
8095
|
+
type: "error" | "success" | "info" | "warning";
|
|
7956
8096
|
id?: number | undefined;
|
|
7957
8097
|
}[] | undefined;
|
|
7958
8098
|
required?: boolean | undefined;
|
|
@@ -7976,7 +8116,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7976
8116
|
hint?: string | undefined;
|
|
7977
8117
|
messages?: {
|
|
7978
8118
|
text: string;
|
|
7979
|
-
type: "
|
|
8119
|
+
type: "error" | "success" | "info" | "warning";
|
|
7980
8120
|
id?: number | undefined;
|
|
7981
8121
|
}[] | undefined;
|
|
7982
8122
|
required?: boolean | undefined;
|
|
@@ -8000,7 +8140,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8000
8140
|
hint?: string | undefined;
|
|
8001
8141
|
messages?: {
|
|
8002
8142
|
text: string;
|
|
8003
|
-
type: "
|
|
8143
|
+
type: "error" | "success" | "info" | "warning";
|
|
8004
8144
|
id?: number | undefined;
|
|
8005
8145
|
}[] | undefined;
|
|
8006
8146
|
required?: boolean | undefined;
|
|
@@ -8025,7 +8165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8025
8165
|
hint?: string | undefined;
|
|
8026
8166
|
messages?: {
|
|
8027
8167
|
text: string;
|
|
8028
|
-
type: "
|
|
8168
|
+
type: "error" | "success" | "info" | "warning";
|
|
8029
8169
|
id?: number | undefined;
|
|
8030
8170
|
}[] | undefined;
|
|
8031
8171
|
required?: boolean | undefined;
|
|
@@ -8040,7 +8180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8040
8180
|
hint?: string | undefined;
|
|
8041
8181
|
messages?: {
|
|
8042
8182
|
text: string;
|
|
8043
|
-
type: "
|
|
8183
|
+
type: "error" | "success" | "info" | "warning";
|
|
8044
8184
|
id?: number | undefined;
|
|
8045
8185
|
}[] | undefined;
|
|
8046
8186
|
required?: boolean | undefined;
|
|
@@ -8061,7 +8201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8061
8201
|
hint?: string | undefined;
|
|
8062
8202
|
messages?: {
|
|
8063
8203
|
text: string;
|
|
8064
|
-
type: "
|
|
8204
|
+
type: "error" | "success" | "info" | "warning";
|
|
8065
8205
|
id?: number | undefined;
|
|
8066
8206
|
}[] | undefined;
|
|
8067
8207
|
required?: boolean | undefined;
|
|
@@ -8086,7 +8226,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8086
8226
|
hint?: string | undefined;
|
|
8087
8227
|
messages?: {
|
|
8088
8228
|
text: string;
|
|
8089
|
-
type: "
|
|
8229
|
+
type: "error" | "success" | "info" | "warning";
|
|
8090
8230
|
id?: number | undefined;
|
|
8091
8231
|
}[] | undefined;
|
|
8092
8232
|
required?: boolean | undefined;
|
|
@@ -8105,7 +8245,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8105
8245
|
hint?: string | undefined;
|
|
8106
8246
|
messages?: {
|
|
8107
8247
|
text: string;
|
|
8108
|
-
type: "
|
|
8248
|
+
type: "error" | "success" | "info" | "warning";
|
|
8109
8249
|
id?: number | undefined;
|
|
8110
8250
|
}[] | undefined;
|
|
8111
8251
|
required?: boolean | undefined;
|
|
@@ -8125,7 +8265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8125
8265
|
hint?: string | undefined;
|
|
8126
8266
|
messages?: {
|
|
8127
8267
|
text: string;
|
|
8128
|
-
type: "
|
|
8268
|
+
type: "error" | "success" | "info" | "warning";
|
|
8129
8269
|
id?: number | undefined;
|
|
8130
8270
|
}[] | undefined;
|
|
8131
8271
|
required?: boolean | undefined;
|
|
@@ -8144,7 +8284,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8144
8284
|
hint?: string | undefined;
|
|
8145
8285
|
messages?: {
|
|
8146
8286
|
text: string;
|
|
8147
|
-
type: "
|
|
8287
|
+
type: "error" | "success" | "info" | "warning";
|
|
8148
8288
|
id?: number | undefined;
|
|
8149
8289
|
}[] | undefined;
|
|
8150
8290
|
required?: boolean | undefined;
|
|
@@ -8166,7 +8306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8166
8306
|
hint?: string | undefined;
|
|
8167
8307
|
messages?: {
|
|
8168
8308
|
text: string;
|
|
8169
|
-
type: "
|
|
8309
|
+
type: "error" | "success" | "info" | "warning";
|
|
8170
8310
|
id?: number | undefined;
|
|
8171
8311
|
}[] | undefined;
|
|
8172
8312
|
required?: boolean | undefined;
|
|
@@ -8188,7 +8328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8188
8328
|
hint?: string | undefined;
|
|
8189
8329
|
messages?: {
|
|
8190
8330
|
text: string;
|
|
8191
|
-
type: "
|
|
8331
|
+
type: "error" | "success" | "info" | "warning";
|
|
8192
8332
|
id?: number | undefined;
|
|
8193
8333
|
}[] | undefined;
|
|
8194
8334
|
required?: boolean | undefined;
|
|
@@ -8207,7 +8347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8207
8347
|
hint?: string | undefined;
|
|
8208
8348
|
messages?: {
|
|
8209
8349
|
text: string;
|
|
8210
|
-
type: "
|
|
8350
|
+
type: "error" | "success" | "info" | "warning";
|
|
8211
8351
|
id?: number | undefined;
|
|
8212
8352
|
}[] | undefined;
|
|
8213
8353
|
required?: boolean | undefined;
|
|
@@ -8232,7 +8372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8232
8372
|
hint?: string | undefined;
|
|
8233
8373
|
messages?: {
|
|
8234
8374
|
text: string;
|
|
8235
|
-
type: "
|
|
8375
|
+
type: "error" | "success" | "info" | "warning";
|
|
8236
8376
|
id?: number | undefined;
|
|
8237
8377
|
}[] | undefined;
|
|
8238
8378
|
required?: boolean | undefined;
|
|
@@ -8253,7 +8393,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8253
8393
|
hint?: string | undefined;
|
|
8254
8394
|
messages?: {
|
|
8255
8395
|
text: string;
|
|
8256
|
-
type: "
|
|
8396
|
+
type: "error" | "success" | "info" | "warning";
|
|
8257
8397
|
id?: number | undefined;
|
|
8258
8398
|
}[] | undefined;
|
|
8259
8399
|
required?: boolean | undefined;
|
|
@@ -8274,7 +8414,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8274
8414
|
hint?: string | undefined;
|
|
8275
8415
|
messages?: {
|
|
8276
8416
|
text: string;
|
|
8277
|
-
type: "
|
|
8417
|
+
type: "error" | "success" | "info" | "warning";
|
|
8278
8418
|
id?: number | undefined;
|
|
8279
8419
|
}[] | undefined;
|
|
8280
8420
|
required?: boolean | undefined;
|
|
@@ -8505,7 +8645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8505
8645
|
hint?: string | undefined;
|
|
8506
8646
|
messages?: {
|
|
8507
8647
|
text: string;
|
|
8508
|
-
type: "
|
|
8648
|
+
type: "error" | "success" | "info" | "warning";
|
|
8509
8649
|
id?: number | undefined;
|
|
8510
8650
|
}[] | undefined;
|
|
8511
8651
|
required?: boolean | undefined;
|
|
@@ -8523,7 +8663,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8523
8663
|
hint?: string | undefined;
|
|
8524
8664
|
messages?: {
|
|
8525
8665
|
text: string;
|
|
8526
|
-
type: "
|
|
8666
|
+
type: "error" | "success" | "info" | "warning";
|
|
8527
8667
|
id?: number | undefined;
|
|
8528
8668
|
}[] | undefined;
|
|
8529
8669
|
required?: boolean | undefined;
|
|
@@ -8547,7 +8687,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8547
8687
|
hint?: string | undefined;
|
|
8548
8688
|
messages?: {
|
|
8549
8689
|
text: string;
|
|
8550
|
-
type: "
|
|
8690
|
+
type: "error" | "success" | "info" | "warning";
|
|
8551
8691
|
id?: number | undefined;
|
|
8552
8692
|
}[] | undefined;
|
|
8553
8693
|
required?: boolean | undefined;
|
|
@@ -8571,7 +8711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8571
8711
|
hint?: string | undefined;
|
|
8572
8712
|
messages?: {
|
|
8573
8713
|
text: string;
|
|
8574
|
-
type: "
|
|
8714
|
+
type: "error" | "success" | "info" | "warning";
|
|
8575
8715
|
id?: number | undefined;
|
|
8576
8716
|
}[] | undefined;
|
|
8577
8717
|
required?: boolean | undefined;
|
|
@@ -8600,7 +8740,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8600
8740
|
hint?: string | undefined;
|
|
8601
8741
|
messages?: {
|
|
8602
8742
|
text: string;
|
|
8603
|
-
type: "
|
|
8743
|
+
type: "error" | "success" | "info" | "warning";
|
|
8604
8744
|
id?: number | undefined;
|
|
8605
8745
|
}[] | undefined;
|
|
8606
8746
|
required?: boolean | undefined;
|
|
@@ -8615,7 +8755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8615
8755
|
hint?: string | undefined;
|
|
8616
8756
|
messages?: {
|
|
8617
8757
|
text: string;
|
|
8618
|
-
type: "
|
|
8758
|
+
type: "error" | "success" | "info" | "warning";
|
|
8619
8759
|
id?: number | undefined;
|
|
8620
8760
|
}[] | undefined;
|
|
8621
8761
|
required?: boolean | undefined;
|
|
@@ -8636,7 +8776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8636
8776
|
hint?: string | undefined;
|
|
8637
8777
|
messages?: {
|
|
8638
8778
|
text: string;
|
|
8639
|
-
type: "
|
|
8779
|
+
type: "error" | "success" | "info" | "warning";
|
|
8640
8780
|
id?: number | undefined;
|
|
8641
8781
|
}[] | undefined;
|
|
8642
8782
|
required?: boolean | undefined;
|
|
@@ -8661,7 +8801,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8661
8801
|
hint?: string | undefined;
|
|
8662
8802
|
messages?: {
|
|
8663
8803
|
text: string;
|
|
8664
|
-
type: "
|
|
8804
|
+
type: "error" | "success" | "info" | "warning";
|
|
8665
8805
|
id?: number | undefined;
|
|
8666
8806
|
}[] | undefined;
|
|
8667
8807
|
required?: boolean | undefined;
|
|
@@ -8680,7 +8820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8680
8820
|
hint?: string | undefined;
|
|
8681
8821
|
messages?: {
|
|
8682
8822
|
text: string;
|
|
8683
|
-
type: "
|
|
8823
|
+
type: "error" | "success" | "info" | "warning";
|
|
8684
8824
|
id?: number | undefined;
|
|
8685
8825
|
}[] | undefined;
|
|
8686
8826
|
required?: boolean | undefined;
|
|
@@ -8700,7 +8840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8700
8840
|
hint?: string | undefined;
|
|
8701
8841
|
messages?: {
|
|
8702
8842
|
text: string;
|
|
8703
|
-
type: "
|
|
8843
|
+
type: "error" | "success" | "info" | "warning";
|
|
8704
8844
|
id?: number | undefined;
|
|
8705
8845
|
}[] | undefined;
|
|
8706
8846
|
required?: boolean | undefined;
|
|
@@ -8719,7 +8859,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8719
8859
|
hint?: string | undefined;
|
|
8720
8860
|
messages?: {
|
|
8721
8861
|
text: string;
|
|
8722
|
-
type: "
|
|
8862
|
+
type: "error" | "success" | "info" | "warning";
|
|
8723
8863
|
id?: number | undefined;
|
|
8724
8864
|
}[] | undefined;
|
|
8725
8865
|
required?: boolean | undefined;
|
|
@@ -8741,7 +8881,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8741
8881
|
hint?: string | undefined;
|
|
8742
8882
|
messages?: {
|
|
8743
8883
|
text: string;
|
|
8744
|
-
type: "
|
|
8884
|
+
type: "error" | "success" | "info" | "warning";
|
|
8745
8885
|
id?: number | undefined;
|
|
8746
8886
|
}[] | undefined;
|
|
8747
8887
|
required?: boolean | undefined;
|
|
@@ -8763,7 +8903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8763
8903
|
hint?: string | undefined;
|
|
8764
8904
|
messages?: {
|
|
8765
8905
|
text: string;
|
|
8766
|
-
type: "
|
|
8906
|
+
type: "error" | "success" | "info" | "warning";
|
|
8767
8907
|
id?: number | undefined;
|
|
8768
8908
|
}[] | undefined;
|
|
8769
8909
|
required?: boolean | undefined;
|
|
@@ -8782,7 +8922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8782
8922
|
hint?: string | undefined;
|
|
8783
8923
|
messages?: {
|
|
8784
8924
|
text: string;
|
|
8785
|
-
type: "
|
|
8925
|
+
type: "error" | "success" | "info" | "warning";
|
|
8786
8926
|
id?: number | undefined;
|
|
8787
8927
|
}[] | undefined;
|
|
8788
8928
|
required?: boolean | undefined;
|
|
@@ -8807,7 +8947,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8807
8947
|
hint?: string | undefined;
|
|
8808
8948
|
messages?: {
|
|
8809
8949
|
text: string;
|
|
8810
|
-
type: "
|
|
8950
|
+
type: "error" | "success" | "info" | "warning";
|
|
8811
8951
|
id?: number | undefined;
|
|
8812
8952
|
}[] | undefined;
|
|
8813
8953
|
required?: boolean | undefined;
|
|
@@ -8828,7 +8968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8828
8968
|
hint?: string | undefined;
|
|
8829
8969
|
messages?: {
|
|
8830
8970
|
text: string;
|
|
8831
|
-
type: "
|
|
8971
|
+
type: "error" | "success" | "info" | "warning";
|
|
8832
8972
|
id?: number | undefined;
|
|
8833
8973
|
}[] | undefined;
|
|
8834
8974
|
required?: boolean | undefined;
|
|
@@ -8849,7 +8989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8849
8989
|
hint?: string | undefined;
|
|
8850
8990
|
messages?: {
|
|
8851
8991
|
text: string;
|
|
8852
|
-
type: "
|
|
8992
|
+
type: "error" | "success" | "info" | "warning";
|
|
8853
8993
|
id?: number | undefined;
|
|
8854
8994
|
}[] | undefined;
|
|
8855
8995
|
required?: boolean | undefined;
|
|
@@ -9079,7 +9219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9079
9219
|
};
|
|
9080
9220
|
};
|
|
9081
9221
|
output: {
|
|
9082
|
-
prompt: "
|
|
9222
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9083
9223
|
language: string;
|
|
9084
9224
|
}[];
|
|
9085
9225
|
outputFormat: "json";
|
|
@@ -9117,7 +9257,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9117
9257
|
$get: {
|
|
9118
9258
|
input: {
|
|
9119
9259
|
param: {
|
|
9120
|
-
prompt: "
|
|
9260
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9121
9261
|
language: string;
|
|
9122
9262
|
};
|
|
9123
9263
|
} & {
|
|
@@ -9139,7 +9279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9139
9279
|
$put: {
|
|
9140
9280
|
input: {
|
|
9141
9281
|
param: {
|
|
9142
|
-
prompt: "
|
|
9282
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9143
9283
|
language: string;
|
|
9144
9284
|
};
|
|
9145
9285
|
} & {
|
|
@@ -9163,7 +9303,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9163
9303
|
$delete: {
|
|
9164
9304
|
input: {
|
|
9165
9305
|
param: {
|
|
9166
|
-
prompt: "
|
|
9306
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
9167
9307
|
language: string;
|
|
9168
9308
|
};
|
|
9169
9309
|
} & {
|
|
@@ -10025,7 +10165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10025
10165
|
};
|
|
10026
10166
|
} | {
|
|
10027
10167
|
mode: "inline";
|
|
10028
|
-
status: "
|
|
10168
|
+
status: "error" | "success";
|
|
10029
10169
|
connection_id: string;
|
|
10030
10170
|
connection_name: string;
|
|
10031
10171
|
strategy: string;
|
|
@@ -11252,7 +11392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11252
11392
|
};
|
|
11253
11393
|
};
|
|
11254
11394
|
output: {
|
|
11255
|
-
type: "
|
|
11395
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11256
11396
|
date: string;
|
|
11257
11397
|
isMobile: boolean;
|
|
11258
11398
|
log_id: string;
|
|
@@ -11291,7 +11431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11291
11431
|
limit: number;
|
|
11292
11432
|
length: number;
|
|
11293
11433
|
logs: {
|
|
11294
|
-
type: "
|
|
11434
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11295
11435
|
date: string;
|
|
11296
11436
|
isMobile: boolean;
|
|
11297
11437
|
log_id: string;
|
|
@@ -11345,7 +11485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11345
11485
|
};
|
|
11346
11486
|
};
|
|
11347
11487
|
output: {
|
|
11348
|
-
type: "
|
|
11488
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
11349
11489
|
date: string;
|
|
11350
11490
|
isMobile: boolean;
|
|
11351
11491
|
log_id: string;
|
|
@@ -11414,6 +11554,80 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11414
11554
|
};
|
|
11415
11555
|
};
|
|
11416
11556
|
}, "/client-registration-tokens"> & hono_types.MergeSchemaPath<{
|
|
11557
|
+
"/": {
|
|
11558
|
+
$get: {
|
|
11559
|
+
input: {
|
|
11560
|
+
query: {
|
|
11561
|
+
per_page?: string | undefined;
|
|
11562
|
+
page?: string | undefined;
|
|
11563
|
+
include_totals?: string | undefined;
|
|
11564
|
+
user_id?: string | undefined;
|
|
11565
|
+
client_id?: string | undefined;
|
|
11566
|
+
audience?: string | undefined;
|
|
11567
|
+
};
|
|
11568
|
+
} & {
|
|
11569
|
+
header: {
|
|
11570
|
+
"tenant-id"?: string | undefined;
|
|
11571
|
+
};
|
|
11572
|
+
};
|
|
11573
|
+
output: {
|
|
11574
|
+
user_id: string;
|
|
11575
|
+
clientID: string;
|
|
11576
|
+
scope: string[];
|
|
11577
|
+
id: string;
|
|
11578
|
+
audience?: string | undefined;
|
|
11579
|
+
}[] | {
|
|
11580
|
+
start: number;
|
|
11581
|
+
limit: number;
|
|
11582
|
+
length: number;
|
|
11583
|
+
grants: {
|
|
11584
|
+
user_id: string;
|
|
11585
|
+
clientID: string;
|
|
11586
|
+
scope: string[];
|
|
11587
|
+
id: string;
|
|
11588
|
+
audience?: string | undefined;
|
|
11589
|
+
}[];
|
|
11590
|
+
total?: number | undefined;
|
|
11591
|
+
};
|
|
11592
|
+
outputFormat: "json";
|
|
11593
|
+
status: 200;
|
|
11594
|
+
};
|
|
11595
|
+
};
|
|
11596
|
+
} & {
|
|
11597
|
+
"/:id": {
|
|
11598
|
+
$delete: {
|
|
11599
|
+
input: {
|
|
11600
|
+
param: {
|
|
11601
|
+
id: string;
|
|
11602
|
+
};
|
|
11603
|
+
} & {
|
|
11604
|
+
header: {
|
|
11605
|
+
"tenant-id"?: string | undefined;
|
|
11606
|
+
};
|
|
11607
|
+
};
|
|
11608
|
+
output: {};
|
|
11609
|
+
outputFormat: string;
|
|
11610
|
+
status: 204;
|
|
11611
|
+
};
|
|
11612
|
+
};
|
|
11613
|
+
} & {
|
|
11614
|
+
"/": {
|
|
11615
|
+
$delete: {
|
|
11616
|
+
input: {
|
|
11617
|
+
query: {
|
|
11618
|
+
user_id: string;
|
|
11619
|
+
};
|
|
11620
|
+
} & {
|
|
11621
|
+
header: {
|
|
11622
|
+
"tenant-id"?: string | undefined;
|
|
11623
|
+
};
|
|
11624
|
+
};
|
|
11625
|
+
output: {};
|
|
11626
|
+
outputFormat: string;
|
|
11627
|
+
status: 204;
|
|
11628
|
+
};
|
|
11629
|
+
};
|
|
11630
|
+
}, "/grants"> & hono_types.MergeSchemaPath<{
|
|
11417
11631
|
"/": {
|
|
11418
11632
|
$get: {
|
|
11419
11633
|
input: {
|
|
@@ -11659,7 +11873,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11659
11873
|
addons?: {
|
|
11660
11874
|
[x: string]: any;
|
|
11661
11875
|
} | undefined;
|
|
11662
|
-
token_endpoint_auth_method?: "none" | "
|
|
11876
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11663
11877
|
client_metadata?: {
|
|
11664
11878
|
[x: string]: string;
|
|
11665
11879
|
} | undefined;
|
|
@@ -11755,7 +11969,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11755
11969
|
addons?: {
|
|
11756
11970
|
[x: string]: any;
|
|
11757
11971
|
} | undefined;
|
|
11758
|
-
token_endpoint_auth_method?: "none" | "
|
|
11972
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11759
11973
|
client_metadata?: {
|
|
11760
11974
|
[x: string]: string;
|
|
11761
11975
|
} | undefined;
|
|
@@ -11866,7 +12080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11866
12080
|
addons?: {
|
|
11867
12081
|
[x: string]: any;
|
|
11868
12082
|
} | undefined;
|
|
11869
|
-
token_endpoint_auth_method?: "none" | "
|
|
12083
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11870
12084
|
client_metadata?: {
|
|
11871
12085
|
[x: string]: string;
|
|
11872
12086
|
} | undefined;
|
|
@@ -11976,7 +12190,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11976
12190
|
custom_login_page_preview?: string | undefined;
|
|
11977
12191
|
form_template?: string | undefined;
|
|
11978
12192
|
addons?: Record<string, any> | undefined;
|
|
11979
|
-
token_endpoint_auth_method?: "none" | "
|
|
12193
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
11980
12194
|
client_metadata?: Record<string, string> | undefined;
|
|
11981
12195
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
11982
12196
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12056,7 +12270,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12056
12270
|
addons?: {
|
|
12057
12271
|
[x: string]: any;
|
|
12058
12272
|
} | undefined;
|
|
12059
|
-
token_endpoint_auth_method?: "none" | "
|
|
12273
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12060
12274
|
client_metadata?: {
|
|
12061
12275
|
[x: string]: string;
|
|
12062
12276
|
} | undefined;
|
|
@@ -12145,7 +12359,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12145
12359
|
custom_login_page_preview?: string | undefined;
|
|
12146
12360
|
form_template?: string | undefined;
|
|
12147
12361
|
addons?: Record<string, any> | undefined;
|
|
12148
|
-
token_endpoint_auth_method?: "none" | "
|
|
12362
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12149
12363
|
client_metadata?: Record<string, string> | undefined;
|
|
12150
12364
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12151
12365
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12225,7 +12439,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12225
12439
|
addons?: {
|
|
12226
12440
|
[x: string]: any;
|
|
12227
12441
|
} | undefined;
|
|
12228
|
-
token_endpoint_auth_method?: "none" | "
|
|
12442
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
12229
12443
|
client_metadata?: {
|
|
12230
12444
|
[x: string]: string;
|
|
12231
12445
|
} | undefined;
|
|
@@ -13489,7 +13703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13489
13703
|
};
|
|
13490
13704
|
};
|
|
13491
13705
|
output: {
|
|
13492
|
-
type: "
|
|
13706
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13493
13707
|
date: string;
|
|
13494
13708
|
isMobile: boolean;
|
|
13495
13709
|
log_id: string;
|
|
@@ -13528,7 +13742,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13528
13742
|
limit: number;
|
|
13529
13743
|
length: number;
|
|
13530
13744
|
logs: {
|
|
13531
|
-
type: "
|
|
13745
|
+
type: "fc" | "fd" | "fn" | "i" | "sapi" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "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" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "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";
|
|
13532
13746
|
date: string;
|
|
13533
13747
|
isMobile: boolean;
|
|
13534
13748
|
log_id: string;
|
|
@@ -13843,7 +14057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13843
14057
|
};
|
|
13844
14058
|
} & {
|
|
13845
14059
|
json: {
|
|
13846
|
-
template: "
|
|
14060
|
+
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";
|
|
13847
14061
|
body: string;
|
|
13848
14062
|
from: string;
|
|
13849
14063
|
subject: string;
|
|
@@ -13864,7 +14078,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13864
14078
|
};
|
|
13865
14079
|
} & {
|
|
13866
14080
|
json: {
|
|
13867
|
-
template: "
|
|
14081
|
+
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";
|
|
13868
14082
|
body: string;
|
|
13869
14083
|
from: string;
|
|
13870
14084
|
subject: string;
|
|
@@ -13876,7 +14090,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13876
14090
|
};
|
|
13877
14091
|
};
|
|
13878
14092
|
output: {
|
|
13879
|
-
template: "
|
|
14093
|
+
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";
|
|
13880
14094
|
body: string;
|
|
13881
14095
|
from: string;
|
|
13882
14096
|
subject: string;
|
|
@@ -13890,12 +14104,29 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13890
14104
|
status: 201;
|
|
13891
14105
|
};
|
|
13892
14106
|
};
|
|
14107
|
+
} & {
|
|
14108
|
+
"/defaults": {
|
|
14109
|
+
$get: {
|
|
14110
|
+
input: {
|
|
14111
|
+
header: {
|
|
14112
|
+
"tenant-id"?: string | undefined;
|
|
14113
|
+
};
|
|
14114
|
+
};
|
|
14115
|
+
output: {
|
|
14116
|
+
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";
|
|
14117
|
+
body: string;
|
|
14118
|
+
subject: string;
|
|
14119
|
+
}[];
|
|
14120
|
+
outputFormat: "json";
|
|
14121
|
+
status: 200;
|
|
14122
|
+
};
|
|
14123
|
+
};
|
|
13893
14124
|
} & {
|
|
13894
14125
|
"/:templateName": {
|
|
13895
14126
|
$get: {
|
|
13896
14127
|
input: {
|
|
13897
14128
|
param: {
|
|
13898
|
-
templateName: "
|
|
14129
|
+
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";
|
|
13899
14130
|
};
|
|
13900
14131
|
} & {
|
|
13901
14132
|
header: {
|
|
@@ -13908,7 +14139,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13908
14139
|
} | {
|
|
13909
14140
|
input: {
|
|
13910
14141
|
param: {
|
|
13911
|
-
templateName: "
|
|
14142
|
+
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";
|
|
13912
14143
|
};
|
|
13913
14144
|
} & {
|
|
13914
14145
|
header: {
|
|
@@ -13916,7 +14147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13916
14147
|
};
|
|
13917
14148
|
};
|
|
13918
14149
|
output: {
|
|
13919
|
-
template: "
|
|
14150
|
+
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";
|
|
13920
14151
|
body: string;
|
|
13921
14152
|
from: string;
|
|
13922
14153
|
subject: string;
|
|
@@ -13935,7 +14166,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13935
14166
|
$put: {
|
|
13936
14167
|
input: {
|
|
13937
14168
|
param: {
|
|
13938
|
-
templateName: "
|
|
14169
|
+
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";
|
|
13939
14170
|
};
|
|
13940
14171
|
} & {
|
|
13941
14172
|
header: {
|
|
@@ -13943,7 +14174,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13943
14174
|
};
|
|
13944
14175
|
} & {
|
|
13945
14176
|
json: {
|
|
13946
|
-
template: "
|
|
14177
|
+
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";
|
|
13947
14178
|
body: string;
|
|
13948
14179
|
from: string;
|
|
13949
14180
|
subject: string;
|
|
@@ -13955,7 +14186,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13955
14186
|
};
|
|
13956
14187
|
};
|
|
13957
14188
|
output: {
|
|
13958
|
-
template: "
|
|
14189
|
+
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";
|
|
13959
14190
|
body: string;
|
|
13960
14191
|
from: string;
|
|
13961
14192
|
subject: string;
|
|
@@ -13974,7 +14205,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13974
14205
|
$patch: {
|
|
13975
14206
|
input: {
|
|
13976
14207
|
param: {
|
|
13977
|
-
templateName: "
|
|
14208
|
+
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";
|
|
13978
14209
|
};
|
|
13979
14210
|
} & {
|
|
13980
14211
|
header: {
|
|
@@ -13982,7 +14213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13982
14213
|
};
|
|
13983
14214
|
} & {
|
|
13984
14215
|
json: {
|
|
13985
|
-
template?: "
|
|
14216
|
+
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;
|
|
13986
14217
|
body?: string | undefined;
|
|
13987
14218
|
from?: string | undefined;
|
|
13988
14219
|
subject?: string | undefined;
|
|
@@ -13999,7 +14230,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13999
14230
|
} | {
|
|
14000
14231
|
input: {
|
|
14001
14232
|
param: {
|
|
14002
|
-
templateName: "
|
|
14233
|
+
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";
|
|
14003
14234
|
};
|
|
14004
14235
|
} & {
|
|
14005
14236
|
header: {
|
|
@@ -14007,7 +14238,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14007
14238
|
};
|
|
14008
14239
|
} & {
|
|
14009
14240
|
json: {
|
|
14010
|
-
template?: "
|
|
14241
|
+
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;
|
|
14011
14242
|
body?: string | undefined;
|
|
14012
14243
|
from?: string | undefined;
|
|
14013
14244
|
subject?: string | undefined;
|
|
@@ -14019,7 +14250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14019
14250
|
};
|
|
14020
14251
|
};
|
|
14021
14252
|
output: {
|
|
14022
|
-
template: "
|
|
14253
|
+
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";
|
|
14023
14254
|
body: string;
|
|
14024
14255
|
from: string;
|
|
14025
14256
|
subject: string;
|
|
@@ -15111,7 +15342,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15111
15342
|
output: {
|
|
15112
15343
|
id: string;
|
|
15113
15344
|
trigger_id: string;
|
|
15114
|
-
status: "
|
|
15345
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
15115
15346
|
results: {
|
|
15116
15347
|
action_name: string;
|
|
15117
15348
|
error: {
|
|
@@ -16123,7 +16354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16123
16354
|
scope?: string | undefined;
|
|
16124
16355
|
grant_types?: string[] | undefined;
|
|
16125
16356
|
response_types?: string[] | undefined;
|
|
16126
|
-
token_endpoint_auth_method?: "none" | "
|
|
16357
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
16127
16358
|
jwks_uri?: string | undefined;
|
|
16128
16359
|
jwks?: Record<string, unknown> | undefined;
|
|
16129
16360
|
software_id?: string | undefined;
|
|
@@ -16212,7 +16443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16212
16443
|
scope?: string | undefined;
|
|
16213
16444
|
grant_types?: string[] | undefined;
|
|
16214
16445
|
response_types?: string[] | undefined;
|
|
16215
|
-
token_endpoint_auth_method?: "none" | "
|
|
16446
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
16216
16447
|
jwks_uri?: string | undefined;
|
|
16217
16448
|
jwks?: Record<string, unknown> | undefined;
|
|
16218
16449
|
software_id?: string | undefined;
|
|
@@ -16559,18 +16790,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16559
16790
|
send: "code" | "link";
|
|
16560
16791
|
authParams: {
|
|
16561
16792
|
username?: string | undefined;
|
|
16562
|
-
|
|
16793
|
+
state?: string | undefined;
|
|
16563
16794
|
audience?: string | undefined;
|
|
16795
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16796
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16797
|
+
scope?: string | undefined;
|
|
16564
16798
|
organization?: string | undefined;
|
|
16565
|
-
code_challenge?: string | undefined;
|
|
16566
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16567
|
-
redirect_uri?: string | undefined;
|
|
16568
16799
|
nonce?: string | undefined;
|
|
16569
|
-
|
|
16800
|
+
redirect_uri?: string | undefined;
|
|
16570
16801
|
act_as?: string | undefined;
|
|
16571
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16572
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16573
16802
|
prompt?: string | undefined;
|
|
16803
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16804
|
+
code_challenge?: string | undefined;
|
|
16574
16805
|
ui_locales?: string | undefined;
|
|
16575
16806
|
max_age?: number | undefined;
|
|
16576
16807
|
acr_values?: string | undefined;
|
|
@@ -16595,18 +16826,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16595
16826
|
send: "code" | "link";
|
|
16596
16827
|
authParams: {
|
|
16597
16828
|
username?: string | undefined;
|
|
16598
|
-
|
|
16829
|
+
state?: string | undefined;
|
|
16599
16830
|
audience?: string | undefined;
|
|
16831
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16832
|
+
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16833
|
+
scope?: string | undefined;
|
|
16600
16834
|
organization?: string | undefined;
|
|
16601
|
-
code_challenge?: string | undefined;
|
|
16602
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16603
|
-
redirect_uri?: string | undefined;
|
|
16604
16835
|
nonce?: string | undefined;
|
|
16605
|
-
|
|
16836
|
+
redirect_uri?: string | undefined;
|
|
16606
16837
|
act_as?: string | undefined;
|
|
16607
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16608
|
-
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16609
16838
|
prompt?: string | undefined;
|
|
16839
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16840
|
+
code_challenge?: string | undefined;
|
|
16610
16841
|
ui_locales?: string | undefined;
|
|
16611
16842
|
max_age?: number | undefined;
|
|
16612
16843
|
acr_values?: string | undefined;
|
|
@@ -16836,7 +17067,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16836
17067
|
client_id: string;
|
|
16837
17068
|
username: string;
|
|
16838
17069
|
otp: string;
|
|
16839
|
-
realm: "
|
|
17070
|
+
realm: "sms" | "email";
|
|
16840
17071
|
};
|
|
16841
17072
|
} & {
|
|
16842
17073
|
json: {
|
|
@@ -16872,7 +17103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16872
17103
|
client_id: string;
|
|
16873
17104
|
username: string;
|
|
16874
17105
|
otp: string;
|
|
16875
|
-
realm: "
|
|
17106
|
+
realm: "sms" | "email";
|
|
16876
17107
|
};
|
|
16877
17108
|
};
|
|
16878
17109
|
output: {};
|
|
@@ -16913,7 +17144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16913
17144
|
client_id: string;
|
|
16914
17145
|
username: string;
|
|
16915
17146
|
otp: string;
|
|
16916
|
-
realm: "
|
|
17147
|
+
realm: "sms" | "email";
|
|
16917
17148
|
};
|
|
16918
17149
|
} & {
|
|
16919
17150
|
json: {
|
|
@@ -16949,7 +17180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16949
17180
|
client_id: string;
|
|
16950
17181
|
username: string;
|
|
16951
17182
|
otp: string;
|
|
16952
|
-
realm: "
|
|
17183
|
+
realm: "sms" | "email";
|
|
16953
17184
|
};
|
|
16954
17185
|
};
|
|
16955
17186
|
output: {
|
|
@@ -16998,7 +17229,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16998
17229
|
client_id: string;
|
|
16999
17230
|
username: string;
|
|
17000
17231
|
otp: string;
|
|
17001
|
-
realm: "
|
|
17232
|
+
realm: "sms" | "email";
|
|
17002
17233
|
};
|
|
17003
17234
|
} & {
|
|
17004
17235
|
json: {
|
|
@@ -17034,7 +17265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17034
17265
|
client_id: string;
|
|
17035
17266
|
username: string;
|
|
17036
17267
|
otp: string;
|
|
17037
|
-
realm: "
|
|
17268
|
+
realm: "sms" | "email";
|
|
17038
17269
|
};
|
|
17039
17270
|
};
|
|
17040
17271
|
output: {
|
|
@@ -17078,7 +17309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17078
17309
|
client_id: string;
|
|
17079
17310
|
username: string;
|
|
17080
17311
|
otp: string;
|
|
17081
|
-
realm: "
|
|
17312
|
+
realm: "sms" | "email";
|
|
17082
17313
|
};
|
|
17083
17314
|
} & {
|
|
17084
17315
|
json: {
|
|
@@ -17114,7 +17345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17114
17345
|
client_id: string;
|
|
17115
17346
|
username: string;
|
|
17116
17347
|
otp: string;
|
|
17117
|
-
realm: "
|
|
17348
|
+
realm: "sms" | "email";
|
|
17118
17349
|
};
|
|
17119
17350
|
};
|
|
17120
17351
|
output: {
|
|
@@ -17158,7 +17389,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17158
17389
|
client_id: string;
|
|
17159
17390
|
username: string;
|
|
17160
17391
|
otp: string;
|
|
17161
|
-
realm: "
|
|
17392
|
+
realm: "sms" | "email";
|
|
17162
17393
|
};
|
|
17163
17394
|
} & {
|
|
17164
17395
|
json: {
|
|
@@ -17194,7 +17425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17194
17425
|
client_id: string;
|
|
17195
17426
|
username: string;
|
|
17196
17427
|
otp: string;
|
|
17197
|
-
realm: "
|
|
17428
|
+
realm: "sms" | "email";
|
|
17198
17429
|
};
|
|
17199
17430
|
};
|
|
17200
17431
|
output: {
|
|
@@ -18403,7 +18634,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18403
18634
|
$get: {
|
|
18404
18635
|
input: {
|
|
18405
18636
|
param: {
|
|
18406
|
-
screen: "signup" | "
|
|
18637
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18407
18638
|
};
|
|
18408
18639
|
} & {
|
|
18409
18640
|
query: {
|
|
@@ -18419,7 +18650,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18419
18650
|
} | {
|
|
18420
18651
|
input: {
|
|
18421
18652
|
param: {
|
|
18422
|
-
screen: "signup" | "
|
|
18653
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18423
18654
|
};
|
|
18424
18655
|
} & {
|
|
18425
18656
|
query: {
|
|
@@ -18435,7 +18666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18435
18666
|
} | {
|
|
18436
18667
|
input: {
|
|
18437
18668
|
param: {
|
|
18438
|
-
screen: "signup" | "
|
|
18669
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18439
18670
|
};
|
|
18440
18671
|
} & {
|
|
18441
18672
|
query: {
|
|
@@ -18455,7 +18686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18455
18686
|
$post: {
|
|
18456
18687
|
input: {
|
|
18457
18688
|
param: {
|
|
18458
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18689
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18459
18690
|
};
|
|
18460
18691
|
} & {
|
|
18461
18692
|
query: {
|
|
@@ -18473,7 +18704,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18473
18704
|
} | {
|
|
18474
18705
|
input: {
|
|
18475
18706
|
param: {
|
|
18476
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18707
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18477
18708
|
};
|
|
18478
18709
|
} & {
|
|
18479
18710
|
query: {
|
|
@@ -18491,7 +18722,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18491
18722
|
} | {
|
|
18492
18723
|
input: {
|
|
18493
18724
|
param: {
|
|
18494
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18725
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18495
18726
|
};
|
|
18496
18727
|
} & {
|
|
18497
18728
|
query: {
|
|
@@ -18589,5 +18820,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18589
18820
|
createX509Certificate: typeof createX509Certificate;
|
|
18590
18821
|
};
|
|
18591
18822
|
|
|
18592
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, 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, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
|
|
18593
|
-
export type { AuthHeroConfig, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, 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, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|
|
18823
|
+
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, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
|
|
18824
|
+
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, 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, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|