/** * Generated by orval v8.3.0 🍺 * Do not edit manually. * Mission Control API * OpenAPI spec version: 0.1.0 */ import type { TagRef } from "./tagRef"; /** * Task summary row used inside board-group snapshot responses. */ export interface BoardGroupTaskSummary { id: string; board_id: string; board_name: string; title: string; status: string; priority: string; assigned_agent_id?: string | null; assignee?: string | null; due_at?: string | null; in_progress_at?: string | null; tags?: TagRef[]; created_at: string; updated_at: string; }