@mamindom/contracts 1.0.159 → 1.0.160
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 -0
- package/dist/proto/product.proto +3 -1
- package/gen/product.ts +1 -0
- package/package.json +1 -1
- package/proto/product.proto +3 -1
package/dist/gen/product.d.ts
CHANGED
|
@@ -103,6 +103,7 @@ export interface ProductListItemResponse {
|
|
|
103
103
|
stickers: ProductStickerResponse[];
|
|
104
104
|
activePromo?: ProductPromoInfo | undefined;
|
|
105
105
|
weightKg: number;
|
|
106
|
+
updatedAt: string;
|
|
106
107
|
}
|
|
107
108
|
export interface ProductListItemResponse_NameEntry {
|
|
108
109
|
key: string;
|
package/dist/proto/product.proto
CHANGED
|
@@ -180,8 +180,10 @@ message ProductListItemResponse {
|
|
|
180
180
|
int32 review_count = 21;
|
|
181
181
|
repeated ProductStickerResponse stickers = 22;
|
|
182
182
|
optional ProductPromoInfo active_promo = 23;
|
|
183
|
-
|
|
183
|
+
|
|
184
184
|
double weight_kg = 24;
|
|
185
|
+
|
|
186
|
+
string updated_at = 25;
|
|
185
187
|
}
|
|
186
188
|
|
|
187
189
|
|
package/gen/product.ts
CHANGED
package/package.json
CHANGED
package/proto/product.proto
CHANGED
|
@@ -180,8 +180,10 @@ message ProductListItemResponse {
|
|
|
180
180
|
int32 review_count = 21;
|
|
181
181
|
repeated ProductStickerResponse stickers = 22;
|
|
182
182
|
optional ProductPromoInfo active_promo = 23;
|
|
183
|
-
|
|
183
|
+
|
|
184
184
|
double weight_kg = 24;
|
|
185
|
+
|
|
186
|
+
string updated_at = 25;
|
|
185
187
|
}
|
|
186
188
|
|
|
187
189
|
|