feat(web): project detail views — missions, tasks, PRD viewer (#122) (#140)
Some checks failed
ci/woodpecker/push/ci Pipeline failed
Some checks failed
ci/woodpecker/push/ci Pipeline failed
Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #140.
This commit is contained in:
@@ -52,6 +52,22 @@ export interface Project {
|
||||
description: string | null;
|
||||
status: ProjectStatus;
|
||||
userId: string;
|
||||
ownerId?: string;
|
||||
metadata: Record<string, unknown> | null;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
}
|
||||
|
||||
/** Mission statuses. */
|
||||
export type MissionStatus = 'planning' | 'active' | 'paused' | 'completed' | 'failed';
|
||||
|
||||
/** Mission returned by the gateway API. */
|
||||
export interface Mission {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string | null;
|
||||
status: MissionStatus;
|
||||
projectId: string | null;
|
||||
metadata: Record<string, unknown> | null;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
|
||||
Reference in New Issue
Block a user