authhero 5.18.0 → 5.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +2729 -128
- package/dist/authhero.d.ts +602 -230
- package/dist/authhero.mjs +10757 -9901
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +8 -0
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/authentication-flows/token-exchange.d.ts +19 -0
- package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -0
- package/dist/types/emails/defaults/ChangePassword.d.ts +6 -0
- package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -0
- package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -0
- package/dist/types/emails/defaults/PasswordReset.d.ts +5 -0
- package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -0
- package/dist/types/emails/index.d.ts +21 -1
- 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/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/helpers/scopes-permissions.d.ts +1 -1
- package/dist/types/index.d.ts +471 -227
- package/dist/types/routes/auth-api/index.d.ts +117 -7
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +110 -0
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +4 -4
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +2 -2
- package/dist/types/routes/management-api/connections.d.ts +6 -6
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +88 -31
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/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 +343 -212
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/proxy-routes.d.ts +1 -0
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +34 -1
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/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/GrantFlowResult.d.ts +8 -0
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/utils/jwks.d.ts +2 -2
- package/dist/types/utils/jwt.d.ts +4 -0
- package/package.json +5 -5
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';
|
|
@@ -778,6 +778,49 @@ type Hooks = {
|
|
|
778
778
|
onFetchUserInfo?: OnFetchUserInfo;
|
|
779
779
|
};
|
|
780
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
|
+
|
|
781
824
|
/**
|
|
782
825
|
* Management API audience for cross-tenant operations.
|
|
783
826
|
* Used when managing tenants from the main tenant with org-scoped tokens.
|
|
@@ -1104,6 +1147,32 @@ interface AuthHeroConfig {
|
|
|
1104
1147
|
proxyControlPlane?: {
|
|
1105
1148
|
resolveHost: (host: string) => Promise<_authhero_proxy.ResolvedHost | null>;
|
|
1106
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;
|
|
1107
1176
|
};
|
|
1108
1177
|
/**
|
|
1109
1178
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
@@ -1929,6 +1998,17 @@ interface CreateDefaultDestinationsConfig {
|
|
|
1929
1998
|
getServiceToken?: GetServiceToken;
|
|
1930
1999
|
/** Webhook HTTP request timeout in ms (default: 10_000). */
|
|
1931
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
|
+
};
|
|
1932
2012
|
/**
|
|
1933
2013
|
* Custom webhook invoker — same shape as the `webhookInvoker` option on
|
|
1934
2014
|
* `init()`. When provided, `hook.*` events are dispatched by calling this
|
|
@@ -2029,6 +2109,8 @@ declare class LogsDestination implements EventDestination {
|
|
|
2029
2109
|
/**
|
|
2030
2110
|
* Only accept log-shaped events. `hook.*` events are dispatch tasks for
|
|
2031
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.
|
|
2032
2114
|
*/
|
|
2033
2115
|
accepts(event: AuditEvent): boolean;
|
|
2034
2116
|
transform(event: AuditEvent): {
|
|
@@ -2068,6 +2150,55 @@ declare class RegistrationFinalizerDestination implements EventDestination {
|
|
|
2068
2150
|
deliver(tasks: FinalizationTask[]): Promise<void>;
|
|
2069
2151
|
}
|
|
2070
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
|
+
|
|
2071
2202
|
/**
|
|
2072
2203
|
* Options for the entity hooks wrapper
|
|
2073
2204
|
*/
|
|
@@ -2524,7 +2655,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2524
2655
|
};
|
|
2525
2656
|
} & {
|
|
2526
2657
|
json: {
|
|
2527
|
-
type: "push" | "email" | "
|
|
2658
|
+
type: "push" | "email" | "phone" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2528
2659
|
phone_number?: string | undefined;
|
|
2529
2660
|
totp_secret?: string | undefined;
|
|
2530
2661
|
credential_id?: string | undefined;
|
|
@@ -2664,7 +2795,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2664
2795
|
};
|
|
2665
2796
|
};
|
|
2666
2797
|
output: {
|
|
2667
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
2798
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2668
2799
|
enabled: boolean;
|
|
2669
2800
|
trial_expired?: boolean | undefined;
|
|
2670
2801
|
}[];
|
|
@@ -2819,7 +2950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2819
2950
|
$get: {
|
|
2820
2951
|
input: {
|
|
2821
2952
|
param: {
|
|
2822
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
2953
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2823
2954
|
};
|
|
2824
2955
|
} & {
|
|
2825
2956
|
header: {
|
|
@@ -2827,7 +2958,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2827
2958
|
};
|
|
2828
2959
|
};
|
|
2829
2960
|
output: {
|
|
2830
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
2961
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2831
2962
|
enabled: boolean;
|
|
2832
2963
|
trial_expired?: boolean | undefined;
|
|
2833
2964
|
};
|
|
@@ -2840,7 +2971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2840
2971
|
$put: {
|
|
2841
2972
|
input: {
|
|
2842
2973
|
param: {
|
|
2843
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
2974
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2844
2975
|
};
|
|
2845
2976
|
} & {
|
|
2846
2977
|
header: {
|
|
@@ -2852,7 +2983,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2852
2983
|
};
|
|
2853
2984
|
};
|
|
2854
2985
|
output: {
|
|
2855
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
2986
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2856
2987
|
enabled: boolean;
|
|
2857
2988
|
trial_expired?: boolean | undefined;
|
|
2858
2989
|
};
|
|
@@ -3597,9 +3728,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3597
3728
|
invitee: {
|
|
3598
3729
|
email?: string | undefined;
|
|
3599
3730
|
};
|
|
3600
|
-
id?: string | undefined;
|
|
3601
3731
|
app_metadata?: Record<string, any> | undefined;
|
|
3602
3732
|
user_metadata?: Record<string, any> | undefined;
|
|
3733
|
+
id?: string | undefined;
|
|
3603
3734
|
connection_id?: string | undefined;
|
|
3604
3735
|
roles?: string[] | undefined;
|
|
3605
3736
|
ttl_sec?: number | undefined;
|
|
@@ -3785,8 +3916,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3785
3916
|
};
|
|
3786
3917
|
} & {
|
|
3787
3918
|
json: {
|
|
3788
|
-
assign_membership_on_login?: boolean | undefined;
|
|
3789
3919
|
show_as_button?: boolean | undefined;
|
|
3920
|
+
assign_membership_on_login?: boolean | undefined;
|
|
3790
3921
|
is_signup_enabled?: boolean | undefined;
|
|
3791
3922
|
};
|
|
3792
3923
|
};
|
|
@@ -5028,7 +5159,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5028
5159
|
hint?: string | undefined;
|
|
5029
5160
|
messages?: {
|
|
5030
5161
|
text: string;
|
|
5031
|
-
type: "
|
|
5162
|
+
type: "success" | "error" | "info" | "warning";
|
|
5032
5163
|
id?: number | undefined;
|
|
5033
5164
|
}[] | undefined;
|
|
5034
5165
|
required?: boolean | undefined;
|
|
@@ -5046,7 +5177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5046
5177
|
hint?: string | undefined;
|
|
5047
5178
|
messages?: {
|
|
5048
5179
|
text: string;
|
|
5049
|
-
type: "
|
|
5180
|
+
type: "success" | "error" | "info" | "warning";
|
|
5050
5181
|
id?: number | undefined;
|
|
5051
5182
|
}[] | undefined;
|
|
5052
5183
|
required?: boolean | undefined;
|
|
@@ -5070,7 +5201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5070
5201
|
hint?: string | undefined;
|
|
5071
5202
|
messages?: {
|
|
5072
5203
|
text: string;
|
|
5073
|
-
type: "
|
|
5204
|
+
type: "success" | "error" | "info" | "warning";
|
|
5074
5205
|
id?: number | undefined;
|
|
5075
5206
|
}[] | undefined;
|
|
5076
5207
|
required?: boolean | undefined;
|
|
@@ -5080,7 +5211,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5080
5211
|
value: string;
|
|
5081
5212
|
label: string;
|
|
5082
5213
|
}[] | undefined;
|
|
5083
|
-
display?: "
|
|
5214
|
+
display?: "checkbox" | "radio" | undefined;
|
|
5084
5215
|
multiple?: boolean | undefined;
|
|
5085
5216
|
default_value?: string | string[] | undefined;
|
|
5086
5217
|
} | undefined;
|
|
@@ -5094,7 +5225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5094
5225
|
hint?: string | undefined;
|
|
5095
5226
|
messages?: {
|
|
5096
5227
|
text: string;
|
|
5097
|
-
type: "
|
|
5228
|
+
type: "success" | "error" | "info" | "warning";
|
|
5098
5229
|
id?: number | undefined;
|
|
5099
5230
|
}[] | undefined;
|
|
5100
5231
|
required?: boolean | undefined;
|
|
@@ -5123,7 +5254,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5123
5254
|
hint?: string | undefined;
|
|
5124
5255
|
messages?: {
|
|
5125
5256
|
text: string;
|
|
5126
|
-
type: "
|
|
5257
|
+
type: "success" | "error" | "info" | "warning";
|
|
5127
5258
|
id?: number | undefined;
|
|
5128
5259
|
}[] | undefined;
|
|
5129
5260
|
required?: boolean | undefined;
|
|
@@ -5138,7 +5269,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5138
5269
|
hint?: string | undefined;
|
|
5139
5270
|
messages?: {
|
|
5140
5271
|
text: string;
|
|
5141
|
-
type: "
|
|
5272
|
+
type: "success" | "error" | "info" | "warning";
|
|
5142
5273
|
id?: number | undefined;
|
|
5143
5274
|
}[] | undefined;
|
|
5144
5275
|
required?: boolean | undefined;
|
|
@@ -5159,7 +5290,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5159
5290
|
hint?: string | undefined;
|
|
5160
5291
|
messages?: {
|
|
5161
5292
|
text: string;
|
|
5162
|
-
type: "
|
|
5293
|
+
type: "success" | "error" | "info" | "warning";
|
|
5163
5294
|
id?: number | undefined;
|
|
5164
5295
|
}[] | undefined;
|
|
5165
5296
|
required?: boolean | undefined;
|
|
@@ -5184,7 +5315,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5184
5315
|
hint?: string | undefined;
|
|
5185
5316
|
messages?: {
|
|
5186
5317
|
text: string;
|
|
5187
|
-
type: "
|
|
5318
|
+
type: "success" | "error" | "info" | "warning";
|
|
5188
5319
|
id?: number | undefined;
|
|
5189
5320
|
}[] | undefined;
|
|
5190
5321
|
required?: boolean | undefined;
|
|
@@ -5203,7 +5334,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5203
5334
|
hint?: string | undefined;
|
|
5204
5335
|
messages?: {
|
|
5205
5336
|
text: string;
|
|
5206
|
-
type: "
|
|
5337
|
+
type: "success" | "error" | "info" | "warning";
|
|
5207
5338
|
id?: number | undefined;
|
|
5208
5339
|
}[] | undefined;
|
|
5209
5340
|
required?: boolean | undefined;
|
|
@@ -5223,7 +5354,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5223
5354
|
hint?: string | undefined;
|
|
5224
5355
|
messages?: {
|
|
5225
5356
|
text: string;
|
|
5226
|
-
type: "
|
|
5357
|
+
type: "success" | "error" | "info" | "warning";
|
|
5227
5358
|
id?: number | undefined;
|
|
5228
5359
|
}[] | undefined;
|
|
5229
5360
|
required?: boolean | undefined;
|
|
@@ -5242,7 +5373,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5242
5373
|
hint?: string | undefined;
|
|
5243
5374
|
messages?: {
|
|
5244
5375
|
text: string;
|
|
5245
|
-
type: "
|
|
5376
|
+
type: "success" | "error" | "info" | "warning";
|
|
5246
5377
|
id?: number | undefined;
|
|
5247
5378
|
}[] | undefined;
|
|
5248
5379
|
required?: boolean | undefined;
|
|
@@ -5264,7 +5395,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5264
5395
|
hint?: string | undefined;
|
|
5265
5396
|
messages?: {
|
|
5266
5397
|
text: string;
|
|
5267
|
-
type: "
|
|
5398
|
+
type: "success" | "error" | "info" | "warning";
|
|
5268
5399
|
id?: number | undefined;
|
|
5269
5400
|
}[] | undefined;
|
|
5270
5401
|
required?: boolean | undefined;
|
|
@@ -5286,7 +5417,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5286
5417
|
hint?: string | undefined;
|
|
5287
5418
|
messages?: {
|
|
5288
5419
|
text: string;
|
|
5289
|
-
type: "
|
|
5420
|
+
type: "success" | "error" | "info" | "warning";
|
|
5290
5421
|
id?: number | undefined;
|
|
5291
5422
|
}[] | undefined;
|
|
5292
5423
|
required?: boolean | undefined;
|
|
@@ -5305,7 +5436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5305
5436
|
hint?: string | undefined;
|
|
5306
5437
|
messages?: {
|
|
5307
5438
|
text: string;
|
|
5308
|
-
type: "
|
|
5439
|
+
type: "success" | "error" | "info" | "warning";
|
|
5309
5440
|
id?: number | undefined;
|
|
5310
5441
|
}[] | undefined;
|
|
5311
5442
|
required?: boolean | undefined;
|
|
@@ -5330,7 +5461,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5330
5461
|
hint?: string | undefined;
|
|
5331
5462
|
messages?: {
|
|
5332
5463
|
text: string;
|
|
5333
|
-
type: "
|
|
5464
|
+
type: "success" | "error" | "info" | "warning";
|
|
5334
5465
|
id?: number | undefined;
|
|
5335
5466
|
}[] | undefined;
|
|
5336
5467
|
required?: boolean | undefined;
|
|
@@ -5351,7 +5482,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5351
5482
|
hint?: string | undefined;
|
|
5352
5483
|
messages?: {
|
|
5353
5484
|
text: string;
|
|
5354
|
-
type: "
|
|
5485
|
+
type: "success" | "error" | "info" | "warning";
|
|
5355
5486
|
id?: number | undefined;
|
|
5356
5487
|
}[] | undefined;
|
|
5357
5488
|
required?: boolean | undefined;
|
|
@@ -5372,7 +5503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5372
5503
|
hint?: string | undefined;
|
|
5373
5504
|
messages?: {
|
|
5374
5505
|
text: string;
|
|
5375
|
-
type: "
|
|
5506
|
+
type: "success" | "error" | "info" | "warning";
|
|
5376
5507
|
id?: number | undefined;
|
|
5377
5508
|
}[] | undefined;
|
|
5378
5509
|
required?: boolean | undefined;
|
|
@@ -5605,7 +5736,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5605
5736
|
hint?: string | undefined;
|
|
5606
5737
|
messages?: {
|
|
5607
5738
|
text: string;
|
|
5608
|
-
type: "
|
|
5739
|
+
type: "success" | "error" | "info" | "warning";
|
|
5609
5740
|
id?: number | undefined;
|
|
5610
5741
|
}[] | undefined;
|
|
5611
5742
|
required?: boolean | undefined;
|
|
@@ -5623,7 +5754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5623
5754
|
hint?: string | undefined;
|
|
5624
5755
|
messages?: {
|
|
5625
5756
|
text: string;
|
|
5626
|
-
type: "
|
|
5757
|
+
type: "success" | "error" | "info" | "warning";
|
|
5627
5758
|
id?: number | undefined;
|
|
5628
5759
|
}[] | undefined;
|
|
5629
5760
|
required?: boolean | undefined;
|
|
@@ -5647,7 +5778,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5647
5778
|
hint?: string | undefined;
|
|
5648
5779
|
messages?: {
|
|
5649
5780
|
text: string;
|
|
5650
|
-
type: "
|
|
5781
|
+
type: "success" | "error" | "info" | "warning";
|
|
5651
5782
|
id?: number | undefined;
|
|
5652
5783
|
}[] | undefined;
|
|
5653
5784
|
required?: boolean | undefined;
|
|
@@ -5657,7 +5788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5657
5788
|
value: string;
|
|
5658
5789
|
label: string;
|
|
5659
5790
|
}[] | undefined;
|
|
5660
|
-
display?: "
|
|
5791
|
+
display?: "checkbox" | "radio" | undefined;
|
|
5661
5792
|
multiple?: boolean | undefined;
|
|
5662
5793
|
default_value?: string | string[] | undefined;
|
|
5663
5794
|
} | undefined;
|
|
@@ -5671,7 +5802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5671
5802
|
hint?: string | undefined;
|
|
5672
5803
|
messages?: {
|
|
5673
5804
|
text: string;
|
|
5674
|
-
type: "
|
|
5805
|
+
type: "success" | "error" | "info" | "warning";
|
|
5675
5806
|
id?: number | undefined;
|
|
5676
5807
|
}[] | undefined;
|
|
5677
5808
|
required?: boolean | undefined;
|
|
@@ -5700,7 +5831,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5700
5831
|
hint?: string | undefined;
|
|
5701
5832
|
messages?: {
|
|
5702
5833
|
text: string;
|
|
5703
|
-
type: "
|
|
5834
|
+
type: "success" | "error" | "info" | "warning";
|
|
5704
5835
|
id?: number | undefined;
|
|
5705
5836
|
}[] | undefined;
|
|
5706
5837
|
required?: boolean | undefined;
|
|
@@ -5715,7 +5846,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5715
5846
|
hint?: string | undefined;
|
|
5716
5847
|
messages?: {
|
|
5717
5848
|
text: string;
|
|
5718
|
-
type: "
|
|
5849
|
+
type: "success" | "error" | "info" | "warning";
|
|
5719
5850
|
id?: number | undefined;
|
|
5720
5851
|
}[] | undefined;
|
|
5721
5852
|
required?: boolean | undefined;
|
|
@@ -5736,7 +5867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5736
5867
|
hint?: string | undefined;
|
|
5737
5868
|
messages?: {
|
|
5738
5869
|
text: string;
|
|
5739
|
-
type: "
|
|
5870
|
+
type: "success" | "error" | "info" | "warning";
|
|
5740
5871
|
id?: number | undefined;
|
|
5741
5872
|
}[] | undefined;
|
|
5742
5873
|
required?: boolean | undefined;
|
|
@@ -5761,7 +5892,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5761
5892
|
hint?: string | undefined;
|
|
5762
5893
|
messages?: {
|
|
5763
5894
|
text: string;
|
|
5764
|
-
type: "
|
|
5895
|
+
type: "success" | "error" | "info" | "warning";
|
|
5765
5896
|
id?: number | undefined;
|
|
5766
5897
|
}[] | undefined;
|
|
5767
5898
|
required?: boolean | undefined;
|
|
@@ -5780,7 +5911,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5780
5911
|
hint?: string | undefined;
|
|
5781
5912
|
messages?: {
|
|
5782
5913
|
text: string;
|
|
5783
|
-
type: "
|
|
5914
|
+
type: "success" | "error" | "info" | "warning";
|
|
5784
5915
|
id?: number | undefined;
|
|
5785
5916
|
}[] | undefined;
|
|
5786
5917
|
required?: boolean | undefined;
|
|
@@ -5800,7 +5931,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5800
5931
|
hint?: string | undefined;
|
|
5801
5932
|
messages?: {
|
|
5802
5933
|
text: string;
|
|
5803
|
-
type: "
|
|
5934
|
+
type: "success" | "error" | "info" | "warning";
|
|
5804
5935
|
id?: number | undefined;
|
|
5805
5936
|
}[] | undefined;
|
|
5806
5937
|
required?: boolean | undefined;
|
|
@@ -5819,7 +5950,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5819
5950
|
hint?: string | undefined;
|
|
5820
5951
|
messages?: {
|
|
5821
5952
|
text: string;
|
|
5822
|
-
type: "
|
|
5953
|
+
type: "success" | "error" | "info" | "warning";
|
|
5823
5954
|
id?: number | undefined;
|
|
5824
5955
|
}[] | undefined;
|
|
5825
5956
|
required?: boolean | undefined;
|
|
@@ -5841,7 +5972,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5841
5972
|
hint?: string | undefined;
|
|
5842
5973
|
messages?: {
|
|
5843
5974
|
text: string;
|
|
5844
|
-
type: "
|
|
5975
|
+
type: "success" | "error" | "info" | "warning";
|
|
5845
5976
|
id?: number | undefined;
|
|
5846
5977
|
}[] | undefined;
|
|
5847
5978
|
required?: boolean | undefined;
|
|
@@ -5863,7 +5994,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5863
5994
|
hint?: string | undefined;
|
|
5864
5995
|
messages?: {
|
|
5865
5996
|
text: string;
|
|
5866
|
-
type: "
|
|
5997
|
+
type: "success" | "error" | "info" | "warning";
|
|
5867
5998
|
id?: number | undefined;
|
|
5868
5999
|
}[] | undefined;
|
|
5869
6000
|
required?: boolean | undefined;
|
|
@@ -5882,7 +6013,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5882
6013
|
hint?: string | undefined;
|
|
5883
6014
|
messages?: {
|
|
5884
6015
|
text: string;
|
|
5885
|
-
type: "
|
|
6016
|
+
type: "success" | "error" | "info" | "warning";
|
|
5886
6017
|
id?: number | undefined;
|
|
5887
6018
|
}[] | undefined;
|
|
5888
6019
|
required?: boolean | undefined;
|
|
@@ -5907,7 +6038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5907
6038
|
hint?: string | undefined;
|
|
5908
6039
|
messages?: {
|
|
5909
6040
|
text: string;
|
|
5910
|
-
type: "
|
|
6041
|
+
type: "success" | "error" | "info" | "warning";
|
|
5911
6042
|
id?: number | undefined;
|
|
5912
6043
|
}[] | undefined;
|
|
5913
6044
|
required?: boolean | undefined;
|
|
@@ -5928,7 +6059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5928
6059
|
hint?: string | undefined;
|
|
5929
6060
|
messages?: {
|
|
5930
6061
|
text: string;
|
|
5931
|
-
type: "
|
|
6062
|
+
type: "success" | "error" | "info" | "warning";
|
|
5932
6063
|
id?: number | undefined;
|
|
5933
6064
|
}[] | undefined;
|
|
5934
6065
|
required?: boolean | undefined;
|
|
@@ -5949,7 +6080,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5949
6080
|
hint?: string | undefined;
|
|
5950
6081
|
messages?: {
|
|
5951
6082
|
text: string;
|
|
5952
|
-
type: "
|
|
6083
|
+
type: "success" | "error" | "info" | "warning";
|
|
5953
6084
|
id?: number | undefined;
|
|
5954
6085
|
}[] | undefined;
|
|
5955
6086
|
required?: boolean | undefined;
|
|
@@ -6197,7 +6328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6197
6328
|
hint?: string | undefined;
|
|
6198
6329
|
messages?: {
|
|
6199
6330
|
text: string;
|
|
6200
|
-
type: "
|
|
6331
|
+
type: "success" | "error" | "info" | "warning";
|
|
6201
6332
|
id?: number | undefined;
|
|
6202
6333
|
}[] | undefined;
|
|
6203
6334
|
required?: boolean | undefined;
|
|
@@ -6215,7 +6346,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6215
6346
|
hint?: string | undefined;
|
|
6216
6347
|
messages?: {
|
|
6217
6348
|
text: string;
|
|
6218
|
-
type: "
|
|
6349
|
+
type: "success" | "error" | "info" | "warning";
|
|
6219
6350
|
id?: number | undefined;
|
|
6220
6351
|
}[] | undefined;
|
|
6221
6352
|
required?: boolean | undefined;
|
|
@@ -6239,7 +6370,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6239
6370
|
hint?: string | undefined;
|
|
6240
6371
|
messages?: {
|
|
6241
6372
|
text: string;
|
|
6242
|
-
type: "
|
|
6373
|
+
type: "success" | "error" | "info" | "warning";
|
|
6243
6374
|
id?: number | undefined;
|
|
6244
6375
|
}[] | undefined;
|
|
6245
6376
|
required?: boolean | undefined;
|
|
@@ -6249,7 +6380,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6249
6380
|
value: string;
|
|
6250
6381
|
label: string;
|
|
6251
6382
|
}[] | undefined;
|
|
6252
|
-
display?: "
|
|
6383
|
+
display?: "checkbox" | "radio" | undefined;
|
|
6253
6384
|
multiple?: boolean | undefined;
|
|
6254
6385
|
default_value?: string | string[] | undefined;
|
|
6255
6386
|
} | undefined;
|
|
@@ -6263,7 +6394,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6263
6394
|
hint?: string | undefined;
|
|
6264
6395
|
messages?: {
|
|
6265
6396
|
text: string;
|
|
6266
|
-
type: "
|
|
6397
|
+
type: "success" | "error" | "info" | "warning";
|
|
6267
6398
|
id?: number | undefined;
|
|
6268
6399
|
}[] | undefined;
|
|
6269
6400
|
required?: boolean | undefined;
|
|
@@ -6292,7 +6423,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6292
6423
|
hint?: string | undefined;
|
|
6293
6424
|
messages?: {
|
|
6294
6425
|
text: string;
|
|
6295
|
-
type: "
|
|
6426
|
+
type: "success" | "error" | "info" | "warning";
|
|
6296
6427
|
id?: number | undefined;
|
|
6297
6428
|
}[] | undefined;
|
|
6298
6429
|
required?: boolean | undefined;
|
|
@@ -6307,7 +6438,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6307
6438
|
hint?: string | undefined;
|
|
6308
6439
|
messages?: {
|
|
6309
6440
|
text: string;
|
|
6310
|
-
type: "
|
|
6441
|
+
type: "success" | "error" | "info" | "warning";
|
|
6311
6442
|
id?: number | undefined;
|
|
6312
6443
|
}[] | undefined;
|
|
6313
6444
|
required?: boolean | undefined;
|
|
@@ -6328,7 +6459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6328
6459
|
hint?: string | undefined;
|
|
6329
6460
|
messages?: {
|
|
6330
6461
|
text: string;
|
|
6331
|
-
type: "
|
|
6462
|
+
type: "success" | "error" | "info" | "warning";
|
|
6332
6463
|
id?: number | undefined;
|
|
6333
6464
|
}[] | undefined;
|
|
6334
6465
|
required?: boolean | undefined;
|
|
@@ -6353,7 +6484,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6353
6484
|
hint?: string | undefined;
|
|
6354
6485
|
messages?: {
|
|
6355
6486
|
text: string;
|
|
6356
|
-
type: "
|
|
6487
|
+
type: "success" | "error" | "info" | "warning";
|
|
6357
6488
|
id?: number | undefined;
|
|
6358
6489
|
}[] | undefined;
|
|
6359
6490
|
required?: boolean | undefined;
|
|
@@ -6372,7 +6503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6372
6503
|
hint?: string | undefined;
|
|
6373
6504
|
messages?: {
|
|
6374
6505
|
text: string;
|
|
6375
|
-
type: "
|
|
6506
|
+
type: "success" | "error" | "info" | "warning";
|
|
6376
6507
|
id?: number | undefined;
|
|
6377
6508
|
}[] | undefined;
|
|
6378
6509
|
required?: boolean | undefined;
|
|
@@ -6392,7 +6523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6392
6523
|
hint?: string | undefined;
|
|
6393
6524
|
messages?: {
|
|
6394
6525
|
text: string;
|
|
6395
|
-
type: "
|
|
6526
|
+
type: "success" | "error" | "info" | "warning";
|
|
6396
6527
|
id?: number | undefined;
|
|
6397
6528
|
}[] | undefined;
|
|
6398
6529
|
required?: boolean | undefined;
|
|
@@ -6411,7 +6542,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6411
6542
|
hint?: string | undefined;
|
|
6412
6543
|
messages?: {
|
|
6413
6544
|
text: string;
|
|
6414
|
-
type: "
|
|
6545
|
+
type: "success" | "error" | "info" | "warning";
|
|
6415
6546
|
id?: number | undefined;
|
|
6416
6547
|
}[] | undefined;
|
|
6417
6548
|
required?: boolean | undefined;
|
|
@@ -6433,7 +6564,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6433
6564
|
hint?: string | undefined;
|
|
6434
6565
|
messages?: {
|
|
6435
6566
|
text: string;
|
|
6436
|
-
type: "
|
|
6567
|
+
type: "success" | "error" | "info" | "warning";
|
|
6437
6568
|
id?: number | undefined;
|
|
6438
6569
|
}[] | undefined;
|
|
6439
6570
|
required?: boolean | undefined;
|
|
@@ -6455,7 +6586,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6455
6586
|
hint?: string | undefined;
|
|
6456
6587
|
messages?: {
|
|
6457
6588
|
text: string;
|
|
6458
|
-
type: "
|
|
6589
|
+
type: "success" | "error" | "info" | "warning";
|
|
6459
6590
|
id?: number | undefined;
|
|
6460
6591
|
}[] | undefined;
|
|
6461
6592
|
required?: boolean | undefined;
|
|
@@ -6474,7 +6605,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6474
6605
|
hint?: string | undefined;
|
|
6475
6606
|
messages?: {
|
|
6476
6607
|
text: string;
|
|
6477
|
-
type: "
|
|
6608
|
+
type: "success" | "error" | "info" | "warning";
|
|
6478
6609
|
id?: number | undefined;
|
|
6479
6610
|
}[] | undefined;
|
|
6480
6611
|
required?: boolean | undefined;
|
|
@@ -6499,7 +6630,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6499
6630
|
hint?: string | undefined;
|
|
6500
6631
|
messages?: {
|
|
6501
6632
|
text: string;
|
|
6502
|
-
type: "
|
|
6633
|
+
type: "success" | "error" | "info" | "warning";
|
|
6503
6634
|
id?: number | undefined;
|
|
6504
6635
|
}[] | undefined;
|
|
6505
6636
|
required?: boolean | undefined;
|
|
@@ -6520,7 +6651,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6520
6651
|
hint?: string | undefined;
|
|
6521
6652
|
messages?: {
|
|
6522
6653
|
text: string;
|
|
6523
|
-
type: "
|
|
6654
|
+
type: "success" | "error" | "info" | "warning";
|
|
6524
6655
|
id?: number | undefined;
|
|
6525
6656
|
}[] | undefined;
|
|
6526
6657
|
required?: boolean | undefined;
|
|
@@ -6541,7 +6672,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6541
6672
|
hint?: string | undefined;
|
|
6542
6673
|
messages?: {
|
|
6543
6674
|
text: string;
|
|
6544
|
-
type: "
|
|
6675
|
+
type: "success" | "error" | "info" | "warning";
|
|
6545
6676
|
id?: number | undefined;
|
|
6546
6677
|
}[] | undefined;
|
|
6547
6678
|
required?: boolean | undefined;
|
|
@@ -6795,7 +6926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6795
6926
|
hint?: string | undefined;
|
|
6796
6927
|
messages?: {
|
|
6797
6928
|
text: string;
|
|
6798
|
-
type: "
|
|
6929
|
+
type: "success" | "error" | "info" | "warning";
|
|
6799
6930
|
id?: number | undefined;
|
|
6800
6931
|
}[] | undefined;
|
|
6801
6932
|
required?: boolean | undefined;
|
|
@@ -6813,7 +6944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6813
6944
|
hint?: string | undefined;
|
|
6814
6945
|
messages?: {
|
|
6815
6946
|
text: string;
|
|
6816
|
-
type: "
|
|
6947
|
+
type: "success" | "error" | "info" | "warning";
|
|
6817
6948
|
id?: number | undefined;
|
|
6818
6949
|
}[] | undefined;
|
|
6819
6950
|
required?: boolean | undefined;
|
|
@@ -6837,7 +6968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6837
6968
|
hint?: string | undefined;
|
|
6838
6969
|
messages?: {
|
|
6839
6970
|
text: string;
|
|
6840
|
-
type: "
|
|
6971
|
+
type: "success" | "error" | "info" | "warning";
|
|
6841
6972
|
id?: number | undefined;
|
|
6842
6973
|
}[] | undefined;
|
|
6843
6974
|
required?: boolean | undefined;
|
|
@@ -6847,7 +6978,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6847
6978
|
value: string;
|
|
6848
6979
|
label: string;
|
|
6849
6980
|
}[] | undefined;
|
|
6850
|
-
display?: "
|
|
6981
|
+
display?: "checkbox" | "radio" | undefined;
|
|
6851
6982
|
multiple?: boolean | undefined;
|
|
6852
6983
|
default_value?: string | string[] | undefined;
|
|
6853
6984
|
} | undefined;
|
|
@@ -6861,7 +6992,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6861
6992
|
hint?: string | undefined;
|
|
6862
6993
|
messages?: {
|
|
6863
6994
|
text: string;
|
|
6864
|
-
type: "
|
|
6995
|
+
type: "success" | "error" | "info" | "warning";
|
|
6865
6996
|
id?: number | undefined;
|
|
6866
6997
|
}[] | undefined;
|
|
6867
6998
|
required?: boolean | undefined;
|
|
@@ -6886,7 +7017,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6886
7017
|
hint?: string | undefined;
|
|
6887
7018
|
messages?: {
|
|
6888
7019
|
text: string;
|
|
6889
|
-
type: "
|
|
7020
|
+
type: "success" | "error" | "info" | "warning";
|
|
6890
7021
|
id?: number | undefined;
|
|
6891
7022
|
}[] | undefined;
|
|
6892
7023
|
required?: boolean | undefined;
|
|
@@ -6901,7 +7032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6901
7032
|
hint?: string | undefined;
|
|
6902
7033
|
messages?: {
|
|
6903
7034
|
text: string;
|
|
6904
|
-
type: "
|
|
7035
|
+
type: "success" | "error" | "info" | "warning";
|
|
6905
7036
|
id?: number | undefined;
|
|
6906
7037
|
}[] | undefined;
|
|
6907
7038
|
required?: boolean | undefined;
|
|
@@ -6922,7 +7053,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6922
7053
|
hint?: string | undefined;
|
|
6923
7054
|
messages?: {
|
|
6924
7055
|
text: string;
|
|
6925
|
-
type: "
|
|
7056
|
+
type: "success" | "error" | "info" | "warning";
|
|
6926
7057
|
id?: number | undefined;
|
|
6927
7058
|
}[] | undefined;
|
|
6928
7059
|
required?: boolean | undefined;
|
|
@@ -6947,7 +7078,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6947
7078
|
hint?: string | undefined;
|
|
6948
7079
|
messages?: {
|
|
6949
7080
|
text: string;
|
|
6950
|
-
type: "
|
|
7081
|
+
type: "success" | "error" | "info" | "warning";
|
|
6951
7082
|
id?: number | undefined;
|
|
6952
7083
|
}[] | undefined;
|
|
6953
7084
|
required?: boolean | undefined;
|
|
@@ -6966,7 +7097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6966
7097
|
hint?: string | undefined;
|
|
6967
7098
|
messages?: {
|
|
6968
7099
|
text: string;
|
|
6969
|
-
type: "
|
|
7100
|
+
type: "success" | "error" | "info" | "warning";
|
|
6970
7101
|
id?: number | undefined;
|
|
6971
7102
|
}[] | undefined;
|
|
6972
7103
|
required?: boolean | undefined;
|
|
@@ -6986,7 +7117,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6986
7117
|
hint?: string | undefined;
|
|
6987
7118
|
messages?: {
|
|
6988
7119
|
text: string;
|
|
6989
|
-
type: "
|
|
7120
|
+
type: "success" | "error" | "info" | "warning";
|
|
6990
7121
|
id?: number | undefined;
|
|
6991
7122
|
}[] | undefined;
|
|
6992
7123
|
required?: boolean | undefined;
|
|
@@ -7005,7 +7136,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7005
7136
|
hint?: string | undefined;
|
|
7006
7137
|
messages?: {
|
|
7007
7138
|
text: string;
|
|
7008
|
-
type: "
|
|
7139
|
+
type: "success" | "error" | "info" | "warning";
|
|
7009
7140
|
id?: number | undefined;
|
|
7010
7141
|
}[] | undefined;
|
|
7011
7142
|
required?: boolean | undefined;
|
|
@@ -7027,7 +7158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7027
7158
|
hint?: string | undefined;
|
|
7028
7159
|
messages?: {
|
|
7029
7160
|
text: string;
|
|
7030
|
-
type: "
|
|
7161
|
+
type: "success" | "error" | "info" | "warning";
|
|
7031
7162
|
id?: number | undefined;
|
|
7032
7163
|
}[] | undefined;
|
|
7033
7164
|
required?: boolean | undefined;
|
|
@@ -7049,7 +7180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7049
7180
|
hint?: string | undefined;
|
|
7050
7181
|
messages?: {
|
|
7051
7182
|
text: string;
|
|
7052
|
-
type: "
|
|
7183
|
+
type: "success" | "error" | "info" | "warning";
|
|
7053
7184
|
id?: number | undefined;
|
|
7054
7185
|
}[] | undefined;
|
|
7055
7186
|
required?: boolean | undefined;
|
|
@@ -7068,7 +7199,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7068
7199
|
hint?: string | undefined;
|
|
7069
7200
|
messages?: {
|
|
7070
7201
|
text: string;
|
|
7071
|
-
type: "
|
|
7202
|
+
type: "success" | "error" | "info" | "warning";
|
|
7072
7203
|
id?: number | undefined;
|
|
7073
7204
|
}[] | undefined;
|
|
7074
7205
|
required?: boolean | undefined;
|
|
@@ -7093,7 +7224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7093
7224
|
hint?: string | undefined;
|
|
7094
7225
|
messages?: {
|
|
7095
7226
|
text: string;
|
|
7096
|
-
type: "
|
|
7227
|
+
type: "success" | "error" | "info" | "warning";
|
|
7097
7228
|
id?: number | undefined;
|
|
7098
7229
|
}[] | undefined;
|
|
7099
7230
|
required?: boolean | undefined;
|
|
@@ -7114,7 +7245,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7114
7245
|
hint?: string | undefined;
|
|
7115
7246
|
messages?: {
|
|
7116
7247
|
text: string;
|
|
7117
|
-
type: "
|
|
7248
|
+
type: "success" | "error" | "info" | "warning";
|
|
7118
7249
|
id?: number | undefined;
|
|
7119
7250
|
}[] | undefined;
|
|
7120
7251
|
required?: boolean | undefined;
|
|
@@ -7135,7 +7266,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7135
7266
|
hint?: string | undefined;
|
|
7136
7267
|
messages?: {
|
|
7137
7268
|
text: string;
|
|
7138
|
-
type: "
|
|
7269
|
+
type: "success" | "error" | "info" | "warning";
|
|
7139
7270
|
id?: number | undefined;
|
|
7140
7271
|
}[] | undefined;
|
|
7141
7272
|
required?: boolean | undefined;
|
|
@@ -7366,7 +7497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7366
7497
|
hint?: string | undefined;
|
|
7367
7498
|
messages?: {
|
|
7368
7499
|
text: string;
|
|
7369
|
-
type: "
|
|
7500
|
+
type: "success" | "error" | "info" | "warning";
|
|
7370
7501
|
id?: number | undefined;
|
|
7371
7502
|
}[] | undefined;
|
|
7372
7503
|
required?: boolean | undefined;
|
|
@@ -7384,7 +7515,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7384
7515
|
hint?: string | undefined;
|
|
7385
7516
|
messages?: {
|
|
7386
7517
|
text: string;
|
|
7387
|
-
type: "
|
|
7518
|
+
type: "success" | "error" | "info" | "warning";
|
|
7388
7519
|
id?: number | undefined;
|
|
7389
7520
|
}[] | undefined;
|
|
7390
7521
|
required?: boolean | undefined;
|
|
@@ -7408,7 +7539,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7408
7539
|
hint?: string | undefined;
|
|
7409
7540
|
messages?: {
|
|
7410
7541
|
text: string;
|
|
7411
|
-
type: "
|
|
7542
|
+
type: "success" | "error" | "info" | "warning";
|
|
7412
7543
|
id?: number | undefined;
|
|
7413
7544
|
}[] | undefined;
|
|
7414
7545
|
required?: boolean | undefined;
|
|
@@ -7418,7 +7549,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7418
7549
|
value: string;
|
|
7419
7550
|
label: string;
|
|
7420
7551
|
}[] | undefined;
|
|
7421
|
-
display?: "
|
|
7552
|
+
display?: "checkbox" | "radio" | undefined;
|
|
7422
7553
|
multiple?: boolean | undefined;
|
|
7423
7554
|
default_value?: string | string[] | undefined;
|
|
7424
7555
|
} | undefined;
|
|
@@ -7432,7 +7563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7432
7563
|
hint?: string | undefined;
|
|
7433
7564
|
messages?: {
|
|
7434
7565
|
text: string;
|
|
7435
|
-
type: "
|
|
7566
|
+
type: "success" | "error" | "info" | "warning";
|
|
7436
7567
|
id?: number | undefined;
|
|
7437
7568
|
}[] | undefined;
|
|
7438
7569
|
required?: boolean | undefined;
|
|
@@ -7461,7 +7592,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7461
7592
|
hint?: string | undefined;
|
|
7462
7593
|
messages?: {
|
|
7463
7594
|
text: string;
|
|
7464
|
-
type: "
|
|
7595
|
+
type: "success" | "error" | "info" | "warning";
|
|
7465
7596
|
id?: number | undefined;
|
|
7466
7597
|
}[] | undefined;
|
|
7467
7598
|
required?: boolean | undefined;
|
|
@@ -7476,7 +7607,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7476
7607
|
hint?: string | undefined;
|
|
7477
7608
|
messages?: {
|
|
7478
7609
|
text: string;
|
|
7479
|
-
type: "
|
|
7610
|
+
type: "success" | "error" | "info" | "warning";
|
|
7480
7611
|
id?: number | undefined;
|
|
7481
7612
|
}[] | undefined;
|
|
7482
7613
|
required?: boolean | undefined;
|
|
@@ -7497,7 +7628,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7497
7628
|
hint?: string | undefined;
|
|
7498
7629
|
messages?: {
|
|
7499
7630
|
text: string;
|
|
7500
|
-
type: "
|
|
7631
|
+
type: "success" | "error" | "info" | "warning";
|
|
7501
7632
|
id?: number | undefined;
|
|
7502
7633
|
}[] | undefined;
|
|
7503
7634
|
required?: boolean | undefined;
|
|
@@ -7522,7 +7653,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7522
7653
|
hint?: string | undefined;
|
|
7523
7654
|
messages?: {
|
|
7524
7655
|
text: string;
|
|
7525
|
-
type: "
|
|
7656
|
+
type: "success" | "error" | "info" | "warning";
|
|
7526
7657
|
id?: number | undefined;
|
|
7527
7658
|
}[] | undefined;
|
|
7528
7659
|
required?: boolean | undefined;
|
|
@@ -7541,7 +7672,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7541
7672
|
hint?: string | undefined;
|
|
7542
7673
|
messages?: {
|
|
7543
7674
|
text: string;
|
|
7544
|
-
type: "
|
|
7675
|
+
type: "success" | "error" | "info" | "warning";
|
|
7545
7676
|
id?: number | undefined;
|
|
7546
7677
|
}[] | undefined;
|
|
7547
7678
|
required?: boolean | undefined;
|
|
@@ -7561,7 +7692,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7561
7692
|
hint?: string | undefined;
|
|
7562
7693
|
messages?: {
|
|
7563
7694
|
text: string;
|
|
7564
|
-
type: "
|
|
7695
|
+
type: "success" | "error" | "info" | "warning";
|
|
7565
7696
|
id?: number | undefined;
|
|
7566
7697
|
}[] | undefined;
|
|
7567
7698
|
required?: boolean | undefined;
|
|
@@ -7580,7 +7711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7580
7711
|
hint?: string | undefined;
|
|
7581
7712
|
messages?: {
|
|
7582
7713
|
text: string;
|
|
7583
|
-
type: "
|
|
7714
|
+
type: "success" | "error" | "info" | "warning";
|
|
7584
7715
|
id?: number | undefined;
|
|
7585
7716
|
}[] | undefined;
|
|
7586
7717
|
required?: boolean | undefined;
|
|
@@ -7602,7 +7733,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7602
7733
|
hint?: string | undefined;
|
|
7603
7734
|
messages?: {
|
|
7604
7735
|
text: string;
|
|
7605
|
-
type: "
|
|
7736
|
+
type: "success" | "error" | "info" | "warning";
|
|
7606
7737
|
id?: number | undefined;
|
|
7607
7738
|
}[] | undefined;
|
|
7608
7739
|
required?: boolean | undefined;
|
|
@@ -7624,7 +7755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7624
7755
|
hint?: string | undefined;
|
|
7625
7756
|
messages?: {
|
|
7626
7757
|
text: string;
|
|
7627
|
-
type: "
|
|
7758
|
+
type: "success" | "error" | "info" | "warning";
|
|
7628
7759
|
id?: number | undefined;
|
|
7629
7760
|
}[] | undefined;
|
|
7630
7761
|
required?: boolean | undefined;
|
|
@@ -7643,7 +7774,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7643
7774
|
hint?: string | undefined;
|
|
7644
7775
|
messages?: {
|
|
7645
7776
|
text: string;
|
|
7646
|
-
type: "
|
|
7777
|
+
type: "success" | "error" | "info" | "warning";
|
|
7647
7778
|
id?: number | undefined;
|
|
7648
7779
|
}[] | undefined;
|
|
7649
7780
|
required?: boolean | undefined;
|
|
@@ -7668,7 +7799,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7668
7799
|
hint?: string | undefined;
|
|
7669
7800
|
messages?: {
|
|
7670
7801
|
text: string;
|
|
7671
|
-
type: "
|
|
7802
|
+
type: "success" | "error" | "info" | "warning";
|
|
7672
7803
|
id?: number | undefined;
|
|
7673
7804
|
}[] | undefined;
|
|
7674
7805
|
required?: boolean | undefined;
|
|
@@ -7689,7 +7820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7689
7820
|
hint?: string | undefined;
|
|
7690
7821
|
messages?: {
|
|
7691
7822
|
text: string;
|
|
7692
|
-
type: "
|
|
7823
|
+
type: "success" | "error" | "info" | "warning";
|
|
7693
7824
|
id?: number | undefined;
|
|
7694
7825
|
}[] | undefined;
|
|
7695
7826
|
required?: boolean | undefined;
|
|
@@ -7710,7 +7841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7710
7841
|
hint?: string | undefined;
|
|
7711
7842
|
messages?: {
|
|
7712
7843
|
text: string;
|
|
7713
|
-
type: "
|
|
7844
|
+
type: "success" | "error" | "info" | "warning";
|
|
7714
7845
|
id?: number | undefined;
|
|
7715
7846
|
}[] | undefined;
|
|
7716
7847
|
required?: boolean | undefined;
|
|
@@ -7943,7 +8074,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7943
8074
|
hint?: string | undefined;
|
|
7944
8075
|
messages?: {
|
|
7945
8076
|
text: string;
|
|
7946
|
-
type: "
|
|
8077
|
+
type: "success" | "error" | "info" | "warning";
|
|
7947
8078
|
id?: number | undefined;
|
|
7948
8079
|
}[] | undefined;
|
|
7949
8080
|
required?: boolean | undefined;
|
|
@@ -7961,7 +8092,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7961
8092
|
hint?: string | undefined;
|
|
7962
8093
|
messages?: {
|
|
7963
8094
|
text: string;
|
|
7964
|
-
type: "
|
|
8095
|
+
type: "success" | "error" | "info" | "warning";
|
|
7965
8096
|
id?: number | undefined;
|
|
7966
8097
|
}[] | undefined;
|
|
7967
8098
|
required?: boolean | undefined;
|
|
@@ -7985,7 +8116,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7985
8116
|
hint?: string | undefined;
|
|
7986
8117
|
messages?: {
|
|
7987
8118
|
text: string;
|
|
7988
|
-
type: "
|
|
8119
|
+
type: "success" | "error" | "info" | "warning";
|
|
7989
8120
|
id?: number | undefined;
|
|
7990
8121
|
}[] | undefined;
|
|
7991
8122
|
required?: boolean | undefined;
|
|
@@ -7995,7 +8126,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7995
8126
|
value: string;
|
|
7996
8127
|
label: string;
|
|
7997
8128
|
}[] | undefined;
|
|
7998
|
-
display?: "
|
|
8129
|
+
display?: "checkbox" | "radio" | undefined;
|
|
7999
8130
|
multiple?: boolean | undefined;
|
|
8000
8131
|
default_value?: string | string[] | undefined;
|
|
8001
8132
|
} | undefined;
|
|
@@ -8009,7 +8140,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8009
8140
|
hint?: string | undefined;
|
|
8010
8141
|
messages?: {
|
|
8011
8142
|
text: string;
|
|
8012
|
-
type: "
|
|
8143
|
+
type: "success" | "error" | "info" | "warning";
|
|
8013
8144
|
id?: number | undefined;
|
|
8014
8145
|
}[] | undefined;
|
|
8015
8146
|
required?: boolean | undefined;
|
|
@@ -8034,7 +8165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8034
8165
|
hint?: string | undefined;
|
|
8035
8166
|
messages?: {
|
|
8036
8167
|
text: string;
|
|
8037
|
-
type: "
|
|
8168
|
+
type: "success" | "error" | "info" | "warning";
|
|
8038
8169
|
id?: number | undefined;
|
|
8039
8170
|
}[] | undefined;
|
|
8040
8171
|
required?: boolean | undefined;
|
|
@@ -8049,7 +8180,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8049
8180
|
hint?: string | undefined;
|
|
8050
8181
|
messages?: {
|
|
8051
8182
|
text: string;
|
|
8052
|
-
type: "
|
|
8183
|
+
type: "success" | "error" | "info" | "warning";
|
|
8053
8184
|
id?: number | undefined;
|
|
8054
8185
|
}[] | undefined;
|
|
8055
8186
|
required?: boolean | undefined;
|
|
@@ -8070,7 +8201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8070
8201
|
hint?: string | undefined;
|
|
8071
8202
|
messages?: {
|
|
8072
8203
|
text: string;
|
|
8073
|
-
type: "
|
|
8204
|
+
type: "success" | "error" | "info" | "warning";
|
|
8074
8205
|
id?: number | undefined;
|
|
8075
8206
|
}[] | undefined;
|
|
8076
8207
|
required?: boolean | undefined;
|
|
@@ -8095,7 +8226,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8095
8226
|
hint?: string | undefined;
|
|
8096
8227
|
messages?: {
|
|
8097
8228
|
text: string;
|
|
8098
|
-
type: "
|
|
8229
|
+
type: "success" | "error" | "info" | "warning";
|
|
8099
8230
|
id?: number | undefined;
|
|
8100
8231
|
}[] | undefined;
|
|
8101
8232
|
required?: boolean | undefined;
|
|
@@ -8114,7 +8245,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8114
8245
|
hint?: string | undefined;
|
|
8115
8246
|
messages?: {
|
|
8116
8247
|
text: string;
|
|
8117
|
-
type: "
|
|
8248
|
+
type: "success" | "error" | "info" | "warning";
|
|
8118
8249
|
id?: number | undefined;
|
|
8119
8250
|
}[] | undefined;
|
|
8120
8251
|
required?: boolean | undefined;
|
|
@@ -8134,7 +8265,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8134
8265
|
hint?: string | undefined;
|
|
8135
8266
|
messages?: {
|
|
8136
8267
|
text: string;
|
|
8137
|
-
type: "
|
|
8268
|
+
type: "success" | "error" | "info" | "warning";
|
|
8138
8269
|
id?: number | undefined;
|
|
8139
8270
|
}[] | undefined;
|
|
8140
8271
|
required?: boolean | undefined;
|
|
@@ -8153,7 +8284,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8153
8284
|
hint?: string | undefined;
|
|
8154
8285
|
messages?: {
|
|
8155
8286
|
text: string;
|
|
8156
|
-
type: "
|
|
8287
|
+
type: "success" | "error" | "info" | "warning";
|
|
8157
8288
|
id?: number | undefined;
|
|
8158
8289
|
}[] | undefined;
|
|
8159
8290
|
required?: boolean | undefined;
|
|
@@ -8175,7 +8306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8175
8306
|
hint?: string | undefined;
|
|
8176
8307
|
messages?: {
|
|
8177
8308
|
text: string;
|
|
8178
|
-
type: "
|
|
8309
|
+
type: "success" | "error" | "info" | "warning";
|
|
8179
8310
|
id?: number | undefined;
|
|
8180
8311
|
}[] | undefined;
|
|
8181
8312
|
required?: boolean | undefined;
|
|
@@ -8197,7 +8328,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8197
8328
|
hint?: string | undefined;
|
|
8198
8329
|
messages?: {
|
|
8199
8330
|
text: string;
|
|
8200
|
-
type: "
|
|
8331
|
+
type: "success" | "error" | "info" | "warning";
|
|
8201
8332
|
id?: number | undefined;
|
|
8202
8333
|
}[] | undefined;
|
|
8203
8334
|
required?: boolean | undefined;
|
|
@@ -8216,7 +8347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8216
8347
|
hint?: string | undefined;
|
|
8217
8348
|
messages?: {
|
|
8218
8349
|
text: string;
|
|
8219
|
-
type: "
|
|
8350
|
+
type: "success" | "error" | "info" | "warning";
|
|
8220
8351
|
id?: number | undefined;
|
|
8221
8352
|
}[] | undefined;
|
|
8222
8353
|
required?: boolean | undefined;
|
|
@@ -8241,7 +8372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8241
8372
|
hint?: string | undefined;
|
|
8242
8373
|
messages?: {
|
|
8243
8374
|
text: string;
|
|
8244
|
-
type: "
|
|
8375
|
+
type: "success" | "error" | "info" | "warning";
|
|
8245
8376
|
id?: number | undefined;
|
|
8246
8377
|
}[] | undefined;
|
|
8247
8378
|
required?: boolean | undefined;
|
|
@@ -8262,7 +8393,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8262
8393
|
hint?: string | undefined;
|
|
8263
8394
|
messages?: {
|
|
8264
8395
|
text: string;
|
|
8265
|
-
type: "
|
|
8396
|
+
type: "success" | "error" | "info" | "warning";
|
|
8266
8397
|
id?: number | undefined;
|
|
8267
8398
|
}[] | undefined;
|
|
8268
8399
|
required?: boolean | undefined;
|
|
@@ -8283,7 +8414,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8283
8414
|
hint?: string | undefined;
|
|
8284
8415
|
messages?: {
|
|
8285
8416
|
text: string;
|
|
8286
|
-
type: "
|
|
8417
|
+
type: "success" | "error" | "info" | "warning";
|
|
8287
8418
|
id?: number | undefined;
|
|
8288
8419
|
}[] | undefined;
|
|
8289
8420
|
required?: boolean | undefined;
|
|
@@ -8514,7 +8645,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8514
8645
|
hint?: string | undefined;
|
|
8515
8646
|
messages?: {
|
|
8516
8647
|
text: string;
|
|
8517
|
-
type: "
|
|
8648
|
+
type: "success" | "error" | "info" | "warning";
|
|
8518
8649
|
id?: number | undefined;
|
|
8519
8650
|
}[] | undefined;
|
|
8520
8651
|
required?: boolean | undefined;
|
|
@@ -8532,7 +8663,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8532
8663
|
hint?: string | undefined;
|
|
8533
8664
|
messages?: {
|
|
8534
8665
|
text: string;
|
|
8535
|
-
type: "
|
|
8666
|
+
type: "success" | "error" | "info" | "warning";
|
|
8536
8667
|
id?: number | undefined;
|
|
8537
8668
|
}[] | undefined;
|
|
8538
8669
|
required?: boolean | undefined;
|
|
@@ -8556,7 +8687,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8556
8687
|
hint?: string | undefined;
|
|
8557
8688
|
messages?: {
|
|
8558
8689
|
text: string;
|
|
8559
|
-
type: "
|
|
8690
|
+
type: "success" | "error" | "info" | "warning";
|
|
8560
8691
|
id?: number | undefined;
|
|
8561
8692
|
}[] | undefined;
|
|
8562
8693
|
required?: boolean | undefined;
|
|
@@ -8566,7 +8697,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8566
8697
|
value: string;
|
|
8567
8698
|
label: string;
|
|
8568
8699
|
}[] | undefined;
|
|
8569
|
-
display?: "
|
|
8700
|
+
display?: "checkbox" | "radio" | undefined;
|
|
8570
8701
|
multiple?: boolean | undefined;
|
|
8571
8702
|
default_value?: string | string[] | undefined;
|
|
8572
8703
|
} | undefined;
|
|
@@ -8580,7 +8711,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8580
8711
|
hint?: string | undefined;
|
|
8581
8712
|
messages?: {
|
|
8582
8713
|
text: string;
|
|
8583
|
-
type: "
|
|
8714
|
+
type: "success" | "error" | "info" | "warning";
|
|
8584
8715
|
id?: number | undefined;
|
|
8585
8716
|
}[] | undefined;
|
|
8586
8717
|
required?: boolean | undefined;
|
|
@@ -8609,7 +8740,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8609
8740
|
hint?: string | undefined;
|
|
8610
8741
|
messages?: {
|
|
8611
8742
|
text: string;
|
|
8612
|
-
type: "
|
|
8743
|
+
type: "success" | "error" | "info" | "warning";
|
|
8613
8744
|
id?: number | undefined;
|
|
8614
8745
|
}[] | undefined;
|
|
8615
8746
|
required?: boolean | undefined;
|
|
@@ -8624,7 +8755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8624
8755
|
hint?: string | undefined;
|
|
8625
8756
|
messages?: {
|
|
8626
8757
|
text: string;
|
|
8627
|
-
type: "
|
|
8758
|
+
type: "success" | "error" | "info" | "warning";
|
|
8628
8759
|
id?: number | undefined;
|
|
8629
8760
|
}[] | undefined;
|
|
8630
8761
|
required?: boolean | undefined;
|
|
@@ -8645,7 +8776,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8645
8776
|
hint?: string | undefined;
|
|
8646
8777
|
messages?: {
|
|
8647
8778
|
text: string;
|
|
8648
|
-
type: "
|
|
8779
|
+
type: "success" | "error" | "info" | "warning";
|
|
8649
8780
|
id?: number | undefined;
|
|
8650
8781
|
}[] | undefined;
|
|
8651
8782
|
required?: boolean | undefined;
|
|
@@ -8670,7 +8801,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8670
8801
|
hint?: string | undefined;
|
|
8671
8802
|
messages?: {
|
|
8672
8803
|
text: string;
|
|
8673
|
-
type: "
|
|
8804
|
+
type: "success" | "error" | "info" | "warning";
|
|
8674
8805
|
id?: number | undefined;
|
|
8675
8806
|
}[] | undefined;
|
|
8676
8807
|
required?: boolean | undefined;
|
|
@@ -8689,7 +8820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8689
8820
|
hint?: string | undefined;
|
|
8690
8821
|
messages?: {
|
|
8691
8822
|
text: string;
|
|
8692
|
-
type: "
|
|
8823
|
+
type: "success" | "error" | "info" | "warning";
|
|
8693
8824
|
id?: number | undefined;
|
|
8694
8825
|
}[] | undefined;
|
|
8695
8826
|
required?: boolean | undefined;
|
|
@@ -8709,7 +8840,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8709
8840
|
hint?: string | undefined;
|
|
8710
8841
|
messages?: {
|
|
8711
8842
|
text: string;
|
|
8712
|
-
type: "
|
|
8843
|
+
type: "success" | "error" | "info" | "warning";
|
|
8713
8844
|
id?: number | undefined;
|
|
8714
8845
|
}[] | undefined;
|
|
8715
8846
|
required?: boolean | undefined;
|
|
@@ -8728,7 +8859,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8728
8859
|
hint?: string | undefined;
|
|
8729
8860
|
messages?: {
|
|
8730
8861
|
text: string;
|
|
8731
|
-
type: "
|
|
8862
|
+
type: "success" | "error" | "info" | "warning";
|
|
8732
8863
|
id?: number | undefined;
|
|
8733
8864
|
}[] | undefined;
|
|
8734
8865
|
required?: boolean | undefined;
|
|
@@ -8750,7 +8881,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8750
8881
|
hint?: string | undefined;
|
|
8751
8882
|
messages?: {
|
|
8752
8883
|
text: string;
|
|
8753
|
-
type: "
|
|
8884
|
+
type: "success" | "error" | "info" | "warning";
|
|
8754
8885
|
id?: number | undefined;
|
|
8755
8886
|
}[] | undefined;
|
|
8756
8887
|
required?: boolean | undefined;
|
|
@@ -8772,7 +8903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8772
8903
|
hint?: string | undefined;
|
|
8773
8904
|
messages?: {
|
|
8774
8905
|
text: string;
|
|
8775
|
-
type: "
|
|
8906
|
+
type: "success" | "error" | "info" | "warning";
|
|
8776
8907
|
id?: number | undefined;
|
|
8777
8908
|
}[] | undefined;
|
|
8778
8909
|
required?: boolean | undefined;
|
|
@@ -8791,7 +8922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8791
8922
|
hint?: string | undefined;
|
|
8792
8923
|
messages?: {
|
|
8793
8924
|
text: string;
|
|
8794
|
-
type: "
|
|
8925
|
+
type: "success" | "error" | "info" | "warning";
|
|
8795
8926
|
id?: number | undefined;
|
|
8796
8927
|
}[] | undefined;
|
|
8797
8928
|
required?: boolean | undefined;
|
|
@@ -8816,7 +8947,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8816
8947
|
hint?: string | undefined;
|
|
8817
8948
|
messages?: {
|
|
8818
8949
|
text: string;
|
|
8819
|
-
type: "
|
|
8950
|
+
type: "success" | "error" | "info" | "warning";
|
|
8820
8951
|
id?: number | undefined;
|
|
8821
8952
|
}[] | undefined;
|
|
8822
8953
|
required?: boolean | undefined;
|
|
@@ -8837,7 +8968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8837
8968
|
hint?: string | undefined;
|
|
8838
8969
|
messages?: {
|
|
8839
8970
|
text: string;
|
|
8840
|
-
type: "
|
|
8971
|
+
type: "success" | "error" | "info" | "warning";
|
|
8841
8972
|
id?: number | undefined;
|
|
8842
8973
|
}[] | undefined;
|
|
8843
8974
|
required?: boolean | undefined;
|
|
@@ -8858,7 +8989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8858
8989
|
hint?: string | undefined;
|
|
8859
8990
|
messages?: {
|
|
8860
8991
|
text: string;
|
|
8861
|
-
type: "
|
|
8992
|
+
type: "success" | "error" | "info" | "warning";
|
|
8862
8993
|
id?: number | undefined;
|
|
8863
8994
|
}[] | undefined;
|
|
8864
8995
|
required?: boolean | undefined;
|
|
@@ -9088,7 +9219,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9088
9219
|
};
|
|
9089
9220
|
};
|
|
9090
9221
|
output: {
|
|
9091
|
-
prompt: "
|
|
9222
|
+
prompt: "mfa" | "organizations" | "status" | "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";
|
|
9092
9223
|
language: string;
|
|
9093
9224
|
}[];
|
|
9094
9225
|
outputFormat: "json";
|
|
@@ -9126,7 +9257,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9126
9257
|
$get: {
|
|
9127
9258
|
input: {
|
|
9128
9259
|
param: {
|
|
9129
|
-
prompt: "
|
|
9260
|
+
prompt: "mfa" | "organizations" | "status" | "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";
|
|
9130
9261
|
language: string;
|
|
9131
9262
|
};
|
|
9132
9263
|
} & {
|
|
@@ -9148,7 +9279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9148
9279
|
$put: {
|
|
9149
9280
|
input: {
|
|
9150
9281
|
param: {
|
|
9151
|
-
prompt: "
|
|
9282
|
+
prompt: "mfa" | "organizations" | "status" | "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";
|
|
9152
9283
|
language: string;
|
|
9153
9284
|
};
|
|
9154
9285
|
} & {
|
|
@@ -9172,7 +9303,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9172
9303
|
$delete: {
|
|
9173
9304
|
input: {
|
|
9174
9305
|
param: {
|
|
9175
|
-
prompt: "
|
|
9306
|
+
prompt: "mfa" | "organizations" | "status" | "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";
|
|
9176
9307
|
language: string;
|
|
9177
9308
|
};
|
|
9178
9309
|
} & {
|
|
@@ -9311,7 +9442,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9311
9442
|
} | undefined;
|
|
9312
9443
|
} | undefined;
|
|
9313
9444
|
passkey_options?: {
|
|
9314
|
-
challenge_ui?: "
|
|
9445
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
9315
9446
|
local_enrollment_enabled?: boolean | undefined;
|
|
9316
9447
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9317
9448
|
} | undefined;
|
|
@@ -9445,7 +9576,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9445
9576
|
} | undefined;
|
|
9446
9577
|
} | undefined;
|
|
9447
9578
|
passkey_options?: {
|
|
9448
|
-
challenge_ui?: "
|
|
9579
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
9449
9580
|
local_enrollment_enabled?: boolean | undefined;
|
|
9450
9581
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9451
9582
|
} | undefined;
|
|
@@ -9594,7 +9725,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9594
9725
|
} | undefined;
|
|
9595
9726
|
} | undefined;
|
|
9596
9727
|
passkey_options?: {
|
|
9597
|
-
challenge_ui?: "
|
|
9728
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
9598
9729
|
local_enrollment_enabled?: boolean | undefined;
|
|
9599
9730
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9600
9731
|
} | undefined;
|
|
@@ -9773,7 +9904,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9773
9904
|
} | undefined;
|
|
9774
9905
|
} | undefined;
|
|
9775
9906
|
passkey_options?: {
|
|
9776
|
-
challenge_ui?: "
|
|
9907
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
9777
9908
|
local_enrollment_enabled?: boolean | undefined;
|
|
9778
9909
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9779
9910
|
} | undefined;
|
|
@@ -9931,7 +10062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9931
10062
|
} | undefined;
|
|
9932
10063
|
} | undefined;
|
|
9933
10064
|
passkey_options?: {
|
|
9934
|
-
challenge_ui?: "
|
|
10065
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
9935
10066
|
local_enrollment_enabled?: boolean | undefined;
|
|
9936
10067
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
9937
10068
|
} | undefined;
|
|
@@ -10034,7 +10165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10034
10165
|
};
|
|
10035
10166
|
} | {
|
|
10036
10167
|
mode: "inline";
|
|
10037
|
-
status: "
|
|
10168
|
+
status: "success" | "error";
|
|
10038
10169
|
connection_id: string;
|
|
10039
10170
|
connection_name: string;
|
|
10040
10171
|
strategy: string;
|
|
@@ -10613,7 +10744,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10613
10744
|
log_type: string;
|
|
10614
10745
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10615
10746
|
actor: {
|
|
10616
|
-
type: "
|
|
10747
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
10617
10748
|
id?: string | undefined;
|
|
10618
10749
|
email?: string | undefined;
|
|
10619
10750
|
org_id?: string | undefined;
|
|
@@ -10921,7 +11052,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10921
11052
|
created_at: string;
|
|
10922
11053
|
updated_at: string;
|
|
10923
11054
|
name: string;
|
|
10924
|
-
provider: "auth0" | "
|
|
11055
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10925
11056
|
connection: string;
|
|
10926
11057
|
enabled: boolean;
|
|
10927
11058
|
credentials: {
|
|
@@ -10953,7 +11084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10953
11084
|
created_at: string;
|
|
10954
11085
|
updated_at: string;
|
|
10955
11086
|
name: string;
|
|
10956
|
-
provider: "auth0" | "
|
|
11087
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10957
11088
|
connection: string;
|
|
10958
11089
|
enabled: boolean;
|
|
10959
11090
|
credentials: {
|
|
@@ -10979,7 +11110,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10979
11110
|
} & {
|
|
10980
11111
|
json: {
|
|
10981
11112
|
name: string;
|
|
10982
|
-
provider: "auth0" | "
|
|
11113
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
10983
11114
|
connection: string;
|
|
10984
11115
|
credentials: {
|
|
10985
11116
|
domain: string;
|
|
@@ -10996,7 +11127,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10996
11127
|
created_at: string;
|
|
10997
11128
|
updated_at: string;
|
|
10998
11129
|
name: string;
|
|
10999
|
-
provider: "auth0" | "
|
|
11130
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
11000
11131
|
connection: string;
|
|
11001
11132
|
enabled: boolean;
|
|
11002
11133
|
credentials: {
|
|
@@ -11027,7 +11158,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11027
11158
|
json: {
|
|
11028
11159
|
id?: string | undefined;
|
|
11029
11160
|
name?: string | undefined;
|
|
11030
|
-
provider?: "auth0" | "
|
|
11161
|
+
provider?: "auth0" | "oidc" | "cognito" | "okta" | undefined;
|
|
11031
11162
|
connection?: string | undefined;
|
|
11032
11163
|
enabled?: boolean | undefined;
|
|
11033
11164
|
credentials?: {
|
|
@@ -11043,7 +11174,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11043
11174
|
created_at: string;
|
|
11044
11175
|
updated_at: string;
|
|
11045
11176
|
name: string;
|
|
11046
|
-
provider: "auth0" | "
|
|
11177
|
+
provider: "auth0" | "oidc" | "cognito" | "okta";
|
|
11047
11178
|
connection: string;
|
|
11048
11179
|
enabled: boolean;
|
|
11049
11180
|
credentials: {
|
|
@@ -11261,7 +11392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11261
11392
|
};
|
|
11262
11393
|
};
|
|
11263
11394
|
output: {
|
|
11264
|
-
type: "
|
|
11395
|
+
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11265
11396
|
date: string;
|
|
11266
11397
|
isMobile: boolean;
|
|
11267
11398
|
log_id: string;
|
|
@@ -11300,7 +11431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11300
11431
|
limit: number;
|
|
11301
11432
|
length: number;
|
|
11302
11433
|
logs: {
|
|
11303
|
-
type: "
|
|
11434
|
+
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11304
11435
|
date: string;
|
|
11305
11436
|
isMobile: boolean;
|
|
11306
11437
|
log_id: string;
|
|
@@ -11354,7 +11485,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11354
11485
|
};
|
|
11355
11486
|
};
|
|
11356
11487
|
output: {
|
|
11357
|
-
type: "
|
|
11488
|
+
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11358
11489
|
date: string;
|
|
11359
11490
|
isMobile: boolean;
|
|
11360
11491
|
log_id: string;
|
|
@@ -11423,6 +11554,80 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11423
11554
|
};
|
|
11424
11555
|
};
|
|
11425
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<{
|
|
11426
11631
|
"/": {
|
|
11427
11632
|
$get: {
|
|
11428
11633
|
input: {
|
|
@@ -12403,7 +12608,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12403
12608
|
} | undefined;
|
|
12404
12609
|
} | undefined;
|
|
12405
12610
|
passkey_options?: {
|
|
12406
|
-
challenge_ui?: "
|
|
12611
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
12407
12612
|
local_enrollment_enabled?: boolean | undefined;
|
|
12408
12613
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
12409
12614
|
} | undefined;
|
|
@@ -12557,7 +12762,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12557
12762
|
} | undefined;
|
|
12558
12763
|
} | undefined;
|
|
12559
12764
|
passkey_options?: {
|
|
12560
|
-
challenge_ui?: "
|
|
12765
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
12561
12766
|
local_enrollment_enabled?: boolean | undefined;
|
|
12562
12767
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
12563
12768
|
} | undefined;
|
|
@@ -13498,7 +13703,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13498
13703
|
};
|
|
13499
13704
|
};
|
|
13500
13705
|
output: {
|
|
13501
|
-
type: "
|
|
13706
|
+
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
13502
13707
|
date: string;
|
|
13503
13708
|
isMobile: boolean;
|
|
13504
13709
|
log_id: string;
|
|
@@ -13537,7 +13742,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13537
13742
|
limit: number;
|
|
13538
13743
|
length: number;
|
|
13539
13744
|
logs: {
|
|
13540
|
-
type: "
|
|
13745
|
+
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
13541
13746
|
date: string;
|
|
13542
13747
|
isMobile: boolean;
|
|
13543
13748
|
log_id: string;
|
|
@@ -13852,7 +14057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13852
14057
|
};
|
|
13853
14058
|
} & {
|
|
13854
14059
|
json: {
|
|
13855
|
-
template: "verify_email" | "
|
|
14060
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13856
14061
|
body: string;
|
|
13857
14062
|
from: string;
|
|
13858
14063
|
subject: string;
|
|
@@ -13863,9 +14068,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13863
14068
|
enabled?: boolean | undefined;
|
|
13864
14069
|
};
|
|
13865
14070
|
};
|
|
13866
|
-
output: {
|
|
13867
|
-
|
|
13868
|
-
|
|
14071
|
+
output: {
|
|
14072
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14073
|
+
body: string;
|
|
14074
|
+
from: string;
|
|
14075
|
+
subject: string;
|
|
14076
|
+
syntax: "liquid";
|
|
14077
|
+
includeEmailInRedirect: boolean;
|
|
14078
|
+
enabled: boolean;
|
|
14079
|
+
resultUrl?: string | undefined;
|
|
14080
|
+
urlLifetimeInSeconds?: number | undefined;
|
|
14081
|
+
};
|
|
14082
|
+
outputFormat: "json";
|
|
14083
|
+
status: 201;
|
|
13869
14084
|
} | {
|
|
13870
14085
|
input: {
|
|
13871
14086
|
header: {
|
|
@@ -13873,7 +14088,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13873
14088
|
};
|
|
13874
14089
|
} & {
|
|
13875
14090
|
json: {
|
|
13876
|
-
template: "verify_email" | "
|
|
14091
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13877
14092
|
body: string;
|
|
13878
14093
|
from: string;
|
|
13879
14094
|
subject: string;
|
|
@@ -13884,19 +14099,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13884
14099
|
enabled?: boolean | undefined;
|
|
13885
14100
|
};
|
|
13886
14101
|
};
|
|
13887
|
-
output: {
|
|
13888
|
-
|
|
13889
|
-
|
|
13890
|
-
from: string;
|
|
13891
|
-
subject: string;
|
|
13892
|
-
syntax: "liquid";
|
|
13893
|
-
includeEmailInRedirect: boolean;
|
|
13894
|
-
enabled: boolean;
|
|
13895
|
-
resultUrl?: string | undefined;
|
|
13896
|
-
urlLifetimeInSeconds?: number | undefined;
|
|
13897
|
-
};
|
|
13898
|
-
outputFormat: "json";
|
|
13899
|
-
status: 201;
|
|
14102
|
+
output: {};
|
|
14103
|
+
outputFormat: string;
|
|
14104
|
+
status: 409;
|
|
13900
14105
|
};
|
|
13901
14106
|
};
|
|
13902
14107
|
} & {
|
|
@@ -13908,7 +14113,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13908
14113
|
};
|
|
13909
14114
|
};
|
|
13910
14115
|
output: {
|
|
13911
|
-
name: "verify_email" | "
|
|
14116
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13912
14117
|
body: string;
|
|
13913
14118
|
subject: string;
|
|
13914
14119
|
}[];
|
|
@@ -13921,7 +14126,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13921
14126
|
$get: {
|
|
13922
14127
|
input: {
|
|
13923
14128
|
param: {
|
|
13924
|
-
templateName: "verify_email" | "
|
|
14129
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13925
14130
|
};
|
|
13926
14131
|
} & {
|
|
13927
14132
|
header: {
|
|
@@ -13934,7 +14139,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13934
14139
|
} | {
|
|
13935
14140
|
input: {
|
|
13936
14141
|
param: {
|
|
13937
|
-
templateName: "verify_email" | "
|
|
14142
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13938
14143
|
};
|
|
13939
14144
|
} & {
|
|
13940
14145
|
header: {
|
|
@@ -13942,7 +14147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13942
14147
|
};
|
|
13943
14148
|
};
|
|
13944
14149
|
output: {
|
|
13945
|
-
template: "verify_email" | "
|
|
14150
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13946
14151
|
body: string;
|
|
13947
14152
|
from: string;
|
|
13948
14153
|
subject: string;
|
|
@@ -13961,7 +14166,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13961
14166
|
$put: {
|
|
13962
14167
|
input: {
|
|
13963
14168
|
param: {
|
|
13964
|
-
templateName: "verify_email" | "
|
|
14169
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13965
14170
|
};
|
|
13966
14171
|
} & {
|
|
13967
14172
|
header: {
|
|
@@ -13969,19 +14174,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13969
14174
|
};
|
|
13970
14175
|
} & {
|
|
13971
14176
|
json: {
|
|
13972
|
-
template: "verify_email" | "
|
|
14177
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13973
14178
|
body: string;
|
|
13974
|
-
from: string;
|
|
13975
14179
|
subject: string;
|
|
13976
14180
|
syntax?: "liquid" | undefined;
|
|
13977
14181
|
resultUrl?: string | undefined;
|
|
13978
14182
|
urlLifetimeInSeconds?: number | undefined;
|
|
13979
14183
|
includeEmailInRedirect?: boolean | undefined;
|
|
13980
14184
|
enabled?: boolean | undefined;
|
|
14185
|
+
from?: string | undefined;
|
|
13981
14186
|
};
|
|
13982
14187
|
};
|
|
13983
14188
|
output: {
|
|
13984
|
-
template: "verify_email" | "
|
|
14189
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
13985
14190
|
body: string;
|
|
13986
14191
|
from: string;
|
|
13987
14192
|
subject: string;
|
|
@@ -14000,7 +14205,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14000
14205
|
$patch: {
|
|
14001
14206
|
input: {
|
|
14002
14207
|
param: {
|
|
14003
|
-
templateName: "verify_email" | "
|
|
14208
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14004
14209
|
};
|
|
14005
14210
|
} & {
|
|
14006
14211
|
header: {
|
|
@@ -14008,7 +14213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14008
14213
|
};
|
|
14009
14214
|
} & {
|
|
14010
14215
|
json: {
|
|
14011
|
-
template?: "verify_email" | "
|
|
14216
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14012
14217
|
body?: string | undefined;
|
|
14013
14218
|
from?: string | undefined;
|
|
14014
14219
|
subject?: string | undefined;
|
|
@@ -14025,7 +14230,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14025
14230
|
} | {
|
|
14026
14231
|
input: {
|
|
14027
14232
|
param: {
|
|
14028
|
-
templateName: "verify_email" | "
|
|
14233
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14029
14234
|
};
|
|
14030
14235
|
} & {
|
|
14031
14236
|
header: {
|
|
@@ -14033,7 +14238,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14033
14238
|
};
|
|
14034
14239
|
} & {
|
|
14035
14240
|
json: {
|
|
14036
|
-
template?: "verify_email" | "
|
|
14241
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14037
14242
|
body?: string | undefined;
|
|
14038
14243
|
from?: string | undefined;
|
|
14039
14244
|
subject?: string | undefined;
|
|
@@ -14045,7 +14250,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14045
14250
|
};
|
|
14046
14251
|
};
|
|
14047
14252
|
output: {
|
|
14048
|
-
template: "verify_email" | "
|
|
14253
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14049
14254
|
body: string;
|
|
14050
14255
|
from: string;
|
|
14051
14256
|
subject: string;
|
|
@@ -14059,6 +14264,63 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14059
14264
|
status: 200;
|
|
14060
14265
|
};
|
|
14061
14266
|
};
|
|
14267
|
+
} & {
|
|
14268
|
+
"/:templateName": {
|
|
14269
|
+
$delete: {
|
|
14270
|
+
input: {
|
|
14271
|
+
param: {
|
|
14272
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14273
|
+
};
|
|
14274
|
+
} & {
|
|
14275
|
+
header: {
|
|
14276
|
+
"tenant-id"?: string | undefined;
|
|
14277
|
+
};
|
|
14278
|
+
};
|
|
14279
|
+
output: {};
|
|
14280
|
+
outputFormat: string;
|
|
14281
|
+
status: 204;
|
|
14282
|
+
} | {
|
|
14283
|
+
input: {
|
|
14284
|
+
param: {
|
|
14285
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14286
|
+
};
|
|
14287
|
+
} & {
|
|
14288
|
+
header: {
|
|
14289
|
+
"tenant-id"?: string | undefined;
|
|
14290
|
+
};
|
|
14291
|
+
};
|
|
14292
|
+
output: {};
|
|
14293
|
+
outputFormat: string;
|
|
14294
|
+
status: 404;
|
|
14295
|
+
};
|
|
14296
|
+
};
|
|
14297
|
+
} & {
|
|
14298
|
+
"/:templateName/try": {
|
|
14299
|
+
$post: {
|
|
14300
|
+
input: {
|
|
14301
|
+
param: {
|
|
14302
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14303
|
+
};
|
|
14304
|
+
} & {
|
|
14305
|
+
header: {
|
|
14306
|
+
"tenant-id"?: string | undefined;
|
|
14307
|
+
};
|
|
14308
|
+
} & {
|
|
14309
|
+
json: {
|
|
14310
|
+
to: string;
|
|
14311
|
+
body?: string | undefined;
|
|
14312
|
+
subject?: string | undefined;
|
|
14313
|
+
from?: string | undefined;
|
|
14314
|
+
language?: string | undefined;
|
|
14315
|
+
};
|
|
14316
|
+
};
|
|
14317
|
+
output: {
|
|
14318
|
+
sent: boolean;
|
|
14319
|
+
};
|
|
14320
|
+
outputFormat: "json";
|
|
14321
|
+
status: 200;
|
|
14322
|
+
};
|
|
14323
|
+
};
|
|
14062
14324
|
}, "/email-templates"> & hono_types.MergeSchemaPath<{
|
|
14063
14325
|
"/": {
|
|
14064
14326
|
$get: {
|
|
@@ -14322,7 +14584,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14322
14584
|
primary: boolean;
|
|
14323
14585
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14324
14586
|
verification_method?: "txt" | undefined;
|
|
14325
|
-
custom_client_ip_header?: "null" | "
|
|
14587
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14326
14588
|
domain_metadata?: {
|
|
14327
14589
|
[x: string]: string;
|
|
14328
14590
|
} | undefined;
|
|
@@ -14363,7 +14625,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14363
14625
|
primary: boolean;
|
|
14364
14626
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14365
14627
|
verification_method?: "txt" | undefined;
|
|
14366
|
-
custom_client_ip_header?: "null" | "
|
|
14628
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14367
14629
|
domain_metadata?: {
|
|
14368
14630
|
[x: string]: string;
|
|
14369
14631
|
} | undefined;
|
|
@@ -14418,7 +14680,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14418
14680
|
domain?: string | undefined;
|
|
14419
14681
|
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
14420
14682
|
verification_method?: "txt" | undefined;
|
|
14421
|
-
custom_client_ip_header?: "null" | "
|
|
14683
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14422
14684
|
domain_metadata?: Record<string, string> | undefined;
|
|
14423
14685
|
custom_domain_id?: string | undefined;
|
|
14424
14686
|
primary?: boolean | undefined;
|
|
@@ -14445,7 +14707,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14445
14707
|
primary: boolean;
|
|
14446
14708
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14447
14709
|
verification_method?: "txt" | undefined;
|
|
14448
|
-
custom_client_ip_header?: "null" | "
|
|
14710
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14449
14711
|
domain_metadata?: {
|
|
14450
14712
|
[x: string]: string;
|
|
14451
14713
|
} | undefined;
|
|
@@ -14481,7 +14743,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14481
14743
|
custom_domain_id?: string | undefined;
|
|
14482
14744
|
verification_method?: "txt" | undefined;
|
|
14483
14745
|
tls_policy?: "recommended" | undefined;
|
|
14484
|
-
custom_client_ip_header?: "null" | "
|
|
14746
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14485
14747
|
domain_metadata?: Record<string, string> | undefined;
|
|
14486
14748
|
};
|
|
14487
14749
|
};
|
|
@@ -14492,7 +14754,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14492
14754
|
primary: boolean;
|
|
14493
14755
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14494
14756
|
verification_method?: "txt" | undefined;
|
|
14495
|
-
custom_client_ip_header?: "null" | "
|
|
14757
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14496
14758
|
domain_metadata?: {
|
|
14497
14759
|
[x: string]: string;
|
|
14498
14760
|
} | undefined;
|
|
@@ -14538,7 +14800,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14538
14800
|
primary: boolean;
|
|
14539
14801
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14540
14802
|
verification_method?: "txt" | undefined;
|
|
14541
|
-
custom_client_ip_header?: "null" | "
|
|
14803
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14542
14804
|
domain_metadata?: {
|
|
14543
14805
|
[x: string]: string;
|
|
14544
14806
|
} | undefined;
|
|
@@ -14579,7 +14841,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14579
14841
|
primary: boolean;
|
|
14580
14842
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
14581
14843
|
verification_method?: "txt" | undefined;
|
|
14582
|
-
custom_client_ip_header?: "null" | "
|
|
14844
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14583
14845
|
domain_metadata?: {
|
|
14584
14846
|
[x: string]: string;
|
|
14585
14847
|
} | undefined;
|
|
@@ -14625,7 +14887,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14625
14887
|
base_focus_color: string;
|
|
14626
14888
|
base_hover_color: string;
|
|
14627
14889
|
body_text: string;
|
|
14628
|
-
captcha_widget_theme: "
|
|
14890
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
14629
14891
|
error: string;
|
|
14630
14892
|
header: string;
|
|
14631
14893
|
icons: string;
|
|
@@ -14676,7 +14938,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14676
14938
|
background_color: string;
|
|
14677
14939
|
background_image_url: string;
|
|
14678
14940
|
page_layout: "center" | "left" | "right";
|
|
14679
|
-
logo_placement?: "
|
|
14941
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
14680
14942
|
};
|
|
14681
14943
|
widget: {
|
|
14682
14944
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -14715,7 +14977,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14715
14977
|
base_focus_color: string;
|
|
14716
14978
|
base_hover_color: string;
|
|
14717
14979
|
body_text: string;
|
|
14718
|
-
captcha_widget_theme: "
|
|
14980
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
14719
14981
|
error: string;
|
|
14720
14982
|
header: string;
|
|
14721
14983
|
icons: string;
|
|
@@ -14766,7 +15028,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14766
15028
|
background_color: string;
|
|
14767
15029
|
background_image_url: string;
|
|
14768
15030
|
page_layout: "center" | "left" | "right";
|
|
14769
|
-
logo_placement?: "
|
|
15031
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
14770
15032
|
};
|
|
14771
15033
|
widget: {
|
|
14772
15034
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -14794,7 +15056,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14794
15056
|
base_focus_color: string;
|
|
14795
15057
|
base_hover_color: string;
|
|
14796
15058
|
body_text: string;
|
|
14797
|
-
captcha_widget_theme: "
|
|
15059
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
14798
15060
|
error: string;
|
|
14799
15061
|
header: string;
|
|
14800
15062
|
icons: string;
|
|
@@ -14845,7 +15107,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14845
15107
|
background_color: string;
|
|
14846
15108
|
background_image_url: string;
|
|
14847
15109
|
page_layout: "center" | "left" | "right";
|
|
14848
|
-
logo_placement?: "
|
|
15110
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
14849
15111
|
};
|
|
14850
15112
|
widget: {
|
|
14851
15113
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -14884,7 +15146,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14884
15146
|
font?: {
|
|
14885
15147
|
url: string;
|
|
14886
15148
|
} | undefined;
|
|
14887
|
-
dark_mode?: "
|
|
15149
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
14888
15150
|
};
|
|
14889
15151
|
outputFormat: "json";
|
|
14890
15152
|
status: 200;
|
|
@@ -14914,7 +15176,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14914
15176
|
font?: {
|
|
14915
15177
|
url: string;
|
|
14916
15178
|
} | undefined;
|
|
14917
|
-
dark_mode?: "
|
|
15179
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
14918
15180
|
};
|
|
14919
15181
|
};
|
|
14920
15182
|
output: {
|
|
@@ -14933,7 +15195,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14933
15195
|
font?: {
|
|
14934
15196
|
url: string;
|
|
14935
15197
|
} | undefined;
|
|
14936
|
-
dark_mode?: "
|
|
15198
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
14937
15199
|
};
|
|
14938
15200
|
outputFormat: "json";
|
|
14939
15201
|
status: 200;
|
|
@@ -15137,7 +15399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15137
15399
|
output: {
|
|
15138
15400
|
id: string;
|
|
15139
15401
|
trigger_id: string;
|
|
15140
|
-
status: "
|
|
15402
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
15141
15403
|
results: {
|
|
15142
15404
|
action_name: string;
|
|
15143
15405
|
error: {
|
|
@@ -15184,7 +15446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15184
15446
|
logs: {
|
|
15185
15447
|
action_name: string;
|
|
15186
15448
|
lines: {
|
|
15187
|
-
level: "
|
|
15449
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15188
15450
|
message: string;
|
|
15189
15451
|
}[];
|
|
15190
15452
|
}[];
|
|
@@ -15491,7 +15753,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15491
15753
|
};
|
|
15492
15754
|
output: {};
|
|
15493
15755
|
outputFormat: string;
|
|
15494
|
-
status:
|
|
15756
|
+
status: 409;
|
|
15495
15757
|
} | {
|
|
15496
15758
|
input: {
|
|
15497
15759
|
param: {
|
|
@@ -15504,7 +15766,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15504
15766
|
};
|
|
15505
15767
|
output: {};
|
|
15506
15768
|
outputFormat: string;
|
|
15507
|
-
status:
|
|
15769
|
+
status: 200;
|
|
15508
15770
|
} | {
|
|
15509
15771
|
input: {
|
|
15510
15772
|
param: {
|
|
@@ -15517,7 +15779,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15517
15779
|
};
|
|
15518
15780
|
output: {};
|
|
15519
15781
|
outputFormat: string;
|
|
15520
|
-
status:
|
|
15782
|
+
status: 404;
|
|
15521
15783
|
};
|
|
15522
15784
|
};
|
|
15523
15785
|
} & {
|
|
@@ -15851,7 +16113,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15851
16113
|
args: hono_utils_types.JSONValue[];
|
|
15852
16114
|
}[];
|
|
15853
16115
|
logs: {
|
|
15854
|
-
level: "
|
|
16116
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15855
16117
|
message: string;
|
|
15856
16118
|
}[];
|
|
15857
16119
|
error?: string | undefined;
|
|
@@ -16586,14 +16848,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16586
16848
|
authParams: {
|
|
16587
16849
|
username?: string | undefined;
|
|
16588
16850
|
state?: string | undefined;
|
|
16589
|
-
|
|
16590
|
-
scope?: string | undefined;
|
|
16851
|
+
act_as?: string | undefined;
|
|
16591
16852
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16592
16853
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16593
|
-
act_as?: string | undefined;
|
|
16594
16854
|
redirect_uri?: string | undefined;
|
|
16855
|
+
audience?: string | undefined;
|
|
16595
16856
|
organization?: string | undefined;
|
|
16596
16857
|
nonce?: string | undefined;
|
|
16858
|
+
scope?: string | undefined;
|
|
16597
16859
|
prompt?: string | undefined;
|
|
16598
16860
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16599
16861
|
code_challenge?: string | undefined;
|
|
@@ -16622,14 +16884,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16622
16884
|
authParams: {
|
|
16623
16885
|
username?: string | undefined;
|
|
16624
16886
|
state?: string | undefined;
|
|
16625
|
-
|
|
16626
|
-
scope?: string | undefined;
|
|
16887
|
+
act_as?: string | undefined;
|
|
16627
16888
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16628
16889
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16629
|
-
act_as?: string | undefined;
|
|
16630
16890
|
redirect_uri?: string | undefined;
|
|
16891
|
+
audience?: string | undefined;
|
|
16631
16892
|
organization?: string | undefined;
|
|
16632
16893
|
nonce?: string | undefined;
|
|
16894
|
+
scope?: string | undefined;
|
|
16633
16895
|
prompt?: string | undefined;
|
|
16634
16896
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16635
16897
|
code_challenge?: string | undefined;
|
|
@@ -16863,6 +17125,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16863
17125
|
username: string;
|
|
16864
17126
|
otp: string;
|
|
16865
17127
|
realm: "email" | "sms";
|
|
17128
|
+
} | {
|
|
17129
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17130
|
+
subject_token: string;
|
|
17131
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17132
|
+
organization: string;
|
|
17133
|
+
audience?: string | undefined;
|
|
17134
|
+
scope?: string | undefined;
|
|
17135
|
+
client_id?: string | undefined;
|
|
17136
|
+
client_secret?: string | undefined;
|
|
17137
|
+
client_assertion?: string | undefined;
|
|
17138
|
+
client_assertion_type?: string | undefined;
|
|
16866
17139
|
};
|
|
16867
17140
|
} & {
|
|
16868
17141
|
json: {
|
|
@@ -16899,6 +17172,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16899
17172
|
username: string;
|
|
16900
17173
|
otp: string;
|
|
16901
17174
|
realm: "email" | "sms";
|
|
17175
|
+
} | {
|
|
17176
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17177
|
+
subject_token: string;
|
|
17178
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17179
|
+
organization: string;
|
|
17180
|
+
audience?: string | undefined;
|
|
17181
|
+
scope?: string | undefined;
|
|
17182
|
+
client_id?: string | undefined;
|
|
17183
|
+
client_secret?: string | undefined;
|
|
17184
|
+
client_assertion?: string | undefined;
|
|
17185
|
+
client_assertion_type?: string | undefined;
|
|
16902
17186
|
};
|
|
16903
17187
|
};
|
|
16904
17188
|
output: {};
|
|
@@ -16940,6 +17224,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16940
17224
|
username: string;
|
|
16941
17225
|
otp: string;
|
|
16942
17226
|
realm: "email" | "sms";
|
|
17227
|
+
} | {
|
|
17228
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17229
|
+
subject_token: string;
|
|
17230
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17231
|
+
organization: string;
|
|
17232
|
+
audience?: string | undefined;
|
|
17233
|
+
scope?: string | undefined;
|
|
17234
|
+
client_id?: string | undefined;
|
|
17235
|
+
client_secret?: string | undefined;
|
|
17236
|
+
client_assertion?: string | undefined;
|
|
17237
|
+
client_assertion_type?: string | undefined;
|
|
16943
17238
|
};
|
|
16944
17239
|
} & {
|
|
16945
17240
|
json: {
|
|
@@ -16976,6 +17271,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16976
17271
|
username: string;
|
|
16977
17272
|
otp: string;
|
|
16978
17273
|
realm: "email" | "sms";
|
|
17274
|
+
} | {
|
|
17275
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17276
|
+
subject_token: string;
|
|
17277
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17278
|
+
organization: string;
|
|
17279
|
+
audience?: string | undefined;
|
|
17280
|
+
scope?: string | undefined;
|
|
17281
|
+
client_id?: string | undefined;
|
|
17282
|
+
client_secret?: string | undefined;
|
|
17283
|
+
client_assertion?: string | undefined;
|
|
17284
|
+
client_assertion_type?: string | undefined;
|
|
16979
17285
|
};
|
|
16980
17286
|
};
|
|
16981
17287
|
output: {
|
|
@@ -17025,6 +17331,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17025
17331
|
username: string;
|
|
17026
17332
|
otp: string;
|
|
17027
17333
|
realm: "email" | "sms";
|
|
17334
|
+
} | {
|
|
17335
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17336
|
+
subject_token: string;
|
|
17337
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17338
|
+
organization: string;
|
|
17339
|
+
audience?: string | undefined;
|
|
17340
|
+
scope?: string | undefined;
|
|
17341
|
+
client_id?: string | undefined;
|
|
17342
|
+
client_secret?: string | undefined;
|
|
17343
|
+
client_assertion?: string | undefined;
|
|
17344
|
+
client_assertion_type?: string | undefined;
|
|
17028
17345
|
};
|
|
17029
17346
|
} & {
|
|
17030
17347
|
json: {
|
|
@@ -17061,6 +17378,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17061
17378
|
username: string;
|
|
17062
17379
|
otp: string;
|
|
17063
17380
|
realm: "email" | "sms";
|
|
17381
|
+
} | {
|
|
17382
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17383
|
+
subject_token: string;
|
|
17384
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17385
|
+
organization: string;
|
|
17386
|
+
audience?: string | undefined;
|
|
17387
|
+
scope?: string | undefined;
|
|
17388
|
+
client_id?: string | undefined;
|
|
17389
|
+
client_secret?: string | undefined;
|
|
17390
|
+
client_assertion?: string | undefined;
|
|
17391
|
+
client_assertion_type?: string | undefined;
|
|
17064
17392
|
};
|
|
17065
17393
|
};
|
|
17066
17394
|
output: {
|
|
@@ -17105,6 +17433,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17105
17433
|
username: string;
|
|
17106
17434
|
otp: string;
|
|
17107
17435
|
realm: "email" | "sms";
|
|
17436
|
+
} | {
|
|
17437
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17438
|
+
subject_token: string;
|
|
17439
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17440
|
+
organization: string;
|
|
17441
|
+
audience?: string | undefined;
|
|
17442
|
+
scope?: string | undefined;
|
|
17443
|
+
client_id?: string | undefined;
|
|
17444
|
+
client_secret?: string | undefined;
|
|
17445
|
+
client_assertion?: string | undefined;
|
|
17446
|
+
client_assertion_type?: string | undefined;
|
|
17108
17447
|
};
|
|
17109
17448
|
} & {
|
|
17110
17449
|
json: {
|
|
@@ -17141,6 +17480,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17141
17480
|
username: string;
|
|
17142
17481
|
otp: string;
|
|
17143
17482
|
realm: "email" | "sms";
|
|
17483
|
+
} | {
|
|
17484
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17485
|
+
subject_token: string;
|
|
17486
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17487
|
+
organization: string;
|
|
17488
|
+
audience?: string | undefined;
|
|
17489
|
+
scope?: string | undefined;
|
|
17490
|
+
client_id?: string | undefined;
|
|
17491
|
+
client_secret?: string | undefined;
|
|
17492
|
+
client_assertion?: string | undefined;
|
|
17493
|
+
client_assertion_type?: string | undefined;
|
|
17144
17494
|
};
|
|
17145
17495
|
};
|
|
17146
17496
|
output: {
|
|
@@ -17185,6 +17535,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17185
17535
|
username: string;
|
|
17186
17536
|
otp: string;
|
|
17187
17537
|
realm: "email" | "sms";
|
|
17538
|
+
} | {
|
|
17539
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17540
|
+
subject_token: string;
|
|
17541
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17542
|
+
organization: string;
|
|
17543
|
+
audience?: string | undefined;
|
|
17544
|
+
scope?: string | undefined;
|
|
17545
|
+
client_id?: string | undefined;
|
|
17546
|
+
client_secret?: string | undefined;
|
|
17547
|
+
client_assertion?: string | undefined;
|
|
17548
|
+
client_assertion_type?: string | undefined;
|
|
17188
17549
|
};
|
|
17189
17550
|
} & {
|
|
17190
17551
|
json: {
|
|
@@ -17221,6 +17582,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17221
17582
|
username: string;
|
|
17222
17583
|
otp: string;
|
|
17223
17584
|
realm: "email" | "sms";
|
|
17585
|
+
} | {
|
|
17586
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17587
|
+
subject_token: string;
|
|
17588
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17589
|
+
organization: string;
|
|
17590
|
+
audience?: string | undefined;
|
|
17591
|
+
scope?: string | undefined;
|
|
17592
|
+
client_id?: string | undefined;
|
|
17593
|
+
client_secret?: string | undefined;
|
|
17594
|
+
client_assertion?: string | undefined;
|
|
17595
|
+
client_assertion_type?: string | undefined;
|
|
17224
17596
|
};
|
|
17225
17597
|
};
|
|
17226
17598
|
output: {
|
|
@@ -17239,7 +17611,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17239
17611
|
keys: {
|
|
17240
17612
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
17241
17613
|
kid: string;
|
|
17242
|
-
kty: "
|
|
17614
|
+
kty: "RSA" | "EC" | "oct";
|
|
17243
17615
|
use?: "sig" | "enc" | undefined;
|
|
17244
17616
|
n?: string | undefined;
|
|
17245
17617
|
e?: string | undefined;
|
|
@@ -18050,7 +18422,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18050
18422
|
} & {
|
|
18051
18423
|
form: {
|
|
18052
18424
|
username: string;
|
|
18053
|
-
login_selection?: "
|
|
18425
|
+
login_selection?: "code" | "password" | undefined;
|
|
18054
18426
|
};
|
|
18055
18427
|
};
|
|
18056
18428
|
output: {};
|
|
@@ -18064,7 +18436,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18064
18436
|
} & {
|
|
18065
18437
|
form: {
|
|
18066
18438
|
username: string;
|
|
18067
|
-
login_selection?: "
|
|
18439
|
+
login_selection?: "code" | "password" | undefined;
|
|
18068
18440
|
};
|
|
18069
18441
|
};
|
|
18070
18442
|
output: {};
|
|
@@ -18429,7 +18801,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18429
18801
|
$get: {
|
|
18430
18802
|
input: {
|
|
18431
18803
|
param: {
|
|
18432
|
-
screen: "signup" | "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";
|
|
18804
|
+
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";
|
|
18433
18805
|
};
|
|
18434
18806
|
} & {
|
|
18435
18807
|
query: {
|
|
@@ -18445,7 +18817,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18445
18817
|
} | {
|
|
18446
18818
|
input: {
|
|
18447
18819
|
param: {
|
|
18448
|
-
screen: "signup" | "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";
|
|
18820
|
+
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";
|
|
18449
18821
|
};
|
|
18450
18822
|
} & {
|
|
18451
18823
|
query: {
|
|
@@ -18461,7 +18833,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18461
18833
|
} | {
|
|
18462
18834
|
input: {
|
|
18463
18835
|
param: {
|
|
18464
|
-
screen: "signup" | "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";
|
|
18836
|
+
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";
|
|
18465
18837
|
};
|
|
18466
18838
|
} & {
|
|
18467
18839
|
query: {
|
|
@@ -18481,7 +18853,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18481
18853
|
$post: {
|
|
18482
18854
|
input: {
|
|
18483
18855
|
param: {
|
|
18484
|
-
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";
|
|
18856
|
+
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";
|
|
18485
18857
|
};
|
|
18486
18858
|
} & {
|
|
18487
18859
|
query: {
|
|
@@ -18499,7 +18871,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18499
18871
|
} | {
|
|
18500
18872
|
input: {
|
|
18501
18873
|
param: {
|
|
18502
|
-
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";
|
|
18874
|
+
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";
|
|
18503
18875
|
};
|
|
18504
18876
|
} & {
|
|
18505
18877
|
query: {
|
|
@@ -18517,7 +18889,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18517
18889
|
} | {
|
|
18518
18890
|
input: {
|
|
18519
18891
|
param: {
|
|
18520
|
-
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";
|
|
18892
|
+
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";
|
|
18521
18893
|
};
|
|
18522
18894
|
} & {
|
|
18523
18895
|
query: {
|
|
@@ -18615,5 +18987,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18615
18987
|
createX509Certificate: typeof createX509Certificate;
|
|
18616
18988
|
};
|
|
18617
18989
|
|
|
18618
|
-
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 };
|
|
18619
|
-
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 };
|
|
18990
|
+
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 };
|
|
18991
|
+
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 };
|