authhero 5.20.0 → 5.21.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +101 -101
- package/dist/authhero.d.ts +168 -102
- package/dist/authhero.mjs +8703 -8635
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +12 -3
- package/dist/types/helpers/client.d.ts +23 -3
- package/dist/types/helpers/logging.d.ts +7 -0
- package/dist/types/index.d.ts +98 -96
- package/dist/types/provisioning/index.d.ts +2 -0
- package/dist/types/provisioning/noop-provisioner.d.ts +11 -0
- package/dist/types/provisioning/provisioner.d.ts +25 -0
- package/dist/types/routes/auth-api/index.d.ts +12 -12
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/well-known.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +3 -3
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
- package/dist/types/routes/management-api/email-templates.d.ts +35 -35
- package/dist/types/routes/management-api/emails.d.ts +2 -2
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +72 -72
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- 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/tenants.d.ts +33 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +48 -12
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- package/dist/types/routes/universal-login/form-node.d.ts +4 -4
- package/dist/types/routes/universal-login/index.d.ts +4 -4
- package/dist/types/routes/universal-login/u2-form-node.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/AuthHeroConfig.d.ts +12 -0
- package/dist/types/utils/email.d.ts +2 -0
- package/dist/types/utils/jwks.d.ts +4 -4
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
2
2
|
import * as hono_utils_types from 'hono/utils/types';
|
|
3
3
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
4
|
-
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert,
|
|
4
|
+
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, CustomDomain, ProxyRoute, Tenant, TenantsDataAdapter, ResourceServer, ResourceServerInsert, Role, RoleInsert, Connection, ConnectionInsert, CreateTenantParams, Hook, CodeExecutor, SigningKey, Theme, Branding, AuthParams, CacheAdapter, EmailServiceAdapter, EmailServiceSendParams, AuditEvent, OutboxAdapter, HooksAdapter, LogsDataAdapter, LogInsert, UserDataAdapter, CustomDomainsAdapter, ProxyRoutesAdapter, ListParams, CodeExecutionResult } from '@authhero/adapter-interfaces';
|
|
5
5
|
export * from '@authhero/adapter-interfaces';
|
|
6
6
|
import * as hono_types from 'hono/types';
|
|
7
7
|
import { z, OpenAPIHono } from '@hono/zod-openapi';
|
|
@@ -195,13 +195,13 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
195
195
|
tenant: z.ZodObject<{
|
|
196
196
|
created_at: z.ZodPipe<z.ZodNullable<z.ZodString>, z.ZodTransform<string, string | null>>;
|
|
197
197
|
updated_at: z.ZodPipe<z.ZodNullable<z.ZodString>, z.ZodTransform<string, string | null>>;
|
|
198
|
-
audience: z.ZodString
|
|
198
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
199
199
|
friendly_name: z.ZodString;
|
|
200
200
|
picture_url: z.ZodOptional<z.ZodString>;
|
|
201
201
|
support_email: z.ZodOptional<z.ZodString>;
|
|
202
202
|
support_url: z.ZodOptional<z.ZodString>;
|
|
203
|
-
sender_email: z.ZodString
|
|
204
|
-
sender_name: z.ZodString
|
|
203
|
+
sender_email: z.ZodOptional<z.ZodString>;
|
|
204
|
+
sender_name: z.ZodOptional<z.ZodString>;
|
|
205
205
|
session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
206
206
|
idle_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
207
207
|
ephemeral_session_lifetime: z.ZodOptional<z.ZodNumber>;
|
|
@@ -304,6 +304,26 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
304
304
|
}, z.core.$strip>>>;
|
|
305
305
|
pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
|
|
306
306
|
authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
|
307
|
+
deployment_type: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
308
|
+
shared: "shared";
|
|
309
|
+
wfp: "wfp";
|
|
310
|
+
}>>>;
|
|
311
|
+
provisioning_state: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
312
|
+
pending: "pending";
|
|
313
|
+
ready: "ready";
|
|
314
|
+
failed: "failed";
|
|
315
|
+
}>>>;
|
|
316
|
+
provisioning_error: z.ZodOptional<z.ZodString>;
|
|
317
|
+
provisioning_state_changed_at: z.ZodOptional<z.ZodString>;
|
|
318
|
+
bundle_configuration: z.ZodOptional<z.ZodString>;
|
|
319
|
+
worker_version: z.ZodOptional<z.ZodString>;
|
|
320
|
+
worker_script_name: z.ZodOptional<z.ZodString>;
|
|
321
|
+
storage_kind: z.ZodOptional<z.ZodEnum<{
|
|
322
|
+
own_d1: "own_d1";
|
|
323
|
+
existing_d1: "existing_d1";
|
|
324
|
+
shared_planetscale: "shared_planetscale";
|
|
325
|
+
}>>;
|
|
326
|
+
d1_database_id: z.ZodOptional<z.ZodString>;
|
|
307
327
|
attack_protection: z.ZodOptional<z.ZodObject<{
|
|
308
328
|
breached_password_detection: z.ZodOptional<z.ZodObject<{
|
|
309
329
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -862,6 +882,41 @@ declare function createAuthMiddleware(app: OpenAPIHono<{
|
|
|
862
882
|
Variables: any;
|
|
863
883
|
}>, next: Next) => Promise<void>;
|
|
864
884
|
|
|
885
|
+
interface TenantProvisionerContext {
|
|
886
|
+
tenants: TenantsDataAdapter;
|
|
887
|
+
}
|
|
888
|
+
/**
|
|
889
|
+
* Drives a tenant from `provisioning_state: "pending"` to `"ready"` or
|
|
890
|
+
* `"failed"`. Owns whatever side effects are required to make the tenant
|
|
891
|
+
* actually serve traffic — creating a D1, uploading a worker to a dispatch
|
|
892
|
+
* namespace, wiring secrets, etc. — and writes the resulting state back via
|
|
893
|
+
* `ctx.tenants.update(...)`.
|
|
894
|
+
*
|
|
895
|
+
* Contract:
|
|
896
|
+
* - Implementations MUST be idempotent. The same tenant may be passed in
|
|
897
|
+
* twice if a previous run crashed mid-flight, the API is retried, or an
|
|
898
|
+
* operator manually re-triggers provisioning.
|
|
899
|
+
* - `provision()` MUST resolve (not reject) even on failure. Errors should
|
|
900
|
+
* be captured into `provisioning_error` and the state set to `"failed"`
|
|
901
|
+
* so the admin UI can render a useful message.
|
|
902
|
+
* - `provision()` should be safe to schedule via `ctx.executionCtx.waitUntil`
|
|
903
|
+
* on Cloudflare Workers — it must not depend on the originating request
|
|
904
|
+
* surviving.
|
|
905
|
+
*/
|
|
906
|
+
interface TenantProvisioner {
|
|
907
|
+
provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
/**
|
|
911
|
+
* Default provisioner. Flips `provisioning_state` to `"ready"` and clears any
|
|
912
|
+
* prior error, doing nothing else. Correct for `deployment_type: "shared"`
|
|
913
|
+
* tenants (the historical default) and useful as a stand-in until the
|
|
914
|
+
* Cloudflare WFP provisioner is wired in.
|
|
915
|
+
*/
|
|
916
|
+
declare class NoopTenantProvisioner implements TenantProvisioner {
|
|
917
|
+
provision(tenant: Tenant, ctx: TenantProvisionerContext): Promise<void>;
|
|
918
|
+
}
|
|
919
|
+
|
|
865
920
|
/**
|
|
866
921
|
* Parameters passed to a custom webhook invoker function.
|
|
867
922
|
*/
|
|
@@ -1174,6 +1229,17 @@ interface AuthHeroConfig {
|
|
|
1174
1229
|
/** Per-request timeout for the sync POST (default: 10_000ms). */
|
|
1175
1230
|
timeoutMs?: number;
|
|
1176
1231
|
};
|
|
1232
|
+
/**
|
|
1233
|
+
* Optional tenant provisioner. Drives a tenant from
|
|
1234
|
+
* `provisioning_state: "pending"` to `"ready"` or `"failed"` whenever a
|
|
1235
|
+
* tenant is created or re-provisioned via the management API. For shared
|
|
1236
|
+
* tenants this is effectively a no-op; for `wfp` tenants the provisioner
|
|
1237
|
+
* uploads the worker to a Cloudflare dispatch namespace, creates any
|
|
1238
|
+
* per-tenant D1, and wires bindings. When omitted, `NoopTenantProvisioner`
|
|
1239
|
+
* is used — adequate for single-deployment installs where every tenant is
|
|
1240
|
+
* `shared`.
|
|
1241
|
+
*/
|
|
1242
|
+
provisioner?: TenantProvisioner;
|
|
1177
1243
|
/**
|
|
1178
1244
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
1179
1245
|
* This is only configurable in code, not stored in the database.
|
|
@@ -2655,7 +2721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2655
2721
|
};
|
|
2656
2722
|
} & {
|
|
2657
2723
|
json: {
|
|
2658
|
-
type: "
|
|
2724
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2659
2725
|
phone_number?: string | undefined;
|
|
2660
2726
|
totp_secret?: string | undefined;
|
|
2661
2727
|
credential_id?: string | undefined;
|
|
@@ -2795,7 +2861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2795
2861
|
};
|
|
2796
2862
|
};
|
|
2797
2863
|
output: {
|
|
2798
|
-
name: "
|
|
2864
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2799
2865
|
enabled: boolean;
|
|
2800
2866
|
trial_expired?: boolean | undefined;
|
|
2801
2867
|
}[];
|
|
@@ -2950,7 +3016,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2950
3016
|
$get: {
|
|
2951
3017
|
input: {
|
|
2952
3018
|
param: {
|
|
2953
|
-
factor_name: "
|
|
3019
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2954
3020
|
};
|
|
2955
3021
|
} & {
|
|
2956
3022
|
header: {
|
|
@@ -2958,7 +3024,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2958
3024
|
};
|
|
2959
3025
|
};
|
|
2960
3026
|
output: {
|
|
2961
|
-
name: "
|
|
3027
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2962
3028
|
enabled: boolean;
|
|
2963
3029
|
trial_expired?: boolean | undefined;
|
|
2964
3030
|
};
|
|
@@ -2971,7 +3037,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2971
3037
|
$put: {
|
|
2972
3038
|
input: {
|
|
2973
3039
|
param: {
|
|
2974
|
-
factor_name: "
|
|
3040
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2975
3041
|
};
|
|
2976
3042
|
} & {
|
|
2977
3043
|
header: {
|
|
@@ -2983,7 +3049,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2983
3049
|
};
|
|
2984
3050
|
};
|
|
2985
3051
|
output: {
|
|
2986
|
-
name: "
|
|
3052
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2987
3053
|
enabled: boolean;
|
|
2988
3054
|
trial_expired?: boolean | undefined;
|
|
2989
3055
|
};
|
|
@@ -3728,10 +3794,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3728
3794
|
invitee: {
|
|
3729
3795
|
email?: string | undefined;
|
|
3730
3796
|
};
|
|
3797
|
+
connection_id?: string | undefined;
|
|
3798
|
+
id?: string | undefined;
|
|
3731
3799
|
app_metadata?: Record<string, any> | undefined;
|
|
3732
3800
|
user_metadata?: Record<string, any> | undefined;
|
|
3733
|
-
id?: string | undefined;
|
|
3734
|
-
connection_id?: string | undefined;
|
|
3735
3801
|
roles?: string[] | undefined;
|
|
3736
3802
|
ttl_sec?: number | undefined;
|
|
3737
3803
|
send_invitation_email?: boolean | undefined;
|
|
@@ -3781,7 +3847,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3781
3847
|
};
|
|
3782
3848
|
output: {};
|
|
3783
3849
|
outputFormat: string;
|
|
3784
|
-
status:
|
|
3850
|
+
status: 404;
|
|
3785
3851
|
} | {
|
|
3786
3852
|
input: {
|
|
3787
3853
|
param: {
|
|
@@ -3795,7 +3861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3795
3861
|
};
|
|
3796
3862
|
output: {};
|
|
3797
3863
|
outputFormat: string;
|
|
3798
|
-
status:
|
|
3864
|
+
status: 204;
|
|
3799
3865
|
};
|
|
3800
3866
|
};
|
|
3801
3867
|
} & {
|
|
@@ -9219,7 +9285,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9219
9285
|
};
|
|
9220
9286
|
};
|
|
9221
9287
|
output: {
|
|
9222
|
-
prompt: "mfa" | "organizations" | "status" | "signup" | "
|
|
9288
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9223
9289
|
language: string;
|
|
9224
9290
|
}[];
|
|
9225
9291
|
outputFormat: "json";
|
|
@@ -9257,7 +9323,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9257
9323
|
$get: {
|
|
9258
9324
|
input: {
|
|
9259
9325
|
param: {
|
|
9260
|
-
prompt: "mfa" | "organizations" | "status" | "signup" | "
|
|
9326
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9261
9327
|
language: string;
|
|
9262
9328
|
};
|
|
9263
9329
|
} & {
|
|
@@ -9279,7 +9345,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9279
9345
|
$put: {
|
|
9280
9346
|
input: {
|
|
9281
9347
|
param: {
|
|
9282
|
-
prompt: "mfa" | "organizations" | "status" | "signup" | "
|
|
9348
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9283
9349
|
language: string;
|
|
9284
9350
|
};
|
|
9285
9351
|
} & {
|
|
@@ -9303,7 +9369,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9303
9369
|
$delete: {
|
|
9304
9370
|
input: {
|
|
9305
9371
|
param: {
|
|
9306
|
-
prompt: "mfa" | "organizations" | "status" | "signup" | "
|
|
9372
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9307
9373
|
language: string;
|
|
9308
9374
|
};
|
|
9309
9375
|
} & {
|
|
@@ -10201,7 +10267,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10201
10267
|
tenant_id: string;
|
|
10202
10268
|
created_at: string;
|
|
10203
10269
|
updated_at: string;
|
|
10204
|
-
deploymentStatus: "
|
|
10270
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
10205
10271
|
secrets?: {
|
|
10206
10272
|
[x: string]: string;
|
|
10207
10273
|
} | undefined;
|
|
@@ -10291,7 +10357,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10291
10357
|
tenant_id: string;
|
|
10292
10358
|
created_at: string;
|
|
10293
10359
|
updated_at: string;
|
|
10294
|
-
deploymentStatus: "
|
|
10360
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
10295
10361
|
secrets?: {
|
|
10296
10362
|
[x: string]: string;
|
|
10297
10363
|
} | undefined;
|
|
@@ -10744,7 +10810,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10744
10810
|
log_type: string;
|
|
10745
10811
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10746
10812
|
actor: {
|
|
10747
|
-
type: "
|
|
10813
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
10748
10814
|
id?: string | undefined;
|
|
10749
10815
|
email?: string | undefined;
|
|
10750
10816
|
org_id?: string | undefined;
|
|
@@ -11392,7 +11458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11392
11458
|
};
|
|
11393
11459
|
};
|
|
11394
11460
|
output: {
|
|
11395
|
-
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "
|
|
11461
|
+
type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11396
11462
|
date: string;
|
|
11397
11463
|
isMobile: boolean;
|
|
11398
11464
|
log_id: string;
|
|
@@ -11431,7 +11497,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11431
11497
|
limit: number;
|
|
11432
11498
|
length: number;
|
|
11433
11499
|
logs: {
|
|
11434
|
-
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "
|
|
11500
|
+
type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11435
11501
|
date: string;
|
|
11436
11502
|
isMobile: boolean;
|
|
11437
11503
|
log_id: string;
|
|
@@ -11485,7 +11551,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11485
11551
|
};
|
|
11486
11552
|
};
|
|
11487
11553
|
output: {
|
|
11488
|
-
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "
|
|
11554
|
+
type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11489
11555
|
date: string;
|
|
11490
11556
|
isMobile: boolean;
|
|
11491
11557
|
log_id: string;
|
|
@@ -13703,7 +13769,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13703
13769
|
};
|
|
13704
13770
|
};
|
|
13705
13771
|
output: {
|
|
13706
|
-
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "
|
|
13772
|
+
type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
13707
13773
|
date: string;
|
|
13708
13774
|
isMobile: boolean;
|
|
13709
13775
|
log_id: string;
|
|
@@ -13742,7 +13808,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13742
13808
|
limit: number;
|
|
13743
13809
|
length: number;
|
|
13744
13810
|
logs: {
|
|
13745
|
-
type: "s" | "w" | "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "
|
|
13811
|
+
type: "s" | "w" | "i" | "fn" | "f" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
13746
13812
|
date: string;
|
|
13747
13813
|
isMobile: boolean;
|
|
13748
13814
|
log_id: string;
|
|
@@ -14057,7 +14123,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14057
14123
|
};
|
|
14058
14124
|
} & {
|
|
14059
14125
|
json: {
|
|
14060
|
-
template: "
|
|
14126
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14061
14127
|
body: string;
|
|
14062
14128
|
from: string;
|
|
14063
14129
|
subject: string;
|
|
@@ -14068,19 +14134,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14068
14134
|
enabled?: boolean | undefined;
|
|
14069
14135
|
};
|
|
14070
14136
|
};
|
|
14071
|
-
output: {
|
|
14072
|
-
|
|
14073
|
-
|
|
14074
|
-
from: string;
|
|
14075
|
-
subject: string;
|
|
14076
|
-
syntax: "liquid";
|
|
14077
|
-
includeEmailInRedirect: boolean;
|
|
14078
|
-
enabled: boolean;
|
|
14079
|
-
resultUrl?: string | undefined;
|
|
14080
|
-
urlLifetimeInSeconds?: number | undefined;
|
|
14081
|
-
};
|
|
14082
|
-
outputFormat: "json";
|
|
14083
|
-
status: 201;
|
|
14137
|
+
output: {};
|
|
14138
|
+
outputFormat: string;
|
|
14139
|
+
status: 409;
|
|
14084
14140
|
} | {
|
|
14085
14141
|
input: {
|
|
14086
14142
|
header: {
|
|
@@ -14088,7 +14144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14088
14144
|
};
|
|
14089
14145
|
} & {
|
|
14090
14146
|
json: {
|
|
14091
|
-
template: "
|
|
14147
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14092
14148
|
body: string;
|
|
14093
14149
|
from: string;
|
|
14094
14150
|
subject: string;
|
|
@@ -14099,9 +14155,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14099
14155
|
enabled?: boolean | undefined;
|
|
14100
14156
|
};
|
|
14101
14157
|
};
|
|
14102
|
-
output: {
|
|
14103
|
-
|
|
14104
|
-
|
|
14158
|
+
output: {
|
|
14159
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14160
|
+
body: string;
|
|
14161
|
+
from: string;
|
|
14162
|
+
subject: string;
|
|
14163
|
+
syntax: "liquid";
|
|
14164
|
+
includeEmailInRedirect: boolean;
|
|
14165
|
+
enabled: boolean;
|
|
14166
|
+
resultUrl?: string | undefined;
|
|
14167
|
+
urlLifetimeInSeconds?: number | undefined;
|
|
14168
|
+
};
|
|
14169
|
+
outputFormat: "json";
|
|
14170
|
+
status: 201;
|
|
14105
14171
|
};
|
|
14106
14172
|
};
|
|
14107
14173
|
} & {
|
|
@@ -14113,7 +14179,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14113
14179
|
};
|
|
14114
14180
|
};
|
|
14115
14181
|
output: {
|
|
14116
|
-
name: "
|
|
14182
|
+
name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14117
14183
|
body: string;
|
|
14118
14184
|
subject: string;
|
|
14119
14185
|
}[];
|
|
@@ -14126,7 +14192,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14126
14192
|
$get: {
|
|
14127
14193
|
input: {
|
|
14128
14194
|
param: {
|
|
14129
|
-
templateName: "
|
|
14195
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14130
14196
|
};
|
|
14131
14197
|
} & {
|
|
14132
14198
|
header: {
|
|
@@ -14139,7 +14205,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14139
14205
|
} | {
|
|
14140
14206
|
input: {
|
|
14141
14207
|
param: {
|
|
14142
|
-
templateName: "
|
|
14208
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14143
14209
|
};
|
|
14144
14210
|
} & {
|
|
14145
14211
|
header: {
|
|
@@ -14147,7 +14213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14147
14213
|
};
|
|
14148
14214
|
};
|
|
14149
14215
|
output: {
|
|
14150
|
-
template: "
|
|
14216
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14151
14217
|
body: string;
|
|
14152
14218
|
from: string;
|
|
14153
14219
|
subject: string;
|
|
@@ -14166,7 +14232,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14166
14232
|
$put: {
|
|
14167
14233
|
input: {
|
|
14168
14234
|
param: {
|
|
14169
|
-
templateName: "
|
|
14235
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14170
14236
|
};
|
|
14171
14237
|
} & {
|
|
14172
14238
|
header: {
|
|
@@ -14174,7 +14240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14174
14240
|
};
|
|
14175
14241
|
} & {
|
|
14176
14242
|
json: {
|
|
14177
|
-
template: "
|
|
14243
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14178
14244
|
body: string;
|
|
14179
14245
|
subject: string;
|
|
14180
14246
|
syntax?: "liquid" | undefined;
|
|
@@ -14186,7 +14252,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14186
14252
|
};
|
|
14187
14253
|
};
|
|
14188
14254
|
output: {
|
|
14189
|
-
template: "
|
|
14255
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14190
14256
|
body: string;
|
|
14191
14257
|
from: string;
|
|
14192
14258
|
subject: string;
|
|
@@ -14205,7 +14271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14205
14271
|
$patch: {
|
|
14206
14272
|
input: {
|
|
14207
14273
|
param: {
|
|
14208
|
-
templateName: "
|
|
14274
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14209
14275
|
};
|
|
14210
14276
|
} & {
|
|
14211
14277
|
header: {
|
|
@@ -14213,7 +14279,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14213
14279
|
};
|
|
14214
14280
|
} & {
|
|
14215
14281
|
json: {
|
|
14216
|
-
template?: "
|
|
14282
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14217
14283
|
body?: string | undefined;
|
|
14218
14284
|
from?: string | undefined;
|
|
14219
14285
|
subject?: string | undefined;
|
|
@@ -14230,7 +14296,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14230
14296
|
} | {
|
|
14231
14297
|
input: {
|
|
14232
14298
|
param: {
|
|
14233
|
-
templateName: "
|
|
14299
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14234
14300
|
};
|
|
14235
14301
|
} & {
|
|
14236
14302
|
header: {
|
|
@@ -14238,7 +14304,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14238
14304
|
};
|
|
14239
14305
|
} & {
|
|
14240
14306
|
json: {
|
|
14241
|
-
template?: "
|
|
14307
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14242
14308
|
body?: string | undefined;
|
|
14243
14309
|
from?: string | undefined;
|
|
14244
14310
|
subject?: string | undefined;
|
|
@@ -14250,7 +14316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14250
14316
|
};
|
|
14251
14317
|
};
|
|
14252
14318
|
output: {
|
|
14253
|
-
template: "
|
|
14319
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14254
14320
|
body: string;
|
|
14255
14321
|
from: string;
|
|
14256
14322
|
subject: string;
|
|
@@ -14269,7 +14335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14269
14335
|
$delete: {
|
|
14270
14336
|
input: {
|
|
14271
14337
|
param: {
|
|
14272
|
-
templateName: "
|
|
14338
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14273
14339
|
};
|
|
14274
14340
|
} & {
|
|
14275
14341
|
header: {
|
|
@@ -14278,11 +14344,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14278
14344
|
};
|
|
14279
14345
|
output: {};
|
|
14280
14346
|
outputFormat: string;
|
|
14281
|
-
status:
|
|
14347
|
+
status: 404;
|
|
14282
14348
|
} | {
|
|
14283
14349
|
input: {
|
|
14284
14350
|
param: {
|
|
14285
|
-
templateName: "
|
|
14351
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14286
14352
|
};
|
|
14287
14353
|
} & {
|
|
14288
14354
|
header: {
|
|
@@ -14291,7 +14357,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14291
14357
|
};
|
|
14292
14358
|
output: {};
|
|
14293
14359
|
outputFormat: string;
|
|
14294
|
-
status:
|
|
14360
|
+
status: 204;
|
|
14295
14361
|
};
|
|
14296
14362
|
};
|
|
14297
14363
|
} & {
|
|
@@ -14299,7 +14365,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14299
14365
|
$post: {
|
|
14300
14366
|
input: {
|
|
14301
14367
|
param: {
|
|
14302
|
-
templateName: "
|
|
14368
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14303
14369
|
};
|
|
14304
14370
|
} & {
|
|
14305
14371
|
header: {
|
|
@@ -14427,7 +14493,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14427
14493
|
};
|
|
14428
14494
|
output: {};
|
|
14429
14495
|
outputFormat: string;
|
|
14430
|
-
status:
|
|
14496
|
+
status: 404;
|
|
14431
14497
|
} | {
|
|
14432
14498
|
input: {
|
|
14433
14499
|
header: {
|
|
@@ -14436,7 +14502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14436
14502
|
};
|
|
14437
14503
|
output: {};
|
|
14438
14504
|
outputFormat: string;
|
|
14439
|
-
status:
|
|
14505
|
+
status: 204;
|
|
14440
14506
|
};
|
|
14441
14507
|
};
|
|
14442
14508
|
}, "/emails/provider"> & hono_types.MergeSchemaPath<{
|
|
@@ -14545,7 +14611,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14545
14611
|
};
|
|
14546
14612
|
output: {};
|
|
14547
14613
|
outputFormat: string;
|
|
14548
|
-
status:
|
|
14614
|
+
status: 404;
|
|
14549
14615
|
} | {
|
|
14550
14616
|
input: {
|
|
14551
14617
|
header: {
|
|
@@ -14554,7 +14620,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14554
14620
|
};
|
|
14555
14621
|
output: {};
|
|
14556
14622
|
outputFormat: string;
|
|
14557
|
-
status:
|
|
14623
|
+
status: 204;
|
|
14558
14624
|
};
|
|
14559
14625
|
};
|
|
14560
14626
|
}, "/email/providers"> & hono_types.MergeSchemaPath<{
|
|
@@ -14582,7 +14648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14582
14648
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14583
14649
|
custom_domain_id: string;
|
|
14584
14650
|
primary: boolean;
|
|
14585
|
-
status: "
|
|
14651
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14586
14652
|
verification_method?: "txt" | undefined;
|
|
14587
14653
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14588
14654
|
domain_metadata?: {
|
|
@@ -14623,7 +14689,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14623
14689
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14624
14690
|
custom_domain_id: string;
|
|
14625
14691
|
primary: boolean;
|
|
14626
|
-
status: "
|
|
14692
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14627
14693
|
verification_method?: "txt" | undefined;
|
|
14628
14694
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14629
14695
|
domain_metadata?: {
|
|
@@ -14684,7 +14750,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14684
14750
|
domain_metadata?: Record<string, string> | undefined;
|
|
14685
14751
|
custom_domain_id?: string | undefined;
|
|
14686
14752
|
primary?: boolean | undefined;
|
|
14687
|
-
status?: "
|
|
14753
|
+
status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
|
|
14688
14754
|
origin_domain_name?: string | undefined;
|
|
14689
14755
|
verification?: {
|
|
14690
14756
|
methods: ({
|
|
@@ -14705,7 +14771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14705
14771
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14706
14772
|
custom_domain_id: string;
|
|
14707
14773
|
primary: boolean;
|
|
14708
|
-
status: "
|
|
14774
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14709
14775
|
verification_method?: "txt" | undefined;
|
|
14710
14776
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14711
14777
|
domain_metadata?: {
|
|
@@ -14752,7 +14818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14752
14818
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14753
14819
|
custom_domain_id: string;
|
|
14754
14820
|
primary: boolean;
|
|
14755
|
-
status: "
|
|
14821
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14756
14822
|
verification_method?: "txt" | undefined;
|
|
14757
14823
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14758
14824
|
domain_metadata?: {
|
|
@@ -14798,7 +14864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14798
14864
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14799
14865
|
custom_domain_id: string;
|
|
14800
14866
|
primary: boolean;
|
|
14801
|
-
status: "
|
|
14867
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14802
14868
|
verification_method?: "txt" | undefined;
|
|
14803
14869
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14804
14870
|
domain_metadata?: {
|
|
@@ -14839,7 +14905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14839
14905
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14840
14906
|
custom_domain_id: string;
|
|
14841
14907
|
primary: boolean;
|
|
14842
|
-
status: "
|
|
14908
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14843
14909
|
verification_method?: "txt" | undefined;
|
|
14844
14910
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14845
14911
|
domain_metadata?: {
|
|
@@ -15446,7 +15512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15446
15512
|
logs: {
|
|
15447
15513
|
action_name: string;
|
|
15448
15514
|
lines: {
|
|
15449
|
-
level: "
|
|
15515
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15450
15516
|
message: string;
|
|
15451
15517
|
}[];
|
|
15452
15518
|
}[];
|
|
@@ -15753,7 +15819,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15753
15819
|
};
|
|
15754
15820
|
output: {};
|
|
15755
15821
|
outputFormat: string;
|
|
15756
|
-
status:
|
|
15822
|
+
status: 404;
|
|
15757
15823
|
} | {
|
|
15758
15824
|
input: {
|
|
15759
15825
|
param: {
|
|
@@ -15779,7 +15845,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15779
15845
|
};
|
|
15780
15846
|
output: {};
|
|
15781
15847
|
outputFormat: string;
|
|
15782
|
-
status:
|
|
15848
|
+
status: 409;
|
|
15783
15849
|
};
|
|
15784
15850
|
};
|
|
15785
15851
|
} & {
|
|
@@ -16113,7 +16179,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16113
16179
|
args: hono_utils_types.JSONValue[];
|
|
16114
16180
|
}[];
|
|
16115
16181
|
logs: {
|
|
16116
|
-
level: "
|
|
16182
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16117
16183
|
message: string;
|
|
16118
16184
|
}[];
|
|
16119
16185
|
error?: string | undefined;
|
|
@@ -16846,19 +16912,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16846
16912
|
email: string;
|
|
16847
16913
|
send: "code" | "link";
|
|
16848
16914
|
authParams: {
|
|
16849
|
-
|
|
16915
|
+
code_challenge?: string | undefined;
|
|
16916
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16917
|
+
redirect_uri?: string | undefined;
|
|
16918
|
+
nonce?: string | undefined;
|
|
16850
16919
|
state?: string | undefined;
|
|
16851
16920
|
act_as?: string | undefined;
|
|
16852
16921
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16853
16922
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16854
|
-
redirect_uri?: string | undefined;
|
|
16855
16923
|
audience?: string | undefined;
|
|
16856
16924
|
organization?: string | undefined;
|
|
16857
|
-
nonce?: string | undefined;
|
|
16858
16925
|
scope?: string | undefined;
|
|
16859
16926
|
prompt?: string | undefined;
|
|
16860
|
-
|
|
16861
|
-
code_challenge?: string | undefined;
|
|
16927
|
+
username?: string | undefined;
|
|
16862
16928
|
ui_locales?: string | undefined;
|
|
16863
16929
|
max_age?: number | undefined;
|
|
16864
16930
|
acr_values?: string | undefined;
|
|
@@ -16882,19 +16948,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16882
16948
|
phone_number: string;
|
|
16883
16949
|
send: "code" | "link";
|
|
16884
16950
|
authParams: {
|
|
16885
|
-
|
|
16951
|
+
code_challenge?: string | undefined;
|
|
16952
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16953
|
+
redirect_uri?: string | undefined;
|
|
16954
|
+
nonce?: string | undefined;
|
|
16886
16955
|
state?: string | undefined;
|
|
16887
16956
|
act_as?: string | undefined;
|
|
16888
16957
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16889
16958
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16890
|
-
redirect_uri?: string | undefined;
|
|
16891
16959
|
audience?: string | undefined;
|
|
16892
16960
|
organization?: string | undefined;
|
|
16893
|
-
nonce?: string | undefined;
|
|
16894
16961
|
scope?: string | undefined;
|
|
16895
16962
|
prompt?: string | undefined;
|
|
16896
|
-
|
|
16897
|
-
code_challenge?: string | undefined;
|
|
16963
|
+
username?: string | undefined;
|
|
16898
16964
|
ui_locales?: string | undefined;
|
|
16899
16965
|
max_age?: number | undefined;
|
|
16900
16966
|
acr_values?: string | undefined;
|
|
@@ -17610,8 +17676,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17610
17676
|
output: {
|
|
17611
17677
|
keys: {
|
|
17612
17678
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
17613
|
-
|
|
17614
|
-
|
|
17679
|
+
kty: "EC" | "RSA" | "oct";
|
|
17680
|
+
kid?: string | undefined;
|
|
17615
17681
|
use?: "sig" | "enc" | undefined;
|
|
17616
17682
|
n?: string | undefined;
|
|
17617
17683
|
e?: string | undefined;
|
|
@@ -17970,7 +18036,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17970
18036
|
};
|
|
17971
18037
|
output: {};
|
|
17972
18038
|
outputFormat: string;
|
|
17973
|
-
status:
|
|
18039
|
+
status: 404;
|
|
17974
18040
|
} | {
|
|
17975
18041
|
input: {
|
|
17976
18042
|
param: {
|
|
@@ -17984,7 +18050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17984
18050
|
};
|
|
17985
18051
|
output: {};
|
|
17986
18052
|
outputFormat: string;
|
|
17987
|
-
status:
|
|
18053
|
+
status: 200;
|
|
17988
18054
|
};
|
|
17989
18055
|
};
|
|
17990
18056
|
} & {
|
|
@@ -18004,7 +18070,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18004
18070
|
};
|
|
18005
18071
|
output: {};
|
|
18006
18072
|
outputFormat: string;
|
|
18007
|
-
status:
|
|
18073
|
+
status: 404;
|
|
18008
18074
|
} | {
|
|
18009
18075
|
input: {
|
|
18010
18076
|
param: {
|
|
@@ -18020,7 +18086,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18020
18086
|
};
|
|
18021
18087
|
output: {};
|
|
18022
18088
|
outputFormat: string;
|
|
18023
|
-
status:
|
|
18089
|
+
status: 200;
|
|
18024
18090
|
};
|
|
18025
18091
|
};
|
|
18026
18092
|
}, "/forms"> & hono_types.MergeSchemaPath<{
|
|
@@ -18801,7 +18867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18801
18867
|
$get: {
|
|
18802
18868
|
input: {
|
|
18803
18869
|
param: {
|
|
18804
|
-
screen: "signup" | "
|
|
18870
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "account" | "try-connection-result" | "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";
|
|
18805
18871
|
};
|
|
18806
18872
|
} & {
|
|
18807
18873
|
query: {
|
|
@@ -18817,7 +18883,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18817
18883
|
} | {
|
|
18818
18884
|
input: {
|
|
18819
18885
|
param: {
|
|
18820
|
-
screen: "signup" | "
|
|
18886
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "account" | "try-connection-result" | "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";
|
|
18821
18887
|
};
|
|
18822
18888
|
} & {
|
|
18823
18889
|
query: {
|
|
@@ -18833,7 +18899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18833
18899
|
} | {
|
|
18834
18900
|
input: {
|
|
18835
18901
|
param: {
|
|
18836
|
-
screen: "signup" | "
|
|
18902
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "account" | "try-connection-result" | "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";
|
|
18837
18903
|
};
|
|
18838
18904
|
} & {
|
|
18839
18905
|
query: {
|
|
@@ -18853,7 +18919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18853
18919
|
$post: {
|
|
18854
18920
|
input: {
|
|
18855
18921
|
param: {
|
|
18856
|
-
screen: "signup" | "
|
|
18922
|
+
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";
|
|
18857
18923
|
};
|
|
18858
18924
|
} & {
|
|
18859
18925
|
query: {
|
|
@@ -18871,7 +18937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18871
18937
|
} | {
|
|
18872
18938
|
input: {
|
|
18873
18939
|
param: {
|
|
18874
|
-
screen: "signup" | "
|
|
18940
|
+
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";
|
|
18875
18941
|
};
|
|
18876
18942
|
} & {
|
|
18877
18943
|
query: {
|
|
@@ -18889,7 +18955,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18889
18955
|
} | {
|
|
18890
18956
|
input: {
|
|
18891
18957
|
param: {
|
|
18892
|
-
screen: "signup" | "
|
|
18958
|
+
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";
|
|
18893
18959
|
};
|
|
18894
18960
|
} & {
|
|
18895
18961
|
query: {
|
|
@@ -18921,7 +18987,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18921
18987
|
};
|
|
18922
18988
|
output: {};
|
|
18923
18989
|
outputFormat: string;
|
|
18924
|
-
status:
|
|
18990
|
+
status: 404;
|
|
18925
18991
|
} | {
|
|
18926
18992
|
input: {
|
|
18927
18993
|
param: {
|
|
@@ -18935,7 +19001,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18935
19001
|
};
|
|
18936
19002
|
output: {};
|
|
18937
19003
|
outputFormat: string;
|
|
18938
|
-
status:
|
|
19004
|
+
status: 200;
|
|
18939
19005
|
};
|
|
18940
19006
|
};
|
|
18941
19007
|
} & {
|
|
@@ -18987,5 +19053,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18987
19053
|
createX509Certificate: typeof createX509Certificate;
|
|
18988
19054
|
};
|
|
18989
19055
|
|
|
18990
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
|
|
18991
|
-
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|
|
19056
|
+
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, NoopTenantProvisioner, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
|
|
19057
|
+
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TenantProvisioner, TenantProvisionerContext, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|