@botpress/client 0.25.0 → 0.25.1
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-build.log +7 -7
- package/.turbo/turbo-generate.log +1 -1
- package/dist/bundle.cjs.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -8136,6 +8136,14 @@ interface SearchFilesResponse {
|
|
|
8136
8136
|
* File ID
|
|
8137
8137
|
*/
|
|
8138
8138
|
id: string;
|
|
8139
|
+
/**
|
|
8140
|
+
* Unique key for the file. Must be unique across the bot (and the integration, when applicable).
|
|
8141
|
+
*/
|
|
8142
|
+
key: string;
|
|
8143
|
+
/**
|
|
8144
|
+
* MIME type of the file's content
|
|
8145
|
+
*/
|
|
8146
|
+
contentType: string;
|
|
8139
8147
|
/**
|
|
8140
8148
|
* The tags of the file as an object of key-value pairs.
|
|
8141
8149
|
*/
|