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
|
@@ -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;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "
|
|
394
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "
|
|
402
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "
|
|
415
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "
|
|
427
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1196,19 +1196,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1196
1196
|
} & {
|
|
1197
1197
|
json: {
|
|
1198
1198
|
client_id: string;
|
|
1199
|
-
invitee: {
|
|
1200
|
-
email?: string | undefined;
|
|
1201
|
-
};
|
|
1202
1199
|
inviter: {
|
|
1203
1200
|
name?: string | undefined;
|
|
1204
1201
|
};
|
|
1205
|
-
|
|
1202
|
+
invitee: {
|
|
1203
|
+
email?: string | undefined;
|
|
1204
|
+
};
|
|
1206
1205
|
app_metadata?: Record<string, any> | undefined;
|
|
1207
1206
|
user_metadata?: Record<string, any> | undefined;
|
|
1207
|
+
id?: string | undefined;
|
|
1208
1208
|
connection_id?: string | undefined;
|
|
1209
|
+
ttl_sec?: number | undefined;
|
|
1209
1210
|
roles?: string[] | undefined;
|
|
1210
1211
|
send_invitation_email?: boolean | undefined;
|
|
1211
|
-
ttl_sec?: number | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
1214
1214
|
output: {
|
|
@@ -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;
|
|
@@ -11093,16 +11093,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11093
11093
|
};
|
|
11094
11094
|
};
|
|
11095
11095
|
output: {
|
|
11096
|
-
type: "jwt_signing" | "saml_encryption";
|
|
11097
11096
|
kid: string;
|
|
11097
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11098
11098
|
cert: string;
|
|
11099
11099
|
fingerprint: string;
|
|
11100
11100
|
thumbprint: string;
|
|
11101
|
-
revoked_at?: string | undefined;
|
|
11102
|
-
tenant_id?: string | undefined;
|
|
11103
11101
|
connection?: string | undefined;
|
|
11104
|
-
|
|
11102
|
+
tenant_id?: string | undefined;
|
|
11105
11103
|
next?: boolean | undefined;
|
|
11104
|
+
revoked_at?: string | undefined;
|
|
11105
|
+
current?: boolean | undefined;
|
|
11106
11106
|
previous?: boolean | undefined;
|
|
11107
11107
|
current_since?: string | undefined;
|
|
11108
11108
|
current_until?: string | undefined;
|
|
@@ -11132,16 +11132,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11132
11132
|
};
|
|
11133
11133
|
};
|
|
11134
11134
|
output: {
|
|
11135
|
-
type: "jwt_signing" | "saml_encryption";
|
|
11136
11135
|
kid: string;
|
|
11136
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11137
11137
|
cert: string;
|
|
11138
11138
|
fingerprint: string;
|
|
11139
11139
|
thumbprint: string;
|
|
11140
|
-
revoked_at?: string | undefined;
|
|
11141
|
-
tenant_id?: string | undefined;
|
|
11142
11140
|
connection?: string | undefined;
|
|
11143
|
-
|
|
11141
|
+
tenant_id?: string | undefined;
|
|
11144
11142
|
next?: boolean | undefined;
|
|
11143
|
+
revoked_at?: string | undefined;
|
|
11144
|
+
current?: boolean | undefined;
|
|
11145
11145
|
previous?: boolean | undefined;
|
|
11146
11146
|
current_since?: string | undefined;
|
|
11147
11147
|
current_until?: string | undefined;
|
|
@@ -11170,16 +11170,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11170
11170
|
};
|
|
11171
11171
|
};
|
|
11172
11172
|
output: {
|
|
11173
|
-
type: "jwt_signing" | "saml_encryption";
|
|
11174
11173
|
kid: string;
|
|
11174
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11175
11175
|
cert: string;
|
|
11176
11176
|
fingerprint: string;
|
|
11177
11177
|
thumbprint: string;
|
|
11178
|
-
revoked_at?: string | undefined;
|
|
11179
|
-
tenant_id?: string | undefined;
|
|
11180
11178
|
connection?: string | undefined;
|
|
11181
|
-
|
|
11179
|
+
tenant_id?: string | undefined;
|
|
11182
11180
|
next?: boolean | undefined;
|
|
11181
|
+
revoked_at?: string | undefined;
|
|
11182
|
+
current?: boolean | undefined;
|
|
11183
11183
|
previous?: boolean | undefined;
|
|
11184
11184
|
current_since?: string | undefined;
|
|
11185
11185
|
current_until?: string | undefined;
|
|
@@ -11210,16 +11210,16 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11210
11210
|
};
|
|
11211
11211
|
};
|
|
11212
11212
|
output: {
|
|
11213
|
-
type: "jwt_signing" | "saml_encryption";
|
|
11214
11213
|
kid: string;
|
|
11214
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11215
11215
|
cert: string;
|
|
11216
11216
|
fingerprint: string;
|
|
11217
11217
|
thumbprint: string;
|
|
11218
|
-
revoked_at?: string | undefined;
|
|
11219
|
-
tenant_id?: string | undefined;
|
|
11220
11218
|
connection?: string | undefined;
|
|
11221
|
-
|
|
11219
|
+
tenant_id?: string | undefined;
|
|
11222
11220
|
next?: boolean | undefined;
|
|
11221
|
+
revoked_at?: string | undefined;
|
|
11222
|
+
current?: boolean | undefined;
|
|
11223
11223
|
previous?: boolean | undefined;
|
|
11224
11224
|
current_since?: string | undefined;
|
|
11225
11225
|
current_until?: string | undefined;
|
|
@@ -12069,8 +12069,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12069
12069
|
};
|
|
12070
12070
|
output: {
|
|
12071
12071
|
created_at: string;
|
|
12072
|
-
id: string;
|
|
12073
12072
|
user_id: string;
|
|
12073
|
+
client_id: string;
|
|
12074
|
+
rotating: boolean;
|
|
12075
|
+
id: string;
|
|
12076
|
+
login_id: string;
|
|
12074
12077
|
device: {
|
|
12075
12078
|
initial_user_agent: string;
|
|
12076
12079
|
initial_ip: string;
|
|
@@ -12079,16 +12082,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12079
12082
|
last_ip: string;
|
|
12080
12083
|
last_asn: string;
|
|
12081
12084
|
};
|
|
12082
|
-
client_id: string;
|
|
12083
|
-
rotating: boolean;
|
|
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
|
-
idle_expires_at?: string | undefined;
|
|
12092
12090
|
session_id?: string | undefined;
|
|
12093
12091
|
auth_connection?: string | undefined;
|
|
12094
12092
|
auth_strategy?: {
|
|
@@ -12096,6 +12094,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12096
12094
|
strategy_type: string;
|
|
12097
12095
|
} | undefined;
|
|
12098
12096
|
organization?: string | undefined;
|
|
12097
|
+
revoked_at?: string | undefined;
|
|
12098
|
+
idle_expires_at?: string | undefined;
|
|
12099
12099
|
last_exchanged_at?: string | undefined;
|
|
12100
12100
|
}[] | {
|
|
12101
12101
|
start: number;
|
|
@@ -12103,8 +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
12106
|
user_id: string;
|
|
12107
|
+
client_id: string;
|
|
12108
|
+
rotating: boolean;
|
|
12109
|
+
id: string;
|
|
12110
|
+
login_id: string;
|
|
12108
12111
|
device: {
|
|
12109
12112
|
initial_user_agent: string;
|
|
12110
12113
|
initial_ip: string;
|
|
@@ -12113,16 +12116,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12113
12116
|
last_ip: string;
|
|
12114
12117
|
last_asn: string;
|
|
12115
12118
|
};
|
|
12116
|
-
client_id: string;
|
|
12117
|
-
rotating: boolean;
|
|
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
|
-
idle_expires_at?: string | undefined;
|
|
12126
12124
|
session_id?: string | undefined;
|
|
12127
12125
|
auth_connection?: string | undefined;
|
|
12128
12126
|
auth_strategy?: {
|
|
@@ -12130,6 +12128,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12130
12128
|
strategy_type: string;
|
|
12131
12129
|
} | undefined;
|
|
12132
12130
|
organization?: string | undefined;
|
|
12131
|
+
revoked_at?: string | undefined;
|
|
12132
|
+
idle_expires_at?: string | undefined;
|
|
12133
12133
|
last_exchanged_at?: string | undefined;
|
|
12134
12134
|
}[];
|
|
12135
12135
|
total?: number | undefined;
|
|
@@ -12137,8 +12137,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12137
12137
|
} | {
|
|
12138
12138
|
tokens: {
|
|
12139
12139
|
created_at: string;
|
|
12140
|
-
id: string;
|
|
12141
12140
|
user_id: string;
|
|
12141
|
+
client_id: string;
|
|
12142
|
+
rotating: boolean;
|
|
12143
|
+
id: string;
|
|
12144
|
+
login_id: string;
|
|
12142
12145
|
device: {
|
|
12143
12146
|
initial_user_agent: string;
|
|
12144
12147
|
initial_ip: string;
|
|
@@ -12147,16 +12150,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12147
12150
|
last_ip: string;
|
|
12148
12151
|
last_asn: string;
|
|
12149
12152
|
};
|
|
12150
|
-
client_id: string;
|
|
12151
|
-
rotating: boolean;
|
|
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
|
-
idle_expires_at?: string | undefined;
|
|
12160
12158
|
session_id?: string | undefined;
|
|
12161
12159
|
auth_connection?: string | undefined;
|
|
12162
12160
|
auth_strategy?: {
|
|
@@ -12164,6 +12162,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12164
12162
|
strategy_type: string;
|
|
12165
12163
|
} | undefined;
|
|
12166
12164
|
organization?: string | undefined;
|
|
12165
|
+
revoked_at?: string | undefined;
|
|
12166
|
+
idle_expires_at?: string | undefined;
|
|
12167
12167
|
last_exchanged_at?: string | undefined;
|
|
12168
12168
|
}[];
|
|
12169
12169
|
next?: string | undefined;
|
|
@@ -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;
|