@wevion/cli 1.0.3288 → 1.0.3295

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 +245 -0
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -250846,6 +250846,251 @@
250846
250846
  }
250847
250847
  }
250848
250848
  },
250849
+ "/api/v1/tracker-cloaker/landing-pages/{id}/bundle": {
250850
+ "post": {
250851
+ "operationId": "postApiV1TrackerCloakerLandingPagesByIdBundle",
250852
+ "summary": "Upload a landing page bundle (folder or ZIP)",
250853
+ "tags": [
250854
+ "tracker-cloaker"
250855
+ ],
250856
+ "description": "Accepts either a ZIP archive or the individual files of a folder (each part named with its bundle-relative path) and publishes them as the landing page's next bundle version. The files are then served from /tc/lp/{id}/v{version}/, so a re-upload never has to invalidate a cache.",
250857
+ "parameters": [
250858
+ {
250859
+ "schema": {
250860
+ "format": "uuid",
250861
+ "type": "string"
250862
+ },
250863
+ "in": "path",
250864
+ "name": "id",
250865
+ "required": true
250866
+ },
250867
+ {
250868
+ "schema": {
250869
+ "format": "uuid",
250870
+ "type": "string"
250871
+ },
250872
+ "in": "header",
250873
+ "name": "x-team-id",
250874
+ "required": false,
250875
+ "description": "Destination workspace team id."
250876
+ }
250877
+ ],
250878
+ "security": [
250879
+ {
250880
+ "bearerAuth": []
250881
+ },
250882
+ {
250883
+ "apiKeyAuth": []
250884
+ }
250885
+ ],
250886
+ "responses": {
250887
+ "201": {
250888
+ "description": "Resource created",
250889
+ "content": {
250890
+ "application/json": {
250891
+ "schema": {
250892
+ "type": "object",
250893
+ "required": [
250894
+ "version",
250895
+ "entry_file",
250896
+ "file_count",
250897
+ "total_bytes"
250898
+ ],
250899
+ "properties": {
250900
+ "version": {
250901
+ "type": "number"
250902
+ },
250903
+ "entry_file": {
250904
+ "type": "string"
250905
+ },
250906
+ "file_count": {
250907
+ "type": "number"
250908
+ },
250909
+ "total_bytes": {
250910
+ "type": "number"
250911
+ }
250912
+ }
250913
+ }
250914
+ }
250915
+ }
250916
+ },
250917
+ "400": {
250918
+ "description": "Explicit destination workspace required: send the x-team-id header or activate a team scope for this operation.",
250919
+ "content": {
250920
+ "application/json": {
250921
+ "schema": {
250922
+ "description": "Explicit destination workspace required: send the x-team-id header or activate a team scope for this operation.",
250923
+ "additionalProperties": false,
250924
+ "type": "object",
250925
+ "required": [
250926
+ "statusCode",
250927
+ "error",
250928
+ "message"
250929
+ ],
250930
+ "properties": {
250931
+ "statusCode": {
250932
+ "type": "number"
250933
+ },
250934
+ "error": {
250935
+ "type": "string"
250936
+ },
250937
+ "message": {
250938
+ "type": "string"
250939
+ },
250940
+ "code": {
250941
+ "type": "string",
250942
+ "enum": [
250943
+ "SCOPE_TEAM_REQUIRED"
250944
+ ]
250945
+ }
250946
+ }
250947
+ }
250948
+ }
250949
+ }
250950
+ },
250951
+ "401": {
250952
+ "description": "Unauthorized - missing or invalid bearer token",
250953
+ "content": {
250954
+ "application/json": {
250955
+ "schema": {
250956
+ "$ref": "#/components/schemas/ErrorResponse"
250957
+ }
250958
+ }
250959
+ }
250960
+ },
250961
+ "403": {
250962
+ "description": "Forbidden - caller lacks the required role/permission",
250963
+ "content": {
250964
+ "application/json": {
250965
+ "schema": {
250966
+ "type": "object",
250967
+ "required": [
250968
+ "statusCode",
250969
+ "error",
250970
+ "message"
250971
+ ],
250972
+ "properties": {
250973
+ "statusCode": {
250974
+ "type": "number"
250975
+ },
250976
+ "error": {
250977
+ "type": "string"
250978
+ },
250979
+ "message": {
250980
+ "type": "string"
250981
+ }
250982
+ }
250983
+ }
250984
+ }
250985
+ }
250986
+ },
250987
+ "413": {
250988
+ "description": "Payload too large",
250989
+ "content": {
250990
+ "application/json": {
250991
+ "schema": {
250992
+ "type": "object",
250993
+ "required": [
250994
+ "statusCode",
250995
+ "error",
250996
+ "message"
250997
+ ],
250998
+ "properties": {
250999
+ "statusCode": {
251000
+ "type": "number"
251001
+ },
251002
+ "error": {
251003
+ "type": "string"
251004
+ },
251005
+ "message": {
251006
+ "type": "string"
251007
+ }
251008
+ }
251009
+ }
251010
+ }
251011
+ }
251012
+ },
251013
+ "415": {
251014
+ "description": "Response 415",
251015
+ "content": {
251016
+ "application/json": {
251017
+ "schema": {
251018
+ "type": "object",
251019
+ "required": [
251020
+ "statusCode",
251021
+ "error",
251022
+ "message"
251023
+ ],
251024
+ "properties": {
251025
+ "statusCode": {
251026
+ "type": "number"
251027
+ },
251028
+ "error": {
251029
+ "type": "string"
251030
+ },
251031
+ "message": {
251032
+ "type": "string"
251033
+ }
251034
+ }
251035
+ }
251036
+ }
251037
+ }
251038
+ },
251039
+ "422": {
251040
+ "description": "Unprocessable entity - semantic validation failed",
251041
+ "content": {
251042
+ "application/json": {
251043
+ "schema": {
251044
+ "type": "object",
251045
+ "required": [
251046
+ "statusCode",
251047
+ "error",
251048
+ "message"
251049
+ ],
251050
+ "properties": {
251051
+ "statusCode": {
251052
+ "type": "number"
251053
+ },
251054
+ "error": {
251055
+ "type": "string"
251056
+ },
251057
+ "message": {
251058
+ "type": "string"
251059
+ }
251060
+ }
251061
+ }
251062
+ }
251063
+ }
251064
+ },
251065
+ "500": {
251066
+ "description": "Internal server error",
251067
+ "content": {
251068
+ "application/json": {
251069
+ "schema": {
251070
+ "type": "object",
251071
+ "required": [
251072
+ "statusCode",
251073
+ "error",
251074
+ "message"
251075
+ ],
251076
+ "properties": {
251077
+ "statusCode": {
251078
+ "type": "number"
251079
+ },
251080
+ "error": {
251081
+ "type": "string"
251082
+ },
251083
+ "message": {
251084
+ "type": "string"
251085
+ }
251086
+ }
251087
+ }
251088
+ }
251089
+ }
251090
+ }
251091
+ }
251092
+ }
251093
+ },
250849
251094
  "/api/v1/tracker-cloaker/landing-pages": {
250850
251095
  "get": {
250851
251096
  "operationId": "getApiV1TrackerCloakerLandingPages",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.3288",
3
+ "version": "1.0.3295",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {