@platfformx/proto-contracts 1.4.19 → 1.4.21
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/package.json
CHANGED
|
@@ -14,7 +14,7 @@ service ReviewService {
|
|
|
14
14
|
message CreateReviewRequest {
|
|
15
15
|
string user_id = 1;
|
|
16
16
|
string product_id = 2;
|
|
17
|
-
|
|
17
|
+
float rating = 3;
|
|
18
18
|
optional string comment = 4;
|
|
19
19
|
|
|
20
20
|
}
|
|
@@ -54,6 +54,6 @@ message Review {
|
|
|
54
54
|
string review_id = 2;
|
|
55
55
|
string product_id = 3;
|
|
56
56
|
optional string comment = 4;
|
|
57
|
-
|
|
57
|
+
float rating = 5;
|
|
58
58
|
string created_at = 6;
|
|
59
59
|
}
|