@wevion/cli 1.0.3395 → 1.0.3400

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 +524 -19
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -103101,7 +103101,7 @@
103101
103101
  "tags": [
103102
103102
  "competitive-intelligence"
103103
103103
  ],
103104
- "description": "Search Meta Ad Library pages to add a trackable competitor. Accepts an exact page name, a numeric Meta page ID, or a facebook.com URL carrying the page ID; countries scope which ad-delivery markets are searched.",
103104
+ "description": "Search Meta Ad Library pages to add a trackable competitor. Accepts a page name, a numeric Meta page ID, or a facebook.com URL carrying the page ID; countries scope which ad-delivery markets are searched. Name queries run against Meta full-text search over ad copy — the only page lookup the Ad Library exposes — and results are ranked by how closely the advertiser name matches. An id that resolves to something other than an advertiser Page returns an empty list with reason=not_an_advertiser_page.",
103105
103105
  "parameters": [
103106
103106
  {
103107
103107
  "schema": {
@@ -103169,6 +103169,12 @@
103169
103169
  }
103170
103170
  }
103171
103171
  }
103172
+ },
103173
+ "reason": {
103174
+ "type": "string",
103175
+ "enum": [
103176
+ "not_an_advertiser_page"
103177
+ ]
103172
103178
  }
103173
103179
  }
103174
103180
  }
@@ -156563,6 +156569,32 @@
156563
156569
  }
156564
156570
  }
156565
156571
  },
156572
+ "400": {
156573
+ "description": "Invalid request - schema validation failed",
156574
+ "content": {
156575
+ "application/json": {
156576
+ "schema": {
156577
+ "type": "object",
156578
+ "required": [
156579
+ "statusCode",
156580
+ "error",
156581
+ "message"
156582
+ ],
156583
+ "properties": {
156584
+ "statusCode": {
156585
+ "type": "number"
156586
+ },
156587
+ "error": {
156588
+ "type": "string"
156589
+ },
156590
+ "message": {
156591
+ "type": "string"
156592
+ }
156593
+ }
156594
+ }
156595
+ }
156596
+ }
156597
+ },
156566
156598
  "401": {
156567
156599
  "description": "Unauthorized - missing or invalid bearer token",
156568
156600
  "content": {
@@ -156589,6 +156621,58 @@
156589
156621
  }
156590
156622
  }
156591
156623
  },
156624
+ "403": {
156625
+ "description": "Forbidden - caller lacks the required role/permission",
156626
+ "content": {
156627
+ "application/json": {
156628
+ "schema": {
156629
+ "type": "object",
156630
+ "required": [
156631
+ "statusCode",
156632
+ "error",
156633
+ "message"
156634
+ ],
156635
+ "properties": {
156636
+ "statusCode": {
156637
+ "type": "number"
156638
+ },
156639
+ "error": {
156640
+ "type": "string"
156641
+ },
156642
+ "message": {
156643
+ "type": "string"
156644
+ }
156645
+ }
156646
+ }
156647
+ }
156648
+ }
156649
+ },
156650
+ "404": {
156651
+ "description": "Resource not found",
156652
+ "content": {
156653
+ "application/json": {
156654
+ "schema": {
156655
+ "type": "object",
156656
+ "required": [
156657
+ "statusCode",
156658
+ "error",
156659
+ "message"
156660
+ ],
156661
+ "properties": {
156662
+ "statusCode": {
156663
+ "type": "number"
156664
+ },
156665
+ "error": {
156666
+ "type": "string"
156667
+ },
156668
+ "message": {
156669
+ "type": "string"
156670
+ }
156671
+ }
156672
+ }
156673
+ }
156674
+ }
156675
+ },
156592
156676
  "500": {
156593
156677
  "description": "Internal server error",
156594
156678
  "content": {
@@ -156653,6 +156737,32 @@
156653
156737
  }
156654
156738
  }
156655
156739
  },
156740
+ "400": {
156741
+ "description": "Invalid request - schema validation failed",
156742
+ "content": {
156743
+ "application/json": {
156744
+ "schema": {
156745
+ "type": "object",
156746
+ "required": [
156747
+ "statusCode",
156748
+ "error",
156749
+ "message"
156750
+ ],
156751
+ "properties": {
156752
+ "statusCode": {
156753
+ "type": "number"
156754
+ },
156755
+ "error": {
156756
+ "type": "string"
156757
+ },
156758
+ "message": {
156759
+ "type": "string"
156760
+ }
156761
+ }
156762
+ }
156763
+ }
156764
+ }
156765
+ },
156656
156766
  "401": {
156657
156767
  "description": "Unauthorized - missing or invalid bearer token",
156658
156768
  "content": {
@@ -156679,6 +156789,58 @@
156679
156789
  }
156680
156790
  }
156681
156791
  },
156792
+ "403": {
156793
+ "description": "Forbidden - caller lacks the required role/permission",
156794
+ "content": {
156795
+ "application/json": {
156796
+ "schema": {
156797
+ "type": "object",
156798
+ "required": [
156799
+ "statusCode",
156800
+ "error",
156801
+ "message"
156802
+ ],
156803
+ "properties": {
156804
+ "statusCode": {
156805
+ "type": "number"
156806
+ },
156807
+ "error": {
156808
+ "type": "string"
156809
+ },
156810
+ "message": {
156811
+ "type": "string"
156812
+ }
156813
+ }
156814
+ }
156815
+ }
156816
+ }
156817
+ },
156818
+ "404": {
156819
+ "description": "Resource not found",
156820
+ "content": {
156821
+ "application/json": {
156822
+ "schema": {
156823
+ "type": "object",
156824
+ "required": [
156825
+ "statusCode",
156826
+ "error",
156827
+ "message"
156828
+ ],
156829
+ "properties": {
156830
+ "statusCode": {
156831
+ "type": "number"
156832
+ },
156833
+ "error": {
156834
+ "type": "string"
156835
+ },
156836
+ "message": {
156837
+ "type": "string"
156838
+ }
156839
+ }
156840
+ }
156841
+ }
156842
+ }
156843
+ },
156682
156844
  "500": {
156683
156845
  "description": "Internal server error",
156684
156846
  "content": {
@@ -254406,19 +254568,47 @@
254406
254568
  "type": "string"
254407
254569
  },
254408
254570
  "html": {
254409
- "type": "string"
254571
+ "anyOf": [
254572
+ {
254573
+ "type": "string"
254574
+ },
254575
+ {
254576
+ "type": "null"
254577
+ }
254578
+ ]
254410
254579
  },
254411
254580
  "external_url": {
254412
- "format": "uri",
254413
- "type": "string"
254581
+ "anyOf": [
254582
+ {
254583
+ "format": "uri",
254584
+ "type": "string"
254585
+ },
254586
+ {
254587
+ "type": "null"
254588
+ }
254589
+ ]
254414
254590
  },
254415
254591
  "original_url": {
254416
- "format": "uri",
254417
- "type": "string"
254592
+ "anyOf": [
254593
+ {
254594
+ "format": "uri",
254595
+ "type": "string"
254596
+ },
254597
+ {
254598
+ "type": "null"
254599
+ }
254600
+ ]
254418
254601
  },
254419
254602
  "template_id": {
254420
- "maxLength": 200,
254421
- "type": "string"
254603
+ "anyOf": [
254604
+ {
254605
+ "maxLength": 200,
254606
+ "type": "string"
254607
+ },
254608
+ {
254609
+ "type": "null"
254610
+ }
254611
+ ]
254422
254612
  },
254423
254613
  "template_vars": {
254424
254614
  "description": "JSON object with nested arrays and objects.",
@@ -254451,8 +254641,15 @@
254451
254641
  ]
254452
254642
  },
254453
254643
  "category": {
254454
- "maxLength": 200,
254455
- "type": "string"
254644
+ "anyOf": [
254645
+ {
254646
+ "maxLength": 200,
254647
+ "type": "string"
254648
+ },
254649
+ {
254650
+ "type": "null"
254651
+ }
254652
+ ]
254456
254653
  },
254457
254654
  "tags": {
254458
254655
  "$comment": "json-value",
@@ -254992,19 +255189,47 @@
254992
255189
  "type": "string"
254993
255190
  },
254994
255191
  "html": {
254995
- "type": "string"
255192
+ "anyOf": [
255193
+ {
255194
+ "type": "string"
255195
+ },
255196
+ {
255197
+ "type": "null"
255198
+ }
255199
+ ]
254996
255200
  },
254997
255201
  "external_url": {
254998
- "format": "uri",
254999
- "type": "string"
255202
+ "anyOf": [
255203
+ {
255204
+ "format": "uri",
255205
+ "type": "string"
255206
+ },
255207
+ {
255208
+ "type": "null"
255209
+ }
255210
+ ]
255000
255211
  },
255001
255212
  "original_url": {
255002
- "format": "uri",
255003
- "type": "string"
255213
+ "anyOf": [
255214
+ {
255215
+ "format": "uri",
255216
+ "type": "string"
255217
+ },
255218
+ {
255219
+ "type": "null"
255220
+ }
255221
+ ]
255004
255222
  },
255005
255223
  "template_id": {
255006
- "maxLength": 200,
255007
- "type": "string"
255224
+ "anyOf": [
255225
+ {
255226
+ "maxLength": 200,
255227
+ "type": "string"
255228
+ },
255229
+ {
255230
+ "type": "null"
255231
+ }
255232
+ ]
255008
255233
  },
255009
255234
  "template_vars": {
255010
255235
  "description": "JSON object with nested arrays and objects.",
@@ -255037,8 +255262,15 @@
255037
255262
  ]
255038
255263
  },
255039
255264
  "category": {
255040
- "maxLength": 200,
255041
- "type": "string"
255265
+ "anyOf": [
255266
+ {
255267
+ "maxLength": 200,
255268
+ "type": "string"
255269
+ },
255270
+ {
255271
+ "type": "null"
255272
+ }
255273
+ ]
255042
255274
  },
255043
255275
  "tags": {
255044
255276
  "$comment": "json-value",
@@ -282035,6 +282267,12 @@
282035
282267
  "enum": [
282036
282268
  "everflow_partner"
282037
282269
  ]
282270
+ },
282271
+ {
282272
+ "type": "string",
282273
+ "enum": [
282274
+ "exoclick"
282275
+ ]
282038
282276
  }
282039
282277
  ]
282040
282278
  },
@@ -282273,6 +282511,12 @@
282273
282511
  "enum": [
282274
282512
  "everflow_partner"
282275
282513
  ]
282514
+ },
282515
+ {
282516
+ "type": "string",
282517
+ "enum": [
282518
+ "exoclick"
282519
+ ]
282276
282520
  }
282277
282521
  ]
282278
282522
  },
@@ -282636,6 +282880,12 @@
282636
282880
  "enum": [
282637
282881
  "everflow_partner"
282638
282882
  ]
282883
+ },
282884
+ {
282885
+ "type": "string",
282886
+ "enum": [
282887
+ "exoclick"
282888
+ ]
282639
282889
  }
282640
282890
  ]
282641
282891
  },
@@ -287449,6 +287699,235 @@
287449
287699
  }
287450
287700
  }
287451
287701
  },
287702
+ "/api/v1/trackers/{id}/goals": {
287703
+ "get": {
287704
+ "operationId": "getApiV1TrackersByIdGoals",
287705
+ "summary": "List conversion goals",
287706
+ "tags": [
287707
+ "trackers"
287708
+ ],
287709
+ "description": "Conversion goals defined on the connected account. Only for trackers where the user must choose which goal counts as a conversion (ExoClick); 400 otherwise.",
287710
+ "parameters": [
287711
+ {
287712
+ "schema": {
287713
+ "format": "uuid",
287714
+ "type": "string"
287715
+ },
287716
+ "in": "path",
287717
+ "name": "id",
287718
+ "required": true
287719
+ },
287720
+ {
287721
+ "schema": {
287722
+ "format": "uuid",
287723
+ "type": "string"
287724
+ },
287725
+ "in": "header",
287726
+ "name": "x-team-id",
287727
+ "required": false,
287728
+ "description": "Destination workspace team id."
287729
+ }
287730
+ ],
287731
+ "security": [
287732
+ {
287733
+ "bearerAuth": []
287734
+ },
287735
+ {
287736
+ "apiKeyAuth": []
287737
+ }
287738
+ ],
287739
+ "responses": {
287740
+ "200": {
287741
+ "description": "Successful response",
287742
+ "content": {
287743
+ "application/json": {
287744
+ "schema": {
287745
+ "type": "object",
287746
+ "required": [
287747
+ "goals"
287748
+ ],
287749
+ "properties": {
287750
+ "goals": {
287751
+ "type": "array",
287752
+ "items": {
287753
+ "type": "object",
287754
+ "required": [
287755
+ "id",
287756
+ "name",
287757
+ "payoutType"
287758
+ ],
287759
+ "properties": {
287760
+ "id": {
287761
+ "type": "string"
287762
+ },
287763
+ "name": {
287764
+ "type": "string"
287765
+ },
287766
+ "payout": {
287767
+ "type": "string"
287768
+ },
287769
+ "payoutType": {
287770
+ "anyOf": [
287771
+ {
287772
+ "type": "string",
287773
+ "enum": [
287774
+ "dynamic"
287775
+ ]
287776
+ },
287777
+ {
287778
+ "type": "string",
287779
+ "enum": [
287780
+ "fixed"
287781
+ ]
287782
+ },
287783
+ {
287784
+ "type": "string",
287785
+ "enum": [
287786
+ "none"
287787
+ ]
287788
+ }
287789
+ ]
287790
+ }
287791
+ }
287792
+ }
287793
+ },
287794
+ "selectedGoalId": {
287795
+ "type": "string"
287796
+ }
287797
+ }
287798
+ }
287799
+ }
287800
+ }
287801
+ },
287802
+ "400": {
287803
+ "description": "Invalid request - schema validation failed",
287804
+ "content": {
287805
+ "application/json": {
287806
+ "schema": {
287807
+ "type": "object",
287808
+ "required": [
287809
+ "statusCode",
287810
+ "error",
287811
+ "message"
287812
+ ],
287813
+ "properties": {
287814
+ "statusCode": {
287815
+ "type": "number"
287816
+ },
287817
+ "error": {
287818
+ "type": "string"
287819
+ },
287820
+ "message": {
287821
+ "type": "string"
287822
+ },
287823
+ "code": {
287824
+ "type": "string"
287825
+ }
287826
+ }
287827
+ }
287828
+ }
287829
+ }
287830
+ },
287831
+ "401": {
287832
+ "description": "Unauthorized - missing or invalid bearer token",
287833
+ "content": {
287834
+ "application/json": {
287835
+ "schema": {
287836
+ "$ref": "#/components/schemas/ErrorResponse"
287837
+ }
287838
+ }
287839
+ }
287840
+ },
287841
+ "403": {
287842
+ "description": "Forbidden - caller lacks the required role/permission",
287843
+ "content": {
287844
+ "application/json": {
287845
+ "schema": {
287846
+ "type": "object",
287847
+ "required": [
287848
+ "statusCode",
287849
+ "error",
287850
+ "message"
287851
+ ],
287852
+ "properties": {
287853
+ "statusCode": {
287854
+ "type": "number"
287855
+ },
287856
+ "error": {
287857
+ "type": "string"
287858
+ },
287859
+ "message": {
287860
+ "type": "string"
287861
+ },
287862
+ "code": {
287863
+ "type": "string"
287864
+ }
287865
+ }
287866
+ }
287867
+ }
287868
+ }
287869
+ },
287870
+ "404": {
287871
+ "description": "Resource not found",
287872
+ "content": {
287873
+ "application/json": {
287874
+ "schema": {
287875
+ "type": "object",
287876
+ "required": [
287877
+ "statusCode",
287878
+ "error",
287879
+ "message"
287880
+ ],
287881
+ "properties": {
287882
+ "statusCode": {
287883
+ "type": "number"
287884
+ },
287885
+ "error": {
287886
+ "type": "string"
287887
+ },
287888
+ "message": {
287889
+ "type": "string"
287890
+ },
287891
+ "code": {
287892
+ "type": "string"
287893
+ }
287894
+ }
287895
+ }
287896
+ }
287897
+ }
287898
+ },
287899
+ "500": {
287900
+ "description": "Internal server error",
287901
+ "content": {
287902
+ "application/json": {
287903
+ "schema": {
287904
+ "type": "object",
287905
+ "required": [
287906
+ "statusCode",
287907
+ "error",
287908
+ "message"
287909
+ ],
287910
+ "properties": {
287911
+ "statusCode": {
287912
+ "type": "number"
287913
+ },
287914
+ "error": {
287915
+ "type": "string"
287916
+ },
287917
+ "message": {
287918
+ "type": "string"
287919
+ },
287920
+ "code": {
287921
+ "type": "string"
287922
+ }
287923
+ }
287924
+ }
287925
+ }
287926
+ }
287927
+ }
287928
+ }
287929
+ }
287930
+ },
287452
287931
  "/api/v1/trackers/{id}/postback": {
287453
287932
  "get": {
287454
287933
  "operationId": "getApiV1TrackersByIdPostback",
@@ -287918,6 +288397,32 @@
287918
288397
  }
287919
288398
  }
287920
288399
  },
288400
+ "404": {
288401
+ "description": "Resource not found",
288402
+ "content": {
288403
+ "application/json": {
288404
+ "schema": {
288405
+ "type": "object",
288406
+ "required": [
288407
+ "statusCode",
288408
+ "error",
288409
+ "message"
288410
+ ],
288411
+ "properties": {
288412
+ "statusCode": {
288413
+ "type": "number"
288414
+ },
288415
+ "error": {
288416
+ "type": "string"
288417
+ },
288418
+ "message": {
288419
+ "type": "string"
288420
+ }
288421
+ }
288422
+ }
288423
+ }
288424
+ }
288425
+ },
287921
288426
  "500": {
287922
288427
  "description": "Internal server error",
287923
288428
  "content": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.3395",
3
+ "version": "1.0.3400",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {