We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25888c7 commit ccf4edfCopy full SHA for ccf4edf
ui/src/api/types.ts
@@ -624,6 +624,8 @@ export interface DomainUser {
624
email?: string;
625
/** 用户ID */
626
id?: string;
627
+ /** 是否删除 */
628
+ is_deleted?: boolean;
629
/** 最后活跃时间 */
630
last_active_at?: number;
631
/** 用户状态 active: 正常 locked: 锁定 inactive: 禁用 */
@@ -659,12 +661,16 @@ export interface DomainUserHeatmapResp {
659
661
}
660
662
663
export interface DomainUserLoginHistory {
664
+ /** 插件ID vscode */
665
+ client_id?: string;
666
/** 客户端版本 */
667
client_version?: string;
668
/** 登录时间 */
669
created_at?: number;
670
/** 设备信息 */
671
device?: string;
672
+ /** 主机名 */
673
+ hostname?: string;
674
/** IP信息 */
675
ip_info?: DomainIPInfo;
676
/** 用户信息 */
0 commit comments