From ccf4edf4e69fc0bc03d8b440f28c22725f0482eb Mon Sep 17 00:00:00 2001 From: Monster <389264167@qq.com> Date: Thu, 17 Jul 2025 19:47:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=20API=20=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/api/types.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/src/api/types.ts b/ui/src/api/types.ts index 1a3044b..0a4e9c4 100644 --- a/ui/src/api/types.ts +++ b/ui/src/api/types.ts @@ -624,6 +624,8 @@ export interface DomainUser { email?: string; /** 用户ID */ id?: string; + /** 是否删除 */ + is_deleted?: boolean; /** 最后活跃时间 */ last_active_at?: number; /** 用户状态 active: 正常 locked: 锁定 inactive: 禁用 */ @@ -659,12 +661,16 @@ export interface DomainUserHeatmapResp { } export interface DomainUserLoginHistory { + /** 插件ID vscode */ + client_id?: string; /** 客户端版本 */ client_version?: string; /** 登录时间 */ created_at?: number; /** 设备信息 */ device?: string; + /** 主机名 */ + hostname?: string; /** IP信息 */ ip_info?: DomainIPInfo; /** 用户信息 */