authhero 8.4.1 → 8.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +4 -4
- package/dist/authhero.d.ts +127 -79
- package/dist/authhero.mjs +95 -89
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/index.d.ts +78 -76
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +16 -16
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +52 -52
- 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 +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- 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/types/AuthHeroConfig.d.ts +33 -1
- package/package.json +3 -3
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, 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';
|
|
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, KeysAdapter, 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';
|
|
@@ -1226,6 +1226,38 @@ interface AuthHeroConfig {
|
|
|
1226
1226
|
/** Per-request timeout for the sync POST (default: 10_000ms). */
|
|
1227
1227
|
timeoutMs?: number;
|
|
1228
1228
|
};
|
|
1229
|
+
/**
|
|
1230
|
+
* Optional middleware that dispatches a management-API request to its
|
|
1231
|
+
* tenant's own worker instead of serving it from this (control-plane)
|
|
1232
|
+
* instance — the inbound twin of the control-plane defaults projection.
|
|
1233
|
+
*
|
|
1234
|
+
* It is mounted inside the management API **after** the CORS middleware and
|
|
1235
|
+
* **before** the auth/data chain, so:
|
|
1236
|
+
* - when it forwards (returns the tenant worker's `Response`), the central
|
|
1237
|
+
* CORS middleware applies the `Access-Control-Allow-*` headers to that
|
|
1238
|
+
* response — no manual CORS handling needed in the host app;
|
|
1239
|
+
* - when it calls `next()` (control-plane tenant, non-`wfp` tenant, tenant
|
|
1240
|
+
* not yet provisioned, or no dispatch binding), the request is served
|
|
1241
|
+
* locally as usual.
|
|
1242
|
+
*
|
|
1243
|
+
* Provide the implementation from `@authhero/cloudflare-adapter`'s
|
|
1244
|
+
* `createWfpForwardMiddleware`, which dispatches over a Workers-for-Platforms
|
|
1245
|
+
* dispatch namespace. Kept as a generic Hono `MiddlewareHandler` so authhero
|
|
1246
|
+
* core carries no dispatch-namespace dependency.
|
|
1247
|
+
*
|
|
1248
|
+
* @example
|
|
1249
|
+
* ```typescript
|
|
1250
|
+
* const { app } = init({
|
|
1251
|
+
* dataAdapter,
|
|
1252
|
+
* allowedOrigins: ["https://admin.example.com"],
|
|
1253
|
+
* tenantDispatch: createWfpForwardMiddleware({
|
|
1254
|
+
* tenants: managementAdapter.tenants,
|
|
1255
|
+
* controlPlaneTenantId: "main",
|
|
1256
|
+
* }),
|
|
1257
|
+
* });
|
|
1258
|
+
* ```
|
|
1259
|
+
*/
|
|
1260
|
+
tenantDispatch?: MiddlewareHandler;
|
|
1229
1261
|
/**
|
|
1230
1262
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
1231
1263
|
* This is only configurable in code, not stored in the database.
|
|
@@ -2623,6 +2655,22 @@ type DeepPartial<T> = {
|
|
|
2623
2655
|
};
|
|
2624
2656
|
declare function deepMergePatch<T>(target: T, patch: DeepPartial<T>): T;
|
|
2625
2657
|
|
|
2658
|
+
declare function listControlPlaneKeys(keys: KeysAdapter, type?: string): Promise<SigningKey[]>;
|
|
2659
|
+
declare function resolveSigningKeyMode(option: SigningKeyModeOption | undefined, tenantId: string): Promise<SigningKeyMode>;
|
|
2660
|
+
interface ResolveSigningKeysOptions {
|
|
2661
|
+
/**
|
|
2662
|
+
* `"sign"` returns at most one key — the tenant's newest non-revoked key
|
|
2663
|
+
* if available, else the control-plane fallback. `"publish"` returns the
|
|
2664
|
+
* full set used for JWKS: control-plane only when mode is
|
|
2665
|
+
* `"control-plane"`, tenant ∪ control-plane when mode is `"tenant"` so
|
|
2666
|
+
* tokens signed by either bucket still verify during rotation.
|
|
2667
|
+
*/
|
|
2668
|
+
purpose: "sign" | "publish";
|
|
2669
|
+
/** Defaults to `"jwt_signing"`. Pass `"saml_encryption"` for SAML keys. */
|
|
2670
|
+
type?: string;
|
|
2671
|
+
}
|
|
2672
|
+
declare function resolveSigningKeys(keys: KeysAdapter, tenantId: string, modeOption: SigningKeyModeOption | undefined, opts: ResolveSigningKeysOptions): Promise<SigningKey[]>;
|
|
2673
|
+
|
|
2626
2674
|
declare const USERNAME_PASSWORD_PROVIDER = "auth2";
|
|
2627
2675
|
|
|
2628
2676
|
interface EnsureUsernameOptions {
|
|
@@ -2867,7 +2915,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2867
2915
|
};
|
|
2868
2916
|
} & {
|
|
2869
2917
|
json: {
|
|
2870
|
-
type: "email" | "
|
|
2918
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2871
2919
|
phone_number?: string | undefined;
|
|
2872
2920
|
totp_secret?: string | undefined;
|
|
2873
2921
|
credential_id?: string | undefined;
|
|
@@ -3007,7 +3055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3007
3055
|
};
|
|
3008
3056
|
};
|
|
3009
3057
|
output: {
|
|
3010
|
-
name: "email" | "
|
|
3058
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3011
3059
|
enabled: boolean;
|
|
3012
3060
|
trial_expired?: boolean | undefined;
|
|
3013
3061
|
}[];
|
|
@@ -3162,7 +3210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3162
3210
|
$get: {
|
|
3163
3211
|
input: {
|
|
3164
3212
|
param: {
|
|
3165
|
-
factor_name: "email" | "
|
|
3213
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3166
3214
|
};
|
|
3167
3215
|
} & {
|
|
3168
3216
|
header: {
|
|
@@ -3170,7 +3218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3170
3218
|
};
|
|
3171
3219
|
};
|
|
3172
3220
|
output: {
|
|
3173
|
-
name: "email" | "
|
|
3221
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3174
3222
|
enabled: boolean;
|
|
3175
3223
|
trial_expired?: boolean | undefined;
|
|
3176
3224
|
};
|
|
@@ -3183,7 +3231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3183
3231
|
$put: {
|
|
3184
3232
|
input: {
|
|
3185
3233
|
param: {
|
|
3186
|
-
factor_name: "email" | "
|
|
3234
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3187
3235
|
};
|
|
3188
3236
|
} & {
|
|
3189
3237
|
header: {
|
|
@@ -3195,7 +3243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3195
3243
|
};
|
|
3196
3244
|
};
|
|
3197
3245
|
output: {
|
|
3198
|
-
name: "email" | "
|
|
3246
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3199
3247
|
enabled: boolean;
|
|
3200
3248
|
trial_expired?: boolean | undefined;
|
|
3201
3249
|
};
|
|
@@ -3940,12 +3988,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3940
3988
|
invitee: {
|
|
3941
3989
|
email?: string | undefined;
|
|
3942
3990
|
};
|
|
3943
|
-
app_metadata?: Record<string, any> | undefined;
|
|
3944
|
-
user_metadata?: Record<string, any> | undefined;
|
|
3945
3991
|
id?: string | undefined;
|
|
3946
3992
|
connection_id?: string | undefined;
|
|
3947
|
-
|
|
3993
|
+
app_metadata?: Record<string, any> | undefined;
|
|
3994
|
+
user_metadata?: Record<string, any> | undefined;
|
|
3948
3995
|
roles?: string[] | undefined;
|
|
3996
|
+
ttl_sec?: number | undefined;
|
|
3949
3997
|
send_invitation_email?: boolean | undefined;
|
|
3950
3998
|
};
|
|
3951
3999
|
};
|
|
@@ -4128,8 +4176,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4128
4176
|
};
|
|
4129
4177
|
} & {
|
|
4130
4178
|
json: {
|
|
4131
|
-
assign_membership_on_login?: boolean | undefined;
|
|
4132
4179
|
show_as_button?: boolean | undefined;
|
|
4180
|
+
assign_membership_on_login?: boolean | undefined;
|
|
4133
4181
|
is_signup_enabled?: boolean | undefined;
|
|
4134
4182
|
};
|
|
4135
4183
|
};
|
|
@@ -9431,7 +9479,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9431
9479
|
};
|
|
9432
9480
|
};
|
|
9433
9481
|
output: {
|
|
9434
|
-
prompt: "
|
|
9482
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9435
9483
|
language: string;
|
|
9436
9484
|
}[];
|
|
9437
9485
|
outputFormat: "json";
|
|
@@ -9469,7 +9517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9469
9517
|
$get: {
|
|
9470
9518
|
input: {
|
|
9471
9519
|
param: {
|
|
9472
|
-
prompt: "
|
|
9520
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9473
9521
|
language: string;
|
|
9474
9522
|
};
|
|
9475
9523
|
} & {
|
|
@@ -9491,7 +9539,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9491
9539
|
$put: {
|
|
9492
9540
|
input: {
|
|
9493
9541
|
param: {
|
|
9494
|
-
prompt: "
|
|
9542
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9495
9543
|
language: string;
|
|
9496
9544
|
};
|
|
9497
9545
|
} & {
|
|
@@ -9515,7 +9563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9515
9563
|
$delete: {
|
|
9516
9564
|
input: {
|
|
9517
9565
|
param: {
|
|
9518
|
-
prompt: "
|
|
9566
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9519
9567
|
language: string;
|
|
9520
9568
|
};
|
|
9521
9569
|
} & {
|
|
@@ -11016,7 +11064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11016
11064
|
log_type: string;
|
|
11017
11065
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11018
11066
|
actor: {
|
|
11019
|
-
type: "
|
|
11067
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
11020
11068
|
id?: string | undefined;
|
|
11021
11069
|
email?: string | undefined;
|
|
11022
11070
|
org_id?: string | undefined;
|
|
@@ -11664,7 +11712,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11664
11712
|
};
|
|
11665
11713
|
};
|
|
11666
11714
|
output: {
|
|
11667
|
-
type: "
|
|
11715
|
+
type: "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" | "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";
|
|
11668
11716
|
date: string;
|
|
11669
11717
|
isMobile: boolean;
|
|
11670
11718
|
log_id: string;
|
|
@@ -11703,7 +11751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11703
11751
|
limit: number;
|
|
11704
11752
|
length: number;
|
|
11705
11753
|
logs: {
|
|
11706
|
-
type: "
|
|
11754
|
+
type: "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" | "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";
|
|
11707
11755
|
date: string;
|
|
11708
11756
|
isMobile: boolean;
|
|
11709
11757
|
log_id: string;
|
|
@@ -11757,7 +11805,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11757
11805
|
};
|
|
11758
11806
|
};
|
|
11759
11807
|
output: {
|
|
11760
|
-
type: "
|
|
11808
|
+
type: "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" | "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";
|
|
11761
11809
|
date: string;
|
|
11762
11810
|
isMobile: boolean;
|
|
11763
11811
|
log_id: string;
|
|
@@ -12145,7 +12193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12145
12193
|
addons?: {
|
|
12146
12194
|
[x: string]: any;
|
|
12147
12195
|
} | undefined;
|
|
12148
|
-
token_endpoint_auth_method?: "
|
|
12196
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12149
12197
|
client_metadata?: {
|
|
12150
12198
|
[x: string]: string;
|
|
12151
12199
|
} | undefined;
|
|
@@ -12241,7 +12289,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12241
12289
|
addons?: {
|
|
12242
12290
|
[x: string]: any;
|
|
12243
12291
|
} | undefined;
|
|
12244
|
-
token_endpoint_auth_method?: "
|
|
12292
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12245
12293
|
client_metadata?: {
|
|
12246
12294
|
[x: string]: string;
|
|
12247
12295
|
} | undefined;
|
|
@@ -12352,7 +12400,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12352
12400
|
addons?: {
|
|
12353
12401
|
[x: string]: any;
|
|
12354
12402
|
} | undefined;
|
|
12355
|
-
token_endpoint_auth_method?: "
|
|
12403
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12356
12404
|
client_metadata?: {
|
|
12357
12405
|
[x: string]: string;
|
|
12358
12406
|
} | undefined;
|
|
@@ -12462,7 +12510,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12462
12510
|
custom_login_page_preview?: string | undefined;
|
|
12463
12511
|
form_template?: string | undefined;
|
|
12464
12512
|
addons?: Record<string, any> | undefined;
|
|
12465
|
-
token_endpoint_auth_method?: "
|
|
12513
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12466
12514
|
client_metadata?: Record<string, string> | undefined;
|
|
12467
12515
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12468
12516
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12542,7 +12590,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12542
12590
|
addons?: {
|
|
12543
12591
|
[x: string]: any;
|
|
12544
12592
|
} | undefined;
|
|
12545
|
-
token_endpoint_auth_method?: "
|
|
12593
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12546
12594
|
client_metadata?: {
|
|
12547
12595
|
[x: string]: string;
|
|
12548
12596
|
} | undefined;
|
|
@@ -12631,7 +12679,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12631
12679
|
custom_login_page_preview?: string | undefined;
|
|
12632
12680
|
form_template?: string | undefined;
|
|
12633
12681
|
addons?: Record<string, any> | undefined;
|
|
12634
|
-
token_endpoint_auth_method?: "
|
|
12682
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12635
12683
|
client_metadata?: Record<string, string> | undefined;
|
|
12636
12684
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12637
12685
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12711,7 +12759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12711
12759
|
addons?: {
|
|
12712
12760
|
[x: string]: any;
|
|
12713
12761
|
} | undefined;
|
|
12714
|
-
token_endpoint_auth_method?: "
|
|
12762
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12715
12763
|
client_metadata?: {
|
|
12716
12764
|
[x: string]: string;
|
|
12717
12765
|
} | undefined;
|
|
@@ -13975,7 +14023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13975
14023
|
};
|
|
13976
14024
|
};
|
|
13977
14025
|
output: {
|
|
13978
|
-
type: "
|
|
14026
|
+
type: "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" | "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";
|
|
13979
14027
|
date: string;
|
|
13980
14028
|
isMobile: boolean;
|
|
13981
14029
|
log_id: string;
|
|
@@ -14014,7 +14062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14014
14062
|
limit: number;
|
|
14015
14063
|
length: number;
|
|
14016
14064
|
logs: {
|
|
14017
|
-
type: "
|
|
14065
|
+
type: "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" | "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";
|
|
14018
14066
|
date: string;
|
|
14019
14067
|
isMobile: boolean;
|
|
14020
14068
|
log_id: string;
|
|
@@ -14329,7 +14377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14329
14377
|
};
|
|
14330
14378
|
} & {
|
|
14331
14379
|
json: {
|
|
14332
|
-
template: "
|
|
14380
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14333
14381
|
body: string;
|
|
14334
14382
|
from: string;
|
|
14335
14383
|
subject: string;
|
|
@@ -14350,7 +14398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14350
14398
|
};
|
|
14351
14399
|
} & {
|
|
14352
14400
|
json: {
|
|
14353
|
-
template: "
|
|
14401
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14354
14402
|
body: string;
|
|
14355
14403
|
from: string;
|
|
14356
14404
|
subject: string;
|
|
@@ -14362,7 +14410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14362
14410
|
};
|
|
14363
14411
|
};
|
|
14364
14412
|
output: {
|
|
14365
|
-
template: "
|
|
14413
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14366
14414
|
body: string;
|
|
14367
14415
|
from: string;
|
|
14368
14416
|
subject: string;
|
|
@@ -14385,7 +14433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14385
14433
|
};
|
|
14386
14434
|
};
|
|
14387
14435
|
output: {
|
|
14388
|
-
name: "
|
|
14436
|
+
name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14389
14437
|
body: string;
|
|
14390
14438
|
subject: string;
|
|
14391
14439
|
}[];
|
|
@@ -14398,7 +14446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14398
14446
|
$get: {
|
|
14399
14447
|
input: {
|
|
14400
14448
|
param: {
|
|
14401
|
-
templateName: "
|
|
14449
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14402
14450
|
};
|
|
14403
14451
|
} & {
|
|
14404
14452
|
header: {
|
|
@@ -14411,7 +14459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14411
14459
|
} | {
|
|
14412
14460
|
input: {
|
|
14413
14461
|
param: {
|
|
14414
|
-
templateName: "
|
|
14462
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14415
14463
|
};
|
|
14416
14464
|
} & {
|
|
14417
14465
|
header: {
|
|
@@ -14419,7 +14467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14419
14467
|
};
|
|
14420
14468
|
};
|
|
14421
14469
|
output: {
|
|
14422
|
-
template: "
|
|
14470
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14423
14471
|
body: string;
|
|
14424
14472
|
from: string;
|
|
14425
14473
|
subject: string;
|
|
@@ -14438,7 +14486,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14438
14486
|
$put: {
|
|
14439
14487
|
input: {
|
|
14440
14488
|
param: {
|
|
14441
|
-
templateName: "
|
|
14489
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14442
14490
|
};
|
|
14443
14491
|
} & {
|
|
14444
14492
|
header: {
|
|
@@ -14446,7 +14494,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14446
14494
|
};
|
|
14447
14495
|
} & {
|
|
14448
14496
|
json: {
|
|
14449
|
-
template: "
|
|
14497
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14450
14498
|
body: string;
|
|
14451
14499
|
subject: string;
|
|
14452
14500
|
syntax?: "liquid" | undefined;
|
|
@@ -14458,7 +14506,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14458
14506
|
};
|
|
14459
14507
|
};
|
|
14460
14508
|
output: {
|
|
14461
|
-
template: "
|
|
14509
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14462
14510
|
body: string;
|
|
14463
14511
|
from: string;
|
|
14464
14512
|
subject: string;
|
|
@@ -14477,7 +14525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14477
14525
|
$patch: {
|
|
14478
14526
|
input: {
|
|
14479
14527
|
param: {
|
|
14480
|
-
templateName: "
|
|
14528
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14481
14529
|
};
|
|
14482
14530
|
} & {
|
|
14483
14531
|
header: {
|
|
@@ -14485,7 +14533,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14485
14533
|
};
|
|
14486
14534
|
} & {
|
|
14487
14535
|
json: {
|
|
14488
|
-
template?: "
|
|
14536
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14489
14537
|
body?: string | undefined;
|
|
14490
14538
|
from?: string | undefined;
|
|
14491
14539
|
subject?: string | undefined;
|
|
@@ -14502,7 +14550,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14502
14550
|
} | {
|
|
14503
14551
|
input: {
|
|
14504
14552
|
param: {
|
|
14505
|
-
templateName: "
|
|
14553
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14506
14554
|
};
|
|
14507
14555
|
} & {
|
|
14508
14556
|
header: {
|
|
@@ -14510,7 +14558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14510
14558
|
};
|
|
14511
14559
|
} & {
|
|
14512
14560
|
json: {
|
|
14513
|
-
template?: "
|
|
14561
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14514
14562
|
body?: string | undefined;
|
|
14515
14563
|
from?: string | undefined;
|
|
14516
14564
|
subject?: string | undefined;
|
|
@@ -14522,7 +14570,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14522
14570
|
};
|
|
14523
14571
|
};
|
|
14524
14572
|
output: {
|
|
14525
|
-
template: "
|
|
14573
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14526
14574
|
body: string;
|
|
14527
14575
|
from: string;
|
|
14528
14576
|
subject: string;
|
|
@@ -14541,7 +14589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14541
14589
|
$delete: {
|
|
14542
14590
|
input: {
|
|
14543
14591
|
param: {
|
|
14544
|
-
templateName: "
|
|
14592
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14545
14593
|
};
|
|
14546
14594
|
} & {
|
|
14547
14595
|
header: {
|
|
@@ -14554,7 +14602,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14554
14602
|
} | {
|
|
14555
14603
|
input: {
|
|
14556
14604
|
param: {
|
|
14557
|
-
templateName: "
|
|
14605
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14558
14606
|
};
|
|
14559
14607
|
} & {
|
|
14560
14608
|
header: {
|
|
@@ -14571,7 +14619,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14571
14619
|
$post: {
|
|
14572
14620
|
input: {
|
|
14573
14621
|
param: {
|
|
14574
|
-
templateName: "
|
|
14622
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14575
14623
|
};
|
|
14576
14624
|
} & {
|
|
14577
14625
|
header: {
|
|
@@ -14854,7 +14902,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14854
14902
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14855
14903
|
custom_domain_id: string;
|
|
14856
14904
|
primary: boolean;
|
|
14857
|
-
status: "
|
|
14905
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14858
14906
|
verification_method?: "txt" | undefined;
|
|
14859
14907
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14860
14908
|
domain_metadata?: {
|
|
@@ -14895,7 +14943,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14895
14943
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14896
14944
|
custom_domain_id: string;
|
|
14897
14945
|
primary: boolean;
|
|
14898
|
-
status: "
|
|
14946
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14899
14947
|
verification_method?: "txt" | undefined;
|
|
14900
14948
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14901
14949
|
domain_metadata?: {
|
|
@@ -14959,7 +15007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14959
15007
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14960
15008
|
custom_domain_id: string;
|
|
14961
15009
|
primary: boolean;
|
|
14962
|
-
status: "
|
|
15010
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14963
15011
|
verification_method?: "txt" | undefined;
|
|
14964
15012
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14965
15013
|
domain_metadata?: {
|
|
@@ -15006,7 +15054,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15006
15054
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15007
15055
|
custom_domain_id: string;
|
|
15008
15056
|
primary: boolean;
|
|
15009
|
-
status: "
|
|
15057
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15010
15058
|
verification_method?: "txt" | undefined;
|
|
15011
15059
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15012
15060
|
domain_metadata?: {
|
|
@@ -15052,7 +15100,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15052
15100
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15053
15101
|
custom_domain_id: string;
|
|
15054
15102
|
primary: boolean;
|
|
15055
|
-
status: "
|
|
15103
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15056
15104
|
verification_method?: "txt" | undefined;
|
|
15057
15105
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15058
15106
|
domain_metadata?: {
|
|
@@ -15093,7 +15141,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15093
15141
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
15094
15142
|
custom_domain_id: string;
|
|
15095
15143
|
primary: boolean;
|
|
15096
|
-
status: "
|
|
15144
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15097
15145
|
verification_method?: "txt" | undefined;
|
|
15098
15146
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15099
15147
|
domain_metadata?: {
|
|
@@ -15578,7 +15626,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15578
15626
|
json: {
|
|
15579
15627
|
bindings: {
|
|
15580
15628
|
ref: {
|
|
15581
|
-
type?: "
|
|
15629
|
+
type?: "action_id" | "action_name" | undefined;
|
|
15582
15630
|
value?: string | undefined;
|
|
15583
15631
|
id?: string | undefined;
|
|
15584
15632
|
name?: string | undefined;
|
|
@@ -16665,7 +16713,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16665
16713
|
scope?: string | undefined;
|
|
16666
16714
|
grant_types?: string[] | undefined;
|
|
16667
16715
|
response_types?: string[] | undefined;
|
|
16668
|
-
token_endpoint_auth_method?: "
|
|
16716
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16669
16717
|
jwks_uri?: string | undefined;
|
|
16670
16718
|
jwks?: Record<string, unknown> | undefined;
|
|
16671
16719
|
software_id?: string | undefined;
|
|
@@ -16754,7 +16802,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16754
16802
|
scope?: string | undefined;
|
|
16755
16803
|
grant_types?: string[] | undefined;
|
|
16756
16804
|
response_types?: string[] | undefined;
|
|
16757
|
-
token_endpoint_auth_method?: "
|
|
16805
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16758
16806
|
jwks_uri?: string | undefined;
|
|
16759
16807
|
jwks?: Record<string, unknown> | undefined;
|
|
16760
16808
|
software_id?: string | undefined;
|
|
@@ -17100,19 +17148,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17100
17148
|
email: string;
|
|
17101
17149
|
send: "code" | "link";
|
|
17102
17150
|
authParams: {
|
|
17103
|
-
username?: string | undefined;
|
|
17104
|
-
state?: string | undefined;
|
|
17105
|
-
act_as?: string | undefined;
|
|
17106
17151
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17107
17152
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17108
|
-
|
|
17153
|
+
scope?: string | undefined;
|
|
17154
|
+
username?: string | undefined;
|
|
17109
17155
|
audience?: string | undefined;
|
|
17110
|
-
|
|
17156
|
+
code_challenge?: string | undefined;
|
|
17157
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17158
|
+
redirect_uri?: string | undefined;
|
|
17111
17159
|
nonce?: string | undefined;
|
|
17112
|
-
|
|
17160
|
+
state?: string | undefined;
|
|
17161
|
+
act_as?: string | undefined;
|
|
17162
|
+
organization?: string | undefined;
|
|
17113
17163
|
prompt?: string | undefined;
|
|
17114
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17115
|
-
code_challenge?: string | undefined;
|
|
17116
17164
|
ui_locales?: string | undefined;
|
|
17117
17165
|
max_age?: number | undefined;
|
|
17118
17166
|
acr_values?: string | undefined;
|
|
@@ -17136,19 +17184,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17136
17184
|
phone_number: string;
|
|
17137
17185
|
send: "code" | "link";
|
|
17138
17186
|
authParams: {
|
|
17139
|
-
username?: string | undefined;
|
|
17140
|
-
state?: string | undefined;
|
|
17141
|
-
act_as?: string | undefined;
|
|
17142
17187
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17143
17188
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17144
|
-
|
|
17189
|
+
scope?: string | undefined;
|
|
17190
|
+
username?: string | undefined;
|
|
17145
17191
|
audience?: string | undefined;
|
|
17146
|
-
|
|
17192
|
+
code_challenge?: string | undefined;
|
|
17193
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17194
|
+
redirect_uri?: string | undefined;
|
|
17147
17195
|
nonce?: string | undefined;
|
|
17148
|
-
|
|
17196
|
+
state?: string | undefined;
|
|
17197
|
+
act_as?: string | undefined;
|
|
17198
|
+
organization?: string | undefined;
|
|
17149
17199
|
prompt?: string | undefined;
|
|
17150
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17151
|
-
code_challenge?: string | undefined;
|
|
17152
17200
|
ui_locales?: string | undefined;
|
|
17153
17201
|
max_age?: number | undefined;
|
|
17154
17202
|
acr_values?: string | undefined;
|
|
@@ -19055,7 +19103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19055
19103
|
$get: {
|
|
19056
19104
|
input: {
|
|
19057
19105
|
param: {
|
|
19058
|
-
screen: "
|
|
19106
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "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";
|
|
19059
19107
|
};
|
|
19060
19108
|
} & {
|
|
19061
19109
|
query: {
|
|
@@ -19071,7 +19119,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19071
19119
|
} | {
|
|
19072
19120
|
input: {
|
|
19073
19121
|
param: {
|
|
19074
|
-
screen: "
|
|
19122
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "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";
|
|
19075
19123
|
};
|
|
19076
19124
|
} & {
|
|
19077
19125
|
query: {
|
|
@@ -19087,7 +19135,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19087
19135
|
} | {
|
|
19088
19136
|
input: {
|
|
19089
19137
|
param: {
|
|
19090
|
-
screen: "
|
|
19138
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "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";
|
|
19091
19139
|
};
|
|
19092
19140
|
} & {
|
|
19093
19141
|
query: {
|
|
@@ -19107,7 +19155,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19107
19155
|
$post: {
|
|
19108
19156
|
input: {
|
|
19109
19157
|
param: {
|
|
19110
|
-
screen: "
|
|
19158
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "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";
|
|
19111
19159
|
};
|
|
19112
19160
|
} & {
|
|
19113
19161
|
query: {
|
|
@@ -19125,7 +19173,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19125
19173
|
} | {
|
|
19126
19174
|
input: {
|
|
19127
19175
|
param: {
|
|
19128
|
-
screen: "
|
|
19176
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "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";
|
|
19129
19177
|
};
|
|
19130
19178
|
} & {
|
|
19131
19179
|
query: {
|
|
@@ -19143,7 +19191,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19143
19191
|
} | {
|
|
19144
19192
|
input: {
|
|
19145
19193
|
param: {
|
|
19146
|
-
screen: "
|
|
19194
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "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";
|
|
19147
19195
|
};
|
|
19148
19196
|
} & {
|
|
19149
19197
|
query: {
|
|
@@ -19241,5 +19289,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19241
19289
|
createX509Certificate: typeof createX509Certificate;
|
|
19242
19290
|
};
|
|
19243
19291
|
|
|
19244
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
|
|
19245
|
-
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|
|
19292
|
+
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createEncryptedDataAdapterWithKeyRing, createInMemoryCache, decryptField, decryptFieldWithRing, deepMergePatch, drainOutbox, encryptField, encryptFieldWithRing, fetchAll, init, injectTailwindCSS, isAllowedIssuer, isEncrypted, listControlPlaneKeys, loadEncryptionKey, mailgunCredentialsSchema, parseKeyId, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, resolveSigningKeyMode, resolveSigningKeys, runOutboxRelay, seed, tailwindCss, tenantMiddleware, verifyControlPlaneToken, waitUntil };
|
|
19293
|
+
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EncryptKeyIdResolver, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, IssuerResolver, KeyRing, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, ResolveSigningKeysOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, VerifyControlPlaneTokenOptions, VerifyControlPlaneTokenResult, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|