@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.
@@ -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;
@@ -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
@@ -124,6 +124,7 @@ export interface ProductListItemResponse {
124
124
  stickers: ProductStickerResponse[];
125
125
  activePromo?: ProductPromoInfo | undefined;
126
126
  weightKg: number;
127
+ updatedAt: string;
127
128
  }
128
129
 
129
130
  export interface ProductListItemResponse_NameEntry {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.159",
4
+ "version": "1.0.160",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -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