@botpress/api 1.44.0 → 1.46.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 +6 -6
- package/dist/index.js +2137 -3621
- package/dist/src/gen/runtime/state.d.ts +5 -0
- package/dist/src/gen/state.d.ts +12 -0
- package/dist/src/gen/tables/state.d.ts +7 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +4 -2
- 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 +9 -1
- package/src/gen/state.ts +19 -2
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +8 -1
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -2257,6 +2257,11 @@ export declare const state: {
|
|
|
2257
2257
|
};
|
|
2258
2258
|
description: string;
|
|
2259
2259
|
};
|
|
2260
|
+
discriminateByStatusGroup: {
|
|
2261
|
+
type: "string";
|
|
2262
|
+
enum: string[];
|
|
2263
|
+
description: string;
|
|
2264
|
+
};
|
|
2260
2265
|
};
|
|
2261
2266
|
required: string[];
|
|
2262
2267
|
title: string;
|
|
@@ -17033,6 +17038,13 @@ export declare const state: {
|
|
|
17033
17038
|
maxLength: number;
|
|
17034
17039
|
description: string;
|
|
17035
17040
|
};
|
|
17041
|
+
select: {
|
|
17042
|
+
type: "array";
|
|
17043
|
+
items: {
|
|
17044
|
+
type: "string";
|
|
17045
|
+
};
|
|
17046
|
+
description: string;
|
|
17047
|
+
};
|
|
17036
17048
|
orderBy: {
|
|
17037
17049
|
default: string;
|
|
17038
17050
|
type: "string";
|
|
@@ -743,6 +743,13 @@ export declare const state: {
|
|
|
743
743
|
maxLength: number;
|
|
744
744
|
description: string;
|
|
745
745
|
};
|
|
746
|
+
select: {
|
|
747
|
+
type: "array";
|
|
748
|
+
items: {
|
|
749
|
+
type: "string";
|
|
750
|
+
};
|
|
751
|
+
description: string;
|
|
752
|
+
};
|
|
746
753
|
orderBy: {
|
|
747
754
|
default: string;
|
|
748
755
|
type: "string";
|