@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.
- package/dist/gen/product.d.ts +2 -0
- package/dist/proto/product.proto +2 -0
- package/gen/product.ts +2 -0
- package/package.json +1 -1
- package/proto/product.proto +2 -0
package/dist/gen/product.d.ts
CHANGED
|
@@ -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;
|
package/dist/proto/product.proto
CHANGED
|
@@ -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
package/proto/product.proto
CHANGED
|
@@ -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 {
|