@botpress/api 0.26.3 → 0.26.4
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 +12 -5
- package/dist/src/gen/state.d.ts +9 -2
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +12 -5
package/dist/index.js
CHANGED
|
@@ -281922,20 +281922,27 @@ var state = {
|
|
|
281922
281922
|
"$ref": "#/components/schemas/Row"
|
|
281923
281923
|
}
|
|
281924
281924
|
},
|
|
281925
|
-
"
|
|
281926
|
-
"type": "
|
|
281927
|
-
"description": "
|
|
281925
|
+
"hasMore": {
|
|
281926
|
+
"type": "boolean",
|
|
281927
|
+
"description": "Flag indicating if there are more rows to fetch."
|
|
281928
281928
|
},
|
|
281929
281929
|
"offset": {
|
|
281930
281930
|
"type": "integer"
|
|
281931
281931
|
},
|
|
281932
281932
|
"limit": {
|
|
281933
281933
|
"type": "integer"
|
|
281934
|
+
},
|
|
281935
|
+
"warnings": {
|
|
281936
|
+
"type": "array",
|
|
281937
|
+
"items": {
|
|
281938
|
+
"type": "string"
|
|
281939
|
+
},
|
|
281940
|
+
"description": "Alerts for minor issues that don't block the operation but suggest possible improvements."
|
|
281934
281941
|
}
|
|
281935
281942
|
},
|
|
281936
281943
|
"required": [
|
|
281937
281944
|
"rows",
|
|
281938
|
-
"
|
|
281945
|
+
"hasMore",
|
|
281939
281946
|
"offset",
|
|
281940
281947
|
"limit"
|
|
281941
281948
|
],
|
|
@@ -282241,7 +282248,7 @@ var state = {
|
|
|
282241
282248
|
"title": "Botpress API",
|
|
282242
282249
|
"description": "API for Botpress Cloud",
|
|
282243
282250
|
"server": "https://api.botpress.cloud",
|
|
282244
|
-
"version": "0.26.
|
|
282251
|
+
"version": "0.26.4",
|
|
282245
282252
|
"prefix": "v1"
|
|
282246
282253
|
},
|
|
282247
282254
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -8115,8 +8115,8 @@ export declare const state: {
|
|
|
8115
8115
|
$ref: string;
|
|
8116
8116
|
};
|
|
8117
8117
|
};
|
|
8118
|
-
|
|
8119
|
-
type: "
|
|
8118
|
+
hasMore: {
|
|
8119
|
+
type: "boolean";
|
|
8120
8120
|
description: string;
|
|
8121
8121
|
};
|
|
8122
8122
|
offset: {
|
|
@@ -8125,6 +8125,13 @@ export declare const state: {
|
|
|
8125
8125
|
limit: {
|
|
8126
8126
|
type: "integer";
|
|
8127
8127
|
};
|
|
8128
|
+
warnings: {
|
|
8129
|
+
type: "array";
|
|
8130
|
+
items: {
|
|
8131
|
+
type: "string";
|
|
8132
|
+
};
|
|
8133
|
+
description: string;
|
|
8134
|
+
};
|
|
8128
8135
|
};
|
|
8129
8136
|
required: string[];
|
|
8130
8137
|
title: string;
|