| 57 | } |
| 58 | |
| 59 | export interface Task { |
| 60 | id: string; |
| 61 | agent_id: string; |
| 62 | title: string; |
| 63 | description?: string; |
| 64 | type: 'todo' | 'supervision'; |
| 65 | status: 'pending' | 'doing' | 'done' | 'paused'; |
| 66 | priority: 'low' | 'medium' | 'high' | 'urgent'; |
| 67 | assignee: string; |
| 68 | created_by: string; |
| 69 | creator_username?: string; |
| 70 | due_date?: string; |
| 71 | supervision_target_name?: string; |
| 72 | supervision_channel?: string; |
| 73 | remind_schedule?: string; |
| 74 | created_at: string; |
| 75 | updated_at: string; |
| 76 | completed_at?: string; |
| 77 | } |
| 78 | |
| 79 | export interface ChatMessage { |
| 80 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected