@botpress/api 1.62.0 → 1.64.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 +3174 -2095
- package/dist/src/gen/billing/state.d.ts +791 -0
- package/dist/src/gen/files/state.d.ts +5 -0
- package/dist/src/gen/state.d.ts +5 -0
- package/dist/src/index.d.ts +2 -0
- package/package.json +3 -2
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -15406,6 +15406,11 @@ export declare const state: {
|
|
|
15406
15406
|
maxItems: number;
|
|
15407
15407
|
};
|
|
15408
15408
|
};
|
|
15409
|
+
indexed: {
|
|
15410
|
+
in: "query";
|
|
15411
|
+
type: "boolean";
|
|
15412
|
+
description: string;
|
|
15413
|
+
};
|
|
15409
15414
|
};
|
|
15410
15415
|
response: {
|
|
15411
15416
|
description: string;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -9,3 +9,5 @@ export * as files from './gen/files/state';
|
|
|
9
9
|
export declare const filesApi: OpenApi<string, string, string>;
|
|
10
10
|
export * as tables from './gen/tables/state';
|
|
11
11
|
export declare const tablesApi: OpenApi<string, string, string>;
|
|
12
|
+
export * as billing from './gen/billing/state';
|
|
13
|
+
export declare const billingApi: OpenApi<string, string, string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botpress/api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.64.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/src/index.d.ts",
|
|
6
6
|
"devDependencies": {
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"@botpress/common": "0.5.0",
|
|
14
14
|
"@botpress/files-api": "0.18.0",
|
|
15
15
|
"@bpinternal/const": "0.4.1",
|
|
16
|
-
"@bpinternal/tables-api": "0.17.2"
|
|
16
|
+
"@bpinternal/tables-api": "0.17.2",
|
|
17
|
+
"@botpress/smaug": "1.0.0"
|
|
17
18
|
},
|
|
18
19
|
"dependencies": {
|
|
19
20
|
"@bpinternal/opapi": "1.0.0"
|