@botpress/api 1.26.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 +968 -274
- package/dist/src/gen/admin/state.d.ts +10 -0
- package/dist/src/gen/state.d.ts +10 -0
- package/package.json +4 -2
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +11 -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 +11 -1
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +1 -1
|
@@ -4294,6 +4294,10 @@ export declare const state: {
|
|
|
4294
4294
|
enabled: {
|
|
4295
4295
|
type: "boolean";
|
|
4296
4296
|
};
|
|
4297
|
+
integrationId: {
|
|
4298
|
+
type: "string";
|
|
4299
|
+
description: string;
|
|
4300
|
+
};
|
|
4297
4301
|
configurationType: {
|
|
4298
4302
|
type: "string";
|
|
4299
4303
|
nullable: true;
|
|
@@ -4576,6 +4580,12 @@ export declare const state: {
|
|
|
4576
4580
|
description: string;
|
|
4577
4581
|
in: "path";
|
|
4578
4582
|
};
|
|
4583
|
+
shouldMergePlugins: {
|
|
4584
|
+
in: "query";
|
|
4585
|
+
type: "boolean";
|
|
4586
|
+
required: false;
|
|
4587
|
+
description: string;
|
|
4588
|
+
};
|
|
4579
4589
|
};
|
|
4580
4590
|
response: {
|
|
4581
4591
|
description: string;
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -6641,6 +6641,10 @@ export declare const state: {
|
|
|
6641
6641
|
enabled: {
|
|
6642
6642
|
type: "boolean";
|
|
6643
6643
|
};
|
|
6644
|
+
integrationId: {
|
|
6645
|
+
type: "string";
|
|
6646
|
+
description: string;
|
|
6647
|
+
};
|
|
6644
6648
|
configurationType: {
|
|
6645
6649
|
type: "string";
|
|
6646
6650
|
nullable: true;
|
|
@@ -6923,6 +6927,12 @@ export declare const state: {
|
|
|
6923
6927
|
description: string;
|
|
6924
6928
|
in: "path";
|
|
6925
6929
|
};
|
|
6930
|
+
shouldMergePlugins: {
|
|
6931
|
+
in: "query";
|
|
6932
|
+
type: "boolean";
|
|
6933
|
+
required: false;
|
|
6934
|
+
description: string;
|
|
6935
|
+
};
|
|
6926
6936
|
};
|
|
6927
6937
|
response: {
|
|
6928
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
|
}
|