authhero 5.19.0 → 5.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +2701 -107
- package/dist/authhero.d.ts +310 -77
- package/dist/authhero.mjs +7366 -7036
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +8 -0
- package/dist/types/authentication-flows/passwordless.d.ts +12 -3
- package/dist/types/authentication-flows/token-exchange.d.ts +19 -0
- package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -0
- package/dist/types/emails/defaults/ChangePassword.d.ts +6 -0
- package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -0
- package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -0
- package/dist/types/emails/defaults/PasswordReset.d.ts +5 -0
- package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -0
- package/dist/types/emails/index.d.ts +21 -1
- package/dist/types/helpers/client.d.ts +20 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/scopes-permissions.d.ts +1 -1
- package/dist/types/index.d.ts +243 -74
- 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 +129 -19
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- 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/auth-api/token.d.ts +110 -0
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/custom-domains.d.ts +7 -7
- package/dist/types/routes/management-api/email-templates.d.ts +58 -1
- 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 +106 -49
- 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/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +27 -0
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +38 -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 +12 -0
- package/dist/types/types/GrantFlowResult.d.ts +8 -0
- package/dist/types/utils/jwks.d.ts +2 -2
- package/dist/types/utils/jwt.d.ts +4 -0
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as hono_utils_http_status from 'hono/utils/http-status';
|
|
2
2
|
import * as hono_utils_types from 'hono/utils/types';
|
|
3
3
|
import * as _authhero_adapter_interfaces from '@authhero/adapter-interfaces';
|
|
4
|
-
import { LoginSession, DataAdapters, RolePermissionInsert, AuthorizationResponseMode, AuthorizationResponseType, User, 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';
|
|
@@ -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" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
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: "sms" | "otp" | "email" | "duo" | "
|
|
2864
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
3019
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
3027
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
3040
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
3052
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
2987
3053
|
enabled: boolean;
|
|
2988
3054
|
trial_expired?: boolean | undefined;
|
|
2989
3055
|
};
|
|
@@ -9219,7 +9285,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9219
9285
|
};
|
|
9220
9286
|
};
|
|
9221
9287
|
output: {
|
|
9222
|
-
prompt: "
|
|
9288
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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: "
|
|
9326
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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: "
|
|
9348
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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: "
|
|
9372
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
10748
10814
|
id?: string | undefined;
|
|
10749
10815
|
email?: string | undefined;
|
|
10750
10816
|
org_id?: string | undefined;
|
|
@@ -11052,7 +11118,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11052
11118
|
created_at: string;
|
|
11053
11119
|
updated_at: string;
|
|
11054
11120
|
name: string;
|
|
11055
|
-
provider: "auth0" | "
|
|
11121
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11056
11122
|
connection: string;
|
|
11057
11123
|
enabled: boolean;
|
|
11058
11124
|
credentials: {
|
|
@@ -11084,7 +11150,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11084
11150
|
created_at: string;
|
|
11085
11151
|
updated_at: string;
|
|
11086
11152
|
name: string;
|
|
11087
|
-
provider: "auth0" | "
|
|
11153
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11088
11154
|
connection: string;
|
|
11089
11155
|
enabled: boolean;
|
|
11090
11156
|
credentials: {
|
|
@@ -11110,7 +11176,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11110
11176
|
} & {
|
|
11111
11177
|
json: {
|
|
11112
11178
|
name: string;
|
|
11113
|
-
provider: "auth0" | "
|
|
11179
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11114
11180
|
connection: string;
|
|
11115
11181
|
credentials: {
|
|
11116
11182
|
domain: string;
|
|
@@ -11127,7 +11193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11127
11193
|
created_at: string;
|
|
11128
11194
|
updated_at: string;
|
|
11129
11195
|
name: string;
|
|
11130
|
-
provider: "auth0" | "
|
|
11196
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11131
11197
|
connection: string;
|
|
11132
11198
|
enabled: boolean;
|
|
11133
11199
|
credentials: {
|
|
@@ -11158,7 +11224,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11158
11224
|
json: {
|
|
11159
11225
|
id?: string | undefined;
|
|
11160
11226
|
name?: string | undefined;
|
|
11161
|
-
provider?: "auth0" | "
|
|
11227
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
11162
11228
|
connection?: string | undefined;
|
|
11163
11229
|
enabled?: boolean | undefined;
|
|
11164
11230
|
credentials?: {
|
|
@@ -11174,7 +11240,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11174
11240
|
created_at: string;
|
|
11175
11241
|
updated_at: string;
|
|
11176
11242
|
name: string;
|
|
11177
|
-
provider: "auth0" | "
|
|
11243
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11178
11244
|
connection: string;
|
|
11179
11245
|
enabled: boolean;
|
|
11180
11246
|
credentials: {
|
|
@@ -11392,7 +11458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11392
11458
|
};
|
|
11393
11459
|
};
|
|
11394
11460
|
output: {
|
|
11395
|
-
type: "
|
|
11461
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
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: "
|
|
11500
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
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: "
|
|
11554
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
11489
11555
|
date: string;
|
|
11490
11556
|
isMobile: boolean;
|
|
11491
11557
|
log_id: string;
|
|
@@ -11640,7 +11706,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11640
11706
|
audience?: string | undefined;
|
|
11641
11707
|
client_id?: string | undefined;
|
|
11642
11708
|
allow_any_organization?: string | undefined;
|
|
11643
|
-
subject_type?: "
|
|
11709
|
+
subject_type?: "client" | "user" | undefined;
|
|
11644
11710
|
};
|
|
11645
11711
|
} & {
|
|
11646
11712
|
header: {
|
|
@@ -11655,7 +11721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11655
11721
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11656
11722
|
allow_any_organization?: boolean | undefined;
|
|
11657
11723
|
is_system?: boolean | undefined;
|
|
11658
|
-
subject_type?: "
|
|
11724
|
+
subject_type?: "client" | "user" | undefined;
|
|
11659
11725
|
authorization_details_types?: string[] | undefined;
|
|
11660
11726
|
created_at?: string | undefined;
|
|
11661
11727
|
updated_at?: string | undefined;
|
|
@@ -11671,7 +11737,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11671
11737
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11672
11738
|
allow_any_organization?: boolean | undefined;
|
|
11673
11739
|
is_system?: boolean | undefined;
|
|
11674
|
-
subject_type?: "
|
|
11740
|
+
subject_type?: "client" | "user" | undefined;
|
|
11675
11741
|
authorization_details_types?: string[] | undefined;
|
|
11676
11742
|
created_at?: string | undefined;
|
|
11677
11743
|
updated_at?: string | undefined;
|
|
@@ -11702,7 +11768,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11702
11768
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11703
11769
|
allow_any_organization?: boolean | undefined;
|
|
11704
11770
|
is_system?: boolean | undefined;
|
|
11705
|
-
subject_type?: "
|
|
11771
|
+
subject_type?: "client" | "user" | undefined;
|
|
11706
11772
|
authorization_details_types?: string[] | undefined;
|
|
11707
11773
|
created_at?: string | undefined;
|
|
11708
11774
|
updated_at?: string | undefined;
|
|
@@ -11747,7 +11813,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11747
11813
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11748
11814
|
allow_any_organization?: boolean | undefined;
|
|
11749
11815
|
is_system?: boolean | undefined;
|
|
11750
|
-
subject_type?: "
|
|
11816
|
+
subject_type?: "client" | "user" | undefined;
|
|
11751
11817
|
authorization_details_types?: string[] | undefined;
|
|
11752
11818
|
};
|
|
11753
11819
|
};
|
|
@@ -11759,7 +11825,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11759
11825
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11760
11826
|
allow_any_organization?: boolean | undefined;
|
|
11761
11827
|
is_system?: boolean | undefined;
|
|
11762
|
-
subject_type?: "
|
|
11828
|
+
subject_type?: "client" | "user" | undefined;
|
|
11763
11829
|
authorization_details_types?: string[] | undefined;
|
|
11764
11830
|
created_at?: string | undefined;
|
|
11765
11831
|
updated_at?: string | undefined;
|
|
@@ -11783,7 +11849,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11783
11849
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11784
11850
|
allow_any_organization?: boolean | undefined;
|
|
11785
11851
|
is_system?: boolean | undefined;
|
|
11786
|
-
subject_type?: "
|
|
11852
|
+
subject_type?: "client" | "user" | undefined;
|
|
11787
11853
|
authorization_details_types?: string[] | undefined;
|
|
11788
11854
|
};
|
|
11789
11855
|
};
|
|
@@ -11795,7 +11861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11795
11861
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11796
11862
|
allow_any_organization?: boolean | undefined;
|
|
11797
11863
|
is_system?: boolean | undefined;
|
|
11798
|
-
subject_type?: "
|
|
11864
|
+
subject_type?: "client" | "user" | undefined;
|
|
11799
11865
|
authorization_details_types?: string[] | undefined;
|
|
11800
11866
|
created_at?: string | undefined;
|
|
11801
11867
|
updated_at?: string | undefined;
|
|
@@ -11873,7 +11939,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11873
11939
|
addons?: {
|
|
11874
11940
|
[x: string]: any;
|
|
11875
11941
|
} | undefined;
|
|
11876
|
-
token_endpoint_auth_method?: "
|
|
11942
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11877
11943
|
client_metadata?: {
|
|
11878
11944
|
[x: string]: string;
|
|
11879
11945
|
} | undefined;
|
|
@@ -11969,7 +12035,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11969
12035
|
addons?: {
|
|
11970
12036
|
[x: string]: any;
|
|
11971
12037
|
} | undefined;
|
|
11972
|
-
token_endpoint_auth_method?: "
|
|
12038
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
11973
12039
|
client_metadata?: {
|
|
11974
12040
|
[x: string]: string;
|
|
11975
12041
|
} | undefined;
|
|
@@ -12080,7 +12146,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12080
12146
|
addons?: {
|
|
12081
12147
|
[x: string]: any;
|
|
12082
12148
|
} | undefined;
|
|
12083
|
-
token_endpoint_auth_method?: "
|
|
12149
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12084
12150
|
client_metadata?: {
|
|
12085
12151
|
[x: string]: string;
|
|
12086
12152
|
} | undefined;
|
|
@@ -12190,7 +12256,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12190
12256
|
custom_login_page_preview?: string | undefined;
|
|
12191
12257
|
form_template?: string | undefined;
|
|
12192
12258
|
addons?: Record<string, any> | undefined;
|
|
12193
|
-
token_endpoint_auth_method?: "
|
|
12259
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12194
12260
|
client_metadata?: Record<string, string> | undefined;
|
|
12195
12261
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12196
12262
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12270,7 +12336,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12270
12336
|
addons?: {
|
|
12271
12337
|
[x: string]: any;
|
|
12272
12338
|
} | undefined;
|
|
12273
|
-
token_endpoint_auth_method?: "
|
|
12339
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12274
12340
|
client_metadata?: {
|
|
12275
12341
|
[x: string]: string;
|
|
12276
12342
|
} | undefined;
|
|
@@ -12359,7 +12425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12359
12425
|
custom_login_page_preview?: string | undefined;
|
|
12360
12426
|
form_template?: string | undefined;
|
|
12361
12427
|
addons?: Record<string, any> | undefined;
|
|
12362
|
-
token_endpoint_auth_method?: "
|
|
12428
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12363
12429
|
client_metadata?: Record<string, string> | undefined;
|
|
12364
12430
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12365
12431
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12439,7 +12505,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12439
12505
|
addons?: {
|
|
12440
12506
|
[x: string]: any;
|
|
12441
12507
|
} | undefined;
|
|
12442
|
-
token_endpoint_auth_method?: "
|
|
12508
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12443
12509
|
client_metadata?: {
|
|
12444
12510
|
[x: string]: string;
|
|
12445
12511
|
} | undefined;
|
|
@@ -13703,7 +13769,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13703
13769
|
};
|
|
13704
13770
|
};
|
|
13705
13771
|
output: {
|
|
13706
|
-
type: "
|
|
13772
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
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: "
|
|
13811
|
+
type: "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "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";
|
|
13746
13812
|
date: string;
|
|
13747
13813
|
isMobile: boolean;
|
|
13748
13814
|
log_id: string;
|
|
@@ -14176,13 +14242,13 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14176
14242
|
json: {
|
|
14177
14243
|
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14178
14244
|
body: string;
|
|
14179
|
-
from: string;
|
|
14180
14245
|
subject: string;
|
|
14181
14246
|
syntax?: "liquid" | undefined;
|
|
14182
14247
|
resultUrl?: string | undefined;
|
|
14183
14248
|
urlLifetimeInSeconds?: number | undefined;
|
|
14184
14249
|
includeEmailInRedirect?: boolean | undefined;
|
|
14185
14250
|
enabled?: boolean | undefined;
|
|
14251
|
+
from?: string | undefined;
|
|
14186
14252
|
};
|
|
14187
14253
|
};
|
|
14188
14254
|
output: {
|
|
@@ -14264,6 +14330,63 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14264
14330
|
status: 200;
|
|
14265
14331
|
};
|
|
14266
14332
|
};
|
|
14333
|
+
} & {
|
|
14334
|
+
"/:templateName": {
|
|
14335
|
+
$delete: {
|
|
14336
|
+
input: {
|
|
14337
|
+
param: {
|
|
14338
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14339
|
+
};
|
|
14340
|
+
} & {
|
|
14341
|
+
header: {
|
|
14342
|
+
"tenant-id"?: string | undefined;
|
|
14343
|
+
};
|
|
14344
|
+
};
|
|
14345
|
+
output: {};
|
|
14346
|
+
outputFormat: string;
|
|
14347
|
+
status: 204;
|
|
14348
|
+
} | {
|
|
14349
|
+
input: {
|
|
14350
|
+
param: {
|
|
14351
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14352
|
+
};
|
|
14353
|
+
} & {
|
|
14354
|
+
header: {
|
|
14355
|
+
"tenant-id"?: string | undefined;
|
|
14356
|
+
};
|
|
14357
|
+
};
|
|
14358
|
+
output: {};
|
|
14359
|
+
outputFormat: string;
|
|
14360
|
+
status: 404;
|
|
14361
|
+
};
|
|
14362
|
+
};
|
|
14363
|
+
} & {
|
|
14364
|
+
"/:templateName/try": {
|
|
14365
|
+
$post: {
|
|
14366
|
+
input: {
|
|
14367
|
+
param: {
|
|
14368
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14369
|
+
};
|
|
14370
|
+
} & {
|
|
14371
|
+
header: {
|
|
14372
|
+
"tenant-id"?: string | undefined;
|
|
14373
|
+
};
|
|
14374
|
+
} & {
|
|
14375
|
+
json: {
|
|
14376
|
+
to: string;
|
|
14377
|
+
body?: string | undefined;
|
|
14378
|
+
subject?: string | undefined;
|
|
14379
|
+
from?: string | undefined;
|
|
14380
|
+
language?: string | undefined;
|
|
14381
|
+
};
|
|
14382
|
+
};
|
|
14383
|
+
output: {
|
|
14384
|
+
sent: boolean;
|
|
14385
|
+
};
|
|
14386
|
+
outputFormat: "json";
|
|
14387
|
+
status: 200;
|
|
14388
|
+
};
|
|
14389
|
+
};
|
|
14267
14390
|
}, "/email-templates"> & hono_types.MergeSchemaPath<{
|
|
14268
14391
|
"/": {
|
|
14269
14392
|
$get: {
|
|
@@ -14525,7 +14648,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14525
14648
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14526
14649
|
custom_domain_id: string;
|
|
14527
14650
|
primary: boolean;
|
|
14528
|
-
status: "
|
|
14651
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14529
14652
|
verification_method?: "txt" | undefined;
|
|
14530
14653
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14531
14654
|
domain_metadata?: {
|
|
@@ -14566,7 +14689,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14566
14689
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14567
14690
|
custom_domain_id: string;
|
|
14568
14691
|
primary: boolean;
|
|
14569
|
-
status: "
|
|
14692
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14570
14693
|
verification_method?: "txt" | undefined;
|
|
14571
14694
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14572
14695
|
domain_metadata?: {
|
|
@@ -14627,7 +14750,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14627
14750
|
domain_metadata?: Record<string, string> | undefined;
|
|
14628
14751
|
custom_domain_id?: string | undefined;
|
|
14629
14752
|
primary?: boolean | undefined;
|
|
14630
|
-
status?: "
|
|
14753
|
+
status?: "pending" | "ready" | "disabled" | "pending_verification" | undefined;
|
|
14631
14754
|
origin_domain_name?: string | undefined;
|
|
14632
14755
|
verification?: {
|
|
14633
14756
|
methods: ({
|
|
@@ -14648,7 +14771,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14648
14771
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14649
14772
|
custom_domain_id: string;
|
|
14650
14773
|
primary: boolean;
|
|
14651
|
-
status: "
|
|
14774
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14652
14775
|
verification_method?: "txt" | undefined;
|
|
14653
14776
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14654
14777
|
domain_metadata?: {
|
|
@@ -14695,7 +14818,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14695
14818
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14696
14819
|
custom_domain_id: string;
|
|
14697
14820
|
primary: boolean;
|
|
14698
|
-
status: "
|
|
14821
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14699
14822
|
verification_method?: "txt" | undefined;
|
|
14700
14823
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14701
14824
|
domain_metadata?: {
|
|
@@ -14741,7 +14864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14741
14864
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14742
14865
|
custom_domain_id: string;
|
|
14743
14866
|
primary: boolean;
|
|
14744
|
-
status: "
|
|
14867
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14745
14868
|
verification_method?: "txt" | undefined;
|
|
14746
14869
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14747
14870
|
domain_metadata?: {
|
|
@@ -14782,7 +14905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14782
14905
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14783
14906
|
custom_domain_id: string;
|
|
14784
14907
|
primary: boolean;
|
|
14785
|
-
status: "
|
|
14908
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14786
14909
|
verification_method?: "txt" | undefined;
|
|
14787
14910
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14788
14911
|
domain_metadata?: {
|
|
@@ -15389,7 +15512,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15389
15512
|
logs: {
|
|
15390
15513
|
action_name: string;
|
|
15391
15514
|
lines: {
|
|
15392
|
-
level: "
|
|
15515
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
15393
15516
|
message: string;
|
|
15394
15517
|
}[];
|
|
15395
15518
|
}[];
|
|
@@ -16056,7 +16179,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16056
16179
|
args: hono_utils_types.JSONValue[];
|
|
16057
16180
|
}[];
|
|
16058
16181
|
logs: {
|
|
16059
|
-
level: "
|
|
16182
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
16060
16183
|
message: string;
|
|
16061
16184
|
}[];
|
|
16062
16185
|
error?: string | undefined;
|
|
@@ -16354,7 +16477,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16354
16477
|
scope?: string | undefined;
|
|
16355
16478
|
grant_types?: string[] | undefined;
|
|
16356
16479
|
response_types?: string[] | undefined;
|
|
16357
|
-
token_endpoint_auth_method?: "
|
|
16480
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16358
16481
|
jwks_uri?: string | undefined;
|
|
16359
16482
|
jwks?: Record<string, unknown> | undefined;
|
|
16360
16483
|
software_id?: string | undefined;
|
|
@@ -16443,7 +16566,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16443
16566
|
scope?: string | undefined;
|
|
16444
16567
|
grant_types?: string[] | undefined;
|
|
16445
16568
|
response_types?: string[] | undefined;
|
|
16446
|
-
token_endpoint_auth_method?: "
|
|
16569
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16447
16570
|
jwks_uri?: string | undefined;
|
|
16448
16571
|
jwks?: Record<string, unknown> | undefined;
|
|
16449
16572
|
software_id?: string | undefined;
|
|
@@ -16789,20 +16912,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16789
16912
|
email: string;
|
|
16790
16913
|
send: "code" | "link";
|
|
16791
16914
|
authParams: {
|
|
16792
|
-
username?: string | undefined;
|
|
16793
|
-
state?: string | undefined;
|
|
16794
16915
|
audience?: string | undefined;
|
|
16795
16916
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16796
16917
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16797
16918
|
scope?: string | undefined;
|
|
16919
|
+
username?: string | undefined;
|
|
16920
|
+
state?: string | undefined;
|
|
16921
|
+
prompt?: string | undefined;
|
|
16922
|
+
ui_locales?: string | undefined;
|
|
16798
16923
|
organization?: string | undefined;
|
|
16799
|
-
nonce?: string | undefined;
|
|
16800
16924
|
redirect_uri?: string | undefined;
|
|
16801
16925
|
act_as?: string | undefined;
|
|
16802
|
-
|
|
16926
|
+
nonce?: string | undefined;
|
|
16803
16927
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16804
16928
|
code_challenge?: string | undefined;
|
|
16805
|
-
ui_locales?: string | undefined;
|
|
16806
16929
|
max_age?: number | undefined;
|
|
16807
16930
|
acr_values?: string | undefined;
|
|
16808
16931
|
claims?: {
|
|
@@ -16825,20 +16948,20 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16825
16948
|
phone_number: string;
|
|
16826
16949
|
send: "code" | "link";
|
|
16827
16950
|
authParams: {
|
|
16828
|
-
username?: string | undefined;
|
|
16829
|
-
state?: string | undefined;
|
|
16830
16951
|
audience?: string | undefined;
|
|
16831
16952
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16832
16953
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16833
16954
|
scope?: string | undefined;
|
|
16955
|
+
username?: string | undefined;
|
|
16956
|
+
state?: string | undefined;
|
|
16957
|
+
prompt?: string | undefined;
|
|
16958
|
+
ui_locales?: string | undefined;
|
|
16834
16959
|
organization?: string | undefined;
|
|
16835
|
-
nonce?: string | undefined;
|
|
16836
16960
|
redirect_uri?: string | undefined;
|
|
16837
16961
|
act_as?: string | undefined;
|
|
16838
|
-
|
|
16962
|
+
nonce?: string | undefined;
|
|
16839
16963
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16840
16964
|
code_challenge?: string | undefined;
|
|
16841
|
-
ui_locales?: string | undefined;
|
|
16842
16965
|
max_age?: number | undefined;
|
|
16843
16966
|
acr_values?: string | undefined;
|
|
16844
16967
|
claims?: {
|
|
@@ -16969,14 +17092,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16969
17092
|
input: {
|
|
16970
17093
|
form: {
|
|
16971
17094
|
token: string;
|
|
16972
|
-
token_type_hint?: "
|
|
17095
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16973
17096
|
client_id?: string | undefined;
|
|
16974
17097
|
client_secret?: string | undefined;
|
|
16975
17098
|
};
|
|
16976
17099
|
} & {
|
|
16977
17100
|
json: {
|
|
16978
17101
|
token: string;
|
|
16979
|
-
token_type_hint?: "
|
|
17102
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16980
17103
|
client_id?: string | undefined;
|
|
16981
17104
|
client_secret?: string | undefined;
|
|
16982
17105
|
};
|
|
@@ -16988,14 +17111,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16988
17111
|
input: {
|
|
16989
17112
|
form: {
|
|
16990
17113
|
token: string;
|
|
16991
|
-
token_type_hint?: "
|
|
17114
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16992
17115
|
client_id?: string | undefined;
|
|
16993
17116
|
client_secret?: string | undefined;
|
|
16994
17117
|
};
|
|
16995
17118
|
} & {
|
|
16996
17119
|
json: {
|
|
16997
17120
|
token: string;
|
|
16998
|
-
token_type_hint?: "
|
|
17121
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
16999
17122
|
client_id?: string | undefined;
|
|
17000
17123
|
client_secret?: string | undefined;
|
|
17001
17124
|
};
|
|
@@ -17010,14 +17133,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17010
17133
|
input: {
|
|
17011
17134
|
form: {
|
|
17012
17135
|
token: string;
|
|
17013
|
-
token_type_hint?: "
|
|
17136
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17014
17137
|
client_id?: string | undefined;
|
|
17015
17138
|
client_secret?: string | undefined;
|
|
17016
17139
|
};
|
|
17017
17140
|
} & {
|
|
17018
17141
|
json: {
|
|
17019
17142
|
token: string;
|
|
17020
|
-
token_type_hint?: "
|
|
17143
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17021
17144
|
client_id?: string | undefined;
|
|
17022
17145
|
client_secret?: string | undefined;
|
|
17023
17146
|
};
|
|
@@ -17068,6 +17191,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17068
17191
|
username: string;
|
|
17069
17192
|
otp: string;
|
|
17070
17193
|
realm: "sms" | "email";
|
|
17194
|
+
} | {
|
|
17195
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17196
|
+
subject_token: string;
|
|
17197
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17198
|
+
organization: string;
|
|
17199
|
+
audience?: string | undefined;
|
|
17200
|
+
scope?: string | undefined;
|
|
17201
|
+
client_id?: string | undefined;
|
|
17202
|
+
client_secret?: string | undefined;
|
|
17203
|
+
client_assertion?: string | undefined;
|
|
17204
|
+
client_assertion_type?: string | undefined;
|
|
17071
17205
|
};
|
|
17072
17206
|
} & {
|
|
17073
17207
|
json: {
|
|
@@ -17104,6 +17238,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17104
17238
|
username: string;
|
|
17105
17239
|
otp: string;
|
|
17106
17240
|
realm: "sms" | "email";
|
|
17241
|
+
} | {
|
|
17242
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17243
|
+
subject_token: string;
|
|
17244
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17245
|
+
organization: string;
|
|
17246
|
+
audience?: string | undefined;
|
|
17247
|
+
scope?: string | undefined;
|
|
17248
|
+
client_id?: string | undefined;
|
|
17249
|
+
client_secret?: string | undefined;
|
|
17250
|
+
client_assertion?: string | undefined;
|
|
17251
|
+
client_assertion_type?: string | undefined;
|
|
17107
17252
|
};
|
|
17108
17253
|
};
|
|
17109
17254
|
output: {};
|
|
@@ -17145,6 +17290,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17145
17290
|
username: string;
|
|
17146
17291
|
otp: string;
|
|
17147
17292
|
realm: "sms" | "email";
|
|
17293
|
+
} | {
|
|
17294
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17295
|
+
subject_token: string;
|
|
17296
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17297
|
+
organization: string;
|
|
17298
|
+
audience?: string | undefined;
|
|
17299
|
+
scope?: string | undefined;
|
|
17300
|
+
client_id?: string | undefined;
|
|
17301
|
+
client_secret?: string | undefined;
|
|
17302
|
+
client_assertion?: string | undefined;
|
|
17303
|
+
client_assertion_type?: string | undefined;
|
|
17148
17304
|
};
|
|
17149
17305
|
} & {
|
|
17150
17306
|
json: {
|
|
@@ -17181,6 +17337,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17181
17337
|
username: string;
|
|
17182
17338
|
otp: string;
|
|
17183
17339
|
realm: "sms" | "email";
|
|
17340
|
+
} | {
|
|
17341
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17342
|
+
subject_token: string;
|
|
17343
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17344
|
+
organization: string;
|
|
17345
|
+
audience?: string | undefined;
|
|
17346
|
+
scope?: string | undefined;
|
|
17347
|
+
client_id?: string | undefined;
|
|
17348
|
+
client_secret?: string | undefined;
|
|
17349
|
+
client_assertion?: string | undefined;
|
|
17350
|
+
client_assertion_type?: string | undefined;
|
|
17184
17351
|
};
|
|
17185
17352
|
};
|
|
17186
17353
|
output: {
|
|
@@ -17230,6 +17397,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17230
17397
|
username: string;
|
|
17231
17398
|
otp: string;
|
|
17232
17399
|
realm: "sms" | "email";
|
|
17400
|
+
} | {
|
|
17401
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17402
|
+
subject_token: string;
|
|
17403
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17404
|
+
organization: string;
|
|
17405
|
+
audience?: string | undefined;
|
|
17406
|
+
scope?: string | undefined;
|
|
17407
|
+
client_id?: string | undefined;
|
|
17408
|
+
client_secret?: string | undefined;
|
|
17409
|
+
client_assertion?: string | undefined;
|
|
17410
|
+
client_assertion_type?: string | undefined;
|
|
17233
17411
|
};
|
|
17234
17412
|
} & {
|
|
17235
17413
|
json: {
|
|
@@ -17266,6 +17444,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17266
17444
|
username: string;
|
|
17267
17445
|
otp: string;
|
|
17268
17446
|
realm: "sms" | "email";
|
|
17447
|
+
} | {
|
|
17448
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17449
|
+
subject_token: string;
|
|
17450
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17451
|
+
organization: string;
|
|
17452
|
+
audience?: string | undefined;
|
|
17453
|
+
scope?: string | undefined;
|
|
17454
|
+
client_id?: string | undefined;
|
|
17455
|
+
client_secret?: string | undefined;
|
|
17456
|
+
client_assertion?: string | undefined;
|
|
17457
|
+
client_assertion_type?: string | undefined;
|
|
17269
17458
|
};
|
|
17270
17459
|
};
|
|
17271
17460
|
output: {
|
|
@@ -17310,6 +17499,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17310
17499
|
username: string;
|
|
17311
17500
|
otp: string;
|
|
17312
17501
|
realm: "sms" | "email";
|
|
17502
|
+
} | {
|
|
17503
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17504
|
+
subject_token: string;
|
|
17505
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17506
|
+
organization: string;
|
|
17507
|
+
audience?: string | undefined;
|
|
17508
|
+
scope?: string | undefined;
|
|
17509
|
+
client_id?: string | undefined;
|
|
17510
|
+
client_secret?: string | undefined;
|
|
17511
|
+
client_assertion?: string | undefined;
|
|
17512
|
+
client_assertion_type?: string | undefined;
|
|
17313
17513
|
};
|
|
17314
17514
|
} & {
|
|
17315
17515
|
json: {
|
|
@@ -17346,6 +17546,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17346
17546
|
username: string;
|
|
17347
17547
|
otp: string;
|
|
17348
17548
|
realm: "sms" | "email";
|
|
17549
|
+
} | {
|
|
17550
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17551
|
+
subject_token: string;
|
|
17552
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17553
|
+
organization: string;
|
|
17554
|
+
audience?: string | undefined;
|
|
17555
|
+
scope?: string | undefined;
|
|
17556
|
+
client_id?: string | undefined;
|
|
17557
|
+
client_secret?: string | undefined;
|
|
17558
|
+
client_assertion?: string | undefined;
|
|
17559
|
+
client_assertion_type?: string | undefined;
|
|
17349
17560
|
};
|
|
17350
17561
|
};
|
|
17351
17562
|
output: {
|
|
@@ -17390,6 +17601,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17390
17601
|
username: string;
|
|
17391
17602
|
otp: string;
|
|
17392
17603
|
realm: "sms" | "email";
|
|
17604
|
+
} | {
|
|
17605
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17606
|
+
subject_token: string;
|
|
17607
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17608
|
+
organization: string;
|
|
17609
|
+
audience?: string | undefined;
|
|
17610
|
+
scope?: string | undefined;
|
|
17611
|
+
client_id?: string | undefined;
|
|
17612
|
+
client_secret?: string | undefined;
|
|
17613
|
+
client_assertion?: string | undefined;
|
|
17614
|
+
client_assertion_type?: string | undefined;
|
|
17393
17615
|
};
|
|
17394
17616
|
} & {
|
|
17395
17617
|
json: {
|
|
@@ -17426,6 +17648,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17426
17648
|
username: string;
|
|
17427
17649
|
otp: string;
|
|
17428
17650
|
realm: "sms" | "email";
|
|
17651
|
+
} | {
|
|
17652
|
+
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
17653
|
+
subject_token: string;
|
|
17654
|
+
subject_token_type: "urn:ietf:params:oauth:token-type:access_token";
|
|
17655
|
+
organization: string;
|
|
17656
|
+
audience?: string | undefined;
|
|
17657
|
+
scope?: string | undefined;
|
|
17658
|
+
client_id?: string | undefined;
|
|
17659
|
+
client_secret?: string | undefined;
|
|
17660
|
+
client_assertion?: string | undefined;
|
|
17661
|
+
client_assertion_type?: string | undefined;
|
|
17429
17662
|
};
|
|
17430
17663
|
};
|
|
17431
17664
|
output: {
|
|
@@ -17443,8 +17676,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17443
17676
|
output: {
|
|
17444
17677
|
keys: {
|
|
17445
17678
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
17446
|
-
kid: string;
|
|
17447
17679
|
kty: "EC" | "RSA" | "oct";
|
|
17680
|
+
kid?: string | undefined;
|
|
17448
17681
|
use?: "sig" | "enc" | undefined;
|
|
17449
17682
|
n?: string | undefined;
|
|
17450
17683
|
e?: string | undefined;
|
|
@@ -18634,7 +18867,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18634
18867
|
$get: {
|
|
18635
18868
|
input: {
|
|
18636
18869
|
param: {
|
|
18637
|
-
screen: "signup" | "
|
|
18870
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18638
18871
|
};
|
|
18639
18872
|
} & {
|
|
18640
18873
|
query: {
|
|
@@ -18650,7 +18883,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18650
18883
|
} | {
|
|
18651
18884
|
input: {
|
|
18652
18885
|
param: {
|
|
18653
|
-
screen: "signup" | "
|
|
18886
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18654
18887
|
};
|
|
18655
18888
|
} & {
|
|
18656
18889
|
query: {
|
|
@@ -18666,7 +18899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18666
18899
|
} | {
|
|
18667
18900
|
input: {
|
|
18668
18901
|
param: {
|
|
18669
|
-
screen: "signup" | "
|
|
18902
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18670
18903
|
};
|
|
18671
18904
|
} & {
|
|
18672
18905
|
query: {
|
|
@@ -18686,7 +18919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18686
18919
|
$post: {
|
|
18687
18920
|
input: {
|
|
18688
18921
|
param: {
|
|
18689
|
-
screen: "signup" | "
|
|
18922
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18690
18923
|
};
|
|
18691
18924
|
} & {
|
|
18692
18925
|
query: {
|
|
@@ -18704,7 +18937,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18704
18937
|
} | {
|
|
18705
18938
|
input: {
|
|
18706
18939
|
param: {
|
|
18707
|
-
screen: "signup" | "
|
|
18940
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18708
18941
|
};
|
|
18709
18942
|
} & {
|
|
18710
18943
|
query: {
|
|
@@ -18722,7 +18955,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18722
18955
|
} | {
|
|
18723
18956
|
input: {
|
|
18724
18957
|
param: {
|
|
18725
|
-
screen: "signup" | "
|
|
18958
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
18726
18959
|
};
|
|
18727
18960
|
} & {
|
|
18728
18961
|
query: {
|
|
@@ -18820,5 +19053,5 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18820
19053
|
createX509Certificate: typeof createX509Certificate;
|
|
18821
19054
|
};
|
|
18822
19055
|
|
|
18823
|
-
export { AppLogo, AuthLayout, Button$1 as Button, Button as ButtonUI, CONTROL_PLANE_SYNC_EVENT_PREFIX, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Card as CardUI, ControlPlaneSyncDestination, EmailValidatedPage, EnterCodePage, EnterPasswordPage, ErrorMessage, Footer, ForgotPasswordPage, ForgotPasswordSentPage, FormComponent, GoBack, Google as GoogleLogo, Icon, IdentifierForm, IdentifierPage, Input as InputUI, InvalidSessionPage as InvalidSession, Label as LabelUI, Layout, LocalCodeExecutor, LogsDestination, MANAGEMENT_API_AUDIENCE, MANAGEMENT_API_SCOPES, MailgunEmailService, MessagePage as Message, PostmarkEmailService, PreSignUpConfirmationPage, PreSignupPage as PreSignUpPage, RegistrationFinalizerDestination, ResendEmailService, ResetPasswordPage, SignupPage as SignUpPage, SocialButton, Spinner, Trans, USERNAME_PASSWORD_PROVIDER, UnverifiedEmailPage, UserNotFound as UserNotFoundPage, VippsLogo, WebhookDestination, addEntityHooks, cleanupOutbox, cleanupSessions, cleanupUserSessions, clientInfoMiddleware, createApplySyncEvents, createAuthMiddleware, createDefaultDestinations, createEncryptedDataAdapter, createInMemoryCache, decryptField, deepMergePatch, drainOutbox, encryptField, fetchAll, init, injectTailwindCSS, isEncrypted, loadEncryptionKey, mailgunCredentialsSchema, postmarkCredentialsSchema, index_d as preDefinedHooks, resendCredentialsSchema, runOutboxRelay, seed, tailwindCss, tenantMiddleware, waitUntil };
|
|
18824
|
-
export type { AuthHeroConfig, ControlPlaneSyncDestinationOptions, CreateApplySyncEventsOptions, CreateDefaultDestinationsConfig, EnsureUsernameOptions, EntityHookContext, EntityHooks, EntityHooksConfig, EventDestination, FetchAllOptions, GetServiceToken, HookEvent, HookRequest, Hooks, InMemoryCacheConfig, MailgunCredentials, MailgunEmailServiceOptions, ManagementApiExtension, ManagementAudienceResolver, OnExecuteCredentialsExchange, OnExecuteCredentialsExchangeAPI, OnExecutePostLogin, OnExecutePostLoginAPI, OnExecutePostUserDeletion, OnExecutePostUserDeletionAPI, OnExecutePostUserRegistration, OnExecutePostUserRegistrationAPI, OnExecutePreUserDeletion, OnExecutePreUserDeletionAPI, OnExecutePreUserRegistration, OnExecutePreUserRegistrationAPI, OnExecutePreUserUpdate, OnExecutePreUserUpdateAPI, OnExecuteValidateRegistrationUsername, OnExecuteValidateRegistrationUsernameAPI, OnFetchUserInfo, OnFetchUserInfoAPI, OutboxCleanupParams, OutboxConfig, PostmarkCredentials, PostmarkEmailServiceOptions, ResendCredentials, ResendEmailServiceOptions, RolePermissionHooks, RunOutboxRelayConfig, SeedOptions, SeedResult, SigningKeyMode, SigningKeyModeOption, SigningKeyModeResolver, SyncEntity, SyncEvent, SyncOp, TokenAPI, Transaction, UserInfoEvent, UserLinkingMode, UserLinkingModeOption, UserLinkingModeResolver, UserSessionCleanupParams, UsernamePasswordProviderResolver, WebhookDestinationOptions, WebhookInvoker, WebhookInvokerParams };
|
|
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 };
|