feat: add is_chat field to board memory and task_id to approvals, update pagination and response models
This commit is contained in:
20
frontend/src/api/generated/model/boardSnapshot.ts
Normal file
20
frontend/src/api/generated/model/boardSnapshot.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* Generated by orval v8.2.0 🍺
|
||||
* Do not edit manually.
|
||||
* Mission Control API
|
||||
* OpenAPI spec version: 0.1.0
|
||||
*/
|
||||
import type { AgentRead } from "./agentRead";
|
||||
import type { ApprovalRead } from "./approvalRead";
|
||||
import type { BoardMemoryRead } from "./boardMemoryRead";
|
||||
import type { BoardRead } from "./boardRead";
|
||||
import type { TaskCardRead } from "./taskCardRead";
|
||||
|
||||
export interface BoardSnapshot {
|
||||
board: BoardRead;
|
||||
tasks: TaskCardRead[];
|
||||
agents: AgentRead[];
|
||||
approvals: ApprovalRead[];
|
||||
chat_messages: BoardMemoryRead[];
|
||||
pending_approvals_count?: number;
|
||||
}
|
||||
Reference in New Issue
Block a user