@botpress/client 1.23.0 → 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 +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
|
@@ -36140,6 +36140,16 @@ declare class Client extends Client$1 implements IClient {
|
|
|
36140
36140
|
fileTagValues: (props: {
|
|
36141
36141
|
tag: string;
|
|
36142
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
|
+
}>;
|
|
36143
36153
|
usageActivity: (props: {
|
|
36144
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";
|
|
36145
36155
|
id: string;
|