This commit is contained in:
2026-03-17 21:04:33 -05:00
parent cdbd54b8cc
commit c06cb66893
7 changed files with 276 additions and 6 deletions

View File

@@ -170,6 +170,16 @@ export interface ProjectCockpitDto {
risk: ProjectCockpitRiskDto;
}
export interface ProjectTimelineEntryDto {
id: string;
sourceType: "PROJECT" | "MILESTONE" | "SALES" | "PURCHASING" | "MANUFACTURING" | "SHIPPING";
title: string;
detail: string;
createdAt: string;
actorName: string | null;
href: string | null;
}
export interface ProjectMilestoneInput {
id?: string | null;
title: string;
@@ -192,6 +202,7 @@ export interface ProjectDetailDto extends ProjectSummaryDto {
customerPhone: string;
milestones: ProjectMilestoneDto[];
cockpit: ProjectCockpitDto;
timeline: ProjectTimelineEntryDto[];
}
export interface ProjectInput {