@squidcloud/client 1.0.199 → 1.0.201

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.
@@ -1,6 +1,5 @@
1
1
  import { AiGenerateImageOptions } from './public-types';
2
2
  export declare class AiImageClient {
3
3
  private readonly rpcManager;
4
- private readonly integrationId;
5
4
  generate(prompt: string, options: AiGenerateImageOptions): Promise<string>;
6
5
  }
@@ -35,9 +35,8 @@ export declare class AiClient {
35
35
  assistant(): AiAssistantClient;
36
36
  /**
37
37
  * Retrieves an AI image client for a specific AI integration.
38
- * @param integrationId - The identifier for the AI integration.
39
38
  */
40
- image(integrationId: IntegrationId): AiImageClient;
39
+ image(): AiImageClient;
41
40
  /**
42
41
  * Executes an AI query using a specific DB integration, sending a prompt to the AI and returning its response.
43
42
  * This function allows for direct interaction with the AI's capabilities by sending text prompts and receiving
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/client",
3
- "version": "1.0.199",
3
+ "version": "1.0.201",
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",