@wevion/cli 1.0.3395 → 1.0.3399

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 +517 -18
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -156563,6 +156563,32 @@
156563
156563
  }
156564
156564
  }
156565
156565
  },
156566
+ "400": {
156567
+ "description": "Invalid request - schema validation failed",
156568
+ "content": {
156569
+ "application/json": {
156570
+ "schema": {
156571
+ "type": "object",
156572
+ "required": [
156573
+ "statusCode",
156574
+ "error",
156575
+ "message"
156576
+ ],
156577
+ "properties": {
156578
+ "statusCode": {
156579
+ "type": "number"
156580
+ },
156581
+ "error": {
156582
+ "type": "string"
156583
+ },
156584
+ "message": {
156585
+ "type": "string"
156586
+ }
156587
+ }
156588
+ }
156589
+ }
156590
+ }
156591
+ },
156566
156592
  "401": {
156567
156593
  "description": "Unauthorized - missing or invalid bearer token",
156568
156594
  "content": {
@@ -156589,6 +156615,58 @@
156589
156615
  }
156590
156616
  }
156591
156617
  },
156618
+ "403": {
156619
+ "description": "Forbidden - caller lacks the required role/permission",
156620
+ "content": {
156621
+ "application/json": {
156622
+ "schema": {
156623
+ "type": "object",
156624
+ "required": [
156625
+ "statusCode",
156626
+ "error",
156627
+ "message"
156628
+ ],
156629
+ "properties": {
156630
+ "statusCode": {
156631
+ "type": "number"
156632
+ },
156633
+ "error": {
156634
+ "type": "string"
156635
+ },
156636
+ "message": {
156637
+ "type": "string"
156638
+ }
156639
+ }
156640
+ }
156641
+ }
156642
+ }
156643
+ },
156644
+ "404": {
156645
+ "description": "Resource not found",
156646
+ "content": {
156647
+ "application/json": {
156648
+ "schema": {
156649
+ "type": "object",
156650
+ "required": [
156651
+ "statusCode",
156652
+ "error",
156653
+ "message"
156654
+ ],
156655
+ "properties": {
156656
+ "statusCode": {
156657
+ "type": "number"
156658
+ },
156659
+ "error": {
156660
+ "type": "string"
156661
+ },
156662
+ "message": {
156663
+ "type": "string"
156664
+ }
156665
+ }
156666
+ }
156667
+ }
156668
+ }
156669
+ },
156592
156670
  "500": {
156593
156671
  "description": "Internal server error",
156594
156672
  "content": {
@@ -156653,6 +156731,32 @@
156653
156731
  }
156654
156732
  }
156655
156733
  },
156734
+ "400": {
156735
+ "description": "Invalid request - schema validation failed",
156736
+ "content": {
156737
+ "application/json": {
156738
+ "schema": {
156739
+ "type": "object",
156740
+ "required": [
156741
+ "statusCode",
156742
+ "error",
156743
+ "message"
156744
+ ],
156745
+ "properties": {
156746
+ "statusCode": {
156747
+ "type": "number"
156748
+ },
156749
+ "error": {
156750
+ "type": "string"
156751
+ },
156752
+ "message": {
156753
+ "type": "string"
156754
+ }
156755
+ }
156756
+ }
156757
+ }
156758
+ }
156759
+ },
156656
156760
  "401": {
156657
156761
  "description": "Unauthorized - missing or invalid bearer token",
156658
156762
  "content": {
@@ -156679,6 +156783,58 @@
156679
156783
  }
156680
156784
  }
156681
156785
  },
156786
+ "403": {
156787
+ "description": "Forbidden - caller lacks the required role/permission",
156788
+ "content": {
156789
+ "application/json": {
156790
+ "schema": {
156791
+ "type": "object",
156792
+ "required": [
156793
+ "statusCode",
156794
+ "error",
156795
+ "message"
156796
+ ],
156797
+ "properties": {
156798
+ "statusCode": {
156799
+ "type": "number"
156800
+ },
156801
+ "error": {
156802
+ "type": "string"
156803
+ },
156804
+ "message": {
156805
+ "type": "string"
156806
+ }
156807
+ }
156808
+ }
156809
+ }
156810
+ }
156811
+ },
156812
+ "404": {
156813
+ "description": "Resource not found",
156814
+ "content": {
156815
+ "application/json": {
156816
+ "schema": {
156817
+ "type": "object",
156818
+ "required": [
156819
+ "statusCode",
156820
+ "error",
156821
+ "message"
156822
+ ],
156823
+ "properties": {
156824
+ "statusCode": {
156825
+ "type": "number"
156826
+ },
156827
+ "error": {
156828
+ "type": "string"
156829
+ },
156830
+ "message": {
156831
+ "type": "string"
156832
+ }
156833
+ }
156834
+ }
156835
+ }
156836
+ }
156837
+ },
156682
156838
  "500": {
156683
156839
  "description": "Internal server error",
156684
156840
  "content": {
@@ -254406,19 +254562,47 @@
254406
254562
  "type": "string"
254407
254563
  },
254408
254564
  "html": {
254409
- "type": "string"
254565
+ "anyOf": [
254566
+ {
254567
+ "type": "string"
254568
+ },
254569
+ {
254570
+ "type": "null"
254571
+ }
254572
+ ]
254410
254573
  },
254411
254574
  "external_url": {
254412
- "format": "uri",
254413
- "type": "string"
254575
+ "anyOf": [
254576
+ {
254577
+ "format": "uri",
254578
+ "type": "string"
254579
+ },
254580
+ {
254581
+ "type": "null"
254582
+ }
254583
+ ]
254414
254584
  },
254415
254585
  "original_url": {
254416
- "format": "uri",
254417
- "type": "string"
254586
+ "anyOf": [
254587
+ {
254588
+ "format": "uri",
254589
+ "type": "string"
254590
+ },
254591
+ {
254592
+ "type": "null"
254593
+ }
254594
+ ]
254418
254595
  },
254419
254596
  "template_id": {
254420
- "maxLength": 200,
254421
- "type": "string"
254597
+ "anyOf": [
254598
+ {
254599
+ "maxLength": 200,
254600
+ "type": "string"
254601
+ },
254602
+ {
254603
+ "type": "null"
254604
+ }
254605
+ ]
254422
254606
  },
254423
254607
  "template_vars": {
254424
254608
  "description": "JSON object with nested arrays and objects.",
@@ -254451,8 +254635,15 @@
254451
254635
  ]
254452
254636
  },
254453
254637
  "category": {
254454
- "maxLength": 200,
254455
- "type": "string"
254638
+ "anyOf": [
254639
+ {
254640
+ "maxLength": 200,
254641
+ "type": "string"
254642
+ },
254643
+ {
254644
+ "type": "null"
254645
+ }
254646
+ ]
254456
254647
  },
254457
254648
  "tags": {
254458
254649
  "$comment": "json-value",
@@ -254992,19 +255183,47 @@
254992
255183
  "type": "string"
254993
255184
  },
254994
255185
  "html": {
254995
- "type": "string"
255186
+ "anyOf": [
255187
+ {
255188
+ "type": "string"
255189
+ },
255190
+ {
255191
+ "type": "null"
255192
+ }
255193
+ ]
254996
255194
  },
254997
255195
  "external_url": {
254998
- "format": "uri",
254999
- "type": "string"
255196
+ "anyOf": [
255197
+ {
255198
+ "format": "uri",
255199
+ "type": "string"
255200
+ },
255201
+ {
255202
+ "type": "null"
255203
+ }
255204
+ ]
255000
255205
  },
255001
255206
  "original_url": {
255002
- "format": "uri",
255003
- "type": "string"
255207
+ "anyOf": [
255208
+ {
255209
+ "format": "uri",
255210
+ "type": "string"
255211
+ },
255212
+ {
255213
+ "type": "null"
255214
+ }
255215
+ ]
255004
255216
  },
255005
255217
  "template_id": {
255006
- "maxLength": 200,
255007
- "type": "string"
255218
+ "anyOf": [
255219
+ {
255220
+ "maxLength": 200,
255221
+ "type": "string"
255222
+ },
255223
+ {
255224
+ "type": "null"
255225
+ }
255226
+ ]
255008
255227
  },
255009
255228
  "template_vars": {
255010
255229
  "description": "JSON object with nested arrays and objects.",
@@ -255037,8 +255256,15 @@
255037
255256
  ]
255038
255257
  },
255039
255258
  "category": {
255040
- "maxLength": 200,
255041
- "type": "string"
255259
+ "anyOf": [
255260
+ {
255261
+ "maxLength": 200,
255262
+ "type": "string"
255263
+ },
255264
+ {
255265
+ "type": "null"
255266
+ }
255267
+ ]
255042
255268
  },
255043
255269
  "tags": {
255044
255270
  "$comment": "json-value",
@@ -282035,6 +282261,12 @@
282035
282261
  "enum": [
282036
282262
  "everflow_partner"
282037
282263
  ]
282264
+ },
282265
+ {
282266
+ "type": "string",
282267
+ "enum": [
282268
+ "exoclick"
282269
+ ]
282038
282270
  }
282039
282271
  ]
282040
282272
  },
@@ -282273,6 +282505,12 @@
282273
282505
  "enum": [
282274
282506
  "everflow_partner"
282275
282507
  ]
282508
+ },
282509
+ {
282510
+ "type": "string",
282511
+ "enum": [
282512
+ "exoclick"
282513
+ ]
282276
282514
  }
282277
282515
  ]
282278
282516
  },
@@ -282636,6 +282874,12 @@
282636
282874
  "enum": [
282637
282875
  "everflow_partner"
282638
282876
  ]
282877
+ },
282878
+ {
282879
+ "type": "string",
282880
+ "enum": [
282881
+ "exoclick"
282882
+ ]
282639
282883
  }
282640
282884
  ]
282641
282885
  },
@@ -287449,6 +287693,235 @@
287449
287693
  }
287450
287694
  }
287451
287695
  },
287696
+ "/api/v1/trackers/{id}/goals": {
287697
+ "get": {
287698
+ "operationId": "getApiV1TrackersByIdGoals",
287699
+ "summary": "List conversion goals",
287700
+ "tags": [
287701
+ "trackers"
287702
+ ],
287703
+ "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.",
287704
+ "parameters": [
287705
+ {
287706
+ "schema": {
287707
+ "format": "uuid",
287708
+ "type": "string"
287709
+ },
287710
+ "in": "path",
287711
+ "name": "id",
287712
+ "required": true
287713
+ },
287714
+ {
287715
+ "schema": {
287716
+ "format": "uuid",
287717
+ "type": "string"
287718
+ },
287719
+ "in": "header",
287720
+ "name": "x-team-id",
287721
+ "required": false,
287722
+ "description": "Destination workspace team id."
287723
+ }
287724
+ ],
287725
+ "security": [
287726
+ {
287727
+ "bearerAuth": []
287728
+ },
287729
+ {
287730
+ "apiKeyAuth": []
287731
+ }
287732
+ ],
287733
+ "responses": {
287734
+ "200": {
287735
+ "description": "Successful response",
287736
+ "content": {
287737
+ "application/json": {
287738
+ "schema": {
287739
+ "type": "object",
287740
+ "required": [
287741
+ "goals"
287742
+ ],
287743
+ "properties": {
287744
+ "goals": {
287745
+ "type": "array",
287746
+ "items": {
287747
+ "type": "object",
287748
+ "required": [
287749
+ "id",
287750
+ "name",
287751
+ "payoutType"
287752
+ ],
287753
+ "properties": {
287754
+ "id": {
287755
+ "type": "string"
287756
+ },
287757
+ "name": {
287758
+ "type": "string"
287759
+ },
287760
+ "payout": {
287761
+ "type": "string"
287762
+ },
287763
+ "payoutType": {
287764
+ "anyOf": [
287765
+ {
287766
+ "type": "string",
287767
+ "enum": [
287768
+ "dynamic"
287769
+ ]
287770
+ },
287771
+ {
287772
+ "type": "string",
287773
+ "enum": [
287774
+ "fixed"
287775
+ ]
287776
+ },
287777
+ {
287778
+ "type": "string",
287779
+ "enum": [
287780
+ "none"
287781
+ ]
287782
+ }
287783
+ ]
287784
+ }
287785
+ }
287786
+ }
287787
+ },
287788
+ "selectedGoalId": {
287789
+ "type": "string"
287790
+ }
287791
+ }
287792
+ }
287793
+ }
287794
+ }
287795
+ },
287796
+ "400": {
287797
+ "description": "Invalid request - schema validation failed",
287798
+ "content": {
287799
+ "application/json": {
287800
+ "schema": {
287801
+ "type": "object",
287802
+ "required": [
287803
+ "statusCode",
287804
+ "error",
287805
+ "message"
287806
+ ],
287807
+ "properties": {
287808
+ "statusCode": {
287809
+ "type": "number"
287810
+ },
287811
+ "error": {
287812
+ "type": "string"
287813
+ },
287814
+ "message": {
287815
+ "type": "string"
287816
+ },
287817
+ "code": {
287818
+ "type": "string"
287819
+ }
287820
+ }
287821
+ }
287822
+ }
287823
+ }
287824
+ },
287825
+ "401": {
287826
+ "description": "Unauthorized - missing or invalid bearer token",
287827
+ "content": {
287828
+ "application/json": {
287829
+ "schema": {
287830
+ "$ref": "#/components/schemas/ErrorResponse"
287831
+ }
287832
+ }
287833
+ }
287834
+ },
287835
+ "403": {
287836
+ "description": "Forbidden - caller lacks the required role/permission",
287837
+ "content": {
287838
+ "application/json": {
287839
+ "schema": {
287840
+ "type": "object",
287841
+ "required": [
287842
+ "statusCode",
287843
+ "error",
287844
+ "message"
287845
+ ],
287846
+ "properties": {
287847
+ "statusCode": {
287848
+ "type": "number"
287849
+ },
287850
+ "error": {
287851
+ "type": "string"
287852
+ },
287853
+ "message": {
287854
+ "type": "string"
287855
+ },
287856
+ "code": {
287857
+ "type": "string"
287858
+ }
287859
+ }
287860
+ }
287861
+ }
287862
+ }
287863
+ },
287864
+ "404": {
287865
+ "description": "Resource not found",
287866
+ "content": {
287867
+ "application/json": {
287868
+ "schema": {
287869
+ "type": "object",
287870
+ "required": [
287871
+ "statusCode",
287872
+ "error",
287873
+ "message"
287874
+ ],
287875
+ "properties": {
287876
+ "statusCode": {
287877
+ "type": "number"
287878
+ },
287879
+ "error": {
287880
+ "type": "string"
287881
+ },
287882
+ "message": {
287883
+ "type": "string"
287884
+ },
287885
+ "code": {
287886
+ "type": "string"
287887
+ }
287888
+ }
287889
+ }
287890
+ }
287891
+ }
287892
+ },
287893
+ "500": {
287894
+ "description": "Internal server error",
287895
+ "content": {
287896
+ "application/json": {
287897
+ "schema": {
287898
+ "type": "object",
287899
+ "required": [
287900
+ "statusCode",
287901
+ "error",
287902
+ "message"
287903
+ ],
287904
+ "properties": {
287905
+ "statusCode": {
287906
+ "type": "number"
287907
+ },
287908
+ "error": {
287909
+ "type": "string"
287910
+ },
287911
+ "message": {
287912
+ "type": "string"
287913
+ },
287914
+ "code": {
287915
+ "type": "string"
287916
+ }
287917
+ }
287918
+ }
287919
+ }
287920
+ }
287921
+ }
287922
+ }
287923
+ }
287924
+ },
287452
287925
  "/api/v1/trackers/{id}/postback": {
287453
287926
  "get": {
287454
287927
  "operationId": "getApiV1TrackersByIdPostback",
@@ -287918,6 +288391,32 @@
287918
288391
  }
287919
288392
  }
287920
288393
  },
288394
+ "404": {
288395
+ "description": "Resource not found",
288396
+ "content": {
288397
+ "application/json": {
288398
+ "schema": {
288399
+ "type": "object",
288400
+ "required": [
288401
+ "statusCode",
288402
+ "error",
288403
+ "message"
288404
+ ],
288405
+ "properties": {
288406
+ "statusCode": {
288407
+ "type": "number"
288408
+ },
288409
+ "error": {
288410
+ "type": "string"
288411
+ },
288412
+ "message": {
288413
+ "type": "string"
288414
+ }
288415
+ }
288416
+ }
288417
+ }
288418
+ }
288419
+ },
287921
288420
  "500": {
287922
288421
  "description": "Internal server error",
287923
288422
  "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.3399",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {