@squidcloud/client 1.0.284 → 1.0.285
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 +1 -1
- package/dist/internal-common/src/public-types/ai-chatbot.public-types.d.ts +2 -1
- package/dist/internal-common/src/public-types/integration.public-types.d.ts +2 -0
- package/dist/typescript-client/src/ai-image-client.d.ts +1 -0
- package/dist/typescript-client/src/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -37,7 +37,8 @@ export type FluxModelName = (typeof FLUX_MODEL_NAMES)[number];
|
|
|
37
37
|
export type AiGenerateImageOptions = DallEOptions | StableDiffusionCoreOptions | FluxOptions;
|
|
38
38
|
export type AiAudioTranscribeOptions = WhisperOptions;
|
|
39
39
|
export type AiAudioCreateSpeechOptions = OpenAiCreateSpeechOptions;
|
|
40
|
-
export
|
|
40
|
+
export declare const VECTOR_DB_TYPES: readonly ["pinecone", "postgres"];
|
|
41
|
+
export type VectorDbType = (typeof VECTOR_DB_TYPES)[number];
|
|
41
42
|
export interface AiAudioCreateSpeechResponse {
|
|
42
43
|
mimeType: string;
|
|
43
44
|
extension: string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IntegrationId } from './communication.public-types';
|
|
1
2
|
export declare enum IntegrationType {
|
|
2
3
|
'built_in_db' = "built_in_db",
|
|
3
4
|
'mongo' = "mongo",
|
|
@@ -69,3 +70,4 @@ export declare enum IntegrationSchemaType {
|
|
|
69
70
|
'api' = "api",
|
|
70
71
|
'graphql' = "graphql"
|
|
71
72
|
}
|
|
73
|
+
export declare const AI_AGENTS_INTEGRATION_ID: IntegrationId;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.
|
|
1
|
+
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.285";
|