authhero 9.8.0 → 9.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +139 -139
- package/dist/authhero.d.ts +84 -64
- package/dist/authhero.mjs +8107 -8052
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +26 -3
- package/dist/types/helpers/revoke-session-refresh-tokens.d.ts +33 -0
- package/dist/types/index.d.ts +84 -64
- package/dist/types/routes/auth-api/index.d.ts +33 -13
- 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 +20 -0
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- 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 +44 -44
- package/dist/types/routes/management-api/keys.d.ts +12 -12
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- 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/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +14 -14
- 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/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/jwks.d.ts +2 -2
- package/package.json +6 -6
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "
|
|
239
|
+
name: "otp" | "email" | "sms" | "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: "otp" | "email" | "sms" | "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: "otp" | "email" | "sms" | "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: "otp" | "email" | "sms" | "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: "otp" | "email" | "sms" | "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
|
-
inviter: {
|
|
1200
|
-
name?: string | undefined;
|
|
1201
|
-
};
|
|
1202
1199
|
invitee: {
|
|
1203
1200
|
email?: string | undefined;
|
|
1204
1201
|
};
|
|
1202
|
+
inviter: {
|
|
1203
|
+
name?: string | undefined;
|
|
1204
|
+
};
|
|
1205
1205
|
id?: string | undefined;
|
|
1206
|
-
roles?: string[] | undefined;
|
|
1207
1206
|
app_metadata?: Record<string, any> | undefined;
|
|
1208
1207
|
user_metadata?: Record<string, any> | undefined;
|
|
1209
1208
|
connection_id?: string | undefined;
|
|
1210
|
-
|
|
1209
|
+
roles?: string[] | undefined;
|
|
1211
1210
|
send_invitation_email?: boolean | undefined;
|
|
1211
|
+
ttl_sec?: number | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
1214
1214
|
output: {
|
|
@@ -7035,7 +7035,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7035
7035
|
};
|
|
7036
7036
|
};
|
|
7037
7037
|
output: {
|
|
7038
|
-
prompt: "status" | "
|
|
7038
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
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: "status" | "
|
|
7076
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
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: "status" | "
|
|
7098
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
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: "status" | "
|
|
7122
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7123
7123
|
language: string;
|
|
7124
7124
|
};
|
|
7125
7125
|
} & {
|
|
@@ -9382,7 +9382,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9382
9382
|
};
|
|
9383
9383
|
};
|
|
9384
9384
|
output: {
|
|
9385
|
-
type: "
|
|
9385
|
+
type: "srrt" | "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" | "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" | "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: "srrt" | "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" | "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" | "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: "srrt" | "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" | "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" | "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: "srrt" | "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" | "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" | "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;
|
|
@@ -11093,20 +11093,20 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11093
11093
|
};
|
|
11094
11094
|
};
|
|
11095
11095
|
output: {
|
|
11096
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11096
11097
|
kid: string;
|
|
11097
11098
|
cert: string;
|
|
11098
11099
|
fingerprint: string;
|
|
11099
11100
|
thumbprint: string;
|
|
11100
|
-
|
|
11101
|
+
revoked_at?: string | undefined;
|
|
11101
11102
|
tenant_id?: string | undefined;
|
|
11103
|
+
connection?: string | undefined;
|
|
11102
11104
|
current?: boolean | undefined;
|
|
11103
11105
|
next?: 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;
|
|
@@ -11132,20 +11132,20 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11132
11132
|
};
|
|
11133
11133
|
};
|
|
11134
11134
|
output: {
|
|
11135
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11135
11136
|
kid: string;
|
|
11136
11137
|
cert: string;
|
|
11137
11138
|
fingerprint: string;
|
|
11138
11139
|
thumbprint: string;
|
|
11139
|
-
|
|
11140
|
+
revoked_at?: string | undefined;
|
|
11140
11141
|
tenant_id?: string | undefined;
|
|
11142
|
+
connection?: string | undefined;
|
|
11141
11143
|
current?: boolean | undefined;
|
|
11142
11144
|
next?: 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;
|
|
@@ -11170,20 +11170,20 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11170
11170
|
};
|
|
11171
11171
|
};
|
|
11172
11172
|
output: {
|
|
11173
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11173
11174
|
kid: string;
|
|
11174
11175
|
cert: string;
|
|
11175
11176
|
fingerprint: string;
|
|
11176
11177
|
thumbprint: string;
|
|
11177
|
-
|
|
11178
|
+
revoked_at?: string | undefined;
|
|
11178
11179
|
tenant_id?: string | undefined;
|
|
11180
|
+
connection?: string | undefined;
|
|
11179
11181
|
current?: boolean | undefined;
|
|
11180
11182
|
next?: 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;
|
|
@@ -11210,20 +11210,20 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11210
11210
|
};
|
|
11211
11211
|
};
|
|
11212
11212
|
output: {
|
|
11213
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11213
11214
|
kid: string;
|
|
11214
11215
|
cert: string;
|
|
11215
11216
|
fingerprint: string;
|
|
11216
11217
|
thumbprint: string;
|
|
11217
|
-
|
|
11218
|
+
revoked_at?: string | undefined;
|
|
11218
11219
|
tenant_id?: string | undefined;
|
|
11220
|
+
connection?: string | undefined;
|
|
11219
11221
|
current?: boolean | undefined;
|
|
11220
11222
|
next?: 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;
|
|
@@ -12070,9 +12070,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12070
12070
|
output: {
|
|
12071
12071
|
created_at: string;
|
|
12072
12072
|
id: string;
|
|
12073
|
-
client_id: string;
|
|
12074
12073
|
user_id: string;
|
|
12075
|
-
rotating: boolean;
|
|
12076
12074
|
device: {
|
|
12077
12075
|
initial_user_agent: string;
|
|
12078
12076
|
initial_ip: string;
|
|
@@ -12081,6 +12079,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12081
12079
|
last_ip: string;
|
|
12082
12080
|
last_asn: string;
|
|
12083
12081
|
};
|
|
12082
|
+
client_id: string;
|
|
12083
|
+
rotating: boolean;
|
|
12084
12084
|
login_id: string;
|
|
12085
12085
|
resource_servers: {
|
|
12086
12086
|
audience: string;
|
|
@@ -12088,14 +12088,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12088
12088
|
}[];
|
|
12089
12089
|
revoked_at?: string | undefined;
|
|
12090
12090
|
expires_at?: string | undefined;
|
|
12091
|
-
|
|
12091
|
+
idle_expires_at?: string | undefined;
|
|
12092
12092
|
session_id?: string | undefined;
|
|
12093
12093
|
auth_connection?: string | undefined;
|
|
12094
12094
|
auth_strategy?: {
|
|
12095
12095
|
strategy: string;
|
|
12096
12096
|
strategy_type: string;
|
|
12097
12097
|
} | undefined;
|
|
12098
|
-
|
|
12098
|
+
organization?: string | undefined;
|
|
12099
12099
|
last_exchanged_at?: string | undefined;
|
|
12100
12100
|
}[] | {
|
|
12101
12101
|
start: number;
|
|
@@ -12104,9 +12104,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12104
12104
|
tokens: {
|
|
12105
12105
|
created_at: string;
|
|
12106
12106
|
id: string;
|
|
12107
|
-
client_id: string;
|
|
12108
12107
|
user_id: string;
|
|
12109
|
-
rotating: boolean;
|
|
12110
12108
|
device: {
|
|
12111
12109
|
initial_user_agent: string;
|
|
12112
12110
|
initial_ip: string;
|
|
@@ -12115,6 +12113,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12115
12113
|
last_ip: string;
|
|
12116
12114
|
last_asn: string;
|
|
12117
12115
|
};
|
|
12116
|
+
client_id: string;
|
|
12117
|
+
rotating: boolean;
|
|
12118
12118
|
login_id: string;
|
|
12119
12119
|
resource_servers: {
|
|
12120
12120
|
audience: string;
|
|
@@ -12122,14 +12122,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12122
12122
|
}[];
|
|
12123
12123
|
revoked_at?: string | undefined;
|
|
12124
12124
|
expires_at?: string | undefined;
|
|
12125
|
-
|
|
12125
|
+
idle_expires_at?: string | undefined;
|
|
12126
12126
|
session_id?: string | undefined;
|
|
12127
12127
|
auth_connection?: string | undefined;
|
|
12128
12128
|
auth_strategy?: {
|
|
12129
12129
|
strategy: string;
|
|
12130
12130
|
strategy_type: string;
|
|
12131
12131
|
} | undefined;
|
|
12132
|
-
|
|
12132
|
+
organization?: string | undefined;
|
|
12133
12133
|
last_exchanged_at?: string | undefined;
|
|
12134
12134
|
}[];
|
|
12135
12135
|
total?: number | undefined;
|
|
@@ -12138,9 +12138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12138
12138
|
tokens: {
|
|
12139
12139
|
created_at: string;
|
|
12140
12140
|
id: string;
|
|
12141
|
-
client_id: string;
|
|
12142
12141
|
user_id: string;
|
|
12143
|
-
rotating: boolean;
|
|
12144
12142
|
device: {
|
|
12145
12143
|
initial_user_agent: string;
|
|
12146
12144
|
initial_ip: string;
|
|
@@ -12149,6 +12147,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12149
12147
|
last_ip: string;
|
|
12150
12148
|
last_asn: string;
|
|
12151
12149
|
};
|
|
12150
|
+
client_id: string;
|
|
12151
|
+
rotating: boolean;
|
|
12152
12152
|
login_id: string;
|
|
12153
12153
|
resource_servers: {
|
|
12154
12154
|
audience: string;
|
|
@@ -12156,14 +12156,14 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12156
12156
|
}[];
|
|
12157
12157
|
revoked_at?: string | undefined;
|
|
12158
12158
|
expires_at?: string | undefined;
|
|
12159
|
-
|
|
12159
|
+
idle_expires_at?: string | undefined;
|
|
12160
12160
|
session_id?: string | undefined;
|
|
12161
12161
|
auth_connection?: string | undefined;
|
|
12162
12162
|
auth_strategy?: {
|
|
12163
12163
|
strategy: string;
|
|
12164
12164
|
strategy_type: string;
|
|
12165
12165
|
} | undefined;
|
|
12166
|
-
|
|
12166
|
+
organization?: 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: "srrt" | "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" | "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" | "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: "srrt" | "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" | "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" | "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;
|
|
@@ -16,20 +16,20 @@ export declare const keyRoutes: OpenAPIHono<{
|
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
18
|
output: {
|
|
19
|
+
type: "jwt_signing" | "saml_encryption";
|
|
19
20
|
kid: string;
|
|
20
21
|
cert: string;
|
|
21
22
|
fingerprint: string;
|
|
22
23
|
thumbprint: string;
|
|
23
|
-
|
|
24
|
+
revoked_at?: string | undefined;
|
|
24
25
|
tenant_id?: string | undefined;
|
|
26
|
+
connection?: string | undefined;
|
|
25
27
|
current?: boolean | undefined;
|
|
26
28
|
next?: boolean | undefined;
|
|
27
29
|
previous?: boolean | undefined;
|
|
28
30
|
current_since?: string | undefined;
|
|
29
31
|
current_until?: string | undefined;
|
|
30
32
|
revoked?: boolean | undefined;
|
|
31
|
-
revoked_at?: string | undefined;
|
|
32
|
-
connection?: string | undefined;
|
|
33
33
|
expires_at?: string | undefined;
|
|
34
34
|
expired?: boolean | undefined;
|
|
35
35
|
inherited?: boolean | undefined;
|
|
@@ -55,20 +55,20 @@ export declare const keyRoutes: OpenAPIHono<{
|
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
57
|
output: {
|
|
58
|
+
type: "jwt_signing" | "saml_encryption";
|
|
58
59
|
kid: string;
|
|
59
60
|
cert: string;
|
|
60
61
|
fingerprint: string;
|
|
61
62
|
thumbprint: string;
|
|
62
|
-
|
|
63
|
+
revoked_at?: string | undefined;
|
|
63
64
|
tenant_id?: string | undefined;
|
|
65
|
+
connection?: string | undefined;
|
|
64
66
|
current?: boolean | undefined;
|
|
65
67
|
next?: boolean | undefined;
|
|
66
68
|
previous?: boolean | undefined;
|
|
67
69
|
current_since?: string | undefined;
|
|
68
70
|
current_until?: string | undefined;
|
|
69
71
|
revoked?: boolean | undefined;
|
|
70
|
-
revoked_at?: string | undefined;
|
|
71
|
-
connection?: string | undefined;
|
|
72
72
|
expires_at?: string | undefined;
|
|
73
73
|
expired?: boolean | undefined;
|
|
74
74
|
inherited?: boolean | undefined;
|
|
@@ -93,20 +93,20 @@ export declare const keyRoutes: OpenAPIHono<{
|
|
|
93
93
|
};
|
|
94
94
|
};
|
|
95
95
|
output: {
|
|
96
|
+
type: "jwt_signing" | "saml_encryption";
|
|
96
97
|
kid: string;
|
|
97
98
|
cert: string;
|
|
98
99
|
fingerprint: string;
|
|
99
100
|
thumbprint: string;
|
|
100
|
-
|
|
101
|
+
revoked_at?: string | undefined;
|
|
101
102
|
tenant_id?: string | undefined;
|
|
103
|
+
connection?: string | undefined;
|
|
102
104
|
current?: boolean | undefined;
|
|
103
105
|
next?: boolean | undefined;
|
|
104
106
|
previous?: boolean | undefined;
|
|
105
107
|
current_since?: string | undefined;
|
|
106
108
|
current_until?: string | undefined;
|
|
107
109
|
revoked?: boolean | undefined;
|
|
108
|
-
revoked_at?: string | undefined;
|
|
109
|
-
connection?: string | undefined;
|
|
110
110
|
expires_at?: string | undefined;
|
|
111
111
|
expired?: boolean | undefined;
|
|
112
112
|
inherited?: boolean | undefined;
|
|
@@ -133,20 +133,20 @@ export declare const keyRoutes: OpenAPIHono<{
|
|
|
133
133
|
};
|
|
134
134
|
};
|
|
135
135
|
output: {
|
|
136
|
+
type: "jwt_signing" | "saml_encryption";
|
|
136
137
|
kid: string;
|
|
137
138
|
cert: string;
|
|
138
139
|
fingerprint: string;
|
|
139
140
|
thumbprint: string;
|
|
140
|
-
|
|
141
|
+
revoked_at?: string | undefined;
|
|
141
142
|
tenant_id?: string | undefined;
|
|
143
|
+
connection?: string | undefined;
|
|
142
144
|
current?: boolean | undefined;
|
|
143
145
|
next?: boolean | undefined;
|
|
144
146
|
previous?: boolean | undefined;
|
|
145
147
|
current_since?: string | undefined;
|
|
146
148
|
current_until?: string | undefined;
|
|
147
149
|
revoked?: boolean | undefined;
|
|
148
|
-
revoked_at?: string | undefined;
|
|
149
|
-
connection?: string | undefined;
|
|
150
150
|
expires_at?: string | undefined;
|
|
151
151
|
expired?: boolean | undefined;
|
|
152
152
|
inherited?: boolean | undefined;
|