@squidcloud/client 1.0.329 → 1.0.331

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.
@@ -13,6 +13,7 @@ export declare class AiAgentReference {
13
13
  private readonly ongoingChatSequences;
14
14
  private readonly statusUpdates;
15
15
  private readonly rpcManager;
16
+ private readonly socketManager;
16
17
  get(): Promise<AiAgent | undefined>;
17
18
  upsert(agent: UpsertAgentRequestParams): Promise<void>;
18
19
  delete(): Promise<void>;
@@ -183,7 +183,6 @@ export declare class Squid {
183
183
  * @param query The raw SQL or other database-specific query to execute.
184
184
  * @param params (Optional) The parameters to pass to the query. Defaults to an empty object.
185
185
  * @returns A promise that resolves with the result of the query.
186
- * @type {Promise<Array<SquidDocument>>}
187
186
  */
188
187
  executeNativeRelationalQuery<T = any>(integrationId: IntegrationId, query: string, params?: Record<string, any>): Promise<Array<T>>;
189
188
  /**
@@ -194,7 +193,6 @@ export declare class Squid {
194
193
  * @param collectionName The collection to query.
195
194
  * @param aggregationPipeline The aggregation pipeline for the query.
196
195
  * @returns A promise that resolves with the result of the query.
197
- * @type {Promise<Array<SquidDocument>>}
198
196
  */
199
197
  executeNativeMongoQuery<T = any>(integrationId: IntegrationId, collectionName: string, aggregationPipeline: Array<any | undefined>): Promise<Array<T>>;
200
198
  /**
@@ -1 +1 @@
1
- export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.329";
1
+ export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.331";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/client",
3
- "version": "1.0.329",
3
+ "version": "1.0.331",
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",