fixes
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -189,6 +189,10 @@ export interface ProjectMilestoneInput {
|
||||
sortOrder: number;
|
||||
}
|
||||
|
||||
export interface ProjectMilestoneStatusUpdateInput {
|
||||
status: ProjectMilestoneStatus;
|
||||
}
|
||||
|
||||
export interface ProjectDetailDto extends ProjectSummaryDto {
|
||||
notes: string;
|
||||
createdAt: string;
|
||||
|
||||
Reference in New Issue
Block a user