Update proto definitions

This commit is contained in:
2025-05-26 04:52:10 +03:00
parent eb15ad269a
commit f33ca7daa1

View File

@@ -14,7 +14,7 @@ message GetListOfProductsRequest{
} }
message Product { message Product {
uint64 id = 1; int64 id = 1;
string offer_id = 2; string offer_id = 2;
Stocks stocks = 3; Stocks stocks = 3;
repeated string barcodes = 4; repeated string barcodes = 4;
@@ -30,9 +30,9 @@ message Product {
bool has_stock = 2; bool has_stock = 2;
} }
message Stock{ message Stock{
uint64 present = 1; int64 present = 1;
uint64 reserved = 2; int64 reserved = 2;
uint64 sku = 3; int64 sku = 3;
string source = 4; string source = 4;
} }
} }