修改了 API 定义文件

This commit is contained in:
Monster
2025-07-17 19:47:05 +08:00
parent 25888c7733
commit ccf4edf4e6

View File

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