From bc9c1b7eaf27cf6d51731c6f5cf3604da0f39c65 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 16 Jul 2025 00:39:01 +0300 Subject: [PATCH] Update proto definitions --- wb/products.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wb/products.proto b/wb/products.proto index f73e59f..e58caa4 100644 --- a/wb/products.proto +++ b/wb/products.proto @@ -32,6 +32,7 @@ message Product { float weightBrutto = 3; bool isValid = 4; } + int64 nmID = 1; int64 subjectID = 2; string vendor_code = 3; @@ -39,6 +40,7 @@ message Product { repeated Characteristic characteristics = 5; repeated Photo photos = 6; Dimensions dimensions = 7; + string title = 8; } message GetProductsResponse { repeated Product products = 1;