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
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
12
|
+
gzip?: "false" | "true" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
26
|
+
gzip?: "false" | "true" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "
|
|
99
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -1202,12 +1202,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1202
1202
|
invitee: {
|
|
1203
1203
|
email?: string | undefined;
|
|
1204
1204
|
};
|
|
1205
|
-
id?: string | undefined;
|
|
1206
|
-
roles?: string[] | undefined;
|
|
1207
1205
|
app_metadata?: Record<string, any> | undefined;
|
|
1208
1206
|
user_metadata?: Record<string, any> | undefined;
|
|
1207
|
+
id?: string | undefined;
|
|
1209
1208
|
connection_id?: string | undefined;
|
|
1210
1209
|
ttl_sec?: number | undefined;
|
|
1210
|
+
roles?: string[] | undefined;
|
|
1211
1211
|
send_invitation_email?: boolean | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
@@ -1964,8 +1964,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1964
1964
|
} & {
|
|
1965
1965
|
query: {
|
|
1966
1966
|
page?: string | undefined;
|
|
1967
|
-
from?: string | undefined;
|
|
1968
1967
|
include_totals?: string | undefined;
|
|
1968
|
+
from?: string | undefined;
|
|
1969
1969
|
per_page?: string | undefined;
|
|
1970
1970
|
take?: string | undefined;
|
|
1971
1971
|
};
|
|
@@ -7035,7 +7035,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7035
7035
|
};
|
|
7036
7036
|
};
|
|
7037
7037
|
output: {
|
|
7038
|
-
prompt: "
|
|
7038
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "email-verification" | "login" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7039
7039
|
language: string;
|
|
7040
7040
|
}[];
|
|
7041
7041
|
outputFormat: "json";
|
|
@@ -7073,7 +7073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7073
7073
|
$get: {
|
|
7074
7074
|
input: {
|
|
7075
7075
|
param: {
|
|
7076
|
-
prompt: "
|
|
7076
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "email-verification" | "login" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7077
7077
|
language: string;
|
|
7078
7078
|
};
|
|
7079
7079
|
} & {
|
|
@@ -7095,7 +7095,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7095
7095
|
$put: {
|
|
7096
7096
|
input: {
|
|
7097
7097
|
param: {
|
|
7098
|
-
prompt: "
|
|
7098
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "email-verification" | "login" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7099
7099
|
language: string;
|
|
7100
7100
|
};
|
|
7101
7101
|
} & {
|
|
@@ -7119,7 +7119,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7119
7119
|
$delete: {
|
|
7120
7120
|
input: {
|
|
7121
7121
|
param: {
|
|
7122
|
-
prompt: "
|
|
7122
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "email-verification" | "login" | "invitation" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-otp-challenge" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7123
7123
|
language: string;
|
|
7124
7124
|
};
|
|
7125
7125
|
} & {
|
|
@@ -8731,7 +8731,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8731
8731
|
log_type: string;
|
|
8732
8732
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8733
8733
|
actor: {
|
|
8734
|
-
type: "
|
|
8734
|
+
type: "client_credentials" | "user" | "system" | "api_key" | "admin";
|
|
8735
8735
|
id?: string | undefined;
|
|
8736
8736
|
email?: string | undefined;
|
|
8737
8737
|
org_id?: string | undefined;
|
|
@@ -9042,7 +9042,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9042
9042
|
created_at: string;
|
|
9043
9043
|
updated_at: string;
|
|
9044
9044
|
name: string;
|
|
9045
|
-
provider: "auth0" | "
|
|
9045
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9046
9046
|
connection: string;
|
|
9047
9047
|
enabled: boolean;
|
|
9048
9048
|
credentials: {
|
|
@@ -9074,7 +9074,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9074
9074
|
created_at: string;
|
|
9075
9075
|
updated_at: string;
|
|
9076
9076
|
name: string;
|
|
9077
|
-
provider: "auth0" | "
|
|
9077
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9078
9078
|
connection: string;
|
|
9079
9079
|
enabled: boolean;
|
|
9080
9080
|
credentials: {
|
|
@@ -9100,7 +9100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9100
9100
|
} & {
|
|
9101
9101
|
json: {
|
|
9102
9102
|
name: string;
|
|
9103
|
-
provider: "auth0" | "
|
|
9103
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9104
9104
|
connection: string;
|
|
9105
9105
|
credentials: {
|
|
9106
9106
|
domain: string;
|
|
@@ -9117,7 +9117,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9117
9117
|
created_at: string;
|
|
9118
9118
|
updated_at: string;
|
|
9119
9119
|
name: string;
|
|
9120
|
-
provider: "auth0" | "
|
|
9120
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9121
9121
|
connection: string;
|
|
9122
9122
|
enabled: boolean;
|
|
9123
9123
|
credentials: {
|
|
@@ -9148,7 +9148,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9148
9148
|
json: {
|
|
9149
9149
|
id?: string | undefined;
|
|
9150
9150
|
name?: string | undefined;
|
|
9151
|
-
provider?: "auth0" | "
|
|
9151
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
9152
9152
|
connection?: string | undefined;
|
|
9153
9153
|
enabled?: boolean | undefined;
|
|
9154
9154
|
credentials?: {
|
|
@@ -9164,7 +9164,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9164
9164
|
created_at: string;
|
|
9165
9165
|
updated_at: string;
|
|
9166
9166
|
name: string;
|
|
9167
|
-
provider: "auth0" | "
|
|
9167
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9168
9168
|
connection: string;
|
|
9169
9169
|
enabled: boolean;
|
|
9170
9170
|
credentials: {
|
|
@@ -9382,7 +9382,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9382
9382
|
};
|
|
9383
9383
|
};
|
|
9384
9384
|
output: {
|
|
9385
|
-
type: "
|
|
9385
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
9386
9386
|
date: string;
|
|
9387
9387
|
isMobile: boolean;
|
|
9388
9388
|
log_id: string;
|
|
@@ -9421,7 +9421,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9421
9421
|
limit: number;
|
|
9422
9422
|
length: number;
|
|
9423
9423
|
logs: {
|
|
9424
|
-
type: "
|
|
9424
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
9425
9425
|
date: string;
|
|
9426
9426
|
isMobile: boolean;
|
|
9427
9427
|
log_id: string;
|
|
@@ -9460,7 +9460,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9460
9460
|
next?: string | undefined;
|
|
9461
9461
|
} | {
|
|
9462
9462
|
logs: {
|
|
9463
|
-
type: "
|
|
9463
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
9464
9464
|
date: string;
|
|
9465
9465
|
isMobile: boolean;
|
|
9466
9466
|
log_id: string;
|
|
@@ -9514,7 +9514,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9514
9514
|
};
|
|
9515
9515
|
};
|
|
9516
9516
|
output: {
|
|
9517
|
-
type: "
|
|
9517
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
9518
9518
|
date: string;
|
|
9519
9519
|
isMobile: boolean;
|
|
9520
9520
|
log_id: string;
|
|
@@ -9670,7 +9670,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9670
9670
|
audience?: string | undefined;
|
|
9671
9671
|
client_id?: string | undefined;
|
|
9672
9672
|
allow_any_organization?: string | undefined;
|
|
9673
|
-
subject_type?: "
|
|
9673
|
+
subject_type?: "client" | "user" | undefined;
|
|
9674
9674
|
};
|
|
9675
9675
|
} & {
|
|
9676
9676
|
header: {
|
|
@@ -9685,7 +9685,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9685
9685
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9686
9686
|
allow_any_organization?: boolean | undefined;
|
|
9687
9687
|
is_system?: boolean | undefined;
|
|
9688
|
-
subject_type?: "
|
|
9688
|
+
subject_type?: "client" | "user" | undefined;
|
|
9689
9689
|
authorization_details_types?: string[] | undefined;
|
|
9690
9690
|
created_at?: string | undefined;
|
|
9691
9691
|
updated_at?: string | undefined;
|
|
@@ -9701,7 +9701,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9701
9701
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9702
9702
|
allow_any_organization?: boolean | undefined;
|
|
9703
9703
|
is_system?: boolean | undefined;
|
|
9704
|
-
subject_type?: "
|
|
9704
|
+
subject_type?: "client" | "user" | undefined;
|
|
9705
9705
|
authorization_details_types?: string[] | undefined;
|
|
9706
9706
|
created_at?: string | undefined;
|
|
9707
9707
|
updated_at?: string | undefined;
|
|
@@ -9717,7 +9717,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9717
9717
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9718
9718
|
allow_any_organization?: boolean | undefined;
|
|
9719
9719
|
is_system?: boolean | undefined;
|
|
9720
|
-
subject_type?: "
|
|
9720
|
+
subject_type?: "client" | "user" | undefined;
|
|
9721
9721
|
authorization_details_types?: string[] | undefined;
|
|
9722
9722
|
created_at?: string | undefined;
|
|
9723
9723
|
updated_at?: string | undefined;
|
|
@@ -9748,7 +9748,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9748
9748
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9749
9749
|
allow_any_organization?: boolean | undefined;
|
|
9750
9750
|
is_system?: boolean | undefined;
|
|
9751
|
-
subject_type?: "
|
|
9751
|
+
subject_type?: "client" | "user" | undefined;
|
|
9752
9752
|
authorization_details_types?: string[] | undefined;
|
|
9753
9753
|
created_at?: string | undefined;
|
|
9754
9754
|
updated_at?: string | undefined;
|
|
@@ -9793,7 +9793,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9793
9793
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9794
9794
|
allow_any_organization?: boolean | undefined;
|
|
9795
9795
|
is_system?: boolean | undefined;
|
|
9796
|
-
subject_type?: "
|
|
9796
|
+
subject_type?: "client" | "user" | undefined;
|
|
9797
9797
|
authorization_details_types?: string[] | undefined;
|
|
9798
9798
|
};
|
|
9799
9799
|
};
|
|
@@ -9805,7 +9805,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9805
9805
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9806
9806
|
allow_any_organization?: boolean | undefined;
|
|
9807
9807
|
is_system?: boolean | undefined;
|
|
9808
|
-
subject_type?: "
|
|
9808
|
+
subject_type?: "client" | "user" | undefined;
|
|
9809
9809
|
authorization_details_types?: string[] | undefined;
|
|
9810
9810
|
created_at?: string | undefined;
|
|
9811
9811
|
updated_at?: string | undefined;
|
|
@@ -9829,7 +9829,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9829
9829
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9830
9830
|
allow_any_organization?: boolean | undefined;
|
|
9831
9831
|
is_system?: boolean | undefined;
|
|
9832
|
-
subject_type?: "
|
|
9832
|
+
subject_type?: "client" | "user" | undefined;
|
|
9833
9833
|
authorization_details_types?: string[] | undefined;
|
|
9834
9834
|
};
|
|
9835
9835
|
};
|
|
@@ -9841,7 +9841,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9841
9841
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9842
9842
|
allow_any_organization?: boolean | undefined;
|
|
9843
9843
|
is_system?: boolean | undefined;
|
|
9844
|
-
subject_type?: "
|
|
9844
|
+
subject_type?: "client" | "user" | undefined;
|
|
9845
9845
|
authorization_details_types?: string[] | undefined;
|
|
9846
9846
|
created_at?: string | undefined;
|
|
9847
9847
|
updated_at?: string | undefined;
|
|
@@ -11094,19 +11094,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11094
11094
|
};
|
|
11095
11095
|
output: {
|
|
11096
11096
|
kid: string;
|
|
11097
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11097
11098
|
cert: string;
|
|
11098
11099
|
fingerprint: string;
|
|
11099
11100
|
thumbprint: string;
|
|
11100
|
-
|
|
11101
|
+
connection?: string | undefined;
|
|
11101
11102
|
tenant_id?: string | undefined;
|
|
11102
|
-
current?: boolean | undefined;
|
|
11103
11103
|
next?: boolean | undefined;
|
|
11104
|
+
revoked_at?: string | undefined;
|
|
11105
|
+
current?: boolean | undefined;
|
|
11104
11106
|
previous?: boolean | undefined;
|
|
11105
11107
|
current_since?: string | undefined;
|
|
11106
11108
|
current_until?: string | undefined;
|
|
11107
11109
|
revoked?: boolean | undefined;
|
|
11108
|
-
revoked_at?: string | undefined;
|
|
11109
|
-
connection?: string | undefined;
|
|
11110
11110
|
expires_at?: string | undefined;
|
|
11111
11111
|
expired?: boolean | undefined;
|
|
11112
11112
|
inherited?: boolean | undefined;
|
|
@@ -11133,19 +11133,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11133
11133
|
};
|
|
11134
11134
|
output: {
|
|
11135
11135
|
kid: string;
|
|
11136
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11136
11137
|
cert: string;
|
|
11137
11138
|
fingerprint: string;
|
|
11138
11139
|
thumbprint: string;
|
|
11139
|
-
|
|
11140
|
+
connection?: string | undefined;
|
|
11140
11141
|
tenant_id?: string | undefined;
|
|
11141
|
-
current?: boolean | undefined;
|
|
11142
11142
|
next?: boolean | undefined;
|
|
11143
|
+
revoked_at?: string | undefined;
|
|
11144
|
+
current?: boolean | undefined;
|
|
11143
11145
|
previous?: boolean | undefined;
|
|
11144
11146
|
current_since?: string | undefined;
|
|
11145
11147
|
current_until?: string | undefined;
|
|
11146
11148
|
revoked?: boolean | undefined;
|
|
11147
|
-
revoked_at?: string | undefined;
|
|
11148
|
-
connection?: string | undefined;
|
|
11149
11149
|
expires_at?: string | undefined;
|
|
11150
11150
|
expired?: boolean | undefined;
|
|
11151
11151
|
inherited?: boolean | undefined;
|
|
@@ -11171,19 +11171,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11171
11171
|
};
|
|
11172
11172
|
output: {
|
|
11173
11173
|
kid: string;
|
|
11174
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11174
11175
|
cert: string;
|
|
11175
11176
|
fingerprint: string;
|
|
11176
11177
|
thumbprint: string;
|
|
11177
|
-
|
|
11178
|
+
connection?: string | undefined;
|
|
11178
11179
|
tenant_id?: string | undefined;
|
|
11179
|
-
current?: boolean | undefined;
|
|
11180
11180
|
next?: boolean | undefined;
|
|
11181
|
+
revoked_at?: string | undefined;
|
|
11182
|
+
current?: boolean | undefined;
|
|
11181
11183
|
previous?: boolean | undefined;
|
|
11182
11184
|
current_since?: string | undefined;
|
|
11183
11185
|
current_until?: string | undefined;
|
|
11184
11186
|
revoked?: boolean | undefined;
|
|
11185
|
-
revoked_at?: string | undefined;
|
|
11186
|
-
connection?: string | undefined;
|
|
11187
11187
|
expires_at?: string | undefined;
|
|
11188
11188
|
expired?: boolean | undefined;
|
|
11189
11189
|
inherited?: boolean | undefined;
|
|
@@ -11211,19 +11211,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11211
11211
|
};
|
|
11212
11212
|
output: {
|
|
11213
11213
|
kid: string;
|
|
11214
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11214
11215
|
cert: string;
|
|
11215
11216
|
fingerprint: string;
|
|
11216
11217
|
thumbprint: string;
|
|
11217
|
-
|
|
11218
|
+
connection?: string | undefined;
|
|
11218
11219
|
tenant_id?: string | undefined;
|
|
11219
|
-
current?: boolean | undefined;
|
|
11220
11220
|
next?: boolean | undefined;
|
|
11221
|
+
revoked_at?: string | undefined;
|
|
11222
|
+
current?: boolean | undefined;
|
|
11221
11223
|
previous?: boolean | undefined;
|
|
11222
11224
|
current_since?: string | undefined;
|
|
11223
11225
|
current_until?: string | undefined;
|
|
11224
11226
|
revoked?: boolean | undefined;
|
|
11225
|
-
revoked_at?: string | undefined;
|
|
11226
|
-
connection?: string | undefined;
|
|
11227
11227
|
expires_at?: string | undefined;
|
|
11228
11228
|
expired?: boolean | undefined;
|
|
11229
11229
|
inherited?: boolean | undefined;
|
|
@@ -12069,10 +12069,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12069
12069
|
};
|
|
12070
12070
|
output: {
|
|
12071
12071
|
created_at: string;
|
|
12072
|
-
id: string;
|
|
12073
|
-
client_id: string;
|
|
12074
12072
|
user_id: string;
|
|
12073
|
+
client_id: string;
|
|
12075
12074
|
rotating: boolean;
|
|
12075
|
+
id: string;
|
|
12076
|
+
login_id: string;
|
|
12076
12077
|
device: {
|
|
12077
12078
|
initial_user_agent: string;
|
|
12078
12079
|
initial_ip: string;
|
|
@@ -12081,20 +12082,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12081
12082
|
last_ip: string;
|
|
12082
12083
|
last_asn: string;
|
|
12083
12084
|
};
|
|
12084
|
-
login_id: string;
|
|
12085
12085
|
resource_servers: {
|
|
12086
12086
|
audience: string;
|
|
12087
12087
|
scopes: string;
|
|
12088
12088
|
}[];
|
|
12089
|
-
revoked_at?: string | undefined;
|
|
12090
12089
|
expires_at?: string | undefined;
|
|
12091
|
-
organization?: string | undefined;
|
|
12092
12090
|
session_id?: string | undefined;
|
|
12093
12091
|
auth_connection?: string | undefined;
|
|
12094
12092
|
auth_strategy?: {
|
|
12095
12093
|
strategy: string;
|
|
12096
12094
|
strategy_type: string;
|
|
12097
12095
|
} | undefined;
|
|
12096
|
+
organization?: string | undefined;
|
|
12097
|
+
revoked_at?: string | undefined;
|
|
12098
12098
|
idle_expires_at?: string | undefined;
|
|
12099
12099
|
last_exchanged_at?: string | undefined;
|
|
12100
12100
|
}[] | {
|
|
@@ -12103,10 +12103,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12103
12103
|
length: number;
|
|
12104
12104
|
tokens: {
|
|
12105
12105
|
created_at: string;
|
|
12106
|
-
id: string;
|
|
12107
|
-
client_id: string;
|
|
12108
12106
|
user_id: string;
|
|
12107
|
+
client_id: string;
|
|
12109
12108
|
rotating: boolean;
|
|
12109
|
+
id: string;
|
|
12110
|
+
login_id: string;
|
|
12110
12111
|
device: {
|
|
12111
12112
|
initial_user_agent: string;
|
|
12112
12113
|
initial_ip: string;
|
|
@@ -12115,20 +12116,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12115
12116
|
last_ip: string;
|
|
12116
12117
|
last_asn: string;
|
|
12117
12118
|
};
|
|
12118
|
-
login_id: string;
|
|
12119
12119
|
resource_servers: {
|
|
12120
12120
|
audience: string;
|
|
12121
12121
|
scopes: string;
|
|
12122
12122
|
}[];
|
|
12123
|
-
revoked_at?: string | undefined;
|
|
12124
12123
|
expires_at?: string | undefined;
|
|
12125
|
-
organization?: string | undefined;
|
|
12126
12124
|
session_id?: string | undefined;
|
|
12127
12125
|
auth_connection?: string | undefined;
|
|
12128
12126
|
auth_strategy?: {
|
|
12129
12127
|
strategy: string;
|
|
12130
12128
|
strategy_type: string;
|
|
12131
12129
|
} | undefined;
|
|
12130
|
+
organization?: string | undefined;
|
|
12131
|
+
revoked_at?: string | undefined;
|
|
12132
12132
|
idle_expires_at?: string | undefined;
|
|
12133
12133
|
last_exchanged_at?: string | undefined;
|
|
12134
12134
|
}[];
|
|
@@ -12137,10 +12137,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12137
12137
|
} | {
|
|
12138
12138
|
tokens: {
|
|
12139
12139
|
created_at: string;
|
|
12140
|
-
id: string;
|
|
12141
|
-
client_id: string;
|
|
12142
12140
|
user_id: string;
|
|
12141
|
+
client_id: string;
|
|
12143
12142
|
rotating: boolean;
|
|
12143
|
+
id: string;
|
|
12144
|
+
login_id: string;
|
|
12144
12145
|
device: {
|
|
12145
12146
|
initial_user_agent: string;
|
|
12146
12147
|
initial_ip: string;
|
|
@@ -12149,20 +12150,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12149
12150
|
last_ip: string;
|
|
12150
12151
|
last_asn: string;
|
|
12151
12152
|
};
|
|
12152
|
-
login_id: string;
|
|
12153
12153
|
resource_servers: {
|
|
12154
12154
|
audience: string;
|
|
12155
12155
|
scopes: string;
|
|
12156
12156
|
}[];
|
|
12157
|
-
revoked_at?: string | undefined;
|
|
12158
12157
|
expires_at?: string | undefined;
|
|
12159
|
-
organization?: string | undefined;
|
|
12160
12158
|
session_id?: string | undefined;
|
|
12161
12159
|
auth_connection?: string | undefined;
|
|
12162
12160
|
auth_strategy?: {
|
|
12163
12161
|
strategy: string;
|
|
12164
12162
|
strategy_type: string;
|
|
12165
12163
|
} | undefined;
|
|
12164
|
+
organization?: string | undefined;
|
|
12165
|
+
revoked_at?: string | undefined;
|
|
12166
12166
|
idle_expires_at?: string | undefined;
|
|
12167
12167
|
last_exchanged_at?: string | undefined;
|
|
12168
12168
|
}[];
|
|
@@ -12214,7 +12214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12214
12214
|
};
|
|
12215
12215
|
};
|
|
12216
12216
|
output: {
|
|
12217
|
-
type: "
|
|
12217
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
12218
12218
|
date: string;
|
|
12219
12219
|
isMobile: boolean;
|
|
12220
12220
|
log_id: string;
|
|
@@ -12253,7 +12253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12253
12253
|
limit: number;
|
|
12254
12254
|
length: number;
|
|
12255
12255
|
logs: {
|
|
12256
|
-
type: "
|
|
12256
|
+
type: "fs" | "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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";
|
|
12257
12257
|
date: string;
|
|
12258
12258
|
isMobile: boolean;
|
|
12259
12259
|
log_id: string;
|
|
@@ -13935,7 +13935,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13935
13935
|
json: {
|
|
13936
13936
|
bindings: {
|
|
13937
13937
|
ref: {
|
|
13938
|
-
type?: "
|
|
13938
|
+
type?: "action_name" | "action_id" | undefined;
|
|
13939
13939
|
value?: string | undefined;
|
|
13940
13940
|
id?: string | undefined;
|
|
13941
13941
|
name?: string | undefined;
|
|
@@ -14057,7 +14057,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14057
14057
|
logs: {
|
|
14058
14058
|
action_name: string;
|
|
14059
14059
|
lines: {
|
|
14060
|
-
level: "
|
|
14060
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
14061
14061
|
message: string;
|
|
14062
14062
|
}[];
|
|
14063
14063
|
}[];
|
|
@@ -14726,7 +14726,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14726
14726
|
args: import("hono/utils/types").JSONValue[];
|
|
14727
14727
|
}[];
|
|
14728
14728
|
logs: {
|
|
14729
|
-
level: "
|
|
14729
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
14730
14730
|
message: string;
|
|
14731
14731
|
}[];
|
|
14732
14732
|
error?: string | undefined;
|