@wevion/cli 1.0.3858 → 1.0.3860

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.
Files changed (2) hide show
  1. package/openapi.json +143 -0
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -51554,6 +51554,16 @@
51554
51554
  }
51555
51555
  ]
51556
51556
  },
51557
+ "tiktokProductSetId": {
51558
+ "anyOf": [
51559
+ {
51560
+ "type": "string"
51561
+ },
51562
+ {
51563
+ "type": "null"
51564
+ }
51565
+ ]
51566
+ },
51557
51567
  "tiktokRoasBid": {
51558
51568
  "anyOf": [
51559
51569
  {
@@ -56119,6 +56129,16 @@
56119
56129
  }
56120
56130
  ]
56121
56131
  },
56132
+ "tiktokProductSetId": {
56133
+ "anyOf": [
56134
+ {
56135
+ "type": "string"
56136
+ },
56137
+ {
56138
+ "type": "null"
56139
+ }
56140
+ ]
56141
+ },
56122
56142
  "tiktokRoasBid": {
56123
56143
  "anyOf": [
56124
56144
  {
@@ -60585,6 +60605,16 @@
60585
60605
  }
60586
60606
  ]
60587
60607
  },
60608
+ "tiktokProductSetId": {
60609
+ "anyOf": [
60610
+ {
60611
+ "type": "string"
60612
+ },
60613
+ {
60614
+ "type": "null"
60615
+ }
60616
+ ]
60617
+ },
60588
60618
  "tiktokRoasBid": {
60589
60619
  "anyOf": [
60590
60620
  {
@@ -68736,6 +68766,16 @@
68736
68766
  }
68737
68767
  ]
68738
68768
  },
68769
+ "tiktokProductSetId": {
68770
+ "anyOf": [
68771
+ {
68772
+ "type": "string"
68773
+ },
68774
+ {
68775
+ "type": "null"
68776
+ }
68777
+ ]
68778
+ },
68739
68779
  "tiktokRoasBid": {
68740
68780
  "anyOf": [
68741
68781
  {
@@ -299801,6 +299841,109 @@
299801
299841
  }
299802
299842
  }
299803
299843
  },
299844
+ "/api/v1/tiktok/catalogs/{catalogId}/product-sets": {
299845
+ "get": {
299846
+ "operationId": "listTikTokCatalogProductSets",
299847
+ "summary": "List the product sets of a TikTok catalog",
299848
+ "tags": [
299849
+ "tiktok"
299850
+ ],
299851
+ "description": "Returns the product sets of the given catalog, resolved through the Business Centers the token can reach. A TikTok catalog ad must name one product set, so this list is what makes the CATALOG creative format publishable. Returns an empty list when the catalog has no set or the token cannot read it.",
299852
+ "parameters": [
299853
+ {
299854
+ "schema": {
299855
+ "minLength": 1,
299856
+ "type": "string"
299857
+ },
299858
+ "in": "path",
299859
+ "name": "catalogId",
299860
+ "required": true
299861
+ }
299862
+ ],
299863
+ "security": [
299864
+ {
299865
+ "bearerAuth": []
299866
+ },
299867
+ {
299868
+ "apiKeyAuth": []
299869
+ }
299870
+ ],
299871
+ "responses": {
299872
+ "200": {
299873
+ "description": "Successful response",
299874
+ "content": {
299875
+ "application/json": {
299876
+ "schema": {
299877
+ "additionalProperties": false,
299878
+ "type": "object",
299879
+ "required": [
299880
+ "items"
299881
+ ],
299882
+ "properties": {
299883
+ "items": {
299884
+ "type": "array",
299885
+ "items": {
299886
+ "additionalProperties": false,
299887
+ "type": "object",
299888
+ "required": [
299889
+ "id",
299890
+ "name"
299891
+ ],
299892
+ "properties": {
299893
+ "id": {
299894
+ "type": "string"
299895
+ },
299896
+ "name": {
299897
+ "type": "string"
299898
+ },
299899
+ "meta": {
299900
+ "description": "Free-form per-resource metadata (varies by endpoint, see description).",
299901
+ "type": "object",
299902
+ "additionalProperties": {
299903
+ "$comment": "json-value",
299904
+ "description": "Arbitrary JSON value with nested arrays and objects."
299905
+ }
299906
+ }
299907
+ }
299908
+ }
299909
+ }
299910
+ }
299911
+ }
299912
+ }
299913
+ }
299914
+ },
299915
+ "400": {
299916
+ "description": "Invalid request - schema validation failed",
299917
+ "content": {
299918
+ "application/json": {
299919
+ "schema": {
299920
+ "additionalProperties": false,
299921
+ "type": "object",
299922
+ "required": [
299923
+ "error"
299924
+ ],
299925
+ "properties": {
299926
+ "error": {
299927
+ "type": "string"
299928
+ }
299929
+ }
299930
+ }
299931
+ }
299932
+ }
299933
+ },
299934
+ "401": {
299935
+ "description": "Unauthorized - missing or invalid bearer token",
299936
+ "content": {
299937
+ "application/json": {
299938
+ "schema": {
299939
+ "$ref": "#/components/schemas/ErrorResponse"
299940
+ }
299941
+ }
299942
+ }
299943
+ }
299944
+ }
299945
+ }
299946
+ },
299804
299947
  "/api/v1/tiktok/catalogs": {
299805
299948
  "get": {
299806
299949
  "operationId": "listTikTokCatalogs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.3858",
3
+ "version": "1.0.3860",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {