diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index 2b3b2198..8a5aacf4 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -52,15 +52,16 @@ type AdditionalType = 'string' | 'number' | 'boolean' | Date; // Product export interface ServiceById { - work: Work & { productOnWork: ProductOnWork[] }[]; + work: (Work & { productOnWork: ProductOnWork[] })[]; updatedAt: string; updateBy: string; createdAt: string; createdBy: string; status: Status; - attributes: string; + attributes: Attributes; + detail: string; name: string; - order: number; + code: string; id: string; imageUrl: 'string'; }