Update proto definitions

This commit is contained in:
2025-07-22 21:37:23 +03:00
parent c1293d3afe
commit 6d62cd6bfe

View File

@@ -37,6 +37,26 @@ message GetProductAttributesResponse {
}
message DeleteProductsRequest {
message Item {
int64 product_id = 1;
string offer_id = 2;
}
repeated Item items = 1;
}
message DeleteProductsResponse {
message Item {
int64 product_id = 1;
string offer_id = 2;
bool is_deleted = 3;
}
repeated Item items = 1;
}
message Product {
int64 id = 1;
string offer_id = 2;
@@ -126,3 +146,4 @@ message ProductAttributes {
string color_image = 21;
int64 description_category_id = 22;
}