@mamindom/contracts 1.0.108 → 1.0.109

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.
@@ -99,6 +99,7 @@ export interface ProductListItemResponse {
99
99
  colorHex?: string | undefined;
100
100
  rating: number;
101
101
  reviewCount: number;
102
+ stickers: ProductStickerResponse[];
102
103
  }
103
104
  export interface ProductListItemResponse_NameEntry {
104
105
  key: string;
@@ -160,6 +160,7 @@ message ProductListItemResponse {
160
160
  optional string color_hex = 19;
161
161
  float rating = 20;
162
162
  int32 review_count = 21;
163
+ repeated ProductStickerResponse stickers = 22;
163
164
  }
164
165
 
165
166
 
package/gen/product.ts CHANGED
@@ -120,6 +120,7 @@ export interface ProductListItemResponse {
120
120
  colorHex?: string | undefined;
121
121
  rating: number;
122
122
  reviewCount: number;
123
+ stickers: ProductStickerResponse[];
123
124
  }
124
125
 
125
126
  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.108",
4
+ "version": "1.0.109",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -160,6 +160,7 @@ message ProductListItemResponse {
160
160
  optional string color_hex = 19;
161
161
  float rating = 20;
162
162
  int32 review_count = 21;
163
+ repeated ProductStickerResponse stickers = 22;
163
164
  }
164
165
 
165
166