@botpress/api 1.18.2 → 1.20.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 +412 -22
- package/dist/src/gen/admin/state.d.ts +19 -0
- package/dist/src/gen/files/state.d.ts +113 -0
- package/dist/src/gen/runtime/state.d.ts +19 -0
- package/dist/src/gen/state.d.ts +113 -0
- package/dist/src/gen/tables/state.d.ts +19 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +30 -3
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +162 -7
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +28 -2
- package/src/gen/state.ts +164 -8
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +28 -2
package/src/gen/admin/state.ts
CHANGED
|
@@ -12875,7 +12875,8 @@ export const state = {
|
|
|
12875
12875
|
"type": "string",
|
|
12876
12876
|
"enum": [
|
|
12877
12877
|
"IntegrationAction",
|
|
12878
|
-
"FileIndexing"
|
|
12878
|
+
"FileIndexing",
|
|
12879
|
+
"WebSearch"
|
|
12879
12880
|
]
|
|
12880
12881
|
},
|
|
12881
12882
|
"subtype": {
|
|
@@ -13064,7 +13065,7 @@ export const state = {
|
|
|
13064
13065
|
"title": "Botpress API",
|
|
13065
13066
|
"description": "API for Botpress Cloud",
|
|
13066
13067
|
"server": "https://api.botpress.cloud",
|
|
13067
|
-
"version": "1.
|
|
13068
|
+
"version": "1.20.0",
|
|
13068
13069
|
"prefix": "v1"
|
|
13069
13070
|
},
|
|
13070
13071
|
"errors": [
|
|
@@ -16755,6 +16756,31 @@ export const state = {
|
|
|
16755
16756
|
"expiresAt": {
|
|
16756
16757
|
"type": "string",
|
|
16757
16758
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
16759
|
+
},
|
|
16760
|
+
"owner": {
|
|
16761
|
+
"type": "object",
|
|
16762
|
+
"properties": {
|
|
16763
|
+
"type": {
|
|
16764
|
+
"type": "string",
|
|
16765
|
+
"enum": [
|
|
16766
|
+
"bot",
|
|
16767
|
+
"integration",
|
|
16768
|
+
"user"
|
|
16769
|
+
]
|
|
16770
|
+
},
|
|
16771
|
+
"id": {
|
|
16772
|
+
"type": "string",
|
|
16773
|
+
"description": "This field is present if `type` is \"user\" or \"bot\". If `type` is \"user\", this is the user ID. If `type` is \"bot\", this is the bot ID."
|
|
16774
|
+
},
|
|
16775
|
+
"name": {
|
|
16776
|
+
"type": "string",
|
|
16777
|
+
"description": "This field is present if the `type` is \"integration\". If `type` is \"integration\", this is the integration name."
|
|
16778
|
+
}
|
|
16779
|
+
},
|
|
16780
|
+
"required": [
|
|
16781
|
+
"type"
|
|
16782
|
+
],
|
|
16783
|
+
"additionalProperties": false
|
|
16758
16784
|
}
|
|
16759
16785
|
},
|
|
16760
16786
|
"required": [
|
|
@@ -16770,7 +16796,8 @@ export const state = {
|
|
|
16770
16796
|
"updatedAt",
|
|
16771
16797
|
"accessPolicies",
|
|
16772
16798
|
"index",
|
|
16773
|
-
"status"
|
|
16799
|
+
"status",
|
|
16800
|
+
"owner"
|
|
16774
16801
|
],
|
|
16775
16802
|
"additionalProperties": false
|
|
16776
16803
|
}
|