@botpress/api 1.41.0 → 1.43.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/.turbo/turbo-openapi.log +5 -5
- package/dist/index.js +142 -18
- package/dist/src/gen/admin/state.d.ts +25 -0
- package/dist/src/gen/files/state.d.ts +9 -0
- package/dist/src/gen/runtime/state.d.ts +17 -0
- package/dist/src/gen/state.d.ts +33 -0
- package/dist/src/gen/tables/state.d.ts +9 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +38 -6
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +14 -2
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +26 -2
- package/src/gen/state.ts +50 -6
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +14 -2
|
@@ -2955,6 +2955,10 @@ export declare const state: {
|
|
|
2955
2955
|
handle: {
|
|
2956
2956
|
type: "string";
|
|
2957
2957
|
};
|
|
2958
|
+
activeTrialId: {
|
|
2959
|
+
type: "string";
|
|
2960
|
+
nullable: true;
|
|
2961
|
+
};
|
|
2958
2962
|
};
|
|
2959
2963
|
required: string[];
|
|
2960
2964
|
title: string;
|
|
@@ -3412,6 +3416,11 @@ export declare const state: {
|
|
|
3412
3416
|
};
|
|
3413
3417
|
description: string;
|
|
3414
3418
|
};
|
|
3419
|
+
origin: {
|
|
3420
|
+
type: "string";
|
|
3421
|
+
enum: string[];
|
|
3422
|
+
description: string;
|
|
3423
|
+
};
|
|
3415
3424
|
};
|
|
3416
3425
|
required: string[];
|
|
3417
3426
|
description: string;
|