feat: gateway CRUD routes — conversations, projects, missions, tasks (P1-005/006) (#72)

Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #72.
This commit is contained in:
2026-03-13 02:41:03 +00:00
committed by jason.woltje
parent 38897fe423
commit c54b69f7ce
17 changed files with 417 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
export interface CreateMissionDto {
name: string;
description?: string;
projectId?: string;
status?: 'planning' | 'active' | 'paused' | 'completed' | 'failed';
}
export interface UpdateMissionDto {
name?: string;
description?: string | null;
projectId?: string | null;
status?: 'planning' | 'active' | 'paused' | 'completed' | 'failed';
metadata?: Record<string, unknown> | null;
}