Compare commits

...

6 Commits

Author SHA1 Message Date
84924dc33f Update proto definitions 2025-07-16 00:52:29 +03:00
bc9c1b7eaf Update proto definitions 2025-07-16 00:39:01 +03:00
4774068c8d Update proto definitions 2025-07-15 23:31:44 +03:00
2a3023647a Update proto definitions 2025-07-15 23:31:11 +03:00
9e4f1c3b71 Update proto definitions 2025-07-15 23:20:39 +03:00
14c853ae3a Update proto definitions 2025-07-15 20:38:44 +03:00

View File

@@ -14,11 +14,34 @@ message GetProductsRequest {
message Product {
message Size{
repeated string skus = 1;
int64 chrtID = 2;
string techSize = 3;
string wbSize = 4;
}
message Characteristic{
int64 id = 1;
string name = 2;
bytes value = 3;
}
message Photo {
string big = 1;
}
message Dimensions {
int64 length = 1;
int64 width = 2;
int64 height = 3;
float weightBrutto = 4;
bool isValid = 5;
}
int64 nmID = 1;
int64 subjectID = 2;
string vendor_code = 3;
repeated Size sizes = 4;
repeated Characteristic characteristics = 5;
repeated Photo photos = 6;
Dimensions dimensions = 7;
string title = 8;
}
message GetProductsResponse {
repeated Product products = 1;