Update proto definitions

This commit is contained in:
2025-08-17 06:35:09 +03:00
parent 1d7dc237a2
commit ba85f290b8

View File

@@ -11,11 +11,11 @@ message CalculateProductTariffsRequest {
message Offer { message Offer {
int64 category_id = 1; int64 category_id = 1;
int64 price = 2; float price = 2;
int64 length = 3; float length = 3;
int64 width = 4; float width = 4;
int64 height = 5; float height = 5;
int64 weight = 6; float weight = 6;
int64 quantity = 7; int64 quantity = 7;
} }
@@ -35,11 +35,11 @@ message CalculateProductTariffsResponse {
message Offer { message Offer {
int64 category_id = 1; int64 category_id = 1;
int64 price = 2; float price = 2;
int64 length = 3; float length = 3;
int64 width = 4; float width = 4;
int64 height = 5; float height = 5;
int64 weight = 6; float weight = 6;
int64 quantity = 7; int64 quantity = 7;
} }