diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index c85a4155..5def270f 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -122,6 +122,7 @@ export interface ProductCreate { name: string; code: string; image?: File; + status?: Status; } export interface ProductUpdate { @@ -134,6 +135,7 @@ export interface ProductUpdate { detail: string; name: string; image?: File; + status?: Status; } //