@squidcloud/client 1.0.143-beta → 1.0.144-beta
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/cjs/index.js
CHANGED
|
@@ -49574,7 +49574,7 @@ class AiClient {
|
|
|
49574
49574
|
this.rpcManager = rpcManager;
|
|
49575
49575
|
this.aiAssistantClient = new AiAssistantClient(this.rpcManager);
|
|
49576
49576
|
}
|
|
49577
|
-
|
|
49577
|
+
chatbot(integrationId) {
|
|
49578
49578
|
return this.aiChatbotClientFactory.getChatbot(integrationId);
|
|
49579
49579
|
}
|
|
49580
49580
|
assistant() {
|
|
@@ -17,7 +17,7 @@ export declare class AiClient {
|
|
|
17
17
|
private readonly rpcManager;
|
|
18
18
|
private readonly aiAssistantClient;
|
|
19
19
|
constructor(aiChatbotClientFactory: AiChatbotClientFactory, rpcManager: RpcManager);
|
|
20
|
-
|
|
20
|
+
chatbot(integrationId: IntegrationId): AiChatbotClient;
|
|
21
21
|
assistant(): AiAssistantClient;
|
|
22
22
|
/**
|
|
23
23
|
* Executes an AI query using a specific DB integration, sending a prompt to the AI and returning its response.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.144-beta",
|
|
4
4
|
"description": "A typescript implementation of the Squid client",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"types": "dist/typescript-client/src/index.d.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"license": "ISC",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@apollo/client": "^3.7.4",
|
|
35
|
-
"@squidcloud/common": "1.0.
|
|
35
|
+
"@squidcloud/common": "1.0.144-beta",
|
|
36
36
|
"@supercharge/promise-pool": "^2.3.2",
|
|
37
37
|
"cross-fetch": "^3.1.5",
|
|
38
38
|
"lodash": "^4.17.21",
|