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; /** 用户信息 */