From 1ca56b1eee0a61ed6eb735cbd15ab90da6be6414 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 23 Jul 2025 04:29:43 +0300 Subject: [PATCH] Update proto definitions --- ozon/products.proto | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ozon/products.proto b/ozon/products.proto index b170724..d4006fa 100644 --- a/ozon/products.proto +++ b/ozon/products.proto @@ -77,6 +77,13 @@ message CreateOrUpdateProductsRequest{ string type = 2; } + message PdfListItem{ + int64 index = 1; + string name = 2; + string src_url = 3; + + } + repeated Attributes attributes = 1; string barcode = 2; int64 description_category_id = 3; @@ -91,7 +98,7 @@ message CreateOrUpdateProductsRequest{ string name = 13; string offer_id = 14; string old_price = 15; - repeated string pdf_list = 16; + repeated PdfListItem pdf_list = 16; string price = 17; string primary_image = 18; repeated Promotions promotions = 19;