From f33ca7daa17e9a465fb538f14021ae35ce944ed1 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 26 May 2025 04:52:10 +0300 Subject: [PATCH] Update proto definitions --- ozon/products.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ozon/products.proto b/ozon/products.proto index 0539838..322172c 100644 --- a/ozon/products.proto +++ b/ozon/products.proto @@ -14,7 +14,7 @@ message GetListOfProductsRequest{ } message Product { - uint64 id = 1; + int64 id = 1; string offer_id = 2; Stocks stocks = 3; repeated string barcodes = 4; @@ -30,9 +30,9 @@ message Product { bool has_stock = 2; } message Stock{ - uint64 present = 1; - uint64 reserved = 2; - uint64 sku = 3; + int64 present = 1; + int64 reserved = 2; + int64 sku = 3; string source = 4; } } \ No newline at end of file