authhero 8.26.1 → 9.0.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/LICENSE +661 -21
- package/dist/assets/u/js/client.js +2 -2
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +265 -251
- package/dist/authhero.d.ts +257 -110
- package/dist/authhero.mjs +24690 -17997
- package/dist/client.js +2 -2
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +2 -2
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/components/stories/IdentifierPage.stories.d.ts +2 -0
- package/dist/types/helpers/codes-cleanup.d.ts +4 -4
- package/dist/types/helpers/link-candidates.d.ts +28 -0
- package/dist/types/helpers/logging.d.ts +8 -0
- package/dist/types/helpers/run-retention.d.ts +86 -0
- package/dist/types/helpers/scopes-permissions.d.ts +18 -0
- package/dist/types/helpers/signing-keys.d.ts +36 -0
- package/dist/types/helpers/users.d.ts +43 -0
- package/dist/types/hooks/codehooks.d.ts +9 -1
- package/dist/types/hooks/helpers/post-login-account-linking.d.ts +52 -0
- package/dist/types/hooks/pre-defined/account-linking.d.ts +20 -0
- package/dist/types/index.d.ts +107 -104
- package/dist/types/routes/auth-api/index.d.ts +10 -10
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +2 -1
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +86 -85
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +7 -7
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-operations.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/Hooks.d.ts +8 -1
- package/dist/types/types/IdToken.d.ts +1 -1
- package/package.json +7 -6
package/dist/authhero.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as hono_utils_types from 'hono/utils/types';
|
|
2
2
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
3
|
-
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams,
|
|
3
|
+
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, LinkCandidate, roleSchema, inviteSchema, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, Tenant, CreateTenantParams, Hook, TenantOperationKind, TenantOperation, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, OutboxAdapter, AuditEvent, CodesAdapter, HooksAdapter, Client, LogsDataAdapter, LogInsert, UserDataAdapter, ProxyRoutesAdapter, CustomDomainsAdapter, TenantsDataAdapter, KeysAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
4
4
|
export * from '@authhero/adapter-interfaces';
|
|
5
5
|
import * as hono_types from 'hono/types';
|
|
6
6
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
@@ -10,7 +10,7 @@ import { SamlSigner } from '@authhero/saml/core';
|
|
|
10
10
|
export { HttpSamlSigner, SamlSigner } from '@authhero/saml/core';
|
|
11
11
|
import { Context, Hono, Next, Handler, MiddlewareHandler } from 'hono';
|
|
12
12
|
import * as _authhero_proxy from '@authhero/proxy';
|
|
13
|
-
import {
|
|
13
|
+
import { KvNamespaceWriter, ResolvedHost } from '@authhero/proxy';
|
|
14
14
|
export { PROXY_RESOLVE_HOST_SCOPE, ServiceBindingFetcher, createServiceBindingFetch } from '@authhero/proxy';
|
|
15
15
|
import { FC, PropsWithChildren, JSXNode } from 'hono/jsx';
|
|
16
16
|
import * as hono_jsx_jsx_dev_runtime from 'hono/jsx/jsx-dev-runtime';
|
|
@@ -691,6 +691,13 @@ type HookEvent = {
|
|
|
691
691
|
ja3?: string;
|
|
692
692
|
ja4?: string;
|
|
693
693
|
};
|
|
694
|
+
/**
|
|
695
|
+
* Candidate primary accounts the built-in email-linking policy would consider,
|
|
696
|
+
* exposed only to `post-user-login` code hooks that opt in via
|
|
697
|
+
* `metadata.resolve_link_candidates`. Absent on the event for every other hook
|
|
698
|
+
* (and trigger).
|
|
699
|
+
*/
|
|
700
|
+
link_candidates?: LinkCandidate[];
|
|
694
701
|
};
|
|
695
702
|
type TokenAPI = {
|
|
696
703
|
createServiceToken: (params: {
|
|
@@ -2722,11 +2729,11 @@ interface CodesCleanupParams {
|
|
|
2722
2729
|
}
|
|
2723
2730
|
/**
|
|
2724
2731
|
* Delete codes that expired more than the retention window ago.
|
|
2725
|
-
* Intended for use in a scheduled handler / cron job.
|
|
2726
2732
|
*
|
|
2727
|
-
*
|
|
2728
|
-
*
|
|
2729
|
-
*
|
|
2733
|
+
* Prefer `runRetention`, which calls this along with every other prunable
|
|
2734
|
+
* table — scheduling one call means a future prunable table is covered without
|
|
2735
|
+
* editing your handler. Use this directly only when you want to sweep `codes`
|
|
2736
|
+
* on its own schedule.
|
|
2730
2737
|
*
|
|
2731
2738
|
* @example
|
|
2732
2739
|
* ```ts
|
|
@@ -2994,6 +3001,91 @@ interface RunOutboxRelayConfig {
|
|
|
2994
3001
|
*/
|
|
2995
3002
|
declare function runOutboxRelay(config: RunOutboxRelayConfig): Promise<void>;
|
|
2996
3003
|
|
|
3004
|
+
interface RunRetentionConfig {
|
|
3005
|
+
/** Same `DataAdapters` passed to `init()`. */
|
|
3006
|
+
dataAdapter: DataAdapters;
|
|
3007
|
+
/** Grace period past expiry for `codes`. Default 1. */
|
|
3008
|
+
codesRetentionDays?: number;
|
|
3009
|
+
/** Days to keep processed/dead-lettered outbox events. Default 7. */
|
|
3010
|
+
outboxRetentionDays?: number;
|
|
3011
|
+
/**
|
|
3012
|
+
* Scope the session sweep to a single tenant. Codes and outbox events are
|
|
3013
|
+
* always swept globally — an expired row is dead regardless of who owns it.
|
|
3014
|
+
*/
|
|
3015
|
+
tenantId?: string;
|
|
3016
|
+
}
|
|
3017
|
+
type RetentionSweepStatus = "swept" | "skipped" | "failed";
|
|
3018
|
+
interface RetentionSweepBase {
|
|
3019
|
+
/** Table(s) this sweep covers, for logging. */
|
|
3020
|
+
table: string;
|
|
3021
|
+
}
|
|
3022
|
+
interface RetentionSweepSwept extends RetentionSweepBase {
|
|
3023
|
+
status: "swept";
|
|
3024
|
+
/**
|
|
3025
|
+
* Rows deleted. Absent when the underlying adapter reports no count —
|
|
3026
|
+
* `sessionCleanup` returns void, so a session sweep succeeds without one.
|
|
3027
|
+
*/
|
|
3028
|
+
deleted?: number;
|
|
3029
|
+
}
|
|
3030
|
+
interface RetentionSweepSkipped extends RetentionSweepBase {
|
|
3031
|
+
status: "skipped";
|
|
3032
|
+
/** Why the sweep was skipped — an adapter that does not support it. */
|
|
3033
|
+
reason: string;
|
|
3034
|
+
}
|
|
3035
|
+
interface RetentionSweepFailed extends RetentionSweepBase {
|
|
3036
|
+
status: "failed";
|
|
3037
|
+
error: unknown;
|
|
3038
|
+
}
|
|
3039
|
+
/**
|
|
3040
|
+
* Discriminated on `status`, so a sweep cannot carry fields that contradict
|
|
3041
|
+
* it — no `error` on a successful sweep, no `deleted` on a failed one.
|
|
3042
|
+
*/
|
|
3043
|
+
type RetentionSweep = RetentionSweepSwept | RetentionSweepSkipped | RetentionSweepFailed;
|
|
3044
|
+
interface RunRetentionResult {
|
|
3045
|
+
sweeps: RetentionSweep[];
|
|
3046
|
+
}
|
|
3047
|
+
/**
|
|
3048
|
+
* Thrown when one or more sweeps failed. The other sweeps still ran — check
|
|
3049
|
+
* `result` for what succeeded.
|
|
3050
|
+
*/
|
|
3051
|
+
declare class RetentionSweepError extends Error {
|
|
3052
|
+
readonly result: RunRetentionResult;
|
|
3053
|
+
readonly errors: unknown[];
|
|
3054
|
+
constructor(result: RunRetentionResult, errors: unknown[]);
|
|
3055
|
+
}
|
|
3056
|
+
/**
|
|
3057
|
+
* Sweep every prunable AuthHero table in one call.
|
|
3058
|
+
*
|
|
3059
|
+
* This is the entry point for retention — a deployment that schedules this
|
|
3060
|
+
* daily needs nothing else, and gains coverage of future prunable tables
|
|
3061
|
+
* without editing its handler.
|
|
3062
|
+
*
|
|
3063
|
+
* Covers `codes`, `outbox_events`, and (where the adapter supports it)
|
|
3064
|
+
* `sessions` / `refresh_tokens` / `login_sessions`. It does **not** drain the
|
|
3065
|
+
* outbox: delivery is `runOutboxRelay`'s job, and the two are scheduled
|
|
3066
|
+
* independently. Running both is safe — the relay's own cleanup pass and this
|
|
3067
|
+
* one are idempotent.
|
|
3068
|
+
*
|
|
3069
|
+
* `logs` is deliberately excluded. Audit-retention obligations differ per
|
|
3070
|
+
* deployment, so AuthHero will not silently delete audit rows on your behalf;
|
|
3071
|
+
* prune `logs` on `date` yourself.
|
|
3072
|
+
*
|
|
3073
|
+
* Every sweep runs even if an earlier one throws, so one broken adapter method
|
|
3074
|
+
* cannot stop the rest of the tables being pruned. If any sweep failed, a
|
|
3075
|
+
* `RetentionSweepError` carrying the partial result is thrown once at the end.
|
|
3076
|
+
*
|
|
3077
|
+
* @example
|
|
3078
|
+
* ```ts
|
|
3079
|
+
* export default {
|
|
3080
|
+
* async scheduled(_event, env) {
|
|
3081
|
+
* const { sweeps } = await runRetention({ dataAdapter });
|
|
3082
|
+
* console.log(sweeps);
|
|
3083
|
+
* },
|
|
3084
|
+
* };
|
|
3085
|
+
* ```
|
|
3086
|
+
*/
|
|
3087
|
+
declare function runRetention(config: RunRetentionConfig): Promise<RunRetentionResult>;
|
|
3088
|
+
|
|
2997
3089
|
declare class LogsDestination implements EventDestination {
|
|
2998
3090
|
name: string;
|
|
2999
3091
|
private logs;
|
|
@@ -3856,6 +3948,40 @@ interface ResolveSigningKeysOptions {
|
|
|
3856
3948
|
type?: string;
|
|
3857
3949
|
}
|
|
3858
3950
|
declare function resolveSigningKeys(keys: KeysAdapter, tenantId: string, modeOption: SigningKeyModeOption | undefined, opts: ResolveSigningKeysOptions): Promise<SigningKey[]>;
|
|
3951
|
+
interface EnsureSigningKeyOptions {
|
|
3952
|
+
/**
|
|
3953
|
+
* When set, the key is created tenant-scoped (`tenant_id` stamped) and the
|
|
3954
|
+
* existence check is scoped to that tenant. Omit for a control-plane key
|
|
3955
|
+
* (no `tenant_id`), which `resolveSigningKeys` resolves in both modes — as
|
|
3956
|
+
* the primary key in `"control-plane"` mode and as the fallback in
|
|
3957
|
+
* `"tenant"` mode. Control-plane scope is the right default for a freshly
|
|
3958
|
+
* provisioned WFP tenant.
|
|
3959
|
+
*/
|
|
3960
|
+
tenantId?: string;
|
|
3961
|
+
/** Cert CN. Falls back to the tenant id, then to `"authhero"`. */
|
|
3962
|
+
name?: string;
|
|
3963
|
+
/** Defaults to `"jwt_signing"`. */
|
|
3964
|
+
type?: SigningKey["type"];
|
|
3965
|
+
}
|
|
3966
|
+
interface EnsureSigningKeyResult {
|
|
3967
|
+
/** True when a new key was minted; false when a signable key already existed. */
|
|
3968
|
+
created: boolean;
|
|
3969
|
+
key: SigningKey;
|
|
3970
|
+
}
|
|
3971
|
+
/**
|
|
3972
|
+
* Guarantees the target scope holds at least one *signable* key — one carrying
|
|
3973
|
+
* private material (`pkcs7` + `cert`), not merely a projected public verify key.
|
|
3974
|
+
*
|
|
3975
|
+
* A freshly provisioned WFP tenant inherits only the control plane's public
|
|
3976
|
+
* keys (private material stripped at the boundary), so it can serve JWKS and
|
|
3977
|
+
* `/authorize` but 500s at `/oauth/token` with nothing to sign — issue #1181.
|
|
3978
|
+
* Calling this at provision time closes that gap by minting the tenant's own
|
|
3979
|
+
* RS256 key locally (private material never crosses the control-plane boundary).
|
|
3980
|
+
*
|
|
3981
|
+
* Create-if-missing and idempotent: a scope that already has a signable key is
|
|
3982
|
+
* left untouched, so it is safe to call on every provision and re-sync.
|
|
3983
|
+
*/
|
|
3984
|
+
declare function ensureSigningKey(keys: KeysAdapter, opts?: EnsureSigningKeyOptions): Promise<EnsureSigningKeyResult>;
|
|
3859
3985
|
|
|
3860
3986
|
declare const USERNAME_PASSWORD_PROVIDER = "auth0";
|
|
3861
3987
|
|
|
@@ -3965,6 +4091,26 @@ interface AccountLinkingOptions {
|
|
|
3965
4091
|
* @default false
|
|
3966
4092
|
*/
|
|
3967
4093
|
copyUserMetadata?: boolean;
|
|
4094
|
+
/**
|
|
4095
|
+
* When the link is performed, fill in *absent* root profile fields on the
|
|
4096
|
+
* primary from the secondary — e.g. a secondary that has a `birthdate` the
|
|
4097
|
+
* primary lacks, or a phone number an email primary doesn't carry.
|
|
4098
|
+
*
|
|
4099
|
+
* Fill-if-absent only: a field already set on the primary is never
|
|
4100
|
+
* overwritten (primary stays authoritative), matching `copyUserMetadata`.
|
|
4101
|
+
* Identifier and verification fields are never touched — `email`,
|
|
4102
|
+
* `email_verified`, `phone_verified`, `username`, `provider`, `connection`
|
|
4103
|
+
* are excluded — so this can't rewrite a login identifier. In particular an
|
|
4104
|
+
* sms primary already carries a `phone_number`, so its identifier is never
|
|
4105
|
+
* filled over; the promotion only reaches a primary that has no phone yet.
|
|
4106
|
+
*
|
|
4107
|
+
* Off by default to match Auth0, which keeps a linked identity's own
|
|
4108
|
+
* attributes under `identities[].profileData` rather than promoting them to
|
|
4109
|
+
* the merged user's root profile.
|
|
4110
|
+
*
|
|
4111
|
+
* @default false
|
|
4112
|
+
*/
|
|
4113
|
+
copyProfileFields?: boolean;
|
|
3968
4114
|
}
|
|
3969
4115
|
/**
|
|
3970
4116
|
* Trigger-agnostic event handler used by all `account-linking` template
|
|
@@ -4072,8 +4218,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4072
4218
|
$get: {
|
|
4073
4219
|
input: {
|
|
4074
4220
|
query: {
|
|
4075
|
-
include_password_hashes?: "
|
|
4076
|
-
gzip?: "
|
|
4221
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4222
|
+
gzip?: "true" | "false" | undefined;
|
|
4077
4223
|
};
|
|
4078
4224
|
} & {
|
|
4079
4225
|
header: {
|
|
@@ -4086,8 +4232,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4086
4232
|
} | {
|
|
4087
4233
|
input: {
|
|
4088
4234
|
query: {
|
|
4089
|
-
include_password_hashes?: "
|
|
4090
|
-
gzip?: "
|
|
4235
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4236
|
+
gzip?: "true" | "false" | undefined;
|
|
4091
4237
|
};
|
|
4092
4238
|
} & {
|
|
4093
4239
|
header: {
|
|
@@ -4106,7 +4252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4106
4252
|
$post: {
|
|
4107
4253
|
input: {
|
|
4108
4254
|
query: {
|
|
4109
|
-
include_password_hashes?: "
|
|
4255
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
4110
4256
|
};
|
|
4111
4257
|
} & {
|
|
4112
4258
|
header: {
|
|
@@ -4160,7 +4306,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4160
4306
|
};
|
|
4161
4307
|
} & {
|
|
4162
4308
|
json: {
|
|
4163
|
-
type: "
|
|
4309
|
+
type: "email" | "phone" | "push" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
4164
4310
|
phone_number?: string | undefined;
|
|
4165
4311
|
totp_secret?: string | undefined;
|
|
4166
4312
|
credential_id?: string | undefined;
|
|
@@ -4300,7 +4446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4300
4446
|
};
|
|
4301
4447
|
};
|
|
4302
4448
|
output: {
|
|
4303
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
4449
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4304
4450
|
enabled: boolean;
|
|
4305
4451
|
trial_expired?: boolean | undefined;
|
|
4306
4452
|
}[];
|
|
@@ -4455,7 +4601,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4455
4601
|
$get: {
|
|
4456
4602
|
input: {
|
|
4457
4603
|
param: {
|
|
4458
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
4604
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4459
4605
|
};
|
|
4460
4606
|
} & {
|
|
4461
4607
|
header: {
|
|
@@ -4463,7 +4609,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4463
4609
|
};
|
|
4464
4610
|
};
|
|
4465
4611
|
output: {
|
|
4466
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
4612
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4467
4613
|
enabled: boolean;
|
|
4468
4614
|
trial_expired?: boolean | undefined;
|
|
4469
4615
|
};
|
|
@@ -4476,7 +4622,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4476
4622
|
$put: {
|
|
4477
4623
|
input: {
|
|
4478
4624
|
param: {
|
|
4479
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
4625
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4480
4626
|
};
|
|
4481
4627
|
} & {
|
|
4482
4628
|
header: {
|
|
@@ -4488,7 +4634,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4488
4634
|
};
|
|
4489
4635
|
};
|
|
4490
4636
|
output: {
|
|
4491
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
4637
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
4492
4638
|
enabled: boolean;
|
|
4493
4639
|
trial_expired?: boolean | undefined;
|
|
4494
4640
|
};
|
|
@@ -5260,19 +5406,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5260
5406
|
} & {
|
|
5261
5407
|
json: {
|
|
5262
5408
|
client_id: string;
|
|
5263
|
-
inviter: {
|
|
5264
|
-
name?: string | undefined;
|
|
5265
|
-
};
|
|
5266
5409
|
invitee: {
|
|
5267
5410
|
email?: string | undefined;
|
|
5268
5411
|
};
|
|
5412
|
+
inviter: {
|
|
5413
|
+
name?: string | undefined;
|
|
5414
|
+
};
|
|
5269
5415
|
id?: string | undefined;
|
|
5270
5416
|
app_metadata?: Record<string, any> | undefined;
|
|
5271
5417
|
user_metadata?: Record<string, any> | undefined;
|
|
5272
5418
|
connection_id?: string | undefined;
|
|
5273
5419
|
roles?: string[] | undefined;
|
|
5274
|
-
ttl_sec?: number | undefined;
|
|
5275
5420
|
send_invitation_email?: boolean | undefined;
|
|
5421
|
+
ttl_sec?: number | undefined;
|
|
5276
5422
|
};
|
|
5277
5423
|
};
|
|
5278
5424
|
output: {
|
|
@@ -6027,9 +6173,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6027
6173
|
};
|
|
6028
6174
|
} & {
|
|
6029
6175
|
query: {
|
|
6176
|
+
from?: string | undefined;
|
|
6030
6177
|
page?: string | undefined;
|
|
6031
6178
|
include_totals?: string | undefined;
|
|
6032
|
-
from?: string | undefined;
|
|
6033
6179
|
per_page?: string | undefined;
|
|
6034
6180
|
take?: string | undefined;
|
|
6035
6181
|
};
|
|
@@ -10981,7 +11127,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10981
11127
|
};
|
|
10982
11128
|
};
|
|
10983
11129
|
output: {
|
|
10984
|
-
prompt: "
|
|
11130
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
10985
11131
|
language: string;
|
|
10986
11132
|
}[];
|
|
10987
11133
|
outputFormat: "json";
|
|
@@ -11019,7 +11165,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11019
11165
|
$get: {
|
|
11020
11166
|
input: {
|
|
11021
11167
|
param: {
|
|
11022
|
-
prompt: "
|
|
11168
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
11023
11169
|
language: string;
|
|
11024
11170
|
};
|
|
11025
11171
|
} & {
|
|
@@ -11041,7 +11187,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11041
11187
|
$put: {
|
|
11042
11188
|
input: {
|
|
11043
11189
|
param: {
|
|
11044
|
-
prompt: "
|
|
11190
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
11045
11191
|
language: string;
|
|
11046
11192
|
};
|
|
11047
11193
|
} & {
|
|
@@ -11065,7 +11211,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11065
11211
|
$delete: {
|
|
11066
11212
|
input: {
|
|
11067
11213
|
param: {
|
|
11068
|
-
prompt: "
|
|
11214
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
11069
11215
|
language: string;
|
|
11070
11216
|
};
|
|
11071
11217
|
} & {
|
|
@@ -11157,7 +11303,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11157
11303
|
active?: boolean | undefined;
|
|
11158
11304
|
} | undefined;
|
|
11159
11305
|
signup?: {
|
|
11160
|
-
status?: "
|
|
11306
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11161
11307
|
verification?: {
|
|
11162
11308
|
active?: boolean | undefined;
|
|
11163
11309
|
} | undefined;
|
|
@@ -11174,7 +11320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11174
11320
|
active?: boolean | undefined;
|
|
11175
11321
|
} | undefined;
|
|
11176
11322
|
signup?: {
|
|
11177
|
-
status?: "
|
|
11323
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11178
11324
|
} | undefined;
|
|
11179
11325
|
validation?: {
|
|
11180
11326
|
max_length?: number | undefined;
|
|
@@ -11191,7 +11337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11191
11337
|
active?: boolean | undefined;
|
|
11192
11338
|
} | undefined;
|
|
11193
11339
|
signup?: {
|
|
11194
|
-
status?: "
|
|
11340
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11195
11341
|
} | undefined;
|
|
11196
11342
|
} | undefined;
|
|
11197
11343
|
} | undefined;
|
|
@@ -11291,7 +11437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11291
11437
|
active?: boolean | undefined;
|
|
11292
11438
|
} | undefined;
|
|
11293
11439
|
signup?: {
|
|
11294
|
-
status?: "
|
|
11440
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11295
11441
|
verification?: {
|
|
11296
11442
|
active?: boolean | undefined;
|
|
11297
11443
|
} | undefined;
|
|
@@ -11308,7 +11454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11308
11454
|
active?: boolean | undefined;
|
|
11309
11455
|
} | undefined;
|
|
11310
11456
|
signup?: {
|
|
11311
|
-
status?: "
|
|
11457
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11312
11458
|
} | undefined;
|
|
11313
11459
|
validation?: {
|
|
11314
11460
|
max_length?: number | undefined;
|
|
@@ -11325,7 +11471,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11325
11471
|
active?: boolean | undefined;
|
|
11326
11472
|
} | undefined;
|
|
11327
11473
|
signup?: {
|
|
11328
|
-
status?: "
|
|
11474
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11329
11475
|
} | undefined;
|
|
11330
11476
|
} | undefined;
|
|
11331
11477
|
} | undefined;
|
|
@@ -11441,7 +11587,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11441
11587
|
active?: boolean | undefined;
|
|
11442
11588
|
} | undefined;
|
|
11443
11589
|
signup?: {
|
|
11444
|
-
status?: "
|
|
11590
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11445
11591
|
verification?: {
|
|
11446
11592
|
active?: boolean | undefined;
|
|
11447
11593
|
} | undefined;
|
|
@@ -11458,7 +11604,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11458
11604
|
active?: boolean | undefined;
|
|
11459
11605
|
} | undefined;
|
|
11460
11606
|
signup?: {
|
|
11461
|
-
status?: "
|
|
11607
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11462
11608
|
} | undefined;
|
|
11463
11609
|
validation?: {
|
|
11464
11610
|
max_length?: number | undefined;
|
|
@@ -11475,7 +11621,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11475
11621
|
active?: boolean | undefined;
|
|
11476
11622
|
} | undefined;
|
|
11477
11623
|
signup?: {
|
|
11478
|
-
status?: "
|
|
11624
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11479
11625
|
} | undefined;
|
|
11480
11626
|
} | undefined;
|
|
11481
11627
|
} | undefined;
|
|
@@ -11620,7 +11766,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11620
11766
|
active?: boolean | undefined;
|
|
11621
11767
|
} | undefined;
|
|
11622
11768
|
signup?: {
|
|
11623
|
-
status?: "
|
|
11769
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11624
11770
|
verification?: {
|
|
11625
11771
|
active?: boolean | undefined;
|
|
11626
11772
|
} | undefined;
|
|
@@ -11637,7 +11783,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11637
11783
|
active?: boolean | undefined;
|
|
11638
11784
|
} | undefined;
|
|
11639
11785
|
signup?: {
|
|
11640
|
-
status?: "
|
|
11786
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11641
11787
|
} | undefined;
|
|
11642
11788
|
validation?: {
|
|
11643
11789
|
max_length?: number | undefined;
|
|
@@ -11654,7 +11800,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11654
11800
|
active?: boolean | undefined;
|
|
11655
11801
|
} | undefined;
|
|
11656
11802
|
signup?: {
|
|
11657
|
-
status?: "
|
|
11803
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11658
11804
|
} | undefined;
|
|
11659
11805
|
} | undefined;
|
|
11660
11806
|
} | undefined;
|
|
@@ -11778,7 +11924,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11778
11924
|
active?: boolean | undefined;
|
|
11779
11925
|
} | undefined;
|
|
11780
11926
|
signup?: {
|
|
11781
|
-
status?: "
|
|
11927
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11782
11928
|
verification?: {
|
|
11783
11929
|
active?: boolean | undefined;
|
|
11784
11930
|
} | undefined;
|
|
@@ -11795,7 +11941,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11795
11941
|
active?: boolean | undefined;
|
|
11796
11942
|
} | undefined;
|
|
11797
11943
|
signup?: {
|
|
11798
|
-
status?: "
|
|
11944
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11799
11945
|
} | undefined;
|
|
11800
11946
|
validation?: {
|
|
11801
11947
|
max_length?: number | undefined;
|
|
@@ -11812,7 +11958,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11812
11958
|
active?: boolean | undefined;
|
|
11813
11959
|
} | undefined;
|
|
11814
11960
|
signup?: {
|
|
11815
|
-
status?: "
|
|
11961
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11816
11962
|
} | undefined;
|
|
11817
11963
|
} | undefined;
|
|
11818
11964
|
} | undefined;
|
|
@@ -11964,7 +12110,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11964
12110
|
tenant_id: string;
|
|
11965
12111
|
created_at: string;
|
|
11966
12112
|
updated_at: string;
|
|
11967
|
-
deploymentStatus: "
|
|
12113
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
11968
12114
|
secrets?: {
|
|
11969
12115
|
[x: string]: string;
|
|
11970
12116
|
} | undefined;
|
|
@@ -12054,7 +12200,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12054
12200
|
tenant_id: string;
|
|
12055
12201
|
created_at: string;
|
|
12056
12202
|
updated_at: string;
|
|
12057
|
-
deploymentStatus: "
|
|
12203
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
12058
12204
|
secrets?: {
|
|
12059
12205
|
[x: string]: string;
|
|
12060
12206
|
} | undefined;
|
|
@@ -12568,7 +12714,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12568
12714
|
log_type: string;
|
|
12569
12715
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
12570
12716
|
actor: {
|
|
12571
|
-
type: "
|
|
12717
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
12572
12718
|
id?: string | undefined;
|
|
12573
12719
|
email?: string | undefined;
|
|
12574
12720
|
org_id?: string | undefined;
|
|
@@ -12602,6 +12748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12602
12748
|
body?: hono_utils_types.JSONValue | undefined;
|
|
12603
12749
|
user_agent?: string | undefined;
|
|
12604
12750
|
correlation_id?: string | undefined;
|
|
12751
|
+
redirect_uri?: string | undefined;
|
|
12605
12752
|
};
|
|
12606
12753
|
hostname: string;
|
|
12607
12754
|
timestamp: string;
|
|
@@ -12878,7 +13025,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12878
13025
|
created_at: string;
|
|
12879
13026
|
updated_at: string;
|
|
12880
13027
|
name: string;
|
|
12881
|
-
provider: "auth0" | "
|
|
13028
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
12882
13029
|
connection: string;
|
|
12883
13030
|
enabled: boolean;
|
|
12884
13031
|
credentials: {
|
|
@@ -12910,7 +13057,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12910
13057
|
created_at: string;
|
|
12911
13058
|
updated_at: string;
|
|
12912
13059
|
name: string;
|
|
12913
|
-
provider: "auth0" | "
|
|
13060
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
12914
13061
|
connection: string;
|
|
12915
13062
|
enabled: boolean;
|
|
12916
13063
|
credentials: {
|
|
@@ -12936,7 +13083,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12936
13083
|
} & {
|
|
12937
13084
|
json: {
|
|
12938
13085
|
name: string;
|
|
12939
|
-
provider: "auth0" | "
|
|
13086
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
12940
13087
|
connection: string;
|
|
12941
13088
|
credentials: {
|
|
12942
13089
|
domain: string;
|
|
@@ -12953,7 +13100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12953
13100
|
created_at: string;
|
|
12954
13101
|
updated_at: string;
|
|
12955
13102
|
name: string;
|
|
12956
|
-
provider: "auth0" | "
|
|
13103
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
12957
13104
|
connection: string;
|
|
12958
13105
|
enabled: boolean;
|
|
12959
13106
|
credentials: {
|
|
@@ -12984,7 +13131,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12984
13131
|
json: {
|
|
12985
13132
|
id?: string | undefined;
|
|
12986
13133
|
name?: string | undefined;
|
|
12987
|
-
provider?: "auth0" | "
|
|
13134
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
12988
13135
|
connection?: string | undefined;
|
|
12989
13136
|
enabled?: boolean | undefined;
|
|
12990
13137
|
credentials?: {
|
|
@@ -13000,7 +13147,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13000
13147
|
created_at: string;
|
|
13001
13148
|
updated_at: string;
|
|
13002
13149
|
name: string;
|
|
13003
|
-
provider: "auth0" | "
|
|
13150
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
13004
13151
|
connection: string;
|
|
13005
13152
|
enabled: boolean;
|
|
13006
13153
|
credentials: {
|
|
@@ -13218,7 +13365,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13218
13365
|
};
|
|
13219
13366
|
};
|
|
13220
13367
|
output: {
|
|
13221
|
-
type: "
|
|
13368
|
+
type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13222
13369
|
date: string;
|
|
13223
13370
|
isMobile: boolean;
|
|
13224
13371
|
log_id: string;
|
|
@@ -13257,7 +13404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13257
13404
|
limit: number;
|
|
13258
13405
|
length: number;
|
|
13259
13406
|
logs: {
|
|
13260
|
-
type: "
|
|
13407
|
+
type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13261
13408
|
date: string;
|
|
13262
13409
|
isMobile: boolean;
|
|
13263
13410
|
log_id: string;
|
|
@@ -13296,7 +13443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13296
13443
|
next?: string | undefined;
|
|
13297
13444
|
} | {
|
|
13298
13445
|
logs: {
|
|
13299
|
-
type: "
|
|
13446
|
+
type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13300
13447
|
date: string;
|
|
13301
13448
|
isMobile: boolean;
|
|
13302
13449
|
log_id: string;
|
|
@@ -13350,7 +13497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13350
13497
|
};
|
|
13351
13498
|
};
|
|
13352
13499
|
output: {
|
|
13353
|
-
type: "
|
|
13500
|
+
type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13354
13501
|
date: string;
|
|
13355
13502
|
isMobile: boolean;
|
|
13356
13503
|
log_id: string;
|
|
@@ -14591,7 +14738,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14591
14738
|
active?: boolean | undefined;
|
|
14592
14739
|
} | undefined;
|
|
14593
14740
|
signup?: {
|
|
14594
|
-
status?: "
|
|
14741
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
14595
14742
|
verification?: {
|
|
14596
14743
|
active?: boolean | undefined;
|
|
14597
14744
|
} | undefined;
|
|
@@ -14608,7 +14755,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14608
14755
|
active?: boolean | undefined;
|
|
14609
14756
|
} | undefined;
|
|
14610
14757
|
signup?: {
|
|
14611
|
-
status?: "
|
|
14758
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
14612
14759
|
} | undefined;
|
|
14613
14760
|
validation?: {
|
|
14614
14761
|
max_length?: number | undefined;
|
|
@@ -14625,7 +14772,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14625
14772
|
active?: boolean | undefined;
|
|
14626
14773
|
} | undefined;
|
|
14627
14774
|
signup?: {
|
|
14628
|
-
status?: "
|
|
14775
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
14629
14776
|
} | undefined;
|
|
14630
14777
|
} | undefined;
|
|
14631
14778
|
} | undefined;
|
|
@@ -14745,7 +14892,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14745
14892
|
active?: boolean | undefined;
|
|
14746
14893
|
} | undefined;
|
|
14747
14894
|
signup?: {
|
|
14748
|
-
status?: "
|
|
14895
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
14749
14896
|
verification?: {
|
|
14750
14897
|
active?: boolean | undefined;
|
|
14751
14898
|
} | undefined;
|
|
@@ -14762,7 +14909,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14762
14909
|
active?: boolean | undefined;
|
|
14763
14910
|
} | undefined;
|
|
14764
14911
|
signup?: {
|
|
14765
|
-
status?: "
|
|
14912
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
14766
14913
|
} | undefined;
|
|
14767
14914
|
validation?: {
|
|
14768
14915
|
max_length?: number | undefined;
|
|
@@ -14779,7 +14926,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14779
14926
|
active?: boolean | undefined;
|
|
14780
14927
|
} | undefined;
|
|
14781
14928
|
signup?: {
|
|
14782
|
-
status?: "
|
|
14929
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
14783
14930
|
} | undefined;
|
|
14784
14931
|
} | undefined;
|
|
14785
14932
|
} | undefined;
|
|
@@ -15478,8 +15625,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15478
15625
|
locale?: string | undefined;
|
|
15479
15626
|
linked_to?: string | undefined;
|
|
15480
15627
|
profileData?: string | undefined;
|
|
15481
|
-
app_metadata?: any;
|
|
15482
|
-
user_metadata?: any;
|
|
15483
15628
|
middle_name?: string | undefined;
|
|
15484
15629
|
preferred_username?: string | undefined;
|
|
15485
15630
|
profile?: string | undefined;
|
|
@@ -15495,7 +15640,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15495
15640
|
postal_code?: string | undefined;
|
|
15496
15641
|
country?: string | undefined;
|
|
15497
15642
|
} | undefined;
|
|
15498
|
-
email_verified?: boolean | undefined;
|
|
15499
15643
|
last_ip?: string | undefined;
|
|
15500
15644
|
last_login?: string | undefined;
|
|
15501
15645
|
user_id?: string | undefined;
|
|
@@ -15505,6 +15649,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15505
15649
|
registration_completed_at?: string | undefined;
|
|
15506
15650
|
verify_email?: boolean | undefined;
|
|
15507
15651
|
password?: string | undefined;
|
|
15652
|
+
email_verified?: boolean | undefined;
|
|
15653
|
+
app_metadata?: any;
|
|
15654
|
+
user_metadata?: any;
|
|
15508
15655
|
};
|
|
15509
15656
|
};
|
|
15510
15657
|
output: {};
|
|
@@ -15805,7 +15952,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15805
15952
|
};
|
|
15806
15953
|
};
|
|
15807
15954
|
output: {
|
|
15808
|
-
type: "
|
|
15955
|
+
type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15809
15956
|
date: string;
|
|
15810
15957
|
isMobile: boolean;
|
|
15811
15958
|
log_id: string;
|
|
@@ -15844,7 +15991,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15844
15991
|
limit: number;
|
|
15845
15992
|
length: number;
|
|
15846
15993
|
logs: {
|
|
15847
|
-
type: "
|
|
15994
|
+
type: "fertft" | "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" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
15848
15995
|
date: string;
|
|
15849
15996
|
isMobile: boolean;
|
|
15850
15997
|
log_id: string;
|
|
@@ -16163,7 +16310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16163
16310
|
};
|
|
16164
16311
|
} & {
|
|
16165
16312
|
json: {
|
|
16166
|
-
template: "
|
|
16313
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16167
16314
|
body: string;
|
|
16168
16315
|
from: string;
|
|
16169
16316
|
subject: string;
|
|
@@ -16184,7 +16331,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16184
16331
|
};
|
|
16185
16332
|
} & {
|
|
16186
16333
|
json: {
|
|
16187
|
-
template: "
|
|
16334
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16188
16335
|
body: string;
|
|
16189
16336
|
from: string;
|
|
16190
16337
|
subject: string;
|
|
@@ -16196,7 +16343,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16196
16343
|
};
|
|
16197
16344
|
};
|
|
16198
16345
|
output: {
|
|
16199
|
-
template: "
|
|
16346
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16200
16347
|
body: string;
|
|
16201
16348
|
from: string;
|
|
16202
16349
|
subject: string;
|
|
@@ -16219,7 +16366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16219
16366
|
};
|
|
16220
16367
|
};
|
|
16221
16368
|
output: {
|
|
16222
|
-
name: "
|
|
16369
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16223
16370
|
body: string;
|
|
16224
16371
|
subject: string;
|
|
16225
16372
|
}[];
|
|
@@ -16232,7 +16379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16232
16379
|
$get: {
|
|
16233
16380
|
input: {
|
|
16234
16381
|
param: {
|
|
16235
|
-
templateName: "
|
|
16382
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16236
16383
|
};
|
|
16237
16384
|
} & {
|
|
16238
16385
|
header: {
|
|
@@ -16245,7 +16392,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16245
16392
|
} | {
|
|
16246
16393
|
input: {
|
|
16247
16394
|
param: {
|
|
16248
|
-
templateName: "
|
|
16395
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16249
16396
|
};
|
|
16250
16397
|
} & {
|
|
16251
16398
|
header: {
|
|
@@ -16253,7 +16400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16253
16400
|
};
|
|
16254
16401
|
};
|
|
16255
16402
|
output: {
|
|
16256
|
-
template: "
|
|
16403
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16257
16404
|
body: string;
|
|
16258
16405
|
from: string;
|
|
16259
16406
|
subject: string;
|
|
@@ -16272,7 +16419,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16272
16419
|
$put: {
|
|
16273
16420
|
input: {
|
|
16274
16421
|
param: {
|
|
16275
|
-
templateName: "
|
|
16422
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16276
16423
|
};
|
|
16277
16424
|
} & {
|
|
16278
16425
|
header: {
|
|
@@ -16280,7 +16427,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16280
16427
|
};
|
|
16281
16428
|
} & {
|
|
16282
16429
|
json: {
|
|
16283
|
-
template: "
|
|
16430
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16284
16431
|
body: string;
|
|
16285
16432
|
subject: string;
|
|
16286
16433
|
syntax?: "liquid" | undefined;
|
|
@@ -16292,7 +16439,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16292
16439
|
};
|
|
16293
16440
|
};
|
|
16294
16441
|
output: {
|
|
16295
|
-
template: "
|
|
16442
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16296
16443
|
body: string;
|
|
16297
16444
|
from: string;
|
|
16298
16445
|
subject: string;
|
|
@@ -16311,7 +16458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16311
16458
|
$patch: {
|
|
16312
16459
|
input: {
|
|
16313
16460
|
param: {
|
|
16314
|
-
templateName: "
|
|
16461
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16315
16462
|
};
|
|
16316
16463
|
} & {
|
|
16317
16464
|
header: {
|
|
@@ -16319,7 +16466,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16319
16466
|
};
|
|
16320
16467
|
} & {
|
|
16321
16468
|
json: {
|
|
16322
|
-
template?: "
|
|
16469
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16323
16470
|
body?: string | undefined;
|
|
16324
16471
|
from?: string | undefined;
|
|
16325
16472
|
subject?: string | undefined;
|
|
@@ -16336,7 +16483,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16336
16483
|
} | {
|
|
16337
16484
|
input: {
|
|
16338
16485
|
param: {
|
|
16339
|
-
templateName: "
|
|
16486
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16340
16487
|
};
|
|
16341
16488
|
} & {
|
|
16342
16489
|
header: {
|
|
@@ -16344,7 +16491,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16344
16491
|
};
|
|
16345
16492
|
} & {
|
|
16346
16493
|
json: {
|
|
16347
|
-
template?: "
|
|
16494
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16348
16495
|
body?: string | undefined;
|
|
16349
16496
|
from?: string | undefined;
|
|
16350
16497
|
subject?: string | undefined;
|
|
@@ -16356,7 +16503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16356
16503
|
};
|
|
16357
16504
|
};
|
|
16358
16505
|
output: {
|
|
16359
|
-
template: "
|
|
16506
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16360
16507
|
body: string;
|
|
16361
16508
|
from: string;
|
|
16362
16509
|
subject: string;
|
|
@@ -16375,7 +16522,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16375
16522
|
$delete: {
|
|
16376
16523
|
input: {
|
|
16377
16524
|
param: {
|
|
16378
|
-
templateName: "
|
|
16525
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16379
16526
|
};
|
|
16380
16527
|
} & {
|
|
16381
16528
|
header: {
|
|
@@ -16388,7 +16535,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16388
16535
|
} | {
|
|
16389
16536
|
input: {
|
|
16390
16537
|
param: {
|
|
16391
|
-
templateName: "
|
|
16538
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16392
16539
|
};
|
|
16393
16540
|
} & {
|
|
16394
16541
|
header: {
|
|
@@ -16405,7 +16552,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16405
16552
|
$post: {
|
|
16406
16553
|
input: {
|
|
16407
16554
|
param: {
|
|
16408
|
-
templateName: "
|
|
16555
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16409
16556
|
};
|
|
16410
16557
|
} & {
|
|
16411
16558
|
header: {
|
|
@@ -16688,7 +16835,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16688
16835
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16689
16836
|
custom_domain_id: string;
|
|
16690
16837
|
primary: boolean;
|
|
16691
|
-
status: "
|
|
16838
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
16692
16839
|
verification_method?: "txt" | undefined;
|
|
16693
16840
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16694
16841
|
domain_metadata?: {
|
|
@@ -16729,7 +16876,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16729
16876
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16730
16877
|
custom_domain_id: string;
|
|
16731
16878
|
primary: boolean;
|
|
16732
|
-
status: "
|
|
16879
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
16733
16880
|
verification_method?: "txt" | undefined;
|
|
16734
16881
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16735
16882
|
domain_metadata?: {
|
|
@@ -16793,7 +16940,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16793
16940
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16794
16941
|
custom_domain_id: string;
|
|
16795
16942
|
primary: boolean;
|
|
16796
|
-
status: "
|
|
16943
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
16797
16944
|
verification_method?: "txt" | undefined;
|
|
16798
16945
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16799
16946
|
domain_metadata?: {
|
|
@@ -16840,7 +16987,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16840
16987
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16841
16988
|
custom_domain_id: string;
|
|
16842
16989
|
primary: boolean;
|
|
16843
|
-
status: "
|
|
16990
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
16844
16991
|
verification_method?: "txt" | undefined;
|
|
16845
16992
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16846
16993
|
domain_metadata?: {
|
|
@@ -16886,7 +17033,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16886
17033
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16887
17034
|
custom_domain_id: string;
|
|
16888
17035
|
primary: boolean;
|
|
16889
|
-
status: "
|
|
17036
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
16890
17037
|
verification_method?: "txt" | undefined;
|
|
16891
17038
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16892
17039
|
domain_metadata?: {
|
|
@@ -16927,7 +17074,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16927
17074
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16928
17075
|
custom_domain_id: string;
|
|
16929
17076
|
primary: boolean;
|
|
16930
|
-
status: "
|
|
17077
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
16931
17078
|
verification_method?: "txt" | undefined;
|
|
16932
17079
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16933
17080
|
domain_metadata?: {
|
|
@@ -17357,7 +17504,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17357
17504
|
} & {
|
|
17358
17505
|
json: {
|
|
17359
17506
|
body?: string | undefined;
|
|
17360
|
-
screen?: "
|
|
17507
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
17361
17508
|
branding?: {
|
|
17362
17509
|
colors?: {
|
|
17363
17510
|
primary: string;
|
|
@@ -17601,7 +17748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17601
17748
|
output: {
|
|
17602
17749
|
id: string;
|
|
17603
17750
|
trigger_id: string;
|
|
17604
|
-
status: "
|
|
17751
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
17605
17752
|
results: {
|
|
17606
17753
|
action_name: string;
|
|
17607
17754
|
error: {
|
|
@@ -19063,17 +19210,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19063
19210
|
email: string;
|
|
19064
19211
|
send: "code" | "link";
|
|
19065
19212
|
authParams: {
|
|
19066
|
-
username?: string | undefined;
|
|
19067
19213
|
audience?: string | undefined;
|
|
19068
19214
|
scope?: string | undefined;
|
|
19215
|
+
redirect_uri?: string | undefined;
|
|
19216
|
+
organization?: string | undefined;
|
|
19217
|
+
username?: string | undefined;
|
|
19069
19218
|
state?: string | undefined;
|
|
19219
|
+
act_as?: string | undefined;
|
|
19070
19220
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19071
19221
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19072
|
-
prompt?: string | undefined;
|
|
19073
|
-
act_as?: string | undefined;
|
|
19074
|
-
redirect_uri?: string | undefined;
|
|
19075
|
-
organization?: string | undefined;
|
|
19076
19222
|
nonce?: string | undefined;
|
|
19223
|
+
prompt?: string | undefined;
|
|
19077
19224
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19078
19225
|
code_challenge?: string | undefined;
|
|
19079
19226
|
ui_locales?: string | undefined;
|
|
@@ -19099,17 +19246,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19099
19246
|
phone_number: string;
|
|
19100
19247
|
send: "code" | "link";
|
|
19101
19248
|
authParams: {
|
|
19102
|
-
username?: string | undefined;
|
|
19103
19249
|
audience?: string | undefined;
|
|
19104
19250
|
scope?: string | undefined;
|
|
19251
|
+
redirect_uri?: string | undefined;
|
|
19252
|
+
organization?: string | undefined;
|
|
19253
|
+
username?: string | undefined;
|
|
19105
19254
|
state?: string | undefined;
|
|
19255
|
+
act_as?: string | undefined;
|
|
19106
19256
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19107
19257
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19108
|
-
prompt?: string | undefined;
|
|
19109
|
-
act_as?: string | undefined;
|
|
19110
|
-
redirect_uri?: string | undefined;
|
|
19111
|
-
organization?: string | undefined;
|
|
19112
19258
|
nonce?: string | undefined;
|
|
19259
|
+
prompt?: string | undefined;
|
|
19113
19260
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19114
19261
|
code_challenge?: string | undefined;
|
|
19115
19262
|
ui_locales?: string | undefined;
|
|
@@ -20643,7 +20790,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20643
20790
|
} & {
|
|
20644
20791
|
form: {
|
|
20645
20792
|
username: string;
|
|
20646
|
-
login_selection?: "
|
|
20793
|
+
login_selection?: "code" | "password" | undefined;
|
|
20647
20794
|
};
|
|
20648
20795
|
};
|
|
20649
20796
|
output: {};
|
|
@@ -20657,7 +20804,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20657
20804
|
} & {
|
|
20658
20805
|
form: {
|
|
20659
20806
|
username: string;
|
|
20660
|
-
login_selection?: "
|
|
20807
|
+
login_selection?: "code" | "password" | undefined;
|
|
20661
20808
|
};
|
|
20662
20809
|
};
|
|
20663
20810
|
output: {};
|
|
@@ -21022,7 +21169,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21022
21169
|
$get: {
|
|
21023
21170
|
input: {
|
|
21024
21171
|
param: {
|
|
21025
|
-
screen: "signup" | "
|
|
21172
|
+
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";
|
|
21026
21173
|
};
|
|
21027
21174
|
} & {
|
|
21028
21175
|
query: {
|
|
@@ -21038,7 +21185,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21038
21185
|
} | {
|
|
21039
21186
|
input: {
|
|
21040
21187
|
param: {
|
|
21041
|
-
screen: "signup" | "
|
|
21188
|
+
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";
|
|
21042
21189
|
};
|
|
21043
21190
|
} & {
|
|
21044
21191
|
query: {
|
|
@@ -21054,7 +21201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21054
21201
|
} | {
|
|
21055
21202
|
input: {
|
|
21056
21203
|
param: {
|
|
21057
|
-
screen: "signup" | "
|
|
21204
|
+
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";
|
|
21058
21205
|
};
|
|
21059
21206
|
} & {
|
|
21060
21207
|
query: {
|
|
@@ -21074,7 +21221,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21074
21221
|
$post: {
|
|
21075
21222
|
input: {
|
|
21076
21223
|
param: {
|
|
21077
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
21224
|
+
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";
|
|
21078
21225
|
};
|
|
21079
21226
|
} & {
|
|
21080
21227
|
query: {
|
|
@@ -21092,7 +21239,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21092
21239
|
} | {
|
|
21093
21240
|
input: {
|
|
21094
21241
|
param: {
|
|
21095
|
-
screen: "signup" | "login" | "reset-password" | "
|
|
21242
|
+
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";
|
|
21096
21243
|
};
|
|
21097
21244
|
} & {
|
|
21098
21245
|
query: {
|
|
@@ -21190,5 +21337,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21190
21337
|
createX509Certificate: typeof createX509Certificate;
|
|
21191
21338
|
};
|
|
21192
21339
|
|
|
21193
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
21194
|
-
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
|
|
21340
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_SYNC_EVENT_PREFIX, CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_PATH, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, CodeHookDestination, ControlPlaneSyncDestination, DEFAULT_WFP_DISPATCH_BINDING, DEFAULT_WFP_SCRIPT_NAME_TEMPLATE, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, RetentionSweepError, SignupPage as SignUpPage, SocialButton, Spinner, TenantInvitationNotFoundError, TenantMembersNotFoundError, TenantOrganizationNotFoundError, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, backfillProxyHostsToKv, cleanupCodes, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, composeHostResolvers, createApplySyncEvents, createAuthMiddleware, createControlPlaneClient, createControlPlaneCustomDomainsAdapter, createControlPlaneTenantMembersAdapter, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, createLocalTenantMembersBackend, createServiceTokenCore, createTenantMembersControlPlaneApp, createTenantMembersRoutes, createWfpTenantHostResolver, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, ensureMutableResponse, ensureSigningKey, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, isInteractiveClient, isWfpSubdomainSafeTenantId, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, provisionDefaultClients, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, runRetention, seed, tailwindCss, tenantMiddleware, toMutableResponse, verifyControlPlaneToken, waitUntil, wfpTenantHost, wrapProxyAdaptersWithKvPublish, wrapTenantsAdapterWithWfpKvPublish };
|
|
21341
|
+
export type { AuthHeroConfig, BackfillProxyHostsOptions, BackfillResult, CodesCleanupParams, ControlPlaneClient, ControlPlaneClientOptions, ControlPlaneCustomDomainsOptions, ControlPlaneRequest, ControlPlaneResponse, ControlPlaneSyncDestinationOptions, ControlPlaneTenantMembersOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, CreateServiceTokenCoreParams, EncryptKeyIdResolver, EnsureSigningKeyOptions, EnsureSigningKeyResult, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetControlPlaneToken, GetServiceToken, GetTenantMembersBackend, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, KvPublishOptions, LocalTenantMembersBackendOptions, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementApiScope, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePostUserUpdate, OnExecutePostUserUpdateAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RetentionSweep, RetentionSweepFailed, RetentionSweepSkipped, RetentionSweepStatus, RetentionSweepSwept, RolePermissionHooks, RunOutboxRelayConfig, RunRetentionConfig, RunRetentionResult, SeedOptions, SeedResult, ServiceTokenResponse, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantInvitation, TenantInvitationInput, TenantMember, TenantMembersBackend, TenantMembersControlPlaneOptions, TenantMembersListResult, TenantMembersPageParams, TenantOperationExecutorBinding, TenantRole, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams, WfpTenantHostResolverOptions, WfpTenantsKvPublishOptions, WrappedProxyAdapters };
|