@botpress/api 1.18.2 → 1.19.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 +408 -20
- 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 +28 -2
- 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 +162 -7
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +28 -2
package/src/gen/admin/state.ts
CHANGED
|
@@ -13064,7 +13064,7 @@ export const state = {
|
|
|
13064
13064
|
"title": "Botpress API",
|
|
13065
13065
|
"description": "API for Botpress Cloud",
|
|
13066
13066
|
"server": "https://api.botpress.cloud",
|
|
13067
|
-
"version": "1.
|
|
13067
|
+
"version": "1.19.0",
|
|
13068
13068
|
"prefix": "v1"
|
|
13069
13069
|
},
|
|
13070
13070
|
"errors": [
|
|
@@ -16755,6 +16755,31 @@ export const state = {
|
|
|
16755
16755
|
"expiresAt": {
|
|
16756
16756
|
"type": "string",
|
|
16757
16757
|
"description": "File expiry timestamp in ISO 8601 format"
|
|
16758
|
+
},
|
|
16759
|
+
"owner": {
|
|
16760
|
+
"type": "object",
|
|
16761
|
+
"properties": {
|
|
16762
|
+
"type": {
|
|
16763
|
+
"type": "string",
|
|
16764
|
+
"enum": [
|
|
16765
|
+
"bot",
|
|
16766
|
+
"integration",
|
|
16767
|
+
"user"
|
|
16768
|
+
]
|
|
16769
|
+
},
|
|
16770
|
+
"id": {
|
|
16771
|
+
"type": "string",
|
|
16772
|
+
"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."
|
|
16773
|
+
},
|
|
16774
|
+
"name": {
|
|
16775
|
+
"type": "string",
|
|
16776
|
+
"description": "This field is present if the `type` is \"integration\". If `type` is \"integration\", this is the integration name."
|
|
16777
|
+
}
|
|
16778
|
+
},
|
|
16779
|
+
"required": [
|
|
16780
|
+
"type"
|
|
16781
|
+
],
|
|
16782
|
+
"additionalProperties": false
|
|
16758
16783
|
}
|
|
16759
16784
|
},
|
|
16760
16785
|
"required": [
|
|
@@ -16770,7 +16795,8 @@ export const state = {
|
|
|
16770
16795
|
"updatedAt",
|
|
16771
16796
|
"accessPolicies",
|
|
16772
16797
|
"index",
|
|
16773
|
-
"status"
|
|
16798
|
+
"status",
|
|
16799
|
+
"owner"
|
|
16774
16800
|
],
|
|
16775
16801
|
"additionalProperties": false
|
|
16776
16802
|
}
|