authhero 9.8.0 → 9.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +543 -344
- package/dist/authhero.d.ts +158 -138
- package/dist/authhero.mjs +12631 -12103
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/grant-tokens.d.ts +16 -0
- package/dist/types/authentication-flows/passwordless.d.ts +26 -3
- package/dist/types/helpers/refresh-token-lifetime.d.ts +103 -0
- package/dist/types/helpers/revoke-session-refresh-tokens.d.ts +33 -0
- package/dist/types/hooks/addDataHooks.d.ts +4 -3
- package/dist/types/index.d.ts +158 -138
- package/dist/types/routes/auth-api/index.d.ts +59 -39
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +44 -24
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/index.d.ts +69 -69
- package/dist/types/routes/management-api/keys.d.ts +16 -16
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- 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/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +2 -2
- package/dist/types/routes/management-api/users.d.ts +17 -17
- package/dist/types/routes/universal-login/info-code-exchange.d.ts +27 -0
- package/dist/types/routes/universal-login/token-info-page.d.ts +26 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/state-machines/login-session.d.ts +1 -1
- package/dist/types/utils/email.d.ts +21 -9
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +8 -8
package/dist/authhero.d.ts
CHANGED
|
@@ -4275,8 +4275,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4275
4275
|
$get: {
|
|
4276
4276
|
input: {
|
|
4277
4277
|
query: {
|
|
4278
|
-
include_password_hashes?: "
|
|
4279
|
-
gzip?: "
|
|
4278
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4279
|
+
gzip?: "false" | "true" | undefined;
|
|
4280
4280
|
};
|
|
4281
4281
|
} & {
|
|
4282
4282
|
header: {
|
|
@@ -4289,8 +4289,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4289
4289
|
} | {
|
|
4290
4290
|
input: {
|
|
4291
4291
|
query: {
|
|
4292
|
-
include_password_hashes?: "
|
|
4293
|
-
gzip?: "
|
|
4292
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4293
|
+
gzip?: "false" | "true" | undefined;
|
|
4294
4294
|
};
|
|
4295
4295
|
} & {
|
|
4296
4296
|
header: {
|
|
@@ -4309,7 +4309,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4309
4309
|
$post: {
|
|
4310
4310
|
input: {
|
|
4311
4311
|
query: {
|
|
4312
|
-
include_password_hashes?: "
|
|
4312
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
4313
4313
|
};
|
|
4314
4314
|
} & {
|
|
4315
4315
|
header: {
|
|
@@ -4363,7 +4363,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4363
4363
|
};
|
|
4364
4364
|
} & {
|
|
4365
4365
|
json: {
|
|
4366
|
-
type: "
|
|
4366
|
+
type: "email" | "push" | "phone" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "totp";
|
|
4367
4367
|
phone_number?: string | undefined;
|
|
4368
4368
|
totp_secret?: string | undefined;
|
|
4369
4369
|
credential_id?: string | undefined;
|
|
@@ -4503,7 +4503,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4503
4503
|
};
|
|
4504
4504
|
};
|
|
4505
4505
|
output: {
|
|
4506
|
-
name: "
|
|
4506
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4507
4507
|
enabled: boolean;
|
|
4508
4508
|
trial_expired?: boolean | undefined;
|
|
4509
4509
|
}[];
|
|
@@ -4658,7 +4658,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4658
4658
|
$get: {
|
|
4659
4659
|
input: {
|
|
4660
4660
|
param: {
|
|
4661
|
-
factor_name: "
|
|
4661
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4662
4662
|
};
|
|
4663
4663
|
} & {
|
|
4664
4664
|
header: {
|
|
@@ -4666,7 +4666,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4666
4666
|
};
|
|
4667
4667
|
};
|
|
4668
4668
|
output: {
|
|
4669
|
-
name: "
|
|
4669
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4670
4670
|
enabled: boolean;
|
|
4671
4671
|
trial_expired?: boolean | undefined;
|
|
4672
4672
|
};
|
|
@@ -4679,7 +4679,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4679
4679
|
$put: {
|
|
4680
4680
|
input: {
|
|
4681
4681
|
param: {
|
|
4682
|
-
factor_name: "
|
|
4682
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4683
4683
|
};
|
|
4684
4684
|
} & {
|
|
4685
4685
|
header: {
|
|
@@ -4691,7 +4691,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4691
4691
|
};
|
|
4692
4692
|
};
|
|
4693
4693
|
output: {
|
|
4694
|
-
name: "
|
|
4694
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
4695
4695
|
enabled: boolean;
|
|
4696
4696
|
trial_expired?: boolean | undefined;
|
|
4697
4697
|
};
|
|
@@ -5470,10 +5470,10 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5470
5470
|
email?: string | undefined;
|
|
5471
5471
|
};
|
|
5472
5472
|
id?: string | undefined;
|
|
5473
|
-
roles?: string[] | undefined;
|
|
5474
5473
|
app_metadata?: Record<string, any> | undefined;
|
|
5475
5474
|
user_metadata?: Record<string, any> | undefined;
|
|
5476
5475
|
connection_id?: string | undefined;
|
|
5476
|
+
roles?: string[] | undefined;
|
|
5477
5477
|
ttl_sec?: number | undefined;
|
|
5478
5478
|
send_invitation_email?: boolean | undefined;
|
|
5479
5479
|
};
|
|
@@ -6230,8 +6230,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6230
6230
|
};
|
|
6231
6231
|
} & {
|
|
6232
6232
|
query: {
|
|
6233
|
-
page?: string | undefined;
|
|
6234
6233
|
from?: string | undefined;
|
|
6234
|
+
page?: string | undefined;
|
|
6235
6235
|
include_totals?: string | undefined;
|
|
6236
6236
|
per_page?: string | undefined;
|
|
6237
6237
|
take?: string | undefined;
|
|
@@ -6378,7 +6378,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6378
6378
|
type: "REDIRECT";
|
|
6379
6379
|
action: "REDIRECT_USER";
|
|
6380
6380
|
params: {
|
|
6381
|
-
target: "custom" | "
|
|
6381
|
+
target: "custom" | "account" | "change-email";
|
|
6382
6382
|
custom_url?: string | undefined;
|
|
6383
6383
|
};
|
|
6384
6384
|
alias?: string | undefined;
|
|
@@ -6431,7 +6431,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6431
6431
|
type: "REDIRECT";
|
|
6432
6432
|
action: "REDIRECT_USER";
|
|
6433
6433
|
params: {
|
|
6434
|
-
target: "custom" | "
|
|
6434
|
+
target: "custom" | "account" | "change-email";
|
|
6435
6435
|
custom_url?: string | undefined;
|
|
6436
6436
|
};
|
|
6437
6437
|
alias?: string | undefined;
|
|
@@ -6500,7 +6500,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6500
6500
|
type: "REDIRECT";
|
|
6501
6501
|
action: "REDIRECT_USER";
|
|
6502
6502
|
params: {
|
|
6503
|
-
target: "custom" | "
|
|
6503
|
+
target: "custom" | "account" | "change-email";
|
|
6504
6504
|
custom_url?: string | undefined;
|
|
6505
6505
|
};
|
|
6506
6506
|
alias?: string | undefined;
|
|
@@ -6581,7 +6581,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6581
6581
|
type: "REDIRECT";
|
|
6582
6582
|
action: "REDIRECT_USER";
|
|
6583
6583
|
params: {
|
|
6584
|
-
target: "custom" | "
|
|
6584
|
+
target: "custom" | "account" | "change-email";
|
|
6585
6585
|
custom_url?: string | undefined;
|
|
6586
6586
|
};
|
|
6587
6587
|
alias?: string | undefined;
|
|
@@ -6629,7 +6629,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6629
6629
|
type: "REDIRECT";
|
|
6630
6630
|
action: "REDIRECT_USER";
|
|
6631
6631
|
params: {
|
|
6632
|
-
target: "custom" | "
|
|
6632
|
+
target: "custom" | "account" | "change-email";
|
|
6633
6633
|
custom_url?: string | undefined;
|
|
6634
6634
|
};
|
|
6635
6635
|
alias?: string | undefined;
|
|
@@ -6689,7 +6689,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6689
6689
|
type: "REDIRECT";
|
|
6690
6690
|
action: "REDIRECT_USER";
|
|
6691
6691
|
params: {
|
|
6692
|
-
target: "custom" | "
|
|
6692
|
+
target: "custom" | "account" | "change-email";
|
|
6693
6693
|
custom_url?: string | undefined;
|
|
6694
6694
|
};
|
|
6695
6695
|
alias?: string | undefined;
|
|
@@ -6737,7 +6737,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6737
6737
|
type: "REDIRECT";
|
|
6738
6738
|
action: "REDIRECT_USER";
|
|
6739
6739
|
params: {
|
|
6740
|
-
target: "custom" | "
|
|
6740
|
+
target: "custom" | "account" | "change-email";
|
|
6741
6741
|
custom_url?: string | undefined;
|
|
6742
6742
|
};
|
|
6743
6743
|
alias?: string | undefined;
|
|
@@ -11302,7 +11302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11302
11302
|
};
|
|
11303
11303
|
};
|
|
11304
11304
|
output: {
|
|
11305
|
-
prompt: "
|
|
11305
|
+
prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
11306
11306
|
language: string;
|
|
11307
11307
|
}[];
|
|
11308
11308
|
outputFormat: "json";
|
|
@@ -11340,7 +11340,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11340
11340
|
$get: {
|
|
11341
11341
|
input: {
|
|
11342
11342
|
param: {
|
|
11343
|
-
prompt: "
|
|
11343
|
+
prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
11344
11344
|
language: string;
|
|
11345
11345
|
};
|
|
11346
11346
|
} & {
|
|
@@ -11362,7 +11362,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11362
11362
|
$put: {
|
|
11363
11363
|
input: {
|
|
11364
11364
|
param: {
|
|
11365
|
-
prompt: "
|
|
11365
|
+
prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
11366
11366
|
language: string;
|
|
11367
11367
|
};
|
|
11368
11368
|
} & {
|
|
@@ -11386,7 +11386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11386
11386
|
$delete: {
|
|
11387
11387
|
input: {
|
|
11388
11388
|
param: {
|
|
11389
|
-
prompt: "
|
|
11389
|
+
prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
11390
11390
|
language: string;
|
|
11391
11391
|
};
|
|
11392
11392
|
} & {
|
|
@@ -11529,7 +11529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11529
11529
|
} | undefined;
|
|
11530
11530
|
} | undefined;
|
|
11531
11531
|
passkey_options?: {
|
|
11532
|
-
challenge_ui?: "
|
|
11532
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11533
11533
|
local_enrollment_enabled?: boolean | undefined;
|
|
11534
11534
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11535
11535
|
} | undefined;
|
|
@@ -11667,7 +11667,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11667
11667
|
} | undefined;
|
|
11668
11668
|
} | undefined;
|
|
11669
11669
|
passkey_options?: {
|
|
11670
|
-
challenge_ui?: "
|
|
11670
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11671
11671
|
local_enrollment_enabled?: boolean | undefined;
|
|
11672
11672
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11673
11673
|
} | undefined;
|
|
@@ -11821,7 +11821,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11821
11821
|
} | undefined;
|
|
11822
11822
|
} | undefined;
|
|
11823
11823
|
passkey_options?: {
|
|
11824
|
-
challenge_ui?: "
|
|
11824
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11825
11825
|
local_enrollment_enabled?: boolean | undefined;
|
|
11826
11826
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11827
11827
|
} | undefined;
|
|
@@ -12004,7 +12004,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12004
12004
|
} | undefined;
|
|
12005
12005
|
} | undefined;
|
|
12006
12006
|
passkey_options?: {
|
|
12007
|
-
challenge_ui?: "
|
|
12007
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
12008
12008
|
local_enrollment_enabled?: boolean | undefined;
|
|
12009
12009
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
12010
12010
|
} | undefined;
|
|
@@ -12166,7 +12166,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12166
12166
|
} | undefined;
|
|
12167
12167
|
} | undefined;
|
|
12168
12168
|
passkey_options?: {
|
|
12169
|
-
challenge_ui?: "
|
|
12169
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
12170
12170
|
local_enrollment_enabled?: boolean | undefined;
|
|
12171
12171
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
12172
12172
|
} | undefined;
|
|
@@ -12998,7 +12998,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12998
12998
|
log_type: string;
|
|
12999
12999
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
13000
13000
|
actor: {
|
|
13001
|
-
type: "
|
|
13001
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
13002
13002
|
id?: string | undefined;
|
|
13003
13003
|
email?: string | undefined;
|
|
13004
13004
|
org_id?: string | undefined;
|
|
@@ -13649,7 +13649,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13649
13649
|
};
|
|
13650
13650
|
};
|
|
13651
13651
|
output: {
|
|
13652
|
-
type: "fn" | "
|
|
13652
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13653
13653
|
date: string;
|
|
13654
13654
|
isMobile: boolean;
|
|
13655
13655
|
log_id: string;
|
|
@@ -13688,7 +13688,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13688
13688
|
limit: number;
|
|
13689
13689
|
length: number;
|
|
13690
13690
|
logs: {
|
|
13691
|
-
type: "fn" | "
|
|
13691
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13692
13692
|
date: string;
|
|
13693
13693
|
isMobile: boolean;
|
|
13694
13694
|
log_id: string;
|
|
@@ -13727,7 +13727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13727
13727
|
next?: string | undefined;
|
|
13728
13728
|
} | {
|
|
13729
13729
|
logs: {
|
|
13730
|
-
type: "fn" | "
|
|
13730
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13731
13731
|
date: string;
|
|
13732
13732
|
isMobile: boolean;
|
|
13733
13733
|
log_id: string;
|
|
@@ -13781,7 +13781,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13781
13781
|
};
|
|
13782
13782
|
};
|
|
13783
13783
|
output: {
|
|
13784
|
-
type: "fn" | "
|
|
13784
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13785
13785
|
date: string;
|
|
13786
13786
|
isMobile: boolean;
|
|
13787
13787
|
log_id: string;
|
|
@@ -15073,7 +15073,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15073
15073
|
} | undefined;
|
|
15074
15074
|
} | undefined;
|
|
15075
15075
|
passkey_options?: {
|
|
15076
|
-
challenge_ui?: "
|
|
15076
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
15077
15077
|
local_enrollment_enabled?: boolean | undefined;
|
|
15078
15078
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
15079
15079
|
} | undefined;
|
|
@@ -15231,7 +15231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15231
15231
|
} | undefined;
|
|
15232
15232
|
} | undefined;
|
|
15233
15233
|
passkey_options?: {
|
|
15234
|
-
challenge_ui?: "
|
|
15234
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
15235
15235
|
local_enrollment_enabled?: boolean | undefined;
|
|
15236
15236
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
15237
15237
|
} | undefined;
|
|
@@ -15360,11 +15360,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15360
15360
|
};
|
|
15361
15361
|
};
|
|
15362
15362
|
output: {
|
|
15363
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15363
15364
|
kid: string;
|
|
15364
15365
|
cert: string;
|
|
15365
15366
|
fingerprint: string;
|
|
15366
15367
|
thumbprint: string;
|
|
15367
|
-
|
|
15368
|
+
connection?: string | undefined;
|
|
15368
15369
|
tenant_id?: string | undefined;
|
|
15369
15370
|
current?: boolean | undefined;
|
|
15370
15371
|
next?: boolean | undefined;
|
|
@@ -15373,7 +15374,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15373
15374
|
current_until?: string | undefined;
|
|
15374
15375
|
revoked?: boolean | undefined;
|
|
15375
15376
|
revoked_at?: string | undefined;
|
|
15376
|
-
connection?: string | undefined;
|
|
15377
15377
|
expires_at?: string | undefined;
|
|
15378
15378
|
expired?: boolean | undefined;
|
|
15379
15379
|
inherited?: boolean | undefined;
|
|
@@ -15399,11 +15399,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15399
15399
|
};
|
|
15400
15400
|
};
|
|
15401
15401
|
output: {
|
|
15402
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15402
15403
|
kid: string;
|
|
15403
15404
|
cert: string;
|
|
15404
15405
|
fingerprint: string;
|
|
15405
15406
|
thumbprint: string;
|
|
15406
|
-
|
|
15407
|
+
connection?: string | undefined;
|
|
15407
15408
|
tenant_id?: string | undefined;
|
|
15408
15409
|
current?: boolean | undefined;
|
|
15409
15410
|
next?: boolean | undefined;
|
|
@@ -15412,7 +15413,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15412
15413
|
current_until?: string | undefined;
|
|
15413
15414
|
revoked?: boolean | undefined;
|
|
15414
15415
|
revoked_at?: string | undefined;
|
|
15415
|
-
connection?: string | undefined;
|
|
15416
15416
|
expires_at?: string | undefined;
|
|
15417
15417
|
expired?: boolean | undefined;
|
|
15418
15418
|
inherited?: boolean | undefined;
|
|
@@ -15437,11 +15437,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15437
15437
|
};
|
|
15438
15438
|
};
|
|
15439
15439
|
output: {
|
|
15440
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15440
15441
|
kid: string;
|
|
15441
15442
|
cert: string;
|
|
15442
15443
|
fingerprint: string;
|
|
15443
15444
|
thumbprint: string;
|
|
15444
|
-
|
|
15445
|
+
connection?: string | undefined;
|
|
15445
15446
|
tenant_id?: string | undefined;
|
|
15446
15447
|
current?: boolean | undefined;
|
|
15447
15448
|
next?: boolean | undefined;
|
|
@@ -15450,7 +15451,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15450
15451
|
current_until?: string | undefined;
|
|
15451
15452
|
revoked?: boolean | undefined;
|
|
15452
15453
|
revoked_at?: string | undefined;
|
|
15453
|
-
connection?: string | undefined;
|
|
15454
15454
|
expires_at?: string | undefined;
|
|
15455
15455
|
expired?: boolean | undefined;
|
|
15456
15456
|
inherited?: boolean | undefined;
|
|
@@ -15477,11 +15477,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15477
15477
|
};
|
|
15478
15478
|
};
|
|
15479
15479
|
output: {
|
|
15480
|
+
type: "jwt_signing" | "saml_encryption";
|
|
15480
15481
|
kid: string;
|
|
15481
15482
|
cert: string;
|
|
15482
15483
|
fingerprint: string;
|
|
15483
15484
|
thumbprint: string;
|
|
15484
|
-
|
|
15485
|
+
connection?: string | undefined;
|
|
15485
15486
|
tenant_id?: string | undefined;
|
|
15486
15487
|
current?: boolean | undefined;
|
|
15487
15488
|
next?: boolean | undefined;
|
|
@@ -15490,7 +15491,6 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15490
15491
|
current_until?: string | undefined;
|
|
15491
15492
|
revoked?: boolean | undefined;
|
|
15492
15493
|
revoked_at?: string | undefined;
|
|
15493
|
-
connection?: string | undefined;
|
|
15494
15494
|
expires_at?: string | undefined;
|
|
15495
15495
|
expired?: boolean | undefined;
|
|
15496
15496
|
inherited?: boolean | undefined;
|
|
@@ -16335,11 +16335,12 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16335
16335
|
};
|
|
16336
16336
|
};
|
|
16337
16337
|
output: {
|
|
16338
|
+
client_id: string;
|
|
16338
16339
|
created_at: string;
|
|
16340
|
+
rotating: boolean;
|
|
16339
16341
|
id: string;
|
|
16340
|
-
client_id: string;
|
|
16341
16342
|
user_id: string;
|
|
16342
|
-
|
|
16343
|
+
login_id: string;
|
|
16343
16344
|
device: {
|
|
16344
16345
|
initial_user_agent: string;
|
|
16345
16346
|
initial_ip: string;
|
|
@@ -16348,32 +16349,29 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16348
16349
|
last_ip: string;
|
|
16349
16350
|
last_asn: string;
|
|
16350
16351
|
};
|
|
16351
|
-
login_id: string;
|
|
16352
16352
|
resource_servers: {
|
|
16353
16353
|
audience: string;
|
|
16354
16354
|
scopes: string;
|
|
16355
16355
|
}[];
|
|
16356
|
-
revoked_at?: string | undefined;
|
|
16357
|
-
expires_at?: string | undefined;
|
|
16358
16356
|
organization?: string | undefined;
|
|
16357
|
+
expires_at?: string | undefined;
|
|
16359
16358
|
session_id?: string | undefined;
|
|
16360
16359
|
auth_connection?: string | undefined;
|
|
16361
16360
|
auth_strategy?: {
|
|
16362
16361
|
strategy: string;
|
|
16363
16362
|
strategy_type: string;
|
|
16364
16363
|
} | undefined;
|
|
16364
|
+
revoked_at?: string | undefined;
|
|
16365
16365
|
idle_expires_at?: string | undefined;
|
|
16366
16366
|
last_exchanged_at?: string | undefined;
|
|
16367
16367
|
}[] | {
|
|
16368
|
-
start: number;
|
|
16369
|
-
limit: number;
|
|
16370
|
-
length: number;
|
|
16371
16368
|
tokens: {
|
|
16369
|
+
client_id: string;
|
|
16372
16370
|
created_at: string;
|
|
16371
|
+
rotating: boolean;
|
|
16373
16372
|
id: string;
|
|
16374
|
-
client_id: string;
|
|
16375
16373
|
user_id: string;
|
|
16376
|
-
|
|
16374
|
+
login_id: string;
|
|
16377
16375
|
device: {
|
|
16378
16376
|
initial_user_agent: string;
|
|
16379
16377
|
initial_ip: string;
|
|
@@ -16382,32 +16380,34 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16382
16380
|
last_ip: string;
|
|
16383
16381
|
last_asn: string;
|
|
16384
16382
|
};
|
|
16385
|
-
login_id: string;
|
|
16386
16383
|
resource_servers: {
|
|
16387
16384
|
audience: string;
|
|
16388
16385
|
scopes: string;
|
|
16389
16386
|
}[];
|
|
16390
|
-
revoked_at?: string | undefined;
|
|
16391
|
-
expires_at?: string | undefined;
|
|
16392
16387
|
organization?: string | undefined;
|
|
16388
|
+
expires_at?: string | undefined;
|
|
16393
16389
|
session_id?: string | undefined;
|
|
16394
16390
|
auth_connection?: string | undefined;
|
|
16395
16391
|
auth_strategy?: {
|
|
16396
16392
|
strategy: string;
|
|
16397
16393
|
strategy_type: string;
|
|
16398
16394
|
} | undefined;
|
|
16395
|
+
revoked_at?: string | undefined;
|
|
16399
16396
|
idle_expires_at?: string | undefined;
|
|
16400
16397
|
last_exchanged_at?: string | undefined;
|
|
16401
16398
|
}[];
|
|
16402
|
-
total?: number | undefined;
|
|
16403
16399
|
next?: string | undefined;
|
|
16404
16400
|
} | {
|
|
16401
|
+
start: number;
|
|
16402
|
+
limit: number;
|
|
16403
|
+
length: number;
|
|
16405
16404
|
tokens: {
|
|
16405
|
+
client_id: string;
|
|
16406
16406
|
created_at: string;
|
|
16407
|
+
rotating: boolean;
|
|
16407
16408
|
id: string;
|
|
16408
|
-
client_id: string;
|
|
16409
16409
|
user_id: string;
|
|
16410
|
-
|
|
16410
|
+
login_id: string;
|
|
16411
16411
|
device: {
|
|
16412
16412
|
initial_user_agent: string;
|
|
16413
16413
|
initial_ip: string;
|
|
@@ -16416,23 +16416,23 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16416
16416
|
last_ip: string;
|
|
16417
16417
|
last_asn: string;
|
|
16418
16418
|
};
|
|
16419
|
-
login_id: string;
|
|
16420
16419
|
resource_servers: {
|
|
16421
16420
|
audience: string;
|
|
16422
16421
|
scopes: string;
|
|
16423
16422
|
}[];
|
|
16424
|
-
revoked_at?: string | undefined;
|
|
16425
|
-
expires_at?: string | undefined;
|
|
16426
16423
|
organization?: string | undefined;
|
|
16424
|
+
expires_at?: string | undefined;
|
|
16427
16425
|
session_id?: string | undefined;
|
|
16428
16426
|
auth_connection?: string | undefined;
|
|
16429
16427
|
auth_strategy?: {
|
|
16430
16428
|
strategy: string;
|
|
16431
16429
|
strategy_type: string;
|
|
16432
16430
|
} | undefined;
|
|
16431
|
+
revoked_at?: string | undefined;
|
|
16433
16432
|
idle_expires_at?: string | undefined;
|
|
16434
16433
|
last_exchanged_at?: string | undefined;
|
|
16435
16434
|
}[];
|
|
16435
|
+
total?: number | undefined;
|
|
16436
16436
|
next?: string | undefined;
|
|
16437
16437
|
};
|
|
16438
16438
|
outputFormat: "json";
|
|
@@ -16481,7 +16481,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16481
16481
|
};
|
|
16482
16482
|
};
|
|
16483
16483
|
output: {
|
|
16484
|
-
type: "fn" | "
|
|
16484
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16485
16485
|
date: string;
|
|
16486
16486
|
isMobile: boolean;
|
|
16487
16487
|
log_id: string;
|
|
@@ -16520,7 +16520,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16520
16520
|
limit: number;
|
|
16521
16521
|
length: number;
|
|
16522
16522
|
logs: {
|
|
16523
|
-
type: "fn" | "
|
|
16523
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
16524
16524
|
date: string;
|
|
16525
16525
|
isMobile: boolean;
|
|
16526
16526
|
log_id: string;
|
|
@@ -16839,7 +16839,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16839
16839
|
};
|
|
16840
16840
|
} & {
|
|
16841
16841
|
json: {
|
|
16842
|
-
template: "
|
|
16842
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16843
16843
|
body: string;
|
|
16844
16844
|
from: string;
|
|
16845
16845
|
subject: string;
|
|
@@ -16860,7 +16860,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16860
16860
|
};
|
|
16861
16861
|
} & {
|
|
16862
16862
|
json: {
|
|
16863
|
-
template: "
|
|
16863
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16864
16864
|
body: string;
|
|
16865
16865
|
from: string;
|
|
16866
16866
|
subject: string;
|
|
@@ -16872,7 +16872,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16872
16872
|
};
|
|
16873
16873
|
};
|
|
16874
16874
|
output: {
|
|
16875
|
-
template: "
|
|
16875
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16876
16876
|
body: string;
|
|
16877
16877
|
from: string;
|
|
16878
16878
|
subject: string;
|
|
@@ -16895,7 +16895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16895
16895
|
};
|
|
16896
16896
|
};
|
|
16897
16897
|
output: {
|
|
16898
|
-
name: "
|
|
16898
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16899
16899
|
body: string;
|
|
16900
16900
|
subject: string;
|
|
16901
16901
|
}[];
|
|
@@ -16908,7 +16908,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16908
16908
|
$get: {
|
|
16909
16909
|
input: {
|
|
16910
16910
|
param: {
|
|
16911
|
-
templateName: "
|
|
16911
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16912
16912
|
};
|
|
16913
16913
|
} & {
|
|
16914
16914
|
header: {
|
|
@@ -16921,7 +16921,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16921
16921
|
} | {
|
|
16922
16922
|
input: {
|
|
16923
16923
|
param: {
|
|
16924
|
-
templateName: "
|
|
16924
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16925
16925
|
};
|
|
16926
16926
|
} & {
|
|
16927
16927
|
header: {
|
|
@@ -16929,7 +16929,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16929
16929
|
};
|
|
16930
16930
|
};
|
|
16931
16931
|
output: {
|
|
16932
|
-
template: "
|
|
16932
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16933
16933
|
body: string;
|
|
16934
16934
|
from: string;
|
|
16935
16935
|
subject: string;
|
|
@@ -16948,7 +16948,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16948
16948
|
$put: {
|
|
16949
16949
|
input: {
|
|
16950
16950
|
param: {
|
|
16951
|
-
templateName: "
|
|
16951
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16952
16952
|
};
|
|
16953
16953
|
} & {
|
|
16954
16954
|
header: {
|
|
@@ -16956,7 +16956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16956
16956
|
};
|
|
16957
16957
|
} & {
|
|
16958
16958
|
json: {
|
|
16959
|
-
template: "
|
|
16959
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16960
16960
|
body: string;
|
|
16961
16961
|
subject: string;
|
|
16962
16962
|
syntax?: "liquid" | undefined;
|
|
@@ -16968,7 +16968,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16968
16968
|
};
|
|
16969
16969
|
};
|
|
16970
16970
|
output: {
|
|
16971
|
-
template: "
|
|
16971
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16972
16972
|
body: string;
|
|
16973
16973
|
from: string;
|
|
16974
16974
|
subject: string;
|
|
@@ -16987,7 +16987,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16987
16987
|
$patch: {
|
|
16988
16988
|
input: {
|
|
16989
16989
|
param: {
|
|
16990
|
-
templateName: "
|
|
16990
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16991
16991
|
};
|
|
16992
16992
|
} & {
|
|
16993
16993
|
header: {
|
|
@@ -16995,7 +16995,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16995
16995
|
};
|
|
16996
16996
|
} & {
|
|
16997
16997
|
json: {
|
|
16998
|
-
template?: "
|
|
16998
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
16999
16999
|
body?: string | undefined;
|
|
17000
17000
|
from?: string | undefined;
|
|
17001
17001
|
subject?: string | undefined;
|
|
@@ -17012,7 +17012,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17012
17012
|
} | {
|
|
17013
17013
|
input: {
|
|
17014
17014
|
param: {
|
|
17015
|
-
templateName: "
|
|
17015
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17016
17016
|
};
|
|
17017
17017
|
} & {
|
|
17018
17018
|
header: {
|
|
@@ -17020,7 +17020,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17020
17020
|
};
|
|
17021
17021
|
} & {
|
|
17022
17022
|
json: {
|
|
17023
|
-
template?: "
|
|
17023
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
17024
17024
|
body?: string | undefined;
|
|
17025
17025
|
from?: string | undefined;
|
|
17026
17026
|
subject?: string | undefined;
|
|
@@ -17032,7 +17032,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17032
17032
|
};
|
|
17033
17033
|
};
|
|
17034
17034
|
output: {
|
|
17035
|
-
template: "
|
|
17035
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17036
17036
|
body: string;
|
|
17037
17037
|
from: string;
|
|
17038
17038
|
subject: string;
|
|
@@ -17051,7 +17051,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17051
17051
|
$delete: {
|
|
17052
17052
|
input: {
|
|
17053
17053
|
param: {
|
|
17054
|
-
templateName: "
|
|
17054
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17055
17055
|
};
|
|
17056
17056
|
} & {
|
|
17057
17057
|
header: {
|
|
@@ -17064,7 +17064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17064
17064
|
} | {
|
|
17065
17065
|
input: {
|
|
17066
17066
|
param: {
|
|
17067
|
-
templateName: "
|
|
17067
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17068
17068
|
};
|
|
17069
17069
|
} & {
|
|
17070
17070
|
header: {
|
|
@@ -17081,7 +17081,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17081
17081
|
$post: {
|
|
17082
17082
|
input: {
|
|
17083
17083
|
param: {
|
|
17084
|
-
templateName: "
|
|
17084
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
17085
17085
|
};
|
|
17086
17086
|
} & {
|
|
17087
17087
|
header: {
|
|
@@ -17651,7 +17651,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17651
17651
|
base_focus_color: string;
|
|
17652
17652
|
base_hover_color: string;
|
|
17653
17653
|
body_text: string;
|
|
17654
|
-
captcha_widget_theme: "
|
|
17654
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17655
17655
|
error: string;
|
|
17656
17656
|
header: string;
|
|
17657
17657
|
icons: string;
|
|
@@ -17741,7 +17741,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17741
17741
|
base_focus_color: string;
|
|
17742
17742
|
base_hover_color: string;
|
|
17743
17743
|
body_text: string;
|
|
17744
|
-
captcha_widget_theme: "
|
|
17744
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17745
17745
|
error: string;
|
|
17746
17746
|
header: string;
|
|
17747
17747
|
icons: string;
|
|
@@ -17820,7 +17820,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17820
17820
|
base_focus_color: string;
|
|
17821
17821
|
base_hover_color: string;
|
|
17822
17822
|
body_text: string;
|
|
17823
|
-
captcha_widget_theme: "
|
|
17823
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
17824
17824
|
error: string;
|
|
17825
17825
|
header: string;
|
|
17826
17826
|
icons: string;
|
|
@@ -17910,7 +17910,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17910
17910
|
font?: {
|
|
17911
17911
|
url: string;
|
|
17912
17912
|
} | undefined;
|
|
17913
|
-
dark_mode?: "
|
|
17913
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17914
17914
|
};
|
|
17915
17915
|
outputFormat: "json";
|
|
17916
17916
|
status: 200;
|
|
@@ -17940,7 +17940,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17940
17940
|
font?: {
|
|
17941
17941
|
url: string;
|
|
17942
17942
|
} | undefined;
|
|
17943
|
-
dark_mode?: "
|
|
17943
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17944
17944
|
};
|
|
17945
17945
|
};
|
|
17946
17946
|
output: {
|
|
@@ -17959,7 +17959,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17959
17959
|
font?: {
|
|
17960
17960
|
url: string;
|
|
17961
17961
|
} | undefined;
|
|
17962
|
-
dark_mode?: "
|
|
17962
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
17963
17963
|
};
|
|
17964
17964
|
outputFormat: "json";
|
|
17965
17965
|
status: 200;
|
|
@@ -18033,7 +18033,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18033
18033
|
} & {
|
|
18034
18034
|
json: {
|
|
18035
18035
|
body?: string | undefined;
|
|
18036
|
-
screen?: "password" | "
|
|
18036
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
18037
18037
|
branding?: {
|
|
18038
18038
|
colors?: {
|
|
18039
18039
|
primary: string;
|
|
@@ -18050,7 +18050,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18050
18050
|
font?: {
|
|
18051
18051
|
url: string;
|
|
18052
18052
|
} | undefined;
|
|
18053
|
-
dark_mode?: "
|
|
18053
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
18054
18054
|
} | undefined;
|
|
18055
18055
|
theme?: {
|
|
18056
18056
|
borders?: {
|
|
@@ -18068,7 +18068,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18068
18068
|
base_focus_color: string;
|
|
18069
18069
|
base_hover_color: string;
|
|
18070
18070
|
body_text: string;
|
|
18071
|
-
captcha_widget_theme: "
|
|
18071
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
18072
18072
|
error: string;
|
|
18073
18073
|
header: string;
|
|
18074
18074
|
icons: string;
|
|
@@ -19450,7 +19450,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19450
19450
|
client_id: string;
|
|
19451
19451
|
redirect_url?: string | undefined;
|
|
19452
19452
|
login_hint?: string | undefined;
|
|
19453
|
-
screen_hint?: "
|
|
19453
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
19454
19454
|
};
|
|
19455
19455
|
};
|
|
19456
19456
|
output: {};
|
|
@@ -19462,7 +19462,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19462
19462
|
client_id: string;
|
|
19463
19463
|
redirect_url?: string | undefined;
|
|
19464
19464
|
login_hint?: string | undefined;
|
|
19465
|
-
screen_hint?: "
|
|
19465
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
19466
19466
|
};
|
|
19467
19467
|
};
|
|
19468
19468
|
output: {
|
|
@@ -19740,18 +19740,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19740
19740
|
send: "code" | "link";
|
|
19741
19741
|
authParams: {
|
|
19742
19742
|
scope?: string | undefined;
|
|
19743
|
-
|
|
19743
|
+
state?: string | undefined;
|
|
19744
19744
|
act_as?: string | undefined;
|
|
19745
19745
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19746
19746
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19747
19747
|
redirect_uri?: string | undefined;
|
|
19748
19748
|
audience?: string | undefined;
|
|
19749
19749
|
organization?: string | undefined;
|
|
19750
|
-
state?: string | undefined;
|
|
19751
19750
|
nonce?: string | undefined;
|
|
19752
19751
|
prompt?: string | undefined;
|
|
19753
19752
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19754
19753
|
code_challenge?: string | undefined;
|
|
19754
|
+
username?: string | undefined;
|
|
19755
19755
|
ui_locales?: string | undefined;
|
|
19756
19756
|
max_age?: number | undefined;
|
|
19757
19757
|
acr_values?: string | undefined;
|
|
@@ -19776,18 +19776,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19776
19776
|
send: "code" | "link";
|
|
19777
19777
|
authParams: {
|
|
19778
19778
|
scope?: string | undefined;
|
|
19779
|
-
|
|
19779
|
+
state?: string | undefined;
|
|
19780
19780
|
act_as?: string | undefined;
|
|
19781
19781
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19782
19782
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19783
19783
|
redirect_uri?: string | undefined;
|
|
19784
19784
|
audience?: string | undefined;
|
|
19785
19785
|
organization?: string | undefined;
|
|
19786
|
-
state?: string | undefined;
|
|
19787
19786
|
nonce?: string | undefined;
|
|
19788
19787
|
prompt?: string | undefined;
|
|
19789
19788
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
19790
19789
|
code_challenge?: string | undefined;
|
|
19790
|
+
username?: string | undefined;
|
|
19791
19791
|
ui_locales?: string | undefined;
|
|
19792
19792
|
max_age?: number | undefined;
|
|
19793
19793
|
acr_values?: string | undefined;
|
|
@@ -19919,14 +19919,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19919
19919
|
input: {
|
|
19920
19920
|
form: {
|
|
19921
19921
|
token: string;
|
|
19922
|
-
token_type_hint?: "
|
|
19922
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19923
19923
|
client_id?: string | undefined;
|
|
19924
19924
|
client_secret?: string | undefined;
|
|
19925
19925
|
};
|
|
19926
19926
|
} & {
|
|
19927
19927
|
json: {
|
|
19928
19928
|
token: string;
|
|
19929
|
-
token_type_hint?: "
|
|
19929
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19930
19930
|
client_id?: string | undefined;
|
|
19931
19931
|
client_secret?: string | undefined;
|
|
19932
19932
|
};
|
|
@@ -19938,14 +19938,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19938
19938
|
input: {
|
|
19939
19939
|
form: {
|
|
19940
19940
|
token: string;
|
|
19941
|
-
token_type_hint?: "
|
|
19941
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19942
19942
|
client_id?: string | undefined;
|
|
19943
19943
|
client_secret?: string | undefined;
|
|
19944
19944
|
};
|
|
19945
19945
|
} & {
|
|
19946
19946
|
json: {
|
|
19947
19947
|
token: string;
|
|
19948
|
-
token_type_hint?: "
|
|
19948
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19949
19949
|
client_id?: string | undefined;
|
|
19950
19950
|
client_secret?: string | undefined;
|
|
19951
19951
|
};
|
|
@@ -19960,14 +19960,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19960
19960
|
input: {
|
|
19961
19961
|
form: {
|
|
19962
19962
|
token: string;
|
|
19963
|
-
token_type_hint?: "
|
|
19963
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19964
19964
|
client_id?: string | undefined;
|
|
19965
19965
|
client_secret?: string | undefined;
|
|
19966
19966
|
};
|
|
19967
19967
|
} & {
|
|
19968
19968
|
json: {
|
|
19969
19969
|
token: string;
|
|
19970
|
-
token_type_hint?: "
|
|
19970
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
19971
19971
|
client_id?: string | undefined;
|
|
19972
19972
|
client_secret?: string | undefined;
|
|
19973
19973
|
};
|
|
@@ -20017,7 +20017,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20017
20017
|
client_id: string;
|
|
20018
20018
|
username: string;
|
|
20019
20019
|
otp: string;
|
|
20020
|
-
realm: "
|
|
20020
|
+
realm: "sms" | "email";
|
|
20021
|
+
scope?: string | undefined;
|
|
20022
|
+
audience?: string | undefined;
|
|
20021
20023
|
} | {
|
|
20022
20024
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20023
20025
|
subject_token: string;
|
|
@@ -20064,7 +20066,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20064
20066
|
client_id: string;
|
|
20065
20067
|
username: string;
|
|
20066
20068
|
otp: string;
|
|
20067
|
-
realm: "
|
|
20069
|
+
realm: "sms" | "email";
|
|
20070
|
+
scope?: string | undefined;
|
|
20071
|
+
audience?: string | undefined;
|
|
20068
20072
|
} | {
|
|
20069
20073
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20070
20074
|
subject_token: string;
|
|
@@ -20078,9 +20082,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20078
20082
|
client_assertion_type?: string | undefined;
|
|
20079
20083
|
};
|
|
20080
20084
|
};
|
|
20081
|
-
output: {
|
|
20082
|
-
|
|
20083
|
-
|
|
20085
|
+
output: {
|
|
20086
|
+
access_token: string;
|
|
20087
|
+
token_type: string;
|
|
20088
|
+
expires_in: number;
|
|
20089
|
+
id_token?: string | undefined;
|
|
20090
|
+
scope?: string | undefined;
|
|
20091
|
+
state?: string | undefined;
|
|
20092
|
+
refresh_token?: string | undefined;
|
|
20093
|
+
};
|
|
20094
|
+
outputFormat: "json";
|
|
20095
|
+
status: 200;
|
|
20084
20096
|
} | {
|
|
20085
20097
|
input: {
|
|
20086
20098
|
form: {
|
|
@@ -20116,7 +20128,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20116
20128
|
client_id: string;
|
|
20117
20129
|
username: string;
|
|
20118
20130
|
otp: string;
|
|
20119
|
-
realm: "
|
|
20131
|
+
realm: "sms" | "email";
|
|
20132
|
+
scope?: string | undefined;
|
|
20133
|
+
audience?: string | undefined;
|
|
20120
20134
|
} | {
|
|
20121
20135
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20122
20136
|
subject_token: string;
|
|
@@ -20163,7 +20177,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20163
20177
|
client_id: string;
|
|
20164
20178
|
username: string;
|
|
20165
20179
|
otp: string;
|
|
20166
|
-
realm: "
|
|
20180
|
+
realm: "sms" | "email";
|
|
20181
|
+
scope?: string | undefined;
|
|
20182
|
+
audience?: string | undefined;
|
|
20167
20183
|
} | {
|
|
20168
20184
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20169
20185
|
subject_token: string;
|
|
@@ -20177,17 +20193,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20177
20193
|
client_assertion_type?: string | undefined;
|
|
20178
20194
|
};
|
|
20179
20195
|
};
|
|
20180
|
-
output: {
|
|
20181
|
-
|
|
20182
|
-
|
|
20183
|
-
expires_in: number;
|
|
20184
|
-
id_token?: string | undefined;
|
|
20185
|
-
scope?: string | undefined;
|
|
20186
|
-
state?: string | undefined;
|
|
20187
|
-
refresh_token?: string | undefined;
|
|
20188
|
-
};
|
|
20189
|
-
outputFormat: "json";
|
|
20190
|
-
status: 200;
|
|
20196
|
+
output: {};
|
|
20197
|
+
outputFormat: string;
|
|
20198
|
+
status: 302;
|
|
20191
20199
|
} | {
|
|
20192
20200
|
input: {
|
|
20193
20201
|
form: {
|
|
@@ -20223,7 +20231,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20223
20231
|
client_id: string;
|
|
20224
20232
|
username: string;
|
|
20225
20233
|
otp: string;
|
|
20226
|
-
realm: "
|
|
20234
|
+
realm: "sms" | "email";
|
|
20235
|
+
scope?: string | undefined;
|
|
20236
|
+
audience?: string | undefined;
|
|
20227
20237
|
} | {
|
|
20228
20238
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20229
20239
|
subject_token: string;
|
|
@@ -20270,7 +20280,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20270
20280
|
client_id: string;
|
|
20271
20281
|
username: string;
|
|
20272
20282
|
otp: string;
|
|
20273
|
-
realm: "
|
|
20283
|
+
realm: "sms" | "email";
|
|
20284
|
+
scope?: string | undefined;
|
|
20285
|
+
audience?: string | undefined;
|
|
20274
20286
|
} | {
|
|
20275
20287
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20276
20288
|
subject_token: string;
|
|
@@ -20325,7 +20337,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20325
20337
|
client_id: string;
|
|
20326
20338
|
username: string;
|
|
20327
20339
|
otp: string;
|
|
20328
|
-
realm: "
|
|
20340
|
+
realm: "sms" | "email";
|
|
20341
|
+
scope?: string | undefined;
|
|
20342
|
+
audience?: string | undefined;
|
|
20329
20343
|
} | {
|
|
20330
20344
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20331
20345
|
subject_token: string;
|
|
@@ -20372,7 +20386,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20372
20386
|
client_id: string;
|
|
20373
20387
|
username: string;
|
|
20374
20388
|
otp: string;
|
|
20375
|
-
realm: "
|
|
20389
|
+
realm: "sms" | "email";
|
|
20390
|
+
scope?: string | undefined;
|
|
20391
|
+
audience?: string | undefined;
|
|
20376
20392
|
} | {
|
|
20377
20393
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20378
20394
|
subject_token: string;
|
|
@@ -20427,7 +20443,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20427
20443
|
client_id: string;
|
|
20428
20444
|
username: string;
|
|
20429
20445
|
otp: string;
|
|
20430
|
-
realm: "
|
|
20446
|
+
realm: "sms" | "email";
|
|
20447
|
+
scope?: string | undefined;
|
|
20448
|
+
audience?: string | undefined;
|
|
20431
20449
|
} | {
|
|
20432
20450
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20433
20451
|
subject_token: string;
|
|
@@ -20474,7 +20492,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20474
20492
|
client_id: string;
|
|
20475
20493
|
username: string;
|
|
20476
20494
|
otp: string;
|
|
20477
|
-
realm: "
|
|
20495
|
+
realm: "sms" | "email";
|
|
20496
|
+
scope?: string | undefined;
|
|
20497
|
+
audience?: string | undefined;
|
|
20478
20498
|
} | {
|
|
20479
20499
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
20480
20500
|
subject_token: string;
|
|
@@ -20503,7 +20523,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20503
20523
|
output: {
|
|
20504
20524
|
keys: {
|
|
20505
20525
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
20506
|
-
kty: "
|
|
20526
|
+
kty: "EC" | "RSA" | "oct";
|
|
20507
20527
|
kid?: string | undefined;
|
|
20508
20528
|
use?: "sig" | "enc" | undefined;
|
|
20509
20529
|
n?: string | undefined;
|
|
@@ -20696,7 +20716,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20696
20716
|
};
|
|
20697
20717
|
output: {};
|
|
20698
20718
|
outputFormat: string;
|
|
20699
|
-
status:
|
|
20719
|
+
status: 302;
|
|
20700
20720
|
} | {
|
|
20701
20721
|
input: {
|
|
20702
20722
|
query: {
|
|
@@ -20710,7 +20730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20710
20730
|
};
|
|
20711
20731
|
output: {};
|
|
20712
20732
|
outputFormat: string;
|
|
20713
|
-
status:
|
|
20733
|
+
status: 200;
|
|
20714
20734
|
} | {
|
|
20715
20735
|
input: {
|
|
20716
20736
|
query: {
|
|
@@ -21319,7 +21339,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21319
21339
|
} & {
|
|
21320
21340
|
form: {
|
|
21321
21341
|
username: string;
|
|
21322
|
-
login_selection?: "
|
|
21342
|
+
login_selection?: "code" | "password" | undefined;
|
|
21323
21343
|
};
|
|
21324
21344
|
};
|
|
21325
21345
|
output: {};
|
|
@@ -21333,7 +21353,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21333
21353
|
} & {
|
|
21334
21354
|
form: {
|
|
21335
21355
|
username: string;
|
|
21336
|
-
login_selection?: "
|
|
21356
|
+
login_selection?: "code" | "password" | undefined;
|
|
21337
21357
|
};
|
|
21338
21358
|
};
|
|
21339
21359
|
output: {};
|
|
@@ -21698,7 +21718,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21698
21718
|
$get: {
|
|
21699
21719
|
input: {
|
|
21700
21720
|
param: {
|
|
21701
|
-
screen: "
|
|
21721
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "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";
|
|
21702
21722
|
};
|
|
21703
21723
|
} & {
|
|
21704
21724
|
query: {
|
|
@@ -21714,7 +21734,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21714
21734
|
} | {
|
|
21715
21735
|
input: {
|
|
21716
21736
|
param: {
|
|
21717
|
-
screen: "
|
|
21737
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "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";
|
|
21718
21738
|
};
|
|
21719
21739
|
} & {
|
|
21720
21740
|
query: {
|
|
@@ -21730,7 +21750,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21730
21750
|
} | {
|
|
21731
21751
|
input: {
|
|
21732
21752
|
param: {
|
|
21733
|
-
screen: "
|
|
21753
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "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";
|
|
21734
21754
|
};
|
|
21735
21755
|
} & {
|
|
21736
21756
|
query: {
|
|
@@ -21750,7 +21770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21750
21770
|
$post: {
|
|
21751
21771
|
input: {
|
|
21752
21772
|
param: {
|
|
21753
|
-
screen: "
|
|
21773
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
|
|
21754
21774
|
};
|
|
21755
21775
|
} & {
|
|
21756
21776
|
query: {
|
|
@@ -21768,7 +21788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21768
21788
|
} | {
|
|
21769
21789
|
input: {
|
|
21770
21790
|
param: {
|
|
21771
|
-
screen: "
|
|
21791
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
|
|
21772
21792
|
};
|
|
21773
21793
|
} & {
|
|
21774
21794
|
query: {
|