@botpress/client 1.22.2 → 1.23.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/dist/bundle.cjs +1 -1
- package/dist/bundle.cjs.map +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +10 -0
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -15537,6 +15537,16 @@ declare class Client$4 extends Client$5 implements IClient$2 {
|
|
|
15537
15537
|
fileTagValues: (props: {
|
|
15538
15538
|
tag: string;
|
|
15539
15539
|
}) => AsyncCollection<string>;
|
|
15540
|
+
knowledgeBases: (props: {
|
|
15541
|
+
tags?: any;
|
|
15542
|
+
}) => AsyncCollection<{
|
|
15543
|
+
id: string;
|
|
15544
|
+
name: string;
|
|
15545
|
+
createdAt: string;
|
|
15546
|
+
tags: {
|
|
15547
|
+
[k: string]: string;
|
|
15548
|
+
};
|
|
15549
|
+
}>;
|
|
15540
15550
|
};
|
|
15541
15551
|
/**
|
|
15542
15552
|
* Create/update and upload a file in a single step. Returns an object containing the file metadata and the URL to retrieve the file.
|