diff --git a/src/controllers/service/service-controller.ts b/src/controllers/service/service-controller.ts index 9df9f42..594ec8e 100644 --- a/src/controllers/service/service-controller.ts +++ b/src/controllers/service/service-controller.ts @@ -33,6 +33,7 @@ type ServiceCreate = { attributes?: { [key: string]: any; }; + status?: Status; work?: { name: string; productId: string[]; @@ -46,6 +47,7 @@ type ServiceUpdate = { attributes?: { [key: string]: any; }; + status: "ACTIVE" | "INACTIVE"; work?: { name: string; productId: string[];