@botpress/api 1.1.0 → 1.3.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 +85 -5
- package/dist/src/gen/files/state.d.ts +30 -0
- package/dist/src/gen/state.d.ts +30 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +1 -1
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +41 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +1 -1
- package/src/gen/state.ts +41 -1
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +1 -1
package/src/gen/runtime/state.ts
CHANGED
package/src/gen/state.ts
CHANGED
|
@@ -13416,6 +13416,13 @@ export const state = {
|
|
|
13416
13416
|
},
|
|
13417
13417
|
"additionalProperties": false
|
|
13418
13418
|
},
|
|
13419
|
+
"stack": {
|
|
13420
|
+
"type": "string",
|
|
13421
|
+
"enum": [
|
|
13422
|
+
"realtime-v1"
|
|
13423
|
+
],
|
|
13424
|
+
"description": "Internal setting, cannot be set manually."
|
|
13425
|
+
},
|
|
13419
13426
|
"vision": {
|
|
13420
13427
|
"type": "object",
|
|
13421
13428
|
"properties": {
|
|
@@ -14403,6 +14410,39 @@ export const state = {
|
|
|
14403
14410
|
"createdAt",
|
|
14404
14411
|
"updatedAt"
|
|
14405
14412
|
]
|
|
14413
|
+
},
|
|
14414
|
+
"context": {
|
|
14415
|
+
"type": "array",
|
|
14416
|
+
"items": {
|
|
14417
|
+
"type": "object",
|
|
14418
|
+
"properties": {
|
|
14419
|
+
"id": {
|
|
14420
|
+
"type": "string",
|
|
14421
|
+
"format": "uuid"
|
|
14422
|
+
},
|
|
14423
|
+
"text": {
|
|
14424
|
+
"type": "string"
|
|
14425
|
+
},
|
|
14426
|
+
"offset": {
|
|
14427
|
+
"type": "integer",
|
|
14428
|
+
"description": "Position of the context passage relative to the current passage. Negative for preceding passages, positive for subsequent, ommited for breadcrumbs."
|
|
14429
|
+
},
|
|
14430
|
+
"type": {
|
|
14431
|
+
"type": "string",
|
|
14432
|
+
"enum": [
|
|
14433
|
+
"preceding",
|
|
14434
|
+
"subsequent",
|
|
14435
|
+
"breadcrumb"
|
|
14436
|
+
],
|
|
14437
|
+
"description": "The type of context passage"
|
|
14438
|
+
}
|
|
14439
|
+
},
|
|
14440
|
+
"required": [
|
|
14441
|
+
"id",
|
|
14442
|
+
"text",
|
|
14443
|
+
"type"
|
|
14444
|
+
]
|
|
14445
|
+
}
|
|
14406
14446
|
}
|
|
14407
14447
|
},
|
|
14408
14448
|
"required": [
|
|
@@ -16044,7 +16084,7 @@ export const state = {
|
|
|
16044
16084
|
"title": "Botpress API",
|
|
16045
16085
|
"description": "API for Botpress Cloud",
|
|
16046
16086
|
"server": "https://api.botpress.cloud",
|
|
16047
|
-
"version": "1.
|
|
16087
|
+
"version": "1.3.0",
|
|
16048
16088
|
"prefix": "v1"
|
|
16049
16089
|
},
|
|
16050
16090
|
"errors": [
|