projects
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user