feat: enhance user profile with detailed tags and asset evaluation
Optimize user detail page for asset assessment and tag info. #VERCEL_SKIP Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
export type DeviceStatus = "online" | "offline" | "unknown"
|
||||
export type DeviceStatus = "online" | "offline" | "unknown" | "busy"
|
||||
|
||||
export type DeviceType = Device
|
||||
|
||||
export interface Device {
|
||||
id: string
|
||||
@@ -6,7 +8,9 @@ export interface Device {
|
||||
wechatId?: string
|
||||
group?: string
|
||||
tags?: string[]
|
||||
os: "Android" | "iOS" | "Windows" | "Mac"
|
||||
status: DeviceStatus
|
||||
owner?: string
|
||||
lastSeen?: string
|
||||
}
|
||||
|
||||
@@ -15,6 +19,7 @@ export interface CreateDeviceParams {
|
||||
wechatId?: string
|
||||
group?: string
|
||||
tags?: string[]
|
||||
os: "Android" | "iOS" | "Windows" | "Mac"
|
||||
}
|
||||
|
||||
export interface UpdateDeviceParams extends Partial<CreateDeviceParams> {
|
||||
|
||||
Reference in New Issue
Block a user