@botpress/client 1.22.2 → 1.24.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 +20 -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.
|
|
@@ -36130,6 +36140,16 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36130
36140
|
fileTagValues: (props: {
|
|
36131
36141
|
tag: string;
|
|
36132
36142
|
}) => AsyncCollection<string>;
|
|
36143
|
+
knowledgeBases: (props: {
|
|
36144
|
+
tags?: any;
|
|
36145
|
+
}) => AsyncCollection<{
|
|
36146
|
+
id: string;
|
|
36147
|
+
name: string;
|
|
36148
|
+
createdAt: string;
|
|
36149
|
+
tags: {
|
|
36150
|
+
[k: string]: string;
|
|
36151
|
+
};
|
|
36152
|
+
}>;
|
|
36133
36153
|
usageActivity: (props: {
|
|
36134
36154
|
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
36135
36155
|
id: string;
|