authhero 8.2.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 +96 -96
- package/dist/authhero.d.ts +111 -86
- package/dist/authhero.mjs +9464 -9394
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/helpers/compose-auth-data.d.ts +9 -1
- package/dist/types/helpers/server-timing.d.ts +44 -2
- package/dist/types/index.d.ts +86 -86
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/management-api/actions.d.ts +3 -3
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +64 -64
- 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 +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/Bindings.d.ts +21 -0
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/types/Variables.d.ts +4 -0
- package/package.json +3 -3
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
|
/**
|
|
@@ -2731,7 +2756,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2731
2756
|
};
|
|
2732
2757
|
} & {
|
|
2733
2758
|
json: {
|
|
2734
|
-
type: "email" | "
|
|
2759
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
2735
2760
|
phone_number?: string | undefined;
|
|
2736
2761
|
totp_secret?: string | undefined;
|
|
2737
2762
|
credential_id?: string | undefined;
|
|
@@ -2871,7 +2896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2871
2896
|
};
|
|
2872
2897
|
};
|
|
2873
2898
|
output: {
|
|
2874
|
-
name: "
|
|
2899
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2875
2900
|
enabled: boolean;
|
|
2876
2901
|
trial_expired?: boolean | undefined;
|
|
2877
2902
|
}[];
|
|
@@ -3026,7 +3051,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3026
3051
|
$get: {
|
|
3027
3052
|
input: {
|
|
3028
3053
|
param: {
|
|
3029
|
-
factor_name: "
|
|
3054
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3030
3055
|
};
|
|
3031
3056
|
} & {
|
|
3032
3057
|
header: {
|
|
@@ -3034,7 +3059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3034
3059
|
};
|
|
3035
3060
|
};
|
|
3036
3061
|
output: {
|
|
3037
|
-
name: "
|
|
3062
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3038
3063
|
enabled: boolean;
|
|
3039
3064
|
trial_expired?: boolean | undefined;
|
|
3040
3065
|
};
|
|
@@ -3047,7 +3072,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3047
3072
|
$put: {
|
|
3048
3073
|
input: {
|
|
3049
3074
|
param: {
|
|
3050
|
-
factor_name: "
|
|
3075
|
+
factor_name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3051
3076
|
};
|
|
3052
3077
|
} & {
|
|
3053
3078
|
header: {
|
|
@@ -3059,7 +3084,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3059
3084
|
};
|
|
3060
3085
|
};
|
|
3061
3086
|
output: {
|
|
3062
|
-
name: "
|
|
3087
|
+
name: "otp" | "email" | "sms" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3063
3088
|
enabled: boolean;
|
|
3064
3089
|
trial_expired?: boolean | undefined;
|
|
3065
3090
|
};
|
|
@@ -3805,9 +3830,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3805
3830
|
email?: string | undefined;
|
|
3806
3831
|
};
|
|
3807
3832
|
id?: string | undefined;
|
|
3833
|
+
connection_id?: string | undefined;
|
|
3808
3834
|
app_metadata?: Record<string, any> | undefined;
|
|
3809
3835
|
user_metadata?: Record<string, any> | undefined;
|
|
3810
|
-
connection_id?: string | undefined;
|
|
3811
3836
|
roles?: string[] | undefined;
|
|
3812
3837
|
ttl_sec?: number | undefined;
|
|
3813
3838
|
send_invitation_email?: boolean | undefined;
|
|
@@ -3992,8 +4017,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3992
4017
|
};
|
|
3993
4018
|
} & {
|
|
3994
4019
|
json: {
|
|
3995
|
-
show_as_button?: boolean | undefined;
|
|
3996
4020
|
assign_membership_on_login?: boolean | undefined;
|
|
4021
|
+
show_as_button?: boolean | undefined;
|
|
3997
4022
|
is_signup_enabled?: boolean | undefined;
|
|
3998
4023
|
};
|
|
3999
4024
|
};
|
|
@@ -9295,7 +9320,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9295
9320
|
};
|
|
9296
9321
|
};
|
|
9297
9322
|
output: {
|
|
9298
|
-
prompt: "
|
|
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";
|
|
9299
9324
|
language: string;
|
|
9300
9325
|
}[];
|
|
9301
9326
|
outputFormat: "json";
|
|
@@ -9333,7 +9358,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9333
9358
|
$get: {
|
|
9334
9359
|
input: {
|
|
9335
9360
|
param: {
|
|
9336
|
-
prompt: "
|
|
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";
|
|
9337
9362
|
language: string;
|
|
9338
9363
|
};
|
|
9339
9364
|
} & {
|
|
@@ -9355,7 +9380,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9355
9380
|
$put: {
|
|
9356
9381
|
input: {
|
|
9357
9382
|
param: {
|
|
9358
|
-
prompt: "
|
|
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";
|
|
9359
9384
|
language: string;
|
|
9360
9385
|
};
|
|
9361
9386
|
} & {
|
|
@@ -9379,7 +9404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9379
9404
|
$delete: {
|
|
9380
9405
|
input: {
|
|
9381
9406
|
param: {
|
|
9382
|
-
prompt: "
|
|
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";
|
|
9383
9408
|
language: string;
|
|
9384
9409
|
};
|
|
9385
9410
|
} & {
|
|
@@ -10880,7 +10905,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10880
10905
|
log_type: string;
|
|
10881
10906
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10882
10907
|
actor: {
|
|
10883
|
-
type: "
|
|
10908
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
10884
10909
|
id?: string | undefined;
|
|
10885
10910
|
email?: string | undefined;
|
|
10886
10911
|
org_id?: string | undefined;
|
|
@@ -11358,7 +11383,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11358
11383
|
[x: string]: hono_utils_types.JSONValue;
|
|
11359
11384
|
};
|
|
11360
11385
|
id: string;
|
|
11361
|
-
status: "
|
|
11386
|
+
status: "suspended" | "active" | "paused";
|
|
11362
11387
|
filters?: {
|
|
11363
11388
|
type: string;
|
|
11364
11389
|
name: string;
|
|
@@ -11390,7 +11415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11390
11415
|
[x: string]: hono_utils_types.JSONValue;
|
|
11391
11416
|
};
|
|
11392
11417
|
id: string;
|
|
11393
|
-
status: "
|
|
11418
|
+
status: "suspended" | "active" | "paused";
|
|
11394
11419
|
filters?: {
|
|
11395
11420
|
type: string;
|
|
11396
11421
|
name: string;
|
|
@@ -11415,7 +11440,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11415
11440
|
name: string;
|
|
11416
11441
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
11417
11442
|
sink: Record<string, unknown>;
|
|
11418
|
-
status?: "
|
|
11443
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11419
11444
|
filters?: {
|
|
11420
11445
|
type: string;
|
|
11421
11446
|
name: string;
|
|
@@ -11430,7 +11455,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11430
11455
|
[x: string]: hono_utils_types.JSONValue;
|
|
11431
11456
|
};
|
|
11432
11457
|
id: string;
|
|
11433
|
-
status: "
|
|
11458
|
+
status: "suspended" | "active" | "paused";
|
|
11434
11459
|
filters?: {
|
|
11435
11460
|
type: string;
|
|
11436
11461
|
name: string;
|
|
@@ -11465,7 +11490,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11465
11490
|
}[] | undefined;
|
|
11466
11491
|
isPriority?: boolean | undefined;
|
|
11467
11492
|
id?: string | undefined;
|
|
11468
|
-
status?: "
|
|
11493
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
11469
11494
|
created_at?: string | undefined;
|
|
11470
11495
|
updated_at?: string | undefined;
|
|
11471
11496
|
};
|
|
@@ -11477,7 +11502,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11477
11502
|
[x: string]: hono_utils_types.JSONValue;
|
|
11478
11503
|
};
|
|
11479
11504
|
id: string;
|
|
11480
|
-
status: "
|
|
11505
|
+
status: "suspended" | "active" | "paused";
|
|
11481
11506
|
filters?: {
|
|
11482
11507
|
type: string;
|
|
11483
11508
|
name: string;
|
|
@@ -11528,7 +11553,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11528
11553
|
};
|
|
11529
11554
|
};
|
|
11530
11555
|
output: {
|
|
11531
|
-
type: "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" | "
|
|
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";
|
|
11532
11557
|
date: string;
|
|
11533
11558
|
isMobile: boolean;
|
|
11534
11559
|
log_id: string;
|
|
@@ -11567,7 +11592,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11567
11592
|
limit: number;
|
|
11568
11593
|
length: number;
|
|
11569
11594
|
logs: {
|
|
11570
|
-
type: "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" | "
|
|
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";
|
|
11571
11596
|
date: string;
|
|
11572
11597
|
isMobile: boolean;
|
|
11573
11598
|
log_id: string;
|
|
@@ -11621,7 +11646,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11621
11646
|
};
|
|
11622
11647
|
};
|
|
11623
11648
|
output: {
|
|
11624
|
-
type: "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" | "
|
|
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";
|
|
11625
11650
|
date: string;
|
|
11626
11651
|
isMobile: boolean;
|
|
11627
11652
|
log_id: string;
|
|
@@ -11776,7 +11801,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11776
11801
|
audience?: string | undefined;
|
|
11777
11802
|
client_id?: string | undefined;
|
|
11778
11803
|
allow_any_organization?: string | undefined;
|
|
11779
|
-
subject_type?: "
|
|
11804
|
+
subject_type?: "client" | "user" | undefined;
|
|
11780
11805
|
};
|
|
11781
11806
|
} & {
|
|
11782
11807
|
header: {
|
|
@@ -11791,7 +11816,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11791
11816
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11792
11817
|
allow_any_organization?: boolean | undefined;
|
|
11793
11818
|
is_system?: boolean | undefined;
|
|
11794
|
-
subject_type?: "
|
|
11819
|
+
subject_type?: "client" | "user" | undefined;
|
|
11795
11820
|
authorization_details_types?: string[] | undefined;
|
|
11796
11821
|
created_at?: string | undefined;
|
|
11797
11822
|
updated_at?: string | undefined;
|
|
@@ -11807,7 +11832,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11807
11832
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11808
11833
|
allow_any_organization?: boolean | undefined;
|
|
11809
11834
|
is_system?: boolean | undefined;
|
|
11810
|
-
subject_type?: "
|
|
11835
|
+
subject_type?: "client" | "user" | undefined;
|
|
11811
11836
|
authorization_details_types?: string[] | undefined;
|
|
11812
11837
|
created_at?: string | undefined;
|
|
11813
11838
|
updated_at?: string | undefined;
|
|
@@ -11838,7 +11863,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11838
11863
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11839
11864
|
allow_any_organization?: boolean | undefined;
|
|
11840
11865
|
is_system?: boolean | undefined;
|
|
11841
|
-
subject_type?: "
|
|
11866
|
+
subject_type?: "client" | "user" | undefined;
|
|
11842
11867
|
authorization_details_types?: string[] | undefined;
|
|
11843
11868
|
created_at?: string | undefined;
|
|
11844
11869
|
updated_at?: string | undefined;
|
|
@@ -11883,7 +11908,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11883
11908
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11884
11909
|
allow_any_organization?: boolean | undefined;
|
|
11885
11910
|
is_system?: boolean | undefined;
|
|
11886
|
-
subject_type?: "
|
|
11911
|
+
subject_type?: "client" | "user" | undefined;
|
|
11887
11912
|
authorization_details_types?: string[] | undefined;
|
|
11888
11913
|
};
|
|
11889
11914
|
};
|
|
@@ -11895,7 +11920,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11895
11920
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11896
11921
|
allow_any_organization?: boolean | undefined;
|
|
11897
11922
|
is_system?: boolean | undefined;
|
|
11898
|
-
subject_type?: "
|
|
11923
|
+
subject_type?: "client" | "user" | undefined;
|
|
11899
11924
|
authorization_details_types?: string[] | undefined;
|
|
11900
11925
|
created_at?: string | undefined;
|
|
11901
11926
|
updated_at?: string | undefined;
|
|
@@ -11919,7 +11944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11919
11944
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11920
11945
|
allow_any_organization?: boolean | undefined;
|
|
11921
11946
|
is_system?: boolean | undefined;
|
|
11922
|
-
subject_type?: "
|
|
11947
|
+
subject_type?: "client" | "user" | undefined;
|
|
11923
11948
|
authorization_details_types?: string[] | undefined;
|
|
11924
11949
|
};
|
|
11925
11950
|
};
|
|
@@ -11931,7 +11956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11931
11956
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
11932
11957
|
allow_any_organization?: boolean | undefined;
|
|
11933
11958
|
is_system?: boolean | undefined;
|
|
11934
|
-
subject_type?: "
|
|
11959
|
+
subject_type?: "client" | "user" | undefined;
|
|
11935
11960
|
authorization_details_types?: string[] | undefined;
|
|
11936
11961
|
created_at?: string | undefined;
|
|
11937
11962
|
updated_at?: string | undefined;
|
|
@@ -12009,7 +12034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12009
12034
|
addons?: {
|
|
12010
12035
|
[x: string]: any;
|
|
12011
12036
|
} | undefined;
|
|
12012
|
-
token_endpoint_auth_method?: "
|
|
12037
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12013
12038
|
client_metadata?: {
|
|
12014
12039
|
[x: string]: string;
|
|
12015
12040
|
} | undefined;
|
|
@@ -12105,7 +12130,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12105
12130
|
addons?: {
|
|
12106
12131
|
[x: string]: any;
|
|
12107
12132
|
} | undefined;
|
|
12108
|
-
token_endpoint_auth_method?: "
|
|
12133
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12109
12134
|
client_metadata?: {
|
|
12110
12135
|
[x: string]: string;
|
|
12111
12136
|
} | undefined;
|
|
@@ -12216,7 +12241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12216
12241
|
addons?: {
|
|
12217
12242
|
[x: string]: any;
|
|
12218
12243
|
} | undefined;
|
|
12219
|
-
token_endpoint_auth_method?: "
|
|
12244
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12220
12245
|
client_metadata?: {
|
|
12221
12246
|
[x: string]: string;
|
|
12222
12247
|
} | undefined;
|
|
@@ -12326,7 +12351,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12326
12351
|
custom_login_page_preview?: string | undefined;
|
|
12327
12352
|
form_template?: string | undefined;
|
|
12328
12353
|
addons?: Record<string, any> | undefined;
|
|
12329
|
-
token_endpoint_auth_method?: "
|
|
12354
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12330
12355
|
client_metadata?: Record<string, string> | undefined;
|
|
12331
12356
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12332
12357
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12406,7 +12431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12406
12431
|
addons?: {
|
|
12407
12432
|
[x: string]: any;
|
|
12408
12433
|
} | undefined;
|
|
12409
|
-
token_endpoint_auth_method?: "
|
|
12434
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12410
12435
|
client_metadata?: {
|
|
12411
12436
|
[x: string]: string;
|
|
12412
12437
|
} | undefined;
|
|
@@ -12495,7 +12520,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12495
12520
|
custom_login_page_preview?: string | undefined;
|
|
12496
12521
|
form_template?: string | undefined;
|
|
12497
12522
|
addons?: Record<string, any> | undefined;
|
|
12498
|
-
token_endpoint_auth_method?: "
|
|
12523
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12499
12524
|
client_metadata?: Record<string, string> | undefined;
|
|
12500
12525
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12501
12526
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12575,7 +12600,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12575
12600
|
addons?: {
|
|
12576
12601
|
[x: string]: any;
|
|
12577
12602
|
} | undefined;
|
|
12578
|
-
token_endpoint_auth_method?: "
|
|
12603
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12579
12604
|
client_metadata?: {
|
|
12580
12605
|
[x: string]: string;
|
|
12581
12606
|
} | undefined;
|
|
@@ -13839,7 +13864,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13839
13864
|
};
|
|
13840
13865
|
};
|
|
13841
13866
|
output: {
|
|
13842
|
-
type: "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" | "
|
|
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";
|
|
13843
13868
|
date: string;
|
|
13844
13869
|
isMobile: boolean;
|
|
13845
13870
|
log_id: string;
|
|
@@ -13878,7 +13903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13878
13903
|
limit: number;
|
|
13879
13904
|
length: number;
|
|
13880
13905
|
logs: {
|
|
13881
|
-
type: "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" | "
|
|
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";
|
|
13882
13907
|
date: string;
|
|
13883
13908
|
isMobile: boolean;
|
|
13884
13909
|
log_id: string;
|
|
@@ -14193,7 +14218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14193
14218
|
};
|
|
14194
14219
|
} & {
|
|
14195
14220
|
json: {
|
|
14196
|
-
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";
|
|
14197
14222
|
body: string;
|
|
14198
14223
|
from: string;
|
|
14199
14224
|
subject: string;
|
|
@@ -14214,7 +14239,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14214
14239
|
};
|
|
14215
14240
|
} & {
|
|
14216
14241
|
json: {
|
|
14217
|
-
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";
|
|
14218
14243
|
body: string;
|
|
14219
14244
|
from: string;
|
|
14220
14245
|
subject: string;
|
|
@@ -14226,7 +14251,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14226
14251
|
};
|
|
14227
14252
|
};
|
|
14228
14253
|
output: {
|
|
14229
|
-
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";
|
|
14230
14255
|
body: string;
|
|
14231
14256
|
from: string;
|
|
14232
14257
|
subject: string;
|
|
@@ -14249,7 +14274,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14249
14274
|
};
|
|
14250
14275
|
};
|
|
14251
14276
|
output: {
|
|
14252
|
-
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";
|
|
14253
14278
|
body: string;
|
|
14254
14279
|
subject: string;
|
|
14255
14280
|
}[];
|
|
@@ -14262,7 +14287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14262
14287
|
$get: {
|
|
14263
14288
|
input: {
|
|
14264
14289
|
param: {
|
|
14265
|
-
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";
|
|
14266
14291
|
};
|
|
14267
14292
|
} & {
|
|
14268
14293
|
header: {
|
|
@@ -14275,7 +14300,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14275
14300
|
} | {
|
|
14276
14301
|
input: {
|
|
14277
14302
|
param: {
|
|
14278
|
-
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";
|
|
14279
14304
|
};
|
|
14280
14305
|
} & {
|
|
14281
14306
|
header: {
|
|
@@ -14283,7 +14308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14283
14308
|
};
|
|
14284
14309
|
};
|
|
14285
14310
|
output: {
|
|
14286
|
-
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";
|
|
14287
14312
|
body: string;
|
|
14288
14313
|
from: string;
|
|
14289
14314
|
subject: string;
|
|
@@ -14302,7 +14327,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14302
14327
|
$put: {
|
|
14303
14328
|
input: {
|
|
14304
14329
|
param: {
|
|
14305
|
-
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";
|
|
14306
14331
|
};
|
|
14307
14332
|
} & {
|
|
14308
14333
|
header: {
|
|
@@ -14310,7 +14335,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14310
14335
|
};
|
|
14311
14336
|
} & {
|
|
14312
14337
|
json: {
|
|
14313
|
-
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";
|
|
14314
14339
|
body: string;
|
|
14315
14340
|
subject: string;
|
|
14316
14341
|
syntax?: "liquid" | undefined;
|
|
@@ -14322,7 +14347,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14322
14347
|
};
|
|
14323
14348
|
};
|
|
14324
14349
|
output: {
|
|
14325
|
-
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";
|
|
14326
14351
|
body: string;
|
|
14327
14352
|
from: string;
|
|
14328
14353
|
subject: string;
|
|
@@ -14341,7 +14366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14341
14366
|
$patch: {
|
|
14342
14367
|
input: {
|
|
14343
14368
|
param: {
|
|
14344
|
-
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";
|
|
14345
14370
|
};
|
|
14346
14371
|
} & {
|
|
14347
14372
|
header: {
|
|
@@ -14349,7 +14374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14349
14374
|
};
|
|
14350
14375
|
} & {
|
|
14351
14376
|
json: {
|
|
14352
|
-
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;
|
|
14353
14378
|
body?: string | undefined;
|
|
14354
14379
|
from?: string | undefined;
|
|
14355
14380
|
subject?: string | undefined;
|
|
@@ -14366,7 +14391,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14366
14391
|
} | {
|
|
14367
14392
|
input: {
|
|
14368
14393
|
param: {
|
|
14369
|
-
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";
|
|
14370
14395
|
};
|
|
14371
14396
|
} & {
|
|
14372
14397
|
header: {
|
|
@@ -14374,7 +14399,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14374
14399
|
};
|
|
14375
14400
|
} & {
|
|
14376
14401
|
json: {
|
|
14377
|
-
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;
|
|
14378
14403
|
body?: string | undefined;
|
|
14379
14404
|
from?: string | undefined;
|
|
14380
14405
|
subject?: string | undefined;
|
|
@@ -14386,7 +14411,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14386
14411
|
};
|
|
14387
14412
|
};
|
|
14388
14413
|
output: {
|
|
14389
|
-
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";
|
|
14390
14415
|
body: string;
|
|
14391
14416
|
from: string;
|
|
14392
14417
|
subject: string;
|
|
@@ -14405,7 +14430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14405
14430
|
$delete: {
|
|
14406
14431
|
input: {
|
|
14407
14432
|
param: {
|
|
14408
|
-
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";
|
|
14409
14434
|
};
|
|
14410
14435
|
} & {
|
|
14411
14436
|
header: {
|
|
@@ -14418,7 +14443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14418
14443
|
} | {
|
|
14419
14444
|
input: {
|
|
14420
14445
|
param: {
|
|
14421
|
-
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";
|
|
14422
14447
|
};
|
|
14423
14448
|
} & {
|
|
14424
14449
|
header: {
|
|
@@ -14435,7 +14460,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14435
14460
|
$post: {
|
|
14436
14461
|
input: {
|
|
14437
14462
|
param: {
|
|
14438
|
-
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";
|
|
14439
14464
|
};
|
|
14440
14465
|
} & {
|
|
14441
14466
|
header: {
|
|
@@ -14718,7 +14743,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14718
14743
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14719
14744
|
custom_domain_id: string;
|
|
14720
14745
|
primary: boolean;
|
|
14721
|
-
status: "
|
|
14746
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14722
14747
|
verification_method?: "txt" | undefined;
|
|
14723
14748
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14724
14749
|
domain_metadata?: {
|
|
@@ -14759,7 +14784,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14759
14784
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14760
14785
|
custom_domain_id: string;
|
|
14761
14786
|
primary: boolean;
|
|
14762
|
-
status: "
|
|
14787
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14763
14788
|
verification_method?: "txt" | undefined;
|
|
14764
14789
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14765
14790
|
domain_metadata?: {
|
|
@@ -14823,7 +14848,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14823
14848
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14824
14849
|
custom_domain_id: string;
|
|
14825
14850
|
primary: boolean;
|
|
14826
|
-
status: "
|
|
14851
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14827
14852
|
verification_method?: "txt" | undefined;
|
|
14828
14853
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14829
14854
|
domain_metadata?: {
|
|
@@ -14870,7 +14895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14870
14895
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14871
14896
|
custom_domain_id: string;
|
|
14872
14897
|
primary: boolean;
|
|
14873
|
-
status: "
|
|
14898
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14874
14899
|
verification_method?: "txt" | undefined;
|
|
14875
14900
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14876
14901
|
domain_metadata?: {
|
|
@@ -14916,7 +14941,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14916
14941
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14917
14942
|
custom_domain_id: string;
|
|
14918
14943
|
primary: boolean;
|
|
14919
|
-
status: "
|
|
14944
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14920
14945
|
verification_method?: "txt" | undefined;
|
|
14921
14946
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14922
14947
|
domain_metadata?: {
|
|
@@ -14957,7 +14982,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14957
14982
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14958
14983
|
custom_domain_id: string;
|
|
14959
14984
|
primary: boolean;
|
|
14960
|
-
status: "
|
|
14985
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
14961
14986
|
verification_method?: "txt" | undefined;
|
|
14962
14987
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14963
14988
|
domain_metadata?: {
|
|
@@ -15442,7 +15467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15442
15467
|
json: {
|
|
15443
15468
|
bindings: {
|
|
15444
15469
|
ref: {
|
|
15445
|
-
type?: "
|
|
15470
|
+
type?: "action_id" | "action_name" | undefined;
|
|
15446
15471
|
value?: string | undefined;
|
|
15447
15472
|
id?: string | undefined;
|
|
15448
15473
|
name?: string | undefined;
|
|
@@ -16529,7 +16554,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16529
16554
|
scope?: string | undefined;
|
|
16530
16555
|
grant_types?: string[] | undefined;
|
|
16531
16556
|
response_types?: string[] | undefined;
|
|
16532
|
-
token_endpoint_auth_method?: "
|
|
16557
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16533
16558
|
jwks_uri?: string | undefined;
|
|
16534
16559
|
jwks?: Record<string, unknown> | undefined;
|
|
16535
16560
|
software_id?: string | undefined;
|
|
@@ -16618,7 +16643,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16618
16643
|
scope?: string | undefined;
|
|
16619
16644
|
grant_types?: string[] | undefined;
|
|
16620
16645
|
response_types?: string[] | undefined;
|
|
16621
|
-
token_endpoint_auth_method?: "
|
|
16646
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16622
16647
|
jwks_uri?: string | undefined;
|
|
16623
16648
|
jwks?: Record<string, unknown> | undefined;
|
|
16624
16649
|
software_id?: string | undefined;
|
|
@@ -16965,18 +16990,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16965
16990
|
send: "code" | "link";
|
|
16966
16991
|
authParams: {
|
|
16967
16992
|
state?: string | undefined;
|
|
16968
|
-
|
|
16993
|
+
code_challenge?: string | undefined;
|
|
16994
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16995
|
+
redirect_uri?: string | undefined;
|
|
16996
|
+
nonce?: string | undefined;
|
|
16997
|
+
act_as?: string | undefined;
|
|
16969
16998
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16970
16999
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16971
|
-
scope?: string | undefined;
|
|
16972
|
-
act_as?: string | undefined;
|
|
16973
|
-
redirect_uri?: string | undefined;
|
|
16974
17000
|
audience?: string | undefined;
|
|
16975
17001
|
organization?: string | undefined;
|
|
16976
|
-
|
|
17002
|
+
scope?: string | undefined;
|
|
16977
17003
|
prompt?: string | undefined;
|
|
16978
|
-
|
|
16979
|
-
code_challenge?: string | undefined;
|
|
17004
|
+
username?: string | undefined;
|
|
16980
17005
|
ui_locales?: string | undefined;
|
|
16981
17006
|
max_age?: number | undefined;
|
|
16982
17007
|
acr_values?: string | undefined;
|
|
@@ -17001,18 +17026,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17001
17026
|
send: "code" | "link";
|
|
17002
17027
|
authParams: {
|
|
17003
17028
|
state?: string | undefined;
|
|
17004
|
-
|
|
17029
|
+
code_challenge?: string | undefined;
|
|
17030
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17031
|
+
redirect_uri?: string | undefined;
|
|
17032
|
+
nonce?: string | undefined;
|
|
17033
|
+
act_as?: string | undefined;
|
|
17005
17034
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17006
17035
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17007
|
-
scope?: string | undefined;
|
|
17008
|
-
act_as?: string | undefined;
|
|
17009
|
-
redirect_uri?: string | undefined;
|
|
17010
17036
|
audience?: string | undefined;
|
|
17011
17037
|
organization?: string | undefined;
|
|
17012
|
-
|
|
17038
|
+
scope?: string | undefined;
|
|
17013
17039
|
prompt?: string | undefined;
|
|
17014
|
-
|
|
17015
|
-
code_challenge?: string | undefined;
|
|
17040
|
+
username?: string | undefined;
|
|
17016
17041
|
ui_locales?: string | undefined;
|
|
17017
17042
|
max_age?: number | undefined;
|
|
17018
17043
|
acr_values?: string | undefined;
|
|
@@ -18919,7 +18944,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18919
18944
|
$get: {
|
|
18920
18945
|
input: {
|
|
18921
18946
|
param: {
|
|
18922
|
-
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";
|
|
18923
18948
|
};
|
|
18924
18949
|
} & {
|
|
18925
18950
|
query: {
|
|
@@ -18935,7 +18960,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18935
18960
|
} | {
|
|
18936
18961
|
input: {
|
|
18937
18962
|
param: {
|
|
18938
|
-
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";
|
|
18939
18964
|
};
|
|
18940
18965
|
} & {
|
|
18941
18966
|
query: {
|
|
@@ -18951,7 +18976,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18951
18976
|
} | {
|
|
18952
18977
|
input: {
|
|
18953
18978
|
param: {
|
|
18954
|
-
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";
|
|
18955
18980
|
};
|
|
18956
18981
|
} & {
|
|
18957
18982
|
query: {
|
|
@@ -18971,7 +18996,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18971
18996
|
$post: {
|
|
18972
18997
|
input: {
|
|
18973
18998
|
param: {
|
|
18974
|
-
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";
|
|
18975
19000
|
};
|
|
18976
19001
|
} & {
|
|
18977
19002
|
query: {
|
|
@@ -18989,7 +19014,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18989
19014
|
} | {
|
|
18990
19015
|
input: {
|
|
18991
19016
|
param: {
|
|
18992
|
-
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";
|
|
18993
19018
|
};
|
|
18994
19019
|
} & {
|
|
18995
19020
|
query: {
|
|
@@ -19007,7 +19032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19007
19032
|
} | {
|
|
19008
19033
|
input: {
|
|
19009
19034
|
param: {
|
|
19010
|
-
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";
|
|
19011
19036
|
};
|
|
19012
19037
|
} & {
|
|
19013
19038
|
query: {
|