Update proto definitions

This commit is contained in:
2025-08-14 01:14:58 +03:00
parent d789acb727
commit f345c45e0d

View File

@@ -70,15 +70,20 @@ message GetProductsRequest {
}
message GetProductsResponse {
message Offer {
message WeightDimensions {
float length = 1;
float width = 2;
float height = 3;
float weight = 4;
}
int64 market_category_id = 1;
WeightDimensions weight_dimensions = 2;
message Offer {
message WeightDimensions {
float length = 1;
float width = 2;
float height = 3;
float weight = 4;
}
message BasicPrice{
float value = 1;
}
int64 market_category_id = 1;
WeightDimensions weight_dimensions = 2;
BasicPrice basic_price = 3;
string offer_id = 4;
}
repeated Offer offers = 1;
}