authhero 9.9.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 +135 -135
- package/dist/authhero.mjs +12205 -11732
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/grant-tokens.d.ts +16 -0
- package/dist/types/helpers/refresh-token-lifetime.d.ts +103 -0
- package/dist/types/hooks/addDataHooks.d.ts +4 -3
- package/dist/types/index.d.ts +135 -135
- package/dist/types/routes/auth-api/index.d.ts +32 -32
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +24 -24
- 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/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +80 -80
- package/dist/types/routes/management-api/keys.d.ts +8 -8
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- 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 +1 -1
- package/dist/types/routes/management-api/users.d.ts +20 -20
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- 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/utils/email.d.ts +21 -9
- 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
|
};
|
|
@@ -5463,19 +5463,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5463
5463
|
} & {
|
|
5464
5464
|
json: {
|
|
5465
5465
|
client_id: string;
|
|
5466
|
-
invitee: {
|
|
5467
|
-
email?: string | undefined;
|
|
5468
|
-
};
|
|
5469
5466
|
inviter: {
|
|
5470
5467
|
name?: string | undefined;
|
|
5471
5468
|
};
|
|
5469
|
+
invitee: {
|
|
5470
|
+
email?: string | undefined;
|
|
5471
|
+
};
|
|
5472
5472
|
id?: string | undefined;
|
|
5473
5473
|
app_metadata?: Record<string, any> | undefined;
|
|
5474
5474
|
user_metadata?: Record<string, any> | undefined;
|
|
5475
5475
|
connection_id?: string | undefined;
|
|
5476
5476
|
roles?: string[] | undefined;
|
|
5477
|
-
send_invitation_email?: boolean | undefined;
|
|
5478
5477
|
ttl_sec?: number | undefined;
|
|
5478
|
+
send_invitation_email?: boolean | undefined;
|
|
5479
5479
|
};
|
|
5480
5480
|
};
|
|
5481
5481
|
output: {
|
|
@@ -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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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;
|
|
@@ -15365,15 +15365,15 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15365
15365
|
cert: string;
|
|
15366
15366
|
fingerprint: string;
|
|
15367
15367
|
thumbprint: string;
|
|
15368
|
-
revoked_at?: string | undefined;
|
|
15369
|
-
tenant_id?: string | undefined;
|
|
15370
15368
|
connection?: string | undefined;
|
|
15369
|
+
tenant_id?: string | undefined;
|
|
15371
15370
|
current?: boolean | undefined;
|
|
15372
15371
|
next?: boolean | undefined;
|
|
15373
15372
|
previous?: boolean | undefined;
|
|
15374
15373
|
current_since?: string | undefined;
|
|
15375
15374
|
current_until?: string | undefined;
|
|
15376
15375
|
revoked?: boolean | undefined;
|
|
15376
|
+
revoked_at?: string | undefined;
|
|
15377
15377
|
expires_at?: string | undefined;
|
|
15378
15378
|
expired?: boolean | undefined;
|
|
15379
15379
|
inherited?: boolean | undefined;
|
|
@@ -15404,15 +15404,15 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15404
15404
|
cert: string;
|
|
15405
15405
|
fingerprint: string;
|
|
15406
15406
|
thumbprint: string;
|
|
15407
|
-
revoked_at?: string | undefined;
|
|
15408
|
-
tenant_id?: string | undefined;
|
|
15409
15407
|
connection?: string | undefined;
|
|
15408
|
+
tenant_id?: string | undefined;
|
|
15410
15409
|
current?: boolean | undefined;
|
|
15411
15410
|
next?: boolean | undefined;
|
|
15412
15411
|
previous?: boolean | undefined;
|
|
15413
15412
|
current_since?: string | undefined;
|
|
15414
15413
|
current_until?: string | undefined;
|
|
15415
15414
|
revoked?: boolean | undefined;
|
|
15415
|
+
revoked_at?: string | undefined;
|
|
15416
15416
|
expires_at?: string | undefined;
|
|
15417
15417
|
expired?: boolean | undefined;
|
|
15418
15418
|
inherited?: boolean | undefined;
|
|
@@ -15442,15 +15442,15 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15442
15442
|
cert: string;
|
|
15443
15443
|
fingerprint: string;
|
|
15444
15444
|
thumbprint: string;
|
|
15445
|
-
revoked_at?: string | undefined;
|
|
15446
|
-
tenant_id?: string | undefined;
|
|
15447
15445
|
connection?: string | undefined;
|
|
15446
|
+
tenant_id?: string | undefined;
|
|
15448
15447
|
current?: boolean | undefined;
|
|
15449
15448
|
next?: boolean | undefined;
|
|
15450
15449
|
previous?: boolean | undefined;
|
|
15451
15450
|
current_since?: string | undefined;
|
|
15452
15451
|
current_until?: string | undefined;
|
|
15453
15452
|
revoked?: boolean | undefined;
|
|
15453
|
+
revoked_at?: string | undefined;
|
|
15454
15454
|
expires_at?: string | undefined;
|
|
15455
15455
|
expired?: boolean | undefined;
|
|
15456
15456
|
inherited?: boolean | undefined;
|
|
@@ -15482,15 +15482,15 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15482
15482
|
cert: string;
|
|
15483
15483
|
fingerprint: string;
|
|
15484
15484
|
thumbprint: string;
|
|
15485
|
-
revoked_at?: string | undefined;
|
|
15486
|
-
tenant_id?: string | undefined;
|
|
15487
15485
|
connection?: string | undefined;
|
|
15486
|
+
tenant_id?: string | undefined;
|
|
15488
15487
|
current?: boolean | undefined;
|
|
15489
15488
|
next?: boolean | undefined;
|
|
15490
15489
|
previous?: boolean | undefined;
|
|
15491
15490
|
current_since?: string | undefined;
|
|
15492
15491
|
current_until?: string | undefined;
|
|
15493
15492
|
revoked?: boolean | undefined;
|
|
15493
|
+
revoked_at?: string | undefined;
|
|
15494
15494
|
expires_at?: string | undefined;
|
|
15495
15495
|
expired?: boolean | undefined;
|
|
15496
15496
|
inherited?: boolean | undefined;
|
|
@@ -16335,9 +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
16342
|
user_id: string;
|
|
16343
|
+
login_id: string;
|
|
16341
16344
|
device: {
|
|
16342
16345
|
initial_user_agent: string;
|
|
16343
16346
|
initial_ip: string;
|
|
@@ -16346,32 +16349,29 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16346
16349
|
last_ip: string;
|
|
16347
16350
|
last_asn: string;
|
|
16348
16351
|
};
|
|
16349
|
-
client_id: string;
|
|
16350
|
-
rotating: boolean;
|
|
16351
|
-
login_id: string;
|
|
16352
16352
|
resource_servers: {
|
|
16353
16353
|
audience: string;
|
|
16354
16354
|
scopes: string;
|
|
16355
16355
|
}[];
|
|
16356
|
-
|
|
16356
|
+
organization?: string | undefined;
|
|
16357
16357
|
expires_at?: string | undefined;
|
|
16358
|
-
idle_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;
|
|
16365
|
-
|
|
16364
|
+
revoked_at?: string | undefined;
|
|
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
16373
|
user_id: string;
|
|
16374
|
+
login_id: string;
|
|
16375
16375
|
device: {
|
|
16376
16376
|
initial_user_agent: string;
|
|
16377
16377
|
initial_ip: string;
|
|
@@ -16380,32 +16380,34 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16380
16380
|
last_ip: string;
|
|
16381
16381
|
last_asn: string;
|
|
16382
16382
|
};
|
|
16383
|
-
client_id: string;
|
|
16384
|
-
rotating: boolean;
|
|
16385
|
-
login_id: string;
|
|
16386
16383
|
resource_servers: {
|
|
16387
16384
|
audience: string;
|
|
16388
16385
|
scopes: string;
|
|
16389
16386
|
}[];
|
|
16390
|
-
|
|
16387
|
+
organization?: string | undefined;
|
|
16391
16388
|
expires_at?: string | undefined;
|
|
16392
|
-
idle_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;
|
|
16399
|
-
|
|
16395
|
+
revoked_at?: string | undefined;
|
|
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
16409
|
user_id: string;
|
|
16410
|
+
login_id: string;
|
|
16409
16411
|
device: {
|
|
16410
16412
|
initial_user_agent: string;
|
|
16411
16413
|
initial_ip: string;
|
|
@@ -16414,25 +16416,23 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16414
16416
|
last_ip: string;
|
|
16415
16417
|
last_asn: string;
|
|
16416
16418
|
};
|
|
16417
|
-
client_id: string;
|
|
16418
|
-
rotating: boolean;
|
|
16419
|
-
login_id: string;
|
|
16420
16419
|
resource_servers: {
|
|
16421
16420
|
audience: string;
|
|
16422
16421
|
scopes: string;
|
|
16423
16422
|
}[];
|
|
16424
|
-
|
|
16423
|
+
organization?: string | undefined;
|
|
16425
16424
|
expires_at?: string | undefined;
|
|
16426
|
-
idle_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;
|
|
16433
|
-
|
|
16431
|
+
revoked_at?: string | undefined;
|
|
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: "
|
|
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: "
|
|
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: {
|
|
@@ -19739,19 +19739,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19739
19739
|
email: string;
|
|
19740
19740
|
send: "code" | "link";
|
|
19741
19741
|
authParams: {
|
|
19742
|
-
username?: string | undefined;
|
|
19743
19742
|
scope?: string | undefined;
|
|
19744
|
-
audience?: string | undefined;
|
|
19745
19743
|
state?: string | undefined;
|
|
19746
19744
|
act_as?: string | undefined;
|
|
19747
19745
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19748
19746
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19749
19747
|
redirect_uri?: string | undefined;
|
|
19748
|
+
audience?: string | undefined;
|
|
19750
19749
|
organization?: 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;
|
|
@@ -19775,19 +19775,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19775
19775
|
phone_number: string;
|
|
19776
19776
|
send: "code" | "link";
|
|
19777
19777
|
authParams: {
|
|
19778
|
-
username?: string | undefined;
|
|
19779
19778
|
scope?: string | undefined;
|
|
19780
|
-
audience?: string | undefined;
|
|
19781
19779
|
state?: string | undefined;
|
|
19782
19780
|
act_as?: string | undefined;
|
|
19783
19781
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
19784
19782
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
19785
19783
|
redirect_uri?: string | undefined;
|
|
19784
|
+
audience?: string | undefined;
|
|
19786
19785
|
organization?: 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;
|
|
@@ -20017,7 +20017,7 @@ 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
20021
|
scope?: string | undefined;
|
|
20022
20022
|
audience?: string | undefined;
|
|
20023
20023
|
} | {
|
|
@@ -20066,7 +20066,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20066
20066
|
client_id: string;
|
|
20067
20067
|
username: string;
|
|
20068
20068
|
otp: string;
|
|
20069
|
-
realm: "
|
|
20069
|
+
realm: "sms" | "email";
|
|
20070
20070
|
scope?: string | undefined;
|
|
20071
20071
|
audience?: string | undefined;
|
|
20072
20072
|
} | {
|
|
@@ -20082,9 +20082,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20082
20082
|
client_assertion_type?: string | undefined;
|
|
20083
20083
|
};
|
|
20084
20084
|
};
|
|
20085
|
-
output: {
|
|
20086
|
-
|
|
20087
|
-
|
|
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;
|
|
20088
20096
|
} | {
|
|
20089
20097
|
input: {
|
|
20090
20098
|
form: {
|
|
@@ -20120,7 +20128,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20120
20128
|
client_id: string;
|
|
20121
20129
|
username: string;
|
|
20122
20130
|
otp: string;
|
|
20123
|
-
realm: "
|
|
20131
|
+
realm: "sms" | "email";
|
|
20124
20132
|
scope?: string | undefined;
|
|
20125
20133
|
audience?: string | undefined;
|
|
20126
20134
|
} | {
|
|
@@ -20169,7 +20177,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20169
20177
|
client_id: string;
|
|
20170
20178
|
username: string;
|
|
20171
20179
|
otp: string;
|
|
20172
|
-
realm: "
|
|
20180
|
+
realm: "sms" | "email";
|
|
20173
20181
|
scope?: string | undefined;
|
|
20174
20182
|
audience?: string | undefined;
|
|
20175
20183
|
} | {
|
|
@@ -20185,17 +20193,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20185
20193
|
client_assertion_type?: string | undefined;
|
|
20186
20194
|
};
|
|
20187
20195
|
};
|
|
20188
|
-
output: {
|
|
20189
|
-
|
|
20190
|
-
|
|
20191
|
-
expires_in: number;
|
|
20192
|
-
id_token?: string | undefined;
|
|
20193
|
-
scope?: string | undefined;
|
|
20194
|
-
state?: string | undefined;
|
|
20195
|
-
refresh_token?: string | undefined;
|
|
20196
|
-
};
|
|
20197
|
-
outputFormat: "json";
|
|
20198
|
-
status: 200;
|
|
20196
|
+
output: {};
|
|
20197
|
+
outputFormat: string;
|
|
20198
|
+
status: 302;
|
|
20199
20199
|
} | {
|
|
20200
20200
|
input: {
|
|
20201
20201
|
form: {
|
|
@@ -20231,7 +20231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20231
20231
|
client_id: string;
|
|
20232
20232
|
username: string;
|
|
20233
20233
|
otp: string;
|
|
20234
|
-
realm: "
|
|
20234
|
+
realm: "sms" | "email";
|
|
20235
20235
|
scope?: string | undefined;
|
|
20236
20236
|
audience?: string | undefined;
|
|
20237
20237
|
} | {
|
|
@@ -20280,7 +20280,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20280
20280
|
client_id: string;
|
|
20281
20281
|
username: string;
|
|
20282
20282
|
otp: string;
|
|
20283
|
-
realm: "
|
|
20283
|
+
realm: "sms" | "email";
|
|
20284
20284
|
scope?: string | undefined;
|
|
20285
20285
|
audience?: string | undefined;
|
|
20286
20286
|
} | {
|
|
@@ -20337,7 +20337,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20337
20337
|
client_id: string;
|
|
20338
20338
|
username: string;
|
|
20339
20339
|
otp: string;
|
|
20340
|
-
realm: "
|
|
20340
|
+
realm: "sms" | "email";
|
|
20341
20341
|
scope?: string | undefined;
|
|
20342
20342
|
audience?: string | undefined;
|
|
20343
20343
|
} | {
|
|
@@ -20386,7 +20386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20386
20386
|
client_id: string;
|
|
20387
20387
|
username: string;
|
|
20388
20388
|
otp: string;
|
|
20389
|
-
realm: "
|
|
20389
|
+
realm: "sms" | "email";
|
|
20390
20390
|
scope?: string | undefined;
|
|
20391
20391
|
audience?: string | undefined;
|
|
20392
20392
|
} | {
|
|
@@ -20443,7 +20443,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20443
20443
|
client_id: string;
|
|
20444
20444
|
username: string;
|
|
20445
20445
|
otp: string;
|
|
20446
|
-
realm: "
|
|
20446
|
+
realm: "sms" | "email";
|
|
20447
20447
|
scope?: string | undefined;
|
|
20448
20448
|
audience?: string | undefined;
|
|
20449
20449
|
} | {
|
|
@@ -20492,7 +20492,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20492
20492
|
client_id: string;
|
|
20493
20493
|
username: string;
|
|
20494
20494
|
otp: string;
|
|
20495
|
-
realm: "
|
|
20495
|
+
realm: "sms" | "email";
|
|
20496
20496
|
scope?: string | undefined;
|
|
20497
20497
|
audience?: string | undefined;
|
|
20498
20498
|
} | {
|
|
@@ -20716,7 +20716,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20716
20716
|
};
|
|
20717
20717
|
output: {};
|
|
20718
20718
|
outputFormat: string;
|
|
20719
|
-
status:
|
|
20719
|
+
status: 302;
|
|
20720
20720
|
} | {
|
|
20721
20721
|
input: {
|
|
20722
20722
|
query: {
|
|
@@ -20730,7 +20730,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
20730
20730
|
};
|
|
20731
20731
|
output: {};
|
|
20732
20732
|
outputFormat: string;
|
|
20733
|
-
status:
|
|
20733
|
+
status: 200;
|
|
20734
20734
|
} | {
|
|
20735
20735
|
input: {
|
|
20736
20736
|
query: {
|
|
@@ -21718,7 +21718,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21718
21718
|
$get: {
|
|
21719
21719
|
input: {
|
|
21720
21720
|
param: {
|
|
21721
|
-
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";
|
|
21722
21722
|
};
|
|
21723
21723
|
} & {
|
|
21724
21724
|
query: {
|
|
@@ -21734,7 +21734,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21734
21734
|
} | {
|
|
21735
21735
|
input: {
|
|
21736
21736
|
param: {
|
|
21737
|
-
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";
|
|
21738
21738
|
};
|
|
21739
21739
|
} & {
|
|
21740
21740
|
query: {
|
|
@@ -21750,7 +21750,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21750
21750
|
} | {
|
|
21751
21751
|
input: {
|
|
21752
21752
|
param: {
|
|
21753
|
-
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";
|
|
21754
21754
|
};
|
|
21755
21755
|
} & {
|
|
21756
21756
|
query: {
|
|
@@ -21770,7 +21770,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21770
21770
|
$post: {
|
|
21771
21771
|
input: {
|
|
21772
21772
|
param: {
|
|
21773
|
-
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";
|
|
21774
21774
|
};
|
|
21775
21775
|
} & {
|
|
21776
21776
|
query: {
|
|
@@ -21788,7 +21788,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
21788
21788
|
} | {
|
|
21789
21789
|
input: {
|
|
21790
21790
|
param: {
|
|
21791
|
-
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";
|
|
21792
21792
|
};
|
|
21793
21793
|
} & {
|
|
21794
21794
|
query: {
|