authhero 8.1.0 → 8.2.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/authhero.cjs +215 -215
- package/dist/authhero.d.ts +111 -79
- package/dist/authhero.mjs +9829 -9731
- package/dist/{passkey-enrollment-Dw1ObR65.mjs → passkey-enrollment-Ba_8I87G.mjs} +1 -5
- package/dist/passkey-enrollment-CB7HjMH_.js +1 -0
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +18 -10
- package/dist/types/authentication-flows/connection.d.ts +2 -2
- package/dist/types/helpers/compose-auth-data.d.ts +9 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/server-timing.d.ts +44 -2
- package/dist/types/index.d.ts +75 -75
- package/dist/types/middlewares/tenant.d.ts +11 -4
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +6 -6
- package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
- package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +63 -63
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/Bindings.d.ts +21 -0
- package/dist/types/types/IdToken.d.ts +2 -2
- package/dist/types/types/Variables.d.ts +4 -0
- package/package.json +1 -1
- package/dist/passkey-enrollment-DKWsGt-K.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -61,6 +61,10 @@ type Variables = {
|
|
|
61
61
|
backgroundPromises?: Promise<void>[];
|
|
62
62
|
client_authenticated_via_assertion?: boolean;
|
|
63
63
|
action_execution_id?: string;
|
|
64
|
+
serverTiming?: {
|
|
65
|
+
name: string;
|
|
66
|
+
dur: number;
|
|
67
|
+
}[];
|
|
64
68
|
is_lazy_migration?: boolean;
|
|
65
69
|
};
|
|
66
70
|
|
|
@@ -1454,6 +1458,27 @@ type Bindings = {
|
|
|
1454
1458
|
* leave unset (or false) in production so SSRF protection stays on.
|
|
1455
1459
|
*/
|
|
1456
1460
|
ALLOW_PRIVATE_OUTBOUND_FETCH?: boolean;
|
|
1461
|
+
/**
|
|
1462
|
+
* Controls where Server-Timing instrumentation goes. The data/cache adapters
|
|
1463
|
+
* and the webhook hook always measure per-operation latency; this decides the
|
|
1464
|
+
* sink:
|
|
1465
|
+
* - "off" (default / unset): measurements are dropped — no header, no log.
|
|
1466
|
+
* - "client": emit the `Server-Timing` response header (optionally gated to
|
|
1467
|
+
* SERVER_TIMING_IPS).
|
|
1468
|
+
* - "log": write a structured server-side log line; never sent to the client.
|
|
1469
|
+
* - "both": do both.
|
|
1470
|
+
* Off by default so per-operation timings — a user-enumeration / side-channel
|
|
1471
|
+
* surface on the public auth endpoints — are never exposed to anonymous
|
|
1472
|
+
* callers in production. See helpers/server-timing.ts.
|
|
1473
|
+
*/
|
|
1474
|
+
SERVER_TIMING?: "off" | "client" | "log" | "both";
|
|
1475
|
+
/**
|
|
1476
|
+
* Optional comma-separated allowlist of client IPs (exact match against the
|
|
1477
|
+
* resolved `ip` var). When set, the "client" sink only attaches the
|
|
1478
|
+
* Server-Timing header for matching callers; the "log" sink is unaffected.
|
|
1479
|
+
* Use this to expose timings to your own IP without leaking them publicly.
|
|
1480
|
+
*/
|
|
1481
|
+
SERVER_TIMING_IPS?: string;
|
|
1457
1482
|
};
|
|
1458
1483
|
|
|
1459
1484
|
/**
|
|
@@ -2397,10 +2422,17 @@ interface SeedResult {
|
|
|
2397
2422
|
declare function seed(adapters: DataAdapters, options: SeedOptions): Promise<SeedResult>;
|
|
2398
2423
|
|
|
2399
2424
|
/**
|
|
2400
|
-
* Sets the tenant id in the context based on the url and headers
|
|
2401
|
-
*
|
|
2402
|
-
*
|
|
2403
|
-
*
|
|
2425
|
+
* Sets the tenant id in the context based on the url and headers.
|
|
2426
|
+
*
|
|
2427
|
+
* Resolution order:
|
|
2428
|
+
* 1. Authenticated user's tenant
|
|
2429
|
+
* 2. `tenant-id` header (API calls)
|
|
2430
|
+
* 3. Tenant subdomain of the ISSUER apex — `{tenant_id}.{issuerHost}` carries
|
|
2431
|
+
* the tenant id in the host itself, zero lookups
|
|
2432
|
+
* 4. Custom domain lookup (hosts outside the ISSUER apex)
|
|
2433
|
+
* 5. `tenant_id` query param (enrollment ticket URLs)
|
|
2434
|
+
* 6. Single-tenant auto-detect (skipped for state-keyed routes and for
|
|
2435
|
+
* /authorize with a registered client_id)
|
|
2404
2436
|
*/
|
|
2405
2437
|
declare function tenantMiddleware(ctx: Context<{
|
|
2406
2438
|
Bindings: Bindings;
|
|
@@ -2864,7 +2896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2864
2896
|
};
|
|
2865
2897
|
};
|
|
2866
2898
|
output: {
|
|
2867
|
-
name: "
|
|
2899
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2868
2900
|
enabled: boolean;
|
|
2869
2901
|
trial_expired?: boolean | undefined;
|
|
2870
2902
|
}[];
|
|
@@ -3019,7 +3051,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3019
3051
|
$get: {
|
|
3020
3052
|
input: {
|
|
3021
3053
|
param: {
|
|
3022
|
-
factor_name: "
|
|
3054
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3023
3055
|
};
|
|
3024
3056
|
} & {
|
|
3025
3057
|
header: {
|
|
@@ -3027,7 +3059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3027
3059
|
};
|
|
3028
3060
|
};
|
|
3029
3061
|
output: {
|
|
3030
|
-
name: "
|
|
3062
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3031
3063
|
enabled: boolean;
|
|
3032
3064
|
trial_expired?: boolean | undefined;
|
|
3033
3065
|
};
|
|
@@ -3040,7 +3072,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3040
3072
|
$put: {
|
|
3041
3073
|
input: {
|
|
3042
3074
|
param: {
|
|
3043
|
-
factor_name: "
|
|
3075
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3044
3076
|
};
|
|
3045
3077
|
} & {
|
|
3046
3078
|
header: {
|
|
@@ -3052,7 +3084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3052
3084
|
};
|
|
3053
3085
|
};
|
|
3054
3086
|
output: {
|
|
3055
|
-
name: "
|
|
3087
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3056
3088
|
enabled: boolean;
|
|
3057
3089
|
trial_expired?: boolean | undefined;
|
|
3058
3090
|
};
|
|
@@ -3797,10 +3829,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3797
3829
|
invitee: {
|
|
3798
3830
|
email?: string | undefined;
|
|
3799
3831
|
};
|
|
3800
|
-
app_metadata?: Record<string, any> | undefined;
|
|
3801
|
-
user_metadata?: Record<string, any> | undefined;
|
|
3802
3832
|
id?: string | undefined;
|
|
3803
3833
|
connection_id?: string | undefined;
|
|
3834
|
+
app_metadata?: Record<string, any> | undefined;
|
|
3835
|
+
user_metadata?: Record<string, any> | undefined;
|
|
3804
3836
|
roles?: string[] | undefined;
|
|
3805
3837
|
ttl_sec?: number | undefined;
|
|
3806
3838
|
send_invitation_email?: boolean | undefined;
|
|
@@ -3985,8 +4017,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3985
4017
|
};
|
|
3986
4018
|
} & {
|
|
3987
4019
|
json: {
|
|
3988
|
-
show_as_button?: boolean | undefined;
|
|
3989
4020
|
assign_membership_on_login?: boolean | undefined;
|
|
4021
|
+
show_as_button?: boolean | undefined;
|
|
3990
4022
|
is_signup_enabled?: boolean | undefined;
|
|
3991
4023
|
};
|
|
3992
4024
|
};
|
|
@@ -4652,7 +4684,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4652
4684
|
type: "REDIRECT";
|
|
4653
4685
|
action: "REDIRECT_USER";
|
|
4654
4686
|
params: {
|
|
4655
|
-
target: "custom" | "
|
|
4687
|
+
target: "custom" | "change-email" | "account";
|
|
4656
4688
|
custom_url?: string | undefined;
|
|
4657
4689
|
};
|
|
4658
4690
|
alias?: string | undefined;
|
|
@@ -4705,7 +4737,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4705
4737
|
type: "REDIRECT";
|
|
4706
4738
|
action: "REDIRECT_USER";
|
|
4707
4739
|
params: {
|
|
4708
|
-
target: "custom" | "
|
|
4740
|
+
target: "custom" | "change-email" | "account";
|
|
4709
4741
|
custom_url?: string | undefined;
|
|
4710
4742
|
};
|
|
4711
4743
|
alias?: string | undefined;
|
|
@@ -4773,7 +4805,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4773
4805
|
type: "REDIRECT";
|
|
4774
4806
|
action: "REDIRECT_USER";
|
|
4775
4807
|
params: {
|
|
4776
|
-
target: "custom" | "
|
|
4808
|
+
target: "custom" | "change-email" | "account";
|
|
4777
4809
|
custom_url?: string | undefined;
|
|
4778
4810
|
};
|
|
4779
4811
|
alias?: string | undefined;
|
|
@@ -4854,7 +4886,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4854
4886
|
type: "REDIRECT";
|
|
4855
4887
|
action: "REDIRECT_USER";
|
|
4856
4888
|
params: {
|
|
4857
|
-
target: "custom" | "
|
|
4889
|
+
target: "custom" | "change-email" | "account";
|
|
4858
4890
|
custom_url?: string | undefined;
|
|
4859
4891
|
};
|
|
4860
4892
|
alias?: string | undefined;
|
|
@@ -4902,7 +4934,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4902
4934
|
type: "REDIRECT";
|
|
4903
4935
|
action: "REDIRECT_USER";
|
|
4904
4936
|
params: {
|
|
4905
|
-
target: "custom" | "
|
|
4937
|
+
target: "custom" | "change-email" | "account";
|
|
4906
4938
|
custom_url?: string | undefined;
|
|
4907
4939
|
};
|
|
4908
4940
|
alias?: string | undefined;
|
|
@@ -4962,7 +4994,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4962
4994
|
type: "REDIRECT";
|
|
4963
4995
|
action: "REDIRECT_USER";
|
|
4964
4996
|
params: {
|
|
4965
|
-
target: "custom" | "
|
|
4997
|
+
target: "custom" | "change-email" | "account";
|
|
4966
4998
|
custom_url?: string | undefined;
|
|
4967
4999
|
};
|
|
4968
5000
|
alias?: string | undefined;
|
|
@@ -5010,7 +5042,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5010
5042
|
type: "REDIRECT";
|
|
5011
5043
|
action: "REDIRECT_USER";
|
|
5012
5044
|
params: {
|
|
5013
|
-
target: "custom" | "
|
|
5045
|
+
target: "custom" | "change-email" | "account";
|
|
5014
5046
|
custom_url?: string | undefined;
|
|
5015
5047
|
};
|
|
5016
5048
|
alias?: string | undefined;
|
|
@@ -9288,7 +9320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9288
9320
|
};
|
|
9289
9321
|
};
|
|
9290
9322
|
output: {
|
|
9291
|
-
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "
|
|
9323
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9292
9324
|
language: string;
|
|
9293
9325
|
}[];
|
|
9294
9326
|
outputFormat: "json";
|
|
@@ -9326,7 +9358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9326
9358
|
$get: {
|
|
9327
9359
|
input: {
|
|
9328
9360
|
param: {
|
|
9329
|
-
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "
|
|
9361
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9330
9362
|
language: string;
|
|
9331
9363
|
};
|
|
9332
9364
|
} & {
|
|
@@ -9348,7 +9380,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9348
9380
|
$put: {
|
|
9349
9381
|
input: {
|
|
9350
9382
|
param: {
|
|
9351
|
-
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "
|
|
9383
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9352
9384
|
language: string;
|
|
9353
9385
|
};
|
|
9354
9386
|
} & {
|
|
@@ -9372,7 +9404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9372
9404
|
$delete: {
|
|
9373
9405
|
input: {
|
|
9374
9406
|
param: {
|
|
9375
|
-
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "
|
|
9407
|
+
prompt: "login" | "mfa" | "organizations" | "status" | "signup" | "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";
|
|
9376
9408
|
language: string;
|
|
9377
9409
|
};
|
|
9378
9410
|
} & {
|
|
@@ -11181,7 +11213,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11181
11213
|
created_at: string;
|
|
11182
11214
|
updated_at: string;
|
|
11183
11215
|
name: string;
|
|
11184
|
-
provider: "auth0" | "
|
|
11216
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11185
11217
|
connection: string;
|
|
11186
11218
|
enabled: boolean;
|
|
11187
11219
|
credentials: {
|
|
@@ -11213,7 +11245,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11213
11245
|
created_at: string;
|
|
11214
11246
|
updated_at: string;
|
|
11215
11247
|
name: string;
|
|
11216
|
-
provider: "auth0" | "
|
|
11248
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11217
11249
|
connection: string;
|
|
11218
11250
|
enabled: boolean;
|
|
11219
11251
|
credentials: {
|
|
@@ -11239,7 +11271,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11239
11271
|
} & {
|
|
11240
11272
|
json: {
|
|
11241
11273
|
name: string;
|
|
11242
|
-
provider: "auth0" | "
|
|
11274
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11243
11275
|
connection: string;
|
|
11244
11276
|
credentials: {
|
|
11245
11277
|
domain: string;
|
|
@@ -11256,7 +11288,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11256
11288
|
created_at: string;
|
|
11257
11289
|
updated_at: string;
|
|
11258
11290
|
name: string;
|
|
11259
|
-
provider: "auth0" | "
|
|
11291
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11260
11292
|
connection: string;
|
|
11261
11293
|
enabled: boolean;
|
|
11262
11294
|
credentials: {
|
|
@@ -11287,7 +11319,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11287
11319
|
json: {
|
|
11288
11320
|
id?: string | undefined;
|
|
11289
11321
|
name?: string | undefined;
|
|
11290
|
-
provider?: "auth0" | "
|
|
11322
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
11291
11323
|
connection?: string | undefined;
|
|
11292
11324
|
enabled?: boolean | undefined;
|
|
11293
11325
|
credentials?: {
|
|
@@ -11303,7 +11335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11303
11335
|
created_at: string;
|
|
11304
11336
|
updated_at: string;
|
|
11305
11337
|
name: string;
|
|
11306
|
-
provider: "auth0" | "
|
|
11338
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11307
11339
|
connection: string;
|
|
11308
11340
|
enabled: boolean;
|
|
11309
11341
|
credentials: {
|
|
@@ -11351,7 +11383,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11351
11383
|
[x: string]: hono_utils_types.JSONValue;
|
|
11352
11384
|
};
|
|
11353
11385
|
id: string;
|
|
11354
|
-
status: "
|
|
11386
|
+
status: "suspended" | "active" | "paused";
|
|
11355
11387
|
filters?: {
|
|
11356
11388
|
type: string;
|
|
11357
11389
|
name: string;
|
|
@@ -11383,7 +11415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11383
11415
|
[x: string]: hono_utils_types.JSONValue;
|
|
11384
11416
|
};
|
|
11385
11417
|
id: string;
|
|
11386
|
-
status: "
|
|
11418
|
+
status: "suspended" | "active" | "paused";
|
|
11387
11419
|
filters?: {
|
|
11388
11420
|
type: string;
|
|
11389
11421
|
name: string;
|
|
@@ -11408,7 +11440,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11408
11440
|
name: string;
|
|
11409
11441
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
11410
11442
|
sink: Record<string, unknown>;
|
|
11411
|
-
status?: "
|
|
11443
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11412
11444
|
filters?: {
|
|
11413
11445
|
type: string;
|
|
11414
11446
|
name: string;
|
|
@@ -11423,7 +11455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11423
11455
|
[x: string]: hono_utils_types.JSONValue;
|
|
11424
11456
|
};
|
|
11425
11457
|
id: string;
|
|
11426
|
-
status: "
|
|
11458
|
+
status: "suspended" | "active" | "paused";
|
|
11427
11459
|
filters?: {
|
|
11428
11460
|
type: string;
|
|
11429
11461
|
name: string;
|
|
@@ -11458,7 +11490,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11458
11490
|
}[] | undefined;
|
|
11459
11491
|
isPriority?: boolean | undefined;
|
|
11460
11492
|
id?: string | undefined;
|
|
11461
|
-
status?: "
|
|
11493
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11462
11494
|
created_at?: string | undefined;
|
|
11463
11495
|
updated_at?: string | undefined;
|
|
11464
11496
|
};
|
|
@@ -11470,7 +11502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11470
11502
|
[x: string]: hono_utils_types.JSONValue;
|
|
11471
11503
|
};
|
|
11472
11504
|
id: string;
|
|
11473
|
-
status: "
|
|
11505
|
+
status: "suspended" | "active" | "paused";
|
|
11474
11506
|
filters?: {
|
|
11475
11507
|
type: string;
|
|
11476
11508
|
name: string;
|
|
@@ -11521,7 +11553,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11521
11553
|
};
|
|
11522
11554
|
};
|
|
11523
11555
|
output: {
|
|
11524
|
-
type: "
|
|
11556
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11525
11557
|
date: string;
|
|
11526
11558
|
isMobile: boolean;
|
|
11527
11559
|
log_id: string;
|
|
@@ -11560,7 +11592,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11560
11592
|
limit: number;
|
|
11561
11593
|
length: number;
|
|
11562
11594
|
logs: {
|
|
11563
|
-
type: "
|
|
11595
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11564
11596
|
date: string;
|
|
11565
11597
|
isMobile: boolean;
|
|
11566
11598
|
log_id: string;
|
|
@@ -11614,7 +11646,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11614
11646
|
};
|
|
11615
11647
|
};
|
|
11616
11648
|
output: {
|
|
11617
|
-
type: "
|
|
11649
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
11618
11650
|
date: string;
|
|
11619
11651
|
isMobile: boolean;
|
|
11620
11652
|
log_id: string;
|
|
@@ -11769,7 +11801,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11769
11801
|
audience?: string | undefined;
|
|
11770
11802
|
client_id?: string | undefined;
|
|
11771
11803
|
allow_any_organization?: string | undefined;
|
|
11772
|
-
subject_type?: "
|
|
11804
|
+
subject_type?: "client" | "user" | undefined;
|
|
11773
11805
|
};
|
|
11774
11806
|
} & {
|
|
11775
11807
|
header: {
|
|
@@ -11784,7 +11816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11784
11816
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11785
11817
|
allow_any_organization?: boolean | undefined;
|
|
11786
11818
|
is_system?: boolean | undefined;
|
|
11787
|
-
subject_type?: "
|
|
11819
|
+
subject_type?: "client" | "user" | undefined;
|
|
11788
11820
|
authorization_details_types?: string[] | undefined;
|
|
11789
11821
|
created_at?: string | undefined;
|
|
11790
11822
|
updated_at?: string | undefined;
|
|
@@ -11800,7 +11832,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11800
11832
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11801
11833
|
allow_any_organization?: boolean | undefined;
|
|
11802
11834
|
is_system?: boolean | undefined;
|
|
11803
|
-
subject_type?: "
|
|
11835
|
+
subject_type?: "client" | "user" | undefined;
|
|
11804
11836
|
authorization_details_types?: string[] | undefined;
|
|
11805
11837
|
created_at?: string | undefined;
|
|
11806
11838
|
updated_at?: string | undefined;
|
|
@@ -11831,7 +11863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11831
11863
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11832
11864
|
allow_any_organization?: boolean | undefined;
|
|
11833
11865
|
is_system?: boolean | undefined;
|
|
11834
|
-
subject_type?: "
|
|
11866
|
+
subject_type?: "client" | "user" | undefined;
|
|
11835
11867
|
authorization_details_types?: string[] | undefined;
|
|
11836
11868
|
created_at?: string | undefined;
|
|
11837
11869
|
updated_at?: string | undefined;
|
|
@@ -11876,7 +11908,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11876
11908
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11877
11909
|
allow_any_organization?: boolean | undefined;
|
|
11878
11910
|
is_system?: boolean | undefined;
|
|
11879
|
-
subject_type?: "
|
|
11911
|
+
subject_type?: "client" | "user" | undefined;
|
|
11880
11912
|
authorization_details_types?: string[] | undefined;
|
|
11881
11913
|
};
|
|
11882
11914
|
};
|
|
@@ -11888,7 +11920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11888
11920
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11889
11921
|
allow_any_organization?: boolean | undefined;
|
|
11890
11922
|
is_system?: boolean | undefined;
|
|
11891
|
-
subject_type?: "
|
|
11923
|
+
subject_type?: "client" | "user" | undefined;
|
|
11892
11924
|
authorization_details_types?: string[] | undefined;
|
|
11893
11925
|
created_at?: string | undefined;
|
|
11894
11926
|
updated_at?: string | undefined;
|
|
@@ -11912,7 +11944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11912
11944
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11913
11945
|
allow_any_organization?: boolean | undefined;
|
|
11914
11946
|
is_system?: boolean | undefined;
|
|
11915
|
-
subject_type?: "
|
|
11947
|
+
subject_type?: "client" | "user" | undefined;
|
|
11916
11948
|
authorization_details_types?: string[] | undefined;
|
|
11917
11949
|
};
|
|
11918
11950
|
};
|
|
@@ -11924,7 +11956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11924
11956
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11925
11957
|
allow_any_organization?: boolean | undefined;
|
|
11926
11958
|
is_system?: boolean | undefined;
|
|
11927
|
-
subject_type?: "
|
|
11959
|
+
subject_type?: "client" | "user" | undefined;
|
|
11928
11960
|
authorization_details_types?: string[] | undefined;
|
|
11929
11961
|
created_at?: string | undefined;
|
|
11930
11962
|
updated_at?: string | undefined;
|
|
@@ -13832,7 +13864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13832
13864
|
};
|
|
13833
13865
|
};
|
|
13834
13866
|
output: {
|
|
13835
|
-
type: "
|
|
13867
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
13836
13868
|
date: string;
|
|
13837
13869
|
isMobile: boolean;
|
|
13838
13870
|
log_id: string;
|
|
@@ -13871,7 +13903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13871
13903
|
limit: number;
|
|
13872
13904
|
length: number;
|
|
13873
13905
|
logs: {
|
|
13874
|
-
type: "
|
|
13906
|
+
type: "s" | "w" | "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "wn" | "wum";
|
|
13875
13907
|
date: string;
|
|
13876
13908
|
isMobile: boolean;
|
|
13877
13909
|
log_id: string;
|
|
@@ -14186,7 +14218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14186
14218
|
};
|
|
14187
14219
|
} & {
|
|
14188
14220
|
json: {
|
|
14189
|
-
template: "
|
|
14221
|
+
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
14222
|
body: string;
|
|
14191
14223
|
from: string;
|
|
14192
14224
|
subject: string;
|
|
@@ -14207,7 +14239,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14207
14239
|
};
|
|
14208
14240
|
} & {
|
|
14209
14241
|
json: {
|
|
14210
|
-
template: "
|
|
14242
|
+
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";
|
|
14211
14243
|
body: string;
|
|
14212
14244
|
from: string;
|
|
14213
14245
|
subject: string;
|
|
@@ -14219,7 +14251,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14219
14251
|
};
|
|
14220
14252
|
};
|
|
14221
14253
|
output: {
|
|
14222
|
-
template: "
|
|
14254
|
+
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";
|
|
14223
14255
|
body: string;
|
|
14224
14256
|
from: string;
|
|
14225
14257
|
subject: string;
|
|
@@ -14242,7 +14274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14242
14274
|
};
|
|
14243
14275
|
};
|
|
14244
14276
|
output: {
|
|
14245
|
-
name: "
|
|
14277
|
+
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";
|
|
14246
14278
|
body: string;
|
|
14247
14279
|
subject: string;
|
|
14248
14280
|
}[];
|
|
@@ -14255,7 +14287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14255
14287
|
$get: {
|
|
14256
14288
|
input: {
|
|
14257
14289
|
param: {
|
|
14258
|
-
templateName: "
|
|
14290
|
+
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";
|
|
14259
14291
|
};
|
|
14260
14292
|
} & {
|
|
14261
14293
|
header: {
|
|
@@ -14268,7 +14300,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14268
14300
|
} | {
|
|
14269
14301
|
input: {
|
|
14270
14302
|
param: {
|
|
14271
|
-
templateName: "
|
|
14303
|
+
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";
|
|
14272
14304
|
};
|
|
14273
14305
|
} & {
|
|
14274
14306
|
header: {
|
|
@@ -14276,7 +14308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14276
14308
|
};
|
|
14277
14309
|
};
|
|
14278
14310
|
output: {
|
|
14279
|
-
template: "
|
|
14311
|
+
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";
|
|
14280
14312
|
body: string;
|
|
14281
14313
|
from: string;
|
|
14282
14314
|
subject: string;
|
|
@@ -14295,7 +14327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14295
14327
|
$put: {
|
|
14296
14328
|
input: {
|
|
14297
14329
|
param: {
|
|
14298
|
-
templateName: "
|
|
14330
|
+
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";
|
|
14299
14331
|
};
|
|
14300
14332
|
} & {
|
|
14301
14333
|
header: {
|
|
@@ -14303,7 +14335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14303
14335
|
};
|
|
14304
14336
|
} & {
|
|
14305
14337
|
json: {
|
|
14306
|
-
template: "
|
|
14338
|
+
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";
|
|
14307
14339
|
body: string;
|
|
14308
14340
|
subject: string;
|
|
14309
14341
|
syntax?: "liquid" | undefined;
|
|
@@ -14315,7 +14347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14315
14347
|
};
|
|
14316
14348
|
};
|
|
14317
14349
|
output: {
|
|
14318
|
-
template: "
|
|
14350
|
+
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";
|
|
14319
14351
|
body: string;
|
|
14320
14352
|
from: string;
|
|
14321
14353
|
subject: string;
|
|
@@ -14334,7 +14366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14334
14366
|
$patch: {
|
|
14335
14367
|
input: {
|
|
14336
14368
|
param: {
|
|
14337
|
-
templateName: "
|
|
14369
|
+
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";
|
|
14338
14370
|
};
|
|
14339
14371
|
} & {
|
|
14340
14372
|
header: {
|
|
@@ -14342,7 +14374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14342
14374
|
};
|
|
14343
14375
|
} & {
|
|
14344
14376
|
json: {
|
|
14345
|
-
template?: "
|
|
14377
|
+
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;
|
|
14346
14378
|
body?: string | undefined;
|
|
14347
14379
|
from?: string | undefined;
|
|
14348
14380
|
subject?: string | undefined;
|
|
@@ -14359,7 +14391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14359
14391
|
} | {
|
|
14360
14392
|
input: {
|
|
14361
14393
|
param: {
|
|
14362
|
-
templateName: "
|
|
14394
|
+
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";
|
|
14363
14395
|
};
|
|
14364
14396
|
} & {
|
|
14365
14397
|
header: {
|
|
@@ -14367,7 +14399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14367
14399
|
};
|
|
14368
14400
|
} & {
|
|
14369
14401
|
json: {
|
|
14370
|
-
template?: "
|
|
14402
|
+
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;
|
|
14371
14403
|
body?: string | undefined;
|
|
14372
14404
|
from?: string | undefined;
|
|
14373
14405
|
subject?: string | undefined;
|
|
@@ -14379,7 +14411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14379
14411
|
};
|
|
14380
14412
|
};
|
|
14381
14413
|
output: {
|
|
14382
|
-
template: "
|
|
14414
|
+
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";
|
|
14383
14415
|
body: string;
|
|
14384
14416
|
from: string;
|
|
14385
14417
|
subject: string;
|
|
@@ -14398,7 +14430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14398
14430
|
$delete: {
|
|
14399
14431
|
input: {
|
|
14400
14432
|
param: {
|
|
14401
|
-
templateName: "
|
|
14433
|
+
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";
|
|
14402
14434
|
};
|
|
14403
14435
|
} & {
|
|
14404
14436
|
header: {
|
|
@@ -14411,7 +14443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14411
14443
|
} | {
|
|
14412
14444
|
input: {
|
|
14413
14445
|
param: {
|
|
14414
|
-
templateName: "
|
|
14446
|
+
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";
|
|
14415
14447
|
};
|
|
14416
14448
|
} & {
|
|
14417
14449
|
header: {
|
|
@@ -14428,7 +14460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14428
14460
|
$post: {
|
|
14429
14461
|
input: {
|
|
14430
14462
|
param: {
|
|
14431
|
-
templateName: "
|
|
14463
|
+
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";
|
|
14432
14464
|
};
|
|
14433
14465
|
} & {
|
|
14434
14466
|
header: {
|
|
@@ -15435,7 +15467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15435
15467
|
json: {
|
|
15436
15468
|
bindings: {
|
|
15437
15469
|
ref: {
|
|
15438
|
-
type?: "
|
|
15470
|
+
type?: "action_id" | "action_name" | undefined;
|
|
15439
15471
|
value?: string | undefined;
|
|
15440
15472
|
id?: string | undefined;
|
|
15441
15473
|
name?: string | undefined;
|
|
@@ -16668,7 +16700,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16668
16700
|
client_id: string;
|
|
16669
16701
|
redirect_url?: string | undefined;
|
|
16670
16702
|
login_hint?: string | undefined;
|
|
16671
|
-
screen_hint?: "
|
|
16703
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16672
16704
|
};
|
|
16673
16705
|
};
|
|
16674
16706
|
output: {};
|
|
@@ -16680,7 +16712,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16680
16712
|
client_id: string;
|
|
16681
16713
|
redirect_url?: string | undefined;
|
|
16682
16714
|
login_hint?: string | undefined;
|
|
16683
|
-
screen_hint?: "
|
|
16715
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16684
16716
|
};
|
|
16685
16717
|
};
|
|
16686
16718
|
output: {
|
|
@@ -16957,9 +16989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16957
16989
|
email: string;
|
|
16958
16990
|
send: "code" | "link";
|
|
16959
16991
|
authParams: {
|
|
16960
|
-
username?: string | undefined;
|
|
16961
16992
|
state?: string | undefined;
|
|
16962
|
-
scope?: string | undefined;
|
|
16963
16993
|
code_challenge?: string | undefined;
|
|
16964
16994
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16965
16995
|
redirect_uri?: string | undefined;
|
|
@@ -16969,7 +16999,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16969
16999
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16970
17000
|
audience?: string | undefined;
|
|
16971
17001
|
organization?: string | undefined;
|
|
17002
|
+
scope?: string | undefined;
|
|
16972
17003
|
prompt?: string | undefined;
|
|
17004
|
+
username?: string | undefined;
|
|
16973
17005
|
ui_locales?: string | undefined;
|
|
16974
17006
|
max_age?: number | undefined;
|
|
16975
17007
|
acr_values?: string | undefined;
|
|
@@ -16993,9 +17025,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16993
17025
|
phone_number: string;
|
|
16994
17026
|
send: "code" | "link";
|
|
16995
17027
|
authParams: {
|
|
16996
|
-
username?: string | undefined;
|
|
16997
17028
|
state?: string | undefined;
|
|
16998
|
-
scope?: string | undefined;
|
|
16999
17029
|
code_challenge?: string | undefined;
|
|
17000
17030
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17001
17031
|
redirect_uri?: string | undefined;
|
|
@@ -17005,7 +17035,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17005
17035
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17006
17036
|
audience?: string | undefined;
|
|
17007
17037
|
organization?: string | undefined;
|
|
17038
|
+
scope?: string | undefined;
|
|
17008
17039
|
prompt?: string | undefined;
|
|
17040
|
+
username?: string | undefined;
|
|
17009
17041
|
ui_locales?: string | undefined;
|
|
17010
17042
|
max_age?: number | undefined;
|
|
17011
17043
|
acr_values?: string | undefined;
|
|
@@ -18912,7 +18944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18912
18944
|
$get: {
|
|
18913
18945
|
input: {
|
|
18914
18946
|
param: {
|
|
18915
|
-
screen: "
|
|
18947
|
+
screen: "login" | "signup" | "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";
|
|
18916
18948
|
};
|
|
18917
18949
|
} & {
|
|
18918
18950
|
query: {
|
|
@@ -18928,7 +18960,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18928
18960
|
} | {
|
|
18929
18961
|
input: {
|
|
18930
18962
|
param: {
|
|
18931
|
-
screen: "
|
|
18963
|
+
screen: "login" | "signup" | "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";
|
|
18932
18964
|
};
|
|
18933
18965
|
} & {
|
|
18934
18966
|
query: {
|
|
@@ -18944,7 +18976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18944
18976
|
} | {
|
|
18945
18977
|
input: {
|
|
18946
18978
|
param: {
|
|
18947
|
-
screen: "
|
|
18979
|
+
screen: "login" | "signup" | "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";
|
|
18948
18980
|
};
|
|
18949
18981
|
} & {
|
|
18950
18982
|
query: {
|
|
@@ -18964,7 +18996,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18964
18996
|
$post: {
|
|
18965
18997
|
input: {
|
|
18966
18998
|
param: {
|
|
18967
|
-
screen: "
|
|
18999
|
+
screen: "login" | "signup" | "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";
|
|
18968
19000
|
};
|
|
18969
19001
|
} & {
|
|
18970
19002
|
query: {
|
|
@@ -18982,7 +19014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18982
19014
|
} | {
|
|
18983
19015
|
input: {
|
|
18984
19016
|
param: {
|
|
18985
|
-
screen: "
|
|
19017
|
+
screen: "login" | "signup" | "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";
|
|
18986
19018
|
};
|
|
18987
19019
|
} & {
|
|
18988
19020
|
query: {
|
|
@@ -19000,7 +19032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19000
19032
|
} | {
|
|
19001
19033
|
input: {
|
|
19002
19034
|
param: {
|
|
19003
|
-
screen: "
|
|
19035
|
+
screen: "login" | "signup" | "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";
|
|
19004
19036
|
};
|
|
19005
19037
|
} & {
|
|
19006
19038
|
query: {
|