@botpress/api 1.35.2 → 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.2",
2613
+ "version": "1.36.0",
2614
2614
  "prefix": "v1"
2615
2615
  },
2616
2616
  "errors": [
package/src/gen/state.ts CHANGED
@@ -18145,6 +18145,12 @@ export const state = {
18145
18145
  "name": {
18146
18146
  "type": "string",
18147
18147
  "description": "Name of the knowledge base."
18148
+ },
18149
+ "tags": {
18150
+ "type": "object",
18151
+ "additionalProperties": {
18152
+ "type": "string"
18153
+ }
18148
18154
  }
18149
18155
  },
18150
18156
  "required": [
@@ -18171,11 +18177,18 @@ export const state = {
18171
18177
  "name": {
18172
18178
  "type": "string",
18173
18179
  "description": "Name of the knowledge base."
18180
+ },
18181
+ "tags": {
18182
+ "type": "object",
18183
+ "additionalProperties": {
18184
+ "type": "string"
18185
+ }
18174
18186
  }
18175
18187
  },
18176
18188
  "required": [
18177
18189
  "id",
18178
- "name"
18190
+ "name",
18191
+ "tags"
18179
18192
  ],
18180
18193
  "additionalProperties": false
18181
18194
  }
@@ -18232,6 +18245,15 @@ export const state = {
18232
18245
  "name": {
18233
18246
  "type": "string",
18234
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`."
18235
18257
  }
18236
18258
  },
18237
18259
  "required": [
@@ -18257,11 +18279,18 @@ export const state = {
18257
18279
  "name": {
18258
18280
  "type": "string",
18259
18281
  "description": "Name of the knowledge base."
18282
+ },
18283
+ "tags": {
18284
+ "type": "object",
18285
+ "additionalProperties": {
18286
+ "type": "string"
18287
+ }
18260
18288
  }
18261
18289
  },
18262
18290
  "required": [
18263
18291
  "id",
18264
- "name"
18292
+ "name",
18293
+ "tags"
18265
18294
  ],
18266
18295
  "additionalProperties": false
18267
18296
  }
@@ -18285,6 +18314,12 @@ export const state = {
18285
18314
  "in": "query",
18286
18315
  "description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
18287
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": {}
18288
18323
  }
18289
18324
  },
18290
18325
  "response": {
@@ -18308,12 +18343,19 @@ export const state = {
18308
18343
  "createdAt": {
18309
18344
  "type": "string",
18310
18345
  "description": "Knowledge base creation timestamp in ISO 8601 format"
18346
+ },
18347
+ "tags": {
18348
+ "type": "object",
18349
+ "additionalProperties": {
18350
+ "type": "string"
18351
+ }
18311
18352
  }
18312
18353
  },
18313
18354
  "required": [
18314
18355
  "id",
18315
18356
  "name",
18316
- "createdAt"
18357
+ "createdAt",
18358
+ "tags"
18317
18359
  ]
18318
18360
  }
18319
18361
  },
@@ -19548,7 +19590,7 @@ export const state = {
19548
19590
  "title": "Botpress API",
19549
19591
  "description": "API for Botpress Cloud",
19550
19592
  "server": "https://api.botpress.cloud",
19551
- "version": "1.35.2",
19593
+ "version": "1.36.0",
19552
19594
  "prefix": "v1"
19553
19595
  },
19554
19596
  "errors": [