@botpress/api 1.27.0 → 1.28.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 +960 -274
- package/dist/src/gen/admin/state.d.ts +6 -0
- package/dist/src/gen/state.d.ts +6 -0
- package/package.json +4 -2
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +7 -1
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +1 -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 +7 -1
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +1 -1
|
@@ -4580,6 +4580,12 @@ export declare const state: {
|
|
|
4580
4580
|
description: string;
|
|
4581
4581
|
in: "path";
|
|
4582
4582
|
};
|
|
4583
|
+
shouldMergePlugins: {
|
|
4584
|
+
in: "query";
|
|
4585
|
+
type: "boolean";
|
|
4586
|
+
required: false;
|
|
4587
|
+
description: string;
|
|
4588
|
+
};
|
|
4583
4589
|
};
|
|
4584
4590
|
response: {
|
|
4585
4591
|
description: string;
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -6927,6 +6927,12 @@ export declare const state: {
|
|
|
6927
6927
|
description: string;
|
|
6928
6928
|
in: "path";
|
|
6929
6929
|
};
|
|
6930
|
+
shouldMergePlugins: {
|
|
6931
|
+
in: "query";
|
|
6932
|
+
type: "boolean";
|
|
6933
|
+
required: false;
|
|
6934
|
+
description: string;
|
|
6935
|
+
};
|
|
6930
6936
|
};
|
|
6931
6937
|
response: {
|
|
6932
6938
|
description: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botpress/api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.28.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/src/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -16,12 +16,14 @@
|
|
|
16
16
|
"@botpress/cloud-manager": "workspace:*",
|
|
17
17
|
"@botpress/common": "workspace:*",
|
|
18
18
|
"@botpress/files-api": "workspace:*",
|
|
19
|
+
"@bpinternal/const": "workspace:*",
|
|
19
20
|
"@bpinternal/es-node": "0.0.3",
|
|
20
21
|
"@bpinternal/tables-api": "workspace:*",
|
|
21
22
|
"esbuild": "^0.16.10",
|
|
22
|
-
"zod": "^3.
|
|
23
|
+
"zod": "^3.24.4"
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
26
|
+
"@bpinternal/const": "workspace:*",
|
|
25
27
|
"@bpinternal/opapi": "0.14.0"
|
|
26
28
|
}
|
|
27
29
|
}
|