@bubblelab/bubble-core 0.1.21 → 0.1.22
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/bubble-bundle.d.ts +58 -58
- package/dist/bubbles/service-bubble/agi-inc.d.ts +96 -96
- package/dist/bubbles/service-bubble/ai-agent.d.ts +56 -56
- package/dist/bubbles/service-bubble/airtable.d.ts +138 -138
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +27 -27
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +32 -32
- package/dist/bubbles/service-bubble/firecrawl.d.ts +811 -811
- package/dist/bubbles/service-bubble/followupboss.d.ts +156 -156
- package/dist/bubbles/service-bubble/github.d.ts +216 -216
- package/dist/bubbles/service-bubble/gmail.d.ts +584 -584
- package/dist/bubbles/service-bubble/google-calendar.d.ts +38 -38
- package/dist/bubbles/service-bubble/google-drive.js +2 -2
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1278 -1278
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +28 -28
- package/dist/bubbles/service-bubble/slack/slack.d.ts +369 -363
- package/dist/bubbles/service-bubble/slack/slack.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.js +89 -2
- package/dist/bubbles/service-bubble/slack/slack.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +1289 -1289
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +46 -46
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +74 -74
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -42,8 +42,8 @@ declare const PDFOcrWorkflowParamsSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
42
42
|
}, {
|
|
43
43
|
format?: "png" | "jpeg" | undefined;
|
|
44
44
|
quality?: number | undefined;
|
|
45
|
-
dpi?: number | undefined;
|
|
46
45
|
pages?: number[] | undefined;
|
|
46
|
+
dpi?: number | undefined;
|
|
47
47
|
}>>;
|
|
48
48
|
aiOptions: z.ZodDefault<z.ZodObject<{
|
|
49
49
|
model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/x-ai/grok-4.1-fast", "openrouter/openai/gpt-oss-120b", "openrouter/deepseek/deepseek-chat-v3.1"]>>;
|
|
@@ -91,8 +91,8 @@ declare const PDFOcrWorkflowParamsSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
91
91
|
imageOptions?: {
|
|
92
92
|
format?: "png" | "jpeg" | undefined;
|
|
93
93
|
quality?: number | undefined;
|
|
94
|
-
dpi?: number | undefined;
|
|
95
94
|
pages?: number[] | undefined;
|
|
95
|
+
dpi?: number | undefined;
|
|
96
96
|
} | undefined;
|
|
97
97
|
aiOptions?: {
|
|
98
98
|
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined;
|
|
@@ -124,8 +124,8 @@ declare const PDFOcrWorkflowParamsSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
124
124
|
}, {
|
|
125
125
|
format?: "png" | "jpeg" | undefined;
|
|
126
126
|
quality?: number | undefined;
|
|
127
|
-
dpi?: number | undefined;
|
|
128
127
|
pages?: number[] | undefined;
|
|
128
|
+
dpi?: number | undefined;
|
|
129
129
|
}>>;
|
|
130
130
|
aiOptions: z.ZodDefault<z.ZodObject<{
|
|
131
131
|
model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/x-ai/grok-4.1-fast", "openrouter/openai/gpt-oss-120b", "openrouter/deepseek/deepseek-chat-v3.1"]>>;
|
|
@@ -175,8 +175,8 @@ declare const PDFOcrWorkflowParamsSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
175
175
|
imageOptions?: {
|
|
176
176
|
format?: "png" | "jpeg" | undefined;
|
|
177
177
|
quality?: number | undefined;
|
|
178
|
-
dpi?: number | undefined;
|
|
179
178
|
pages?: number[] | undefined;
|
|
179
|
+
dpi?: number | undefined;
|
|
180
180
|
} | undefined;
|
|
181
181
|
aiOptions?: {
|
|
182
182
|
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined;
|
|
@@ -248,9 +248,9 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
248
248
|
success: z.ZodBoolean;
|
|
249
249
|
error: z.ZodString;
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
|
+
mode: "identify";
|
|
251
252
|
success: boolean;
|
|
252
253
|
error: string;
|
|
253
|
-
mode: "identify";
|
|
254
254
|
imageData: {
|
|
255
255
|
format: string;
|
|
256
256
|
dpi: number;
|
|
@@ -273,9 +273,9 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
273
273
|
processingTime?: number | undefined;
|
|
274
274
|
};
|
|
275
275
|
}, {
|
|
276
|
+
mode: "identify";
|
|
276
277
|
success: boolean;
|
|
277
278
|
error: string;
|
|
278
|
-
mode: "identify";
|
|
279
279
|
imageData: {
|
|
280
280
|
format: string;
|
|
281
281
|
dpi: number;
|
|
@@ -374,9 +374,9 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
374
374
|
success: z.ZodBoolean;
|
|
375
375
|
error: z.ZodString;
|
|
376
376
|
}, "strip", z.ZodTypeAny, {
|
|
377
|
+
mode: "autofill";
|
|
377
378
|
success: boolean;
|
|
378
379
|
error: string;
|
|
379
|
-
mode: "autofill";
|
|
380
380
|
filledPdfData: string;
|
|
381
381
|
imageData: {
|
|
382
382
|
format: string;
|
|
@@ -406,9 +406,9 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
406
406
|
successfullyFilled: number;
|
|
407
407
|
};
|
|
408
408
|
}, {
|
|
409
|
+
mode: "autofill";
|
|
409
410
|
success: boolean;
|
|
410
411
|
error: string;
|
|
411
|
-
mode: "autofill";
|
|
412
412
|
filledPdfData: string;
|
|
413
413
|
imageData: {
|
|
414
414
|
format: string;
|
|
@@ -478,8 +478,8 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
478
478
|
}, {
|
|
479
479
|
format?: "png" | "jpeg" | undefined;
|
|
480
480
|
quality?: number | undefined;
|
|
481
|
-
dpi?: number | undefined;
|
|
482
481
|
pages?: number[] | undefined;
|
|
482
|
+
dpi?: number | undefined;
|
|
483
483
|
}>>;
|
|
484
484
|
aiOptions: z.ZodDefault<z.ZodObject<{
|
|
485
485
|
model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/x-ai/grok-4.1-fast", "openrouter/openai/gpt-oss-120b", "openrouter/deepseek/deepseek-chat-v3.1"]>>;
|
|
@@ -527,8 +527,8 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
527
527
|
imageOptions?: {
|
|
528
528
|
format?: "png" | "jpeg" | undefined;
|
|
529
529
|
quality?: number | undefined;
|
|
530
|
-
dpi?: number | undefined;
|
|
531
530
|
pages?: number[] | undefined;
|
|
531
|
+
dpi?: number | undefined;
|
|
532
532
|
} | undefined;
|
|
533
533
|
aiOptions?: {
|
|
534
534
|
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined;
|
|
@@ -560,8 +560,8 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
560
560
|
}, {
|
|
561
561
|
format?: "png" | "jpeg" | undefined;
|
|
562
562
|
quality?: number | undefined;
|
|
563
|
-
dpi?: number | undefined;
|
|
564
563
|
pages?: number[] | undefined;
|
|
564
|
+
dpi?: number | undefined;
|
|
565
565
|
}>>;
|
|
566
566
|
aiOptions: z.ZodDefault<z.ZodObject<{
|
|
567
567
|
model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/x-ai/grok-4.1-fast", "openrouter/openai/gpt-oss-120b", "openrouter/deepseek/deepseek-chat-v3.1"]>>;
|
|
@@ -611,8 +611,8 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
611
611
|
imageOptions?: {
|
|
612
612
|
format?: "png" | "jpeg" | undefined;
|
|
613
613
|
quality?: number | undefined;
|
|
614
|
-
dpi?: number | undefined;
|
|
615
614
|
pages?: number[] | undefined;
|
|
615
|
+
dpi?: number | undefined;
|
|
616
616
|
} | undefined;
|
|
617
617
|
aiOptions?: {
|
|
618
618
|
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined;
|
|
@@ -681,9 +681,9 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
681
681
|
success: z.ZodBoolean;
|
|
682
682
|
error: z.ZodString;
|
|
683
683
|
}, "strip", z.ZodTypeAny, {
|
|
684
|
+
mode: "identify";
|
|
684
685
|
success: boolean;
|
|
685
686
|
error: string;
|
|
686
|
-
mode: "identify";
|
|
687
687
|
imageData: {
|
|
688
688
|
format: string;
|
|
689
689
|
dpi: number;
|
|
@@ -706,9 +706,9 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
706
706
|
processingTime?: number | undefined;
|
|
707
707
|
};
|
|
708
708
|
}, {
|
|
709
|
+
mode: "identify";
|
|
709
710
|
success: boolean;
|
|
710
711
|
error: string;
|
|
711
|
-
mode: "identify";
|
|
712
712
|
imageData: {
|
|
713
713
|
format: string;
|
|
714
714
|
dpi: number;
|
|
@@ -807,9 +807,9 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
807
807
|
success: z.ZodBoolean;
|
|
808
808
|
error: z.ZodString;
|
|
809
809
|
}, "strip", z.ZodTypeAny, {
|
|
810
|
+
mode: "autofill";
|
|
810
811
|
success: boolean;
|
|
811
812
|
error: string;
|
|
812
|
-
mode: "autofill";
|
|
813
813
|
filledPdfData: string;
|
|
814
814
|
imageData: {
|
|
815
815
|
format: string;
|
|
@@ -839,9 +839,9 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
839
839
|
successfullyFilled: number;
|
|
840
840
|
};
|
|
841
841
|
}, {
|
|
842
|
+
mode: "autofill";
|
|
842
843
|
success: boolean;
|
|
843
844
|
error: string;
|
|
844
|
-
mode: "autofill";
|
|
845
845
|
filledPdfData: string;
|
|
846
846
|
imageData: {
|
|
847
847
|
format: string;
|
|
@@ -36,17 +36,18 @@ declare const SlackDataAssistantParamsSchema: z.ZodObject<{
|
|
|
36
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
37
|
name: string;
|
|
38
38
|
temperature: number;
|
|
39
|
-
dataSourceType: "postgresql" | "mysql" | "sqlite" | "mariadb" | "mssql";
|
|
40
|
-
ignoreSSLErrors: boolean;
|
|
41
|
-
aiModel: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1";
|
|
42
|
-
slackChannel: string;
|
|
43
|
-
userQuestion: string;
|
|
44
39
|
verbosity: "1" | "2" | "3" | "4" | "5";
|
|
45
40
|
technicality: "1" | "2" | "3" | "4" | "5";
|
|
46
41
|
includeQuery: boolean;
|
|
47
42
|
includeExplanation: boolean;
|
|
43
|
+
dataSourceType: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb";
|
|
44
|
+
ignoreSSLErrors: boolean;
|
|
45
|
+
aiModel: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1";
|
|
46
|
+
slackChannel: string;
|
|
47
|
+
userQuestion: string;
|
|
48
48
|
maxQueries: number;
|
|
49
49
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
50
|
+
additionalContext?: string | undefined;
|
|
50
51
|
userName?: string | undefined;
|
|
51
52
|
injectedMetadata?: {
|
|
52
53
|
tables?: Record<string, Record<string, string>> | undefined;
|
|
@@ -55,15 +56,19 @@ declare const SlackDataAssistantParamsSchema: z.ZodObject<{
|
|
|
55
56
|
} | undefined;
|
|
56
57
|
slackThreadTs?: string | undefined;
|
|
57
58
|
databaseUrl?: string | undefined;
|
|
58
|
-
additionalContext?: string | undefined;
|
|
59
59
|
}, {
|
|
60
60
|
slackChannel: string;
|
|
61
61
|
userQuestion: string;
|
|
62
62
|
name?: string | undefined;
|
|
63
63
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
64
64
|
temperature?: number | undefined;
|
|
65
|
+
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
66
|
+
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
67
|
+
includeQuery?: boolean | undefined;
|
|
68
|
+
includeExplanation?: boolean | undefined;
|
|
69
|
+
additionalContext?: string | undefined;
|
|
65
70
|
userName?: string | undefined;
|
|
66
|
-
dataSourceType?: "postgresql" | "mysql" | "sqlite" | "
|
|
71
|
+
dataSourceType?: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb" | undefined;
|
|
67
72
|
ignoreSSLErrors?: boolean | undefined;
|
|
68
73
|
injectedMetadata?: {
|
|
69
74
|
tables?: Record<string, Record<string, string>> | undefined;
|
|
@@ -73,11 +78,6 @@ declare const SlackDataAssistantParamsSchema: z.ZodObject<{
|
|
|
73
78
|
aiModel?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined;
|
|
74
79
|
slackThreadTs?: string | undefined;
|
|
75
80
|
databaseUrl?: string | undefined;
|
|
76
|
-
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
77
|
-
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
78
|
-
includeQuery?: boolean | undefined;
|
|
79
|
-
includeExplanation?: boolean | undefined;
|
|
80
|
-
additionalContext?: string | undefined;
|
|
81
81
|
maxQueries?: number | undefined;
|
|
82
82
|
}>;
|
|
83
83
|
declare const SlackDataAssistantResultSchema: z.ZodObject<{
|
|
@@ -174,17 +174,18 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
174
174
|
}, "strip", z.ZodTypeAny, {
|
|
175
175
|
name: string;
|
|
176
176
|
temperature: number;
|
|
177
|
-
dataSourceType: "postgresql" | "mysql" | "sqlite" | "mariadb" | "mssql";
|
|
178
|
-
ignoreSSLErrors: boolean;
|
|
179
|
-
aiModel: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1";
|
|
180
|
-
slackChannel: string;
|
|
181
|
-
userQuestion: string;
|
|
182
177
|
verbosity: "1" | "2" | "3" | "4" | "5";
|
|
183
178
|
technicality: "1" | "2" | "3" | "4" | "5";
|
|
184
179
|
includeQuery: boolean;
|
|
185
180
|
includeExplanation: boolean;
|
|
181
|
+
dataSourceType: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb";
|
|
182
|
+
ignoreSSLErrors: boolean;
|
|
183
|
+
aiModel: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1";
|
|
184
|
+
slackChannel: string;
|
|
185
|
+
userQuestion: string;
|
|
186
186
|
maxQueries: number;
|
|
187
187
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
188
|
+
additionalContext?: string | undefined;
|
|
188
189
|
userName?: string | undefined;
|
|
189
190
|
injectedMetadata?: {
|
|
190
191
|
tables?: Record<string, Record<string, string>> | undefined;
|
|
@@ -193,15 +194,19 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
193
194
|
} | undefined;
|
|
194
195
|
slackThreadTs?: string | undefined;
|
|
195
196
|
databaseUrl?: string | undefined;
|
|
196
|
-
additionalContext?: string | undefined;
|
|
197
197
|
}, {
|
|
198
198
|
slackChannel: string;
|
|
199
199
|
userQuestion: string;
|
|
200
200
|
name?: string | undefined;
|
|
201
201
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
202
202
|
temperature?: number | undefined;
|
|
203
|
+
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
204
|
+
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
205
|
+
includeQuery?: boolean | undefined;
|
|
206
|
+
includeExplanation?: boolean | undefined;
|
|
207
|
+
additionalContext?: string | undefined;
|
|
203
208
|
userName?: string | undefined;
|
|
204
|
-
dataSourceType?: "postgresql" | "mysql" | "sqlite" | "
|
|
209
|
+
dataSourceType?: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb" | undefined;
|
|
205
210
|
ignoreSSLErrors?: boolean | undefined;
|
|
206
211
|
injectedMetadata?: {
|
|
207
212
|
tables?: Record<string, Record<string, string>> | undefined;
|
|
@@ -211,11 +216,6 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
211
216
|
aiModel?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined;
|
|
212
217
|
slackThreadTs?: string | undefined;
|
|
213
218
|
databaseUrl?: string | undefined;
|
|
214
|
-
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
215
|
-
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
216
|
-
includeQuery?: boolean | undefined;
|
|
217
|
-
includeExplanation?: boolean | undefined;
|
|
218
|
-
additionalContext?: string | undefined;
|
|
219
219
|
maxQueries?: number | undefined;
|
|
220
220
|
}>;
|
|
221
221
|
static readonly resultSchema: z.ZodObject<{
|