This commit is contained in:
2026-03-18 12:05:28 -05:00
parent f12744f05d
commit 69dfec98ad
16 changed files with 245 additions and 18 deletions

View File

@@ -157,6 +157,7 @@ export interface WorkOrderCompletionDto {
export interface WorkOrderDetailDto extends WorkOrderSummaryDto {
notes: string;
holdReason: string | null;
createdAt: string;
itemType: string;
itemUnitOfMeasure: string;
@@ -218,3 +219,8 @@ export interface WorkOrderOperationTimerInput {
action: "START" | "STOP";
notes: string;
}
export interface WorkOrderStatusUpdateInput {
status: WorkOrderStatus;
reason?: string | null;
}

View File

@@ -189,6 +189,10 @@ export interface ProjectMilestoneInput {
sortOrder: number;
}
export interface ProjectMilestoneStatusUpdateInput {
status: ProjectMilestoneStatus;
}
export interface ProjectDetailDto extends ProjectSummaryDto {
notes: string;
createdAt: string;