@wevion/cli 1.0.2562 → 1.0.2563

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 +43 -1
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -120485,12 +120485,54 @@
120485
120485
  }
120486
120486
  }
120487
120487
  },
120488
+ "400": {
120489
+ "description": "Invalid request - schema validation failed",
120490
+ "content": {
120491
+ "application/json": {
120492
+ "schema": {
120493
+ "type": "object",
120494
+ "required": [
120495
+ "statusCode",
120496
+ "error",
120497
+ "message"
120498
+ ],
120499
+ "properties": {
120500
+ "statusCode": {
120501
+ "type": "number"
120502
+ },
120503
+ "error": {
120504
+ "type": "string"
120505
+ },
120506
+ "message": {
120507
+ "type": "string"
120508
+ }
120509
+ }
120510
+ }
120511
+ }
120512
+ }
120513
+ },
120488
120514
  "401": {
120489
120515
  "description": "Unauthorized - missing or invalid bearer token",
120490
120516
  "content": {
120491
120517
  "application/json": {
120492
120518
  "schema": {
120493
- "$ref": "#/components/schemas/ErrorResponse"
120519
+ "type": "object",
120520
+ "required": [
120521
+ "statusCode",
120522
+ "error",
120523
+ "message"
120524
+ ],
120525
+ "properties": {
120526
+ "statusCode": {
120527
+ "type": "number"
120528
+ },
120529
+ "error": {
120530
+ "type": "string"
120531
+ },
120532
+ "message": {
120533
+ "type": "string"
120534
+ }
120535
+ }
120494
120536
  }
120495
120537
  }
120496
120538
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wevion/cli",
3
- "version": "1.0.2562",
3
+ "version": "1.0.2563",
4
4
  "description": "Wevion API command-line interface — generated from the public OpenAPI spec",
5
5
  "type": "module",
6
6
  "bin": {