@botpress/api 1.35.1 → 1.36.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.
@@ -2610,7 +2610,7 @@ export const state = {
2610
2610
  "title": "Botpress API",
2611
2611
  "description": "API for Botpress Cloud",
2612
2612
  "server": "https://api.botpress.cloud",
2613
- "version": "1.35.1",
2613
+ "version": "1.36.0",
2614
2614
  "prefix": "v1"
2615
2615
  },
2616
2616
  "errors": [
package/src/gen/state.ts CHANGED
@@ -7665,6 +7665,10 @@ export const state = {
7665
7665
  "items": {
7666
7666
  "type": "string"
7667
7667
  }
7668
+ },
7669
+ "shouldMergePlugins": {
7670
+ "type": "boolean",
7671
+ "description": "UNUSED. Please ignore this field. It will be removed in the near future."
7668
7672
  }
7669
7673
  },
7670
7674
  "title": "updateBotBody",
@@ -7857,6 +7861,12 @@ export const state = {
7857
7861
  "type": "string",
7858
7862
  "description": "Bot ID",
7859
7863
  "in": "path"
7864
+ },
7865
+ "shouldMergePlugins": {
7866
+ "in": "query",
7867
+ "type": "boolean",
7868
+ "required": false,
7869
+ "description": "UNUSED. Please ignore this field. It will be removed in the near future."
7860
7870
  }
7861
7871
  },
7862
7872
  "response": {
@@ -18135,6 +18145,12 @@ export const state = {
18135
18145
  "name": {
18136
18146
  "type": "string",
18137
18147
  "description": "Name of the knowledge base."
18148
+ },
18149
+ "tags": {
18150
+ "type": "object",
18151
+ "additionalProperties": {
18152
+ "type": "string"
18153
+ }
18138
18154
  }
18139
18155
  },
18140
18156
  "required": [
@@ -18161,11 +18177,18 @@ export const state = {
18161
18177
  "name": {
18162
18178
  "type": "string",
18163
18179
  "description": "Name of the knowledge base."
18180
+ },
18181
+ "tags": {
18182
+ "type": "object",
18183
+ "additionalProperties": {
18184
+ "type": "string"
18185
+ }
18164
18186
  }
18165
18187
  },
18166
18188
  "required": [
18167
18189
  "id",
18168
- "name"
18190
+ "name",
18191
+ "tags"
18169
18192
  ],
18170
18193
  "additionalProperties": false
18171
18194
  }
@@ -18222,6 +18245,15 @@ export const state = {
18222
18245
  "name": {
18223
18246
  "type": "string",
18224
18247
  "description": "New name of the knowledge base."
18248
+ },
18249
+ "tags": {
18250
+ "type": "object",
18251
+ "additionalProperties": {
18252
+ "type": "string",
18253
+ "maxLength": 1000,
18254
+ "nullable": true
18255
+ },
18256
+ "description": "The knowledge base tags to update as an object of key-value pairs with `string` (text) values. Omit to keep existing tags intact. Any existing tags not included will be preserved. New tags will be added. To delete a tag, set its value to `null`."
18225
18257
  }
18226
18258
  },
18227
18259
  "required": [
@@ -18247,11 +18279,18 @@ export const state = {
18247
18279
  "name": {
18248
18280
  "type": "string",
18249
18281
  "description": "Name of the knowledge base."
18282
+ },
18283
+ "tags": {
18284
+ "type": "object",
18285
+ "additionalProperties": {
18286
+ "type": "string"
18287
+ }
18250
18288
  }
18251
18289
  },
18252
18290
  "required": [
18253
18291
  "id",
18254
- "name"
18292
+ "name",
18293
+ "tags"
18255
18294
  ],
18256
18295
  "additionalProperties": false
18257
18296
  }
@@ -18275,6 +18314,12 @@ export const state = {
18275
18314
  "in": "query",
18276
18315
  "description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
18277
18316
  "type": "string"
18317
+ },
18318
+ "tags": {
18319
+ "in": "query",
18320
+ "description": "Filter files by tags. Tags should be passed as a URL-encoded JSON object of key-value pairs that must be present in the tags of a file. An array of multiple string values for the same key are treated as an OR condition. To exclude a value, express it as an object with a nested `not` key with the string or string-array value(s) to exclude.",
18321
+ "type": "object",
18322
+ "schema": {}
18278
18323
  }
18279
18324
  },
18280
18325
  "response": {
@@ -18298,12 +18343,19 @@ export const state = {
18298
18343
  "createdAt": {
18299
18344
  "type": "string",
18300
18345
  "description": "Knowledge base creation timestamp in ISO 8601 format"
18346
+ },
18347
+ "tags": {
18348
+ "type": "object",
18349
+ "additionalProperties": {
18350
+ "type": "string"
18351
+ }
18301
18352
  }
18302
18353
  },
18303
18354
  "required": [
18304
18355
  "id",
18305
18356
  "name",
18306
- "createdAt"
18357
+ "createdAt",
18358
+ "tags"
18307
18359
  ]
18308
18360
  }
18309
18361
  },
@@ -19538,7 +19590,7 @@ export const state = {
19538
19590
  "title": "Botpress API",
19539
19591
  "description": "API for Botpress Cloud",
19540
19592
  "server": "https://api.botpress.cloud",
19541
- "version": "1.35.1",
19593
+ "version": "1.36.0",
19542
19594
  "prefix": "v1"
19543
19595
  },
19544
19596
  "errors": [