@mamindom/contracts 1.0.77 → 1.0.78
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.
- package/dist/gen/product.d.ts +1 -1
- package/dist/proto/product.proto +1 -1
- package/gen/product.ts +1 -1
- package/package.json +1 -1
- package/proto/product.proto +1 -1
package/dist/gen/product.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ export interface ProductDetailResponse {
|
|
|
134
134
|
categoryIds: string[];
|
|
135
135
|
images: ProductImageResponse[];
|
|
136
136
|
warehouses: ProductWarehouseResponse[];
|
|
137
|
-
variants:
|
|
137
|
+
variants: ProductVariantDetailResponse[];
|
|
138
138
|
attributes: ProductAttributeResponse[];
|
|
139
139
|
files: ProductFileResponse[];
|
|
140
140
|
mainImageId?: string | undefined;
|
package/dist/proto/product.proto
CHANGED
|
@@ -186,7 +186,7 @@ message ProductDetailResponse {
|
|
|
186
186
|
repeated string category_ids = 20;
|
|
187
187
|
repeated ProductImageResponse images = 21;
|
|
188
188
|
repeated ProductWarehouseResponse warehouses = 22;
|
|
189
|
-
repeated
|
|
189
|
+
repeated ProductVariantDetailResponse variants = 23;
|
|
190
190
|
repeated ProductAttributeResponse attributes = 24;
|
|
191
191
|
repeated ProductFileResponse files = 25;
|
|
192
192
|
optional string main_image_id = 26;
|
package/gen/product.ts
CHANGED
|
@@ -140,7 +140,7 @@ export interface ProductDetailResponse {
|
|
|
140
140
|
categoryIds: string[];
|
|
141
141
|
images: ProductImageResponse[];
|
|
142
142
|
warehouses: ProductWarehouseResponse[];
|
|
143
|
-
variants:
|
|
143
|
+
variants: ProductVariantDetailResponse[];
|
|
144
144
|
attributes: ProductAttributeResponse[];
|
|
145
145
|
files: ProductFileResponse[];
|
|
146
146
|
mainImageId?: string | undefined;
|
package/package.json
CHANGED
package/proto/product.proto
CHANGED
|
@@ -186,7 +186,7 @@ message ProductDetailResponse {
|
|
|
186
186
|
repeated string category_ids = 20;
|
|
187
187
|
repeated ProductImageResponse images = 21;
|
|
188
188
|
repeated ProductWarehouseResponse warehouses = 22;
|
|
189
|
-
repeated
|
|
189
|
+
repeated ProductVariantDetailResponse variants = 23;
|
|
190
190
|
repeated ProductAttributeResponse attributes = 24;
|
|
191
191
|
repeated ProductFileResponse files = 25;
|
|
192
192
|
optional string main_image_id = 26;
|