@wevion/cli 1.0.2505 → 1.0.2517
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/openapi.json +8 -3
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -67262,6 +67262,7 @@
|
|
|
67262
67262
|
"image_url": {
|
|
67263
67263
|
"minLength": 1,
|
|
67264
67264
|
"maxLength": 2000,
|
|
67265
|
+
"pattern": "\\S",
|
|
67265
67266
|
"type": "string"
|
|
67266
67267
|
},
|
|
67267
67268
|
"url": {
|
|
@@ -67792,7 +67793,7 @@
|
|
|
67792
67793
|
"tags": [
|
|
67793
67794
|
"catalog-products"
|
|
67794
67795
|
],
|
|
67795
|
-
"description": "Updates mutable fields on an existing Meta catalog product. Price fields are normalized before submission and item_group_id is sent as retailer_product_group_id.",
|
|
67796
|
+
"description": "Updates mutable fields on an existing Meta catalog product. Price fields are normalized before submission and item_group_id is sent as retailer_product_group_id. `image_url`, if provided, must be non-empty - a catalog product must always keep an image, so clearing it is rejected.",
|
|
67796
67797
|
"requestBody": {
|
|
67797
67798
|
"required": true,
|
|
67798
67799
|
"content": {
|
|
@@ -67852,7 +67853,9 @@
|
|
|
67852
67853
|
"type": "string"
|
|
67853
67854
|
},
|
|
67854
67855
|
"image_url": {
|
|
67856
|
+
"minLength": 1,
|
|
67855
67857
|
"maxLength": 2000,
|
|
67858
|
+
"pattern": "\\S",
|
|
67856
67859
|
"type": "string"
|
|
67857
67860
|
},
|
|
67858
67861
|
"url": {
|
|
@@ -68723,7 +68726,7 @@
|
|
|
68723
68726
|
"tags": [
|
|
68724
68727
|
"catalog-products"
|
|
68725
68728
|
],
|
|
68726
|
-
"description": "Replaces product-level video URLs on the selected Meta catalog product with up to 20 absolute URL values.",
|
|
68729
|
+
"description": "Replaces product-level video URLs on the selected Meta catalog product with up to 20 absolute URL values. Meta requires the product to already have an image before it will accept a non-empty list - returns 400 `video_requires_image` otherwise (clearing the list back to empty is always allowed).",
|
|
68727
68730
|
"requestBody": {
|
|
68728
68731
|
"required": true,
|
|
68729
68732
|
"content": {
|
|
@@ -69494,7 +69497,7 @@
|
|
|
69494
69497
|
"tags": [
|
|
69495
69498
|
"catalog-products"
|
|
69496
69499
|
],
|
|
69497
|
-
"description": "Dispatches asynchronous product operations for the selected Meta catalog and returns a batch run id with the initial RUNNING status.",
|
|
69500
|
+
"description": "Dispatches asynchronous product operations for the selected Meta catalog and returns a batch run id with the initial RUNNING status. Each operation's `data.image_url`, if provided, must be non-empty. CREATE operations must also include a non-empty `data.image_url` - a catalog product must always have an image.",
|
|
69498
69501
|
"requestBody": {
|
|
69499
69502
|
"required": true,
|
|
69500
69503
|
"content": {
|
|
@@ -69566,7 +69569,9 @@
|
|
|
69566
69569
|
"type": "string"
|
|
69567
69570
|
},
|
|
69568
69571
|
"image_url": {
|
|
69572
|
+
"minLength": 1,
|
|
69569
69573
|
"maxLength": 2000,
|
|
69574
|
+
"pattern": "\\S",
|
|
69570
69575
|
"type": "string"
|
|
69571
69576
|
},
|
|
69572
69577
|
"url": {
|