feat(tags): add tag management interfaces and update related schemas

This commit is contained in:
Abhimanyu Saharan
2026-02-12 18:35:48 +05:30
parent 2ebdead95b
commit 8d7d9da4e9
146 changed files with 6956 additions and 8645 deletions

View File

@@ -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;
}