fix: missing type

This commit is contained in:
Methapon2001 2024-06-24 14:22:14 +07:00
parent bf5d72a43d
commit 8918c8f2d6

View file

@ -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[];