@chopkola/common 1.0.144 → 1.0.146
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -60,6 +60,7 @@ export interface ProductI extends Timestamps {
|
|
|
60
60
|
tags: string[] | null;
|
|
61
61
|
attributes: Record<string, any> | null;
|
|
62
62
|
is_approved: boolean;
|
|
63
|
+
category?: CategoryI;
|
|
63
64
|
}
|
|
64
65
|
export interface ProductVariantI extends Timestamps {
|
|
65
66
|
id: UUID;
|
|
@@ -150,3 +151,6 @@ export interface VendorCreateOrEditProductPageData {
|
|
|
150
151
|
categories: CategoryI[];
|
|
151
152
|
product?: ProductAggregateI;
|
|
152
153
|
}
|
|
154
|
+
export interface ProductDetailsData {
|
|
155
|
+
product: ProductAggregateI;
|
|
156
|
+
}
|