@botpress/api 0.71.0 → 0.73.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 +5 -4
- package/dist/src/gen/state.d.ts +2 -1
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +5 -4
package/dist/index.js
CHANGED
|
@@ -295587,12 +295587,13 @@ var state = {
|
|
|
295587
295587
|
}
|
|
295588
295588
|
},
|
|
295589
295589
|
"requestBody": {
|
|
295590
|
-
"description": "
|
|
295590
|
+
"description": "Additional options for file copying.",
|
|
295591
295591
|
"schema": {
|
|
295592
295592
|
"type": "object",
|
|
295593
295593
|
"properties": {
|
|
295594
|
-
"
|
|
295595
|
-
"type": "boolean"
|
|
295594
|
+
"overwrite": {
|
|
295595
|
+
"type": "boolean",
|
|
295596
|
+
"description": "Set to `true` to overwrite the file if it already exists, otherwise an error will be returned. If overwriting, the existing file must be owned by the same user making the file copy request, otherwise an error will be returned."
|
|
295596
295597
|
}
|
|
295597
295598
|
},
|
|
295598
295599
|
"title": "copyFileBody",
|
|
@@ -297293,7 +297294,7 @@ var state = {
|
|
|
297293
297294
|
"title": "Botpress API",
|
|
297294
297295
|
"description": "API for Botpress Cloud",
|
|
297295
297296
|
"server": "https://api.botpress.cloud",
|
|
297296
|
-
"version": "0.
|
|
297297
|
+
"version": "0.73.0",
|
|
297297
297298
|
"prefix": "v1"
|
|
297298
297299
|
},
|
|
297299
297300
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -11966,8 +11966,9 @@ export declare const state: {
|
|
|
11966
11966
|
schema: {
|
|
11967
11967
|
type: "object";
|
|
11968
11968
|
properties: {
|
|
11969
|
-
|
|
11969
|
+
overwrite: {
|
|
11970
11970
|
type: "boolean";
|
|
11971
|
+
description: string;
|
|
11971
11972
|
};
|
|
11972
11973
|
};
|
|
11973
11974
|
title: string;
|