@botpress/api 0.27.3 → 0.27.5
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 +13 -1
- package/dist/src/gen/state.d.ts +10 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +13 -1
package/dist/index.js
CHANGED
|
@@ -272843,6 +272843,11 @@ var state = {
|
|
|
272843
272843
|
"in": "query",
|
|
272844
272844
|
"type": "string[]",
|
|
272845
272845
|
"description": "Filter by participant ids"
|
|
272846
|
+
},
|
|
272847
|
+
"integrationName": {
|
|
272848
|
+
"in": "query",
|
|
272849
|
+
"type": "string",
|
|
272850
|
+
"description": "Filter by integration name"
|
|
272846
272851
|
}
|
|
272847
272852
|
},
|
|
272848
272853
|
"section": "conversation",
|
|
@@ -280766,6 +280771,10 @@ var state = {
|
|
|
280766
280771
|
},
|
|
280767
280772
|
"description": "File tags as an object of key/value pairs"
|
|
280768
280773
|
},
|
|
280774
|
+
"size": {
|
|
280775
|
+
"type": "number",
|
|
280776
|
+
"description": "File size in bytes. This will count against your file storage quota. If the `index` parameter is set to `true`, this will also count against your vector database storage quota."
|
|
280777
|
+
},
|
|
280769
280778
|
"index": {
|
|
280770
280779
|
"default": false,
|
|
280771
280780
|
"type": "boolean",
|
|
@@ -280787,6 +280796,9 @@ var state = {
|
|
|
280787
280796
|
"description": 'File content type. If omitted, the content type will be inferred from the file extension. If a type cannot be inferred, the default is "application/octet-stream".'
|
|
280788
280797
|
}
|
|
280789
280798
|
},
|
|
280799
|
+
"required": [
|
|
280800
|
+
"size"
|
|
280801
|
+
],
|
|
280790
280802
|
"title": "createFileBody",
|
|
280791
280803
|
"additionalProperties": false
|
|
280792
280804
|
}
|
|
@@ -282281,7 +282293,7 @@ var state = {
|
|
|
282281
282293
|
"title": "Botpress API",
|
|
282282
282294
|
"description": "API for Botpress Cloud",
|
|
282283
282295
|
"server": "https://api.botpress.cloud",
|
|
282284
|
-
"version": "0.27.
|
|
282296
|
+
"version": "0.27.5",
|
|
282285
282297
|
"prefix": "v1"
|
|
282286
282298
|
},
|
|
282287
282299
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -110,6 +110,11 @@ export declare const state: {
|
|
|
110
110
|
type: "string[]";
|
|
111
111
|
description: string;
|
|
112
112
|
};
|
|
113
|
+
integrationName: {
|
|
114
|
+
in: "query";
|
|
115
|
+
type: "string";
|
|
116
|
+
description: string;
|
|
117
|
+
};
|
|
113
118
|
};
|
|
114
119
|
section: "conversation";
|
|
115
120
|
response: {
|
|
@@ -7081,6 +7086,10 @@ export declare const state: {
|
|
|
7081
7086
|
};
|
|
7082
7087
|
description: string;
|
|
7083
7088
|
};
|
|
7089
|
+
size: {
|
|
7090
|
+
type: "number";
|
|
7091
|
+
description: string;
|
|
7092
|
+
};
|
|
7084
7093
|
index: {
|
|
7085
7094
|
default: boolean;
|
|
7086
7095
|
type: "boolean";
|
|
@@ -7099,6 +7108,7 @@ export declare const state: {
|
|
|
7099
7108
|
description: string;
|
|
7100
7109
|
};
|
|
7101
7110
|
};
|
|
7111
|
+
required: string[];
|
|
7102
7112
|
title: string;
|
|
7103
7113
|
additionalProperties: false;
|
|
7104
7114
|
};
|