feat(tags): add tag management interfaces and update related schemas
This commit is contained in:
@@ -4,23 +4,23 @@
|
||||
* Mission Control API
|
||||
* OpenAPI spec version: 0.1.0
|
||||
*/
|
||||
import type { TaskTagRef } from "./taskTagRef";
|
||||
import type { TagRef } from "./tagRef";
|
||||
|
||||
/**
|
||||
* Task summary row used inside board-group snapshot responses.
|
||||
*/
|
||||
export interface BoardGroupTaskSummary {
|
||||
assigned_agent_id?: string | null;
|
||||
assignee?: string | null;
|
||||
id: string;
|
||||
board_id: string;
|
||||
board_name: string;
|
||||
created_at: string;
|
||||
due_at?: string | null;
|
||||
id: string;
|
||||
in_progress_at?: string | null;
|
||||
priority: string;
|
||||
status: string;
|
||||
tags?: TaskTagRef[];
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user