app online user list

This commit is contained in:
hjlarry
2025-09-24 17:03:33 +08:00
parent 86a9a51952
commit b937fc8978
7 changed files with 107 additions and 10 deletions

View File

@ -159,6 +159,20 @@ export type AppVoicesListResponse = [{
value: string
}]
export type WorkflowOnlineUser = {
user_id?: string
username?: string
avatar?: string | null
sid?: string
}
export type WorkflowOnlineUsersResponse = {
data: Record<string, WorkflowOnlineUser[]> | Array<{
workflow_id: string
users: WorkflowOnlineUser[]
}>
}
export type TracingStatus = {
enabled: boolean
tracing_provider: TracingProvider | null