@wevion/cli 1.0.3296 → 1.0.3299

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
@@ -255976,6 +255976,251 @@
255976
255976
  }
255977
255977
  }
255978
255978
  },
255979
+ "/api/v1/tracker-cloaker/offers/{id}/bundle": {
255980
+ "post": {
255981
+ "operationId": "postApiV1TrackerCloakerOffersByIdBundle",
255982
+ "summary": "Upload a local offer bundle (folder or ZIP)",
255983
+ "tags": [
255984
+ "tracker-cloaker"
255985
+ ],
255986
+ "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.",
255987
+ "parameters": [
255988
+ {
255989
+ "schema": {
255990
+ "format": "uuid",
255991
+ "type": "string"
255992
+ },
255993
+ "in": "path",
255994
+ "name": "id",
255995
+ "required": true
255996
+ },
255997
+ {
255998
+ "schema": {
255999
+ "format": "uuid",
256000
+ "type": "string"
256001
+ },
256002
+ "in": "header",
256003
+ "name": "x-team-id",
256004
+ "required": false,
256005
+ "description": "Destination workspace team id."
256006
+ }
256007
+ ],
256008
+ "security": [
256009
+ {
256010
+ "bearerAuth": []
256011
+ },
256012
+ {
256013
+ "apiKeyAuth": []
256014
+ }
256015
+ ],
256016
+ "responses": {
256017
+ "201": {
256018
+ "description": "Resource created",
256019
+ "content": {
256020
+ "application/json": {
256021
+ "schema": {
256022
+ "type": "object",
256023
+ "required": [
256024
+ "version",
256025
+ "entry_file",
256026
+ "file_count",
256027
+ "total_bytes"
256028
+ ],
256029
+ "properties": {
256030
+ "version": {
256031
+ "type": "number"
256032
+ },
256033
+ "entry_file": {
256034
+ "type": "string"
256035
+ },
256036
+ "file_count": {
256037
+ "type": "number"
256038
+ },
256039
+ "total_bytes": {
256040
+ "type": "number"
256041
+ }
256042
+ }
256043
+ }
256044
+ }
256045
+ }
256046
+ },
256047
+ "400": {
256048
+ "description": "Explicit destination workspace required: send the x-team-id header or activate a team scope for this operation.",
256049
+ "content": {
256050
+ "application/json": {
256051
+ "schema": {
256052
+ "description": "Explicit destination workspace required: send the x-team-id header or activate a team scope for this operation.",
256053
+ "additionalProperties": false,
256054
+ "type": "object",
256055
+ "required": [
256056
+ "statusCode",
256057
+ "error",
256058
+ "message"
256059
+ ],
256060
+ "properties": {
256061
+ "statusCode": {
256062
+ "type": "number"
256063
+ },
256064
+ "error": {
256065
+ "type": "string"
256066
+ },
256067
+ "message": {
256068
+ "type": "string"
256069
+ },
256070
+ "code": {
256071
+ "type": "string",
256072
+ "enum": [
256073
+ "SCOPE_TEAM_REQUIRED"
256074
+ ]
256075
+ }
256076
+ }
256077
+ }
256078
+ }
256079
+ }
256080
+ },
256081
+ "401": {
256082
+ "description": "Unauthorized - missing or invalid bearer token",
256083
+ "content": {
256084
+ "application/json": {
256085
+ "schema": {
256086
+ "$ref": "#/components/schemas/ErrorResponse"
256087
+ }
256088
+ }
256089
+ }
256090
+ },
256091
+ "403": {
256092
+ "description": "Forbidden - caller lacks the required role/permission",
256093
+ "content": {
256094
+ "application/json": {
256095
+ "schema": {
256096
+ "type": "object",
256097
+ "required": [
256098
+ "statusCode",
256099
+ "error",
256100
+ "message"
256101
+ ],
256102
+ "properties": {
256103
+ "statusCode": {
256104
+ "type": "number"
256105
+ },
256106
+ "error": {
256107
+ "type": "string"
256108
+ },
256109
+ "message": {
256110
+ "type": "string"
256111
+ }
256112
+ }
256113
+ }
256114
+ }
256115
+ }
256116
+ },
256117
+ "413": {
256118
+ "description": "Payload too large",
256119
+ "content": {
256120
+ "application/json": {
256121
+ "schema": {
256122
+ "type": "object",
256123
+ "required": [
256124
+ "statusCode",
256125
+ "error",
256126
+ "message"
256127
+ ],
256128
+ "properties": {
256129
+ "statusCode": {
256130
+ "type": "number"
256131
+ },
256132
+ "error": {
256133
+ "type": "string"
256134
+ },
256135
+ "message": {
256136
+ "type": "string"
256137
+ }
256138
+ }
256139
+ }
256140
+ }
256141
+ }
256142
+ },
256143
+ "415": {
256144
+ "description": "Response 415",
256145
+ "content": {
256146
+ "application/json": {
256147
+ "schema": {
256148
+ "type": "object",
256149
+ "required": [
256150
+ "statusCode",
256151
+ "error",
256152
+ "message"
256153
+ ],
256154
+ "properties": {
256155
+ "statusCode": {
256156
+ "type": "number"
256157
+ },
256158
+ "error": {
256159
+ "type": "string"
256160
+ },
256161
+ "message": {
256162
+ "type": "string"
256163
+ }
256164
+ }
256165
+ }
256166
+ }
256167
+ }
256168
+ },
256169
+ "422": {
256170
+ "description": "Unprocessable entity - semantic validation failed",
256171
+ "content": {
256172
+ "application/json": {
256173
+ "schema": {
256174
+ "type": "object",
256175
+ "required": [
256176
+ "statusCode",
256177
+ "error",
256178
+ "message"
256179
+ ],
256180
+ "properties": {
256181
+ "statusCode": {
256182
+ "type": "number"
256183
+ },
256184
+ "error": {
256185
+ "type": "string"
256186
+ },
256187
+ "message": {
256188
+ "type": "string"
256189
+ }
256190
+ }
256191
+ }
256192
+ }
256193
+ }
256194
+ },
256195
+ "500": {
256196
+ "description": "Internal server error",
256197
+ "content": {
256198
+ "application/json": {
256199
+ "schema": {
256200
+ "type": "object",
256201
+ "required": [
256202
+ "statusCode",
256203
+ "error",
256204
+ "message"
256205
+ ],
256206
+ "properties": {
256207
+ "statusCode": {
256208
+ "type": "number"
256209
+ },
256210
+ "error": {
256211
+ "type": "string"
256212
+ },
256213
+ "message": {
256214
+ "type": "string"
256215
+ }
256216
+ }
256217
+ }
256218
+ }
256219
+ }
256220
+ }
256221
+ }
256222
+ }
256223
+ },
255979
256224
  "/api/v1/tracker-cloaker/offers": {
255980
256225
  "get": {
255981
256226
  "operationId": "getApiV1TrackerCloakerOffers",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.3296",
3
+ "version": "1.0.3299",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {