@botpress/api 0.70.0 → 0.71.0

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.
package/dist/index.js CHANGED
@@ -287305,6 +287305,17 @@ var state = {
287305
287305
  "type": "boolean",
287306
287306
  "required": false
287307
287307
  },
287308
+ "tags": {
287309
+ "in": "query",
287310
+ "type": "object",
287311
+ "schema": {
287312
+ "type": "object",
287313
+ "additionalProperties": {
287314
+ "type": "string"
287315
+ }
287316
+ },
287317
+ "description": "Filter by tags"
287318
+ },
287308
287319
  "nextToken": {
287309
287320
  "in": "query",
287310
287321
  "description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
@@ -287362,13 +287373,21 @@ var state = {
287362
287373
  "deployedAt": {
287363
287374
  "type": "string",
287364
287375
  "format": "date-time"
287376
+ },
287377
+ "tags": {
287378
+ "type": "object",
287379
+ "additionalProperties": {
287380
+ "type": "string"
287381
+ },
287382
+ "description": "Tags of [Bot](#schema_bot)"
287365
287383
  }
287366
287384
  },
287367
287385
  "required": [
287368
287386
  "id",
287369
287387
  "createdAt",
287370
287388
  "updatedAt",
287371
- "name"
287389
+ "name",
287390
+ "tags"
287372
287391
  ]
287373
287392
  }
287374
287393
  },
@@ -289422,6 +289441,12 @@ var state = {
289422
289441
  "in": "query",
289423
289442
  "description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
289424
289443
  "type": "string"
289444
+ },
289445
+ "handle": {
289446
+ "in": "query",
289447
+ "description": "Workspace handle",
289448
+ "type": "string",
289449
+ "required": false
289425
289450
  }
289426
289451
  },
289427
289452
  "response": {
@@ -297268,7 +297293,7 @@ var state = {
297268
297293
  "title": "Botpress API",
297269
297294
  "description": "API for Botpress Cloud",
297270
297295
  "server": "https://api.botpress.cloud",
297271
- "version": "0.70.0",
297296
+ "version": "0.71.0",
297272
297297
  "prefix": "v1"
297273
297298
  },
297274
297299
  "errors": [
@@ -4710,6 +4710,17 @@ export declare const state: {
4710
4710
  type: "boolean";
4711
4711
  required: false;
4712
4712
  };
4713
+ tags: {
4714
+ in: "query";
4715
+ type: "object";
4716
+ schema: {
4717
+ type: "object";
4718
+ additionalProperties: {
4719
+ type: "string";
4720
+ };
4721
+ };
4722
+ description: string;
4723
+ };
4713
4724
  nextToken: {
4714
4725
  in: "query";
4715
4726
  description: string;
@@ -4762,6 +4773,13 @@ export declare const state: {
4762
4773
  type: "string";
4763
4774
  format: string;
4764
4775
  };
4776
+ tags: {
4777
+ type: "object";
4778
+ additionalProperties: {
4779
+ type: "string";
4780
+ };
4781
+ description: string;
4782
+ };
4765
4783
  };
4766
4784
  required: string[];
4767
4785
  };
@@ -6483,6 +6501,12 @@ export declare const state: {
6483
6501
  description: string;
6484
6502
  type: "string";
6485
6503
  };
6504
+ handle: {
6505
+ in: "query";
6506
+ description: string;
6507
+ type: "string";
6508
+ required: false;
6509
+ };
6486
6510
  };
6487
6511
  response: {
6488
6512
  description: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.70.0",
3
+ "version": "0.71.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {