@mamindom/contracts 1.0.94 → 1.0.95

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.
@@ -153,6 +153,7 @@ export interface ProductDetailResponse {
153
153
  groupSiblings: ProductGroupMember[];
154
154
  rating: number;
155
155
  reviewCount: number;
156
+ manualRating?: number | undefined;
156
157
  }
157
158
  export interface ProductDetailResponse_NameEntry {
158
159
  key: string;
@@ -398,6 +399,7 @@ export interface UpdateProductRequest {
398
399
  [key: string]: string;
399
400
  };
400
401
  colorHex?: string | undefined;
402
+ manualRating?: number | undefined;
401
403
  }
402
404
  export interface UpdateProductRequest_NameEntry {
403
405
  key: string;
@@ -203,6 +203,7 @@ message ProductDetailResponse {
203
203
  repeated ProductGroupMember group_siblings = 34;
204
204
  float rating = 35;
205
205
  int32 review_count = 36;
206
+ optional float manual_rating = 37;
206
207
  }
207
208
 
208
209
 
@@ -357,6 +358,7 @@ message UpdateProductRequest {
357
358
  optional string group_id = 22;
358
359
  map<string, string> color_label = 23;
359
360
  optional string color_hex = 24;
361
+ optional float manual_rating = 25;
360
362
  }
361
363
 
362
364
  message DeleteProductRequest {
package/gen/product.ts CHANGED
@@ -157,6 +157,7 @@ export interface ProductDetailResponse {
157
157
  groupSiblings: ProductGroupMember[];
158
158
  rating: number;
159
159
  reviewCount: number;
160
+ manualRating?: number | undefined;
160
161
  }
161
162
 
162
163
  export interface ProductDetailResponse_NameEntry {
@@ -397,6 +398,7 @@ export interface UpdateProductRequest {
397
398
  groupId?: string | undefined;
398
399
  colorLabel: { [key: string]: string };
399
400
  colorHex?: string | undefined;
401
+ manualRating?: number | undefined;
400
402
  }
401
403
 
402
404
  export interface UpdateProductRequest_NameEntry {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.94",
4
+ "version": "1.0.95",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -203,6 +203,7 @@ message ProductDetailResponse {
203
203
  repeated ProductGroupMember group_siblings = 34;
204
204
  float rating = 35;
205
205
  int32 review_count = 36;
206
+ optional float manual_rating = 37;
206
207
  }
207
208
 
208
209
 
@@ -357,6 +358,7 @@ message UpdateProductRequest {
357
358
  optional string group_id = 22;
358
359
  map<string, string> color_label = 23;
359
360
  optional string color_hex = 24;
361
+ optional float manual_rating = 25;
360
362
  }
361
363
 
362
364
  message DeleteProductRequest {