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:
12
apps/gateway/src/projects/projects.dto.ts
Normal file
12
apps/gateway/src/projects/projects.dto.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface CreateProjectDto {
|
||||
name: string;
|
||||
description?: string;
|
||||
status?: 'active' | 'paused' | 'completed' | 'archived';
|
||||
}
|
||||
|
||||
export interface UpdateProjectDto {
|
||||
name?: string;
|
||||
description?: string | null;
|
||||
status?: 'active' | 'paused' | 'completed' | 'archived';
|
||||
metadata?: Record<string, unknown> | null;
|
||||
}
|
||||
Reference in New Issue
Block a user