@botpress/api 0.70.0 → 0.70.1

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
  },
@@ -297268,7 +297287,7 @@ var state = {
297268
297287
  "title": "Botpress API",
297269
297288
  "description": "API for Botpress Cloud",
297270
297289
  "server": "https://api.botpress.cloud",
297271
- "version": "0.70.0",
297290
+ "version": "0.70.1",
297272
297291
  "prefix": "v1"
297273
297292
  },
297274
297293
  "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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.70.0",
3
+ "version": "0.70.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {