@bubblelab/bubble-core 0.1.239 → 0.1.241
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 +110 -110
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +72 -72
- package/dist/bubbles/service-bubble/airtable.d.ts +76 -76
- package/dist/bubbles/service-bubble/apify/actors/app-rankings-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/actors/google-maps-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/actors/instagram-hashtag-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/actors/instagram-scraper.d.ts +4 -4
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/apify/apify.d.ts +22 -22
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/assembled/assembled.d.ts +6 -6
- package/dist/bubbles/service-bubble/assembled/assembled.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/attio/attio.d.ts +2 -2
- package/dist/bubbles/service-bubble/attio/attio.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.js +1 -7
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/firecrawl.d.ts +346 -346
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/github.d.ts +60 -60
- package/dist/bubbles/service-bubble/gmail.d.ts +164 -164
- package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/http.d.ts +2 -2
- package/dist/bubbles/service-bubble/hubspot/hubspot.d.ts +2 -2
- package/dist/bubbles/service-bubble/hubspot/hubspot.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +42 -42
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +50 -50
- package/dist/bubbles/service-bubble/notion/notion.d.ts +848 -848
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +10 -10
- package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +14 -14
- package/dist/bubbles/service-bubble/slack/slack.d.ts +238 -238
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +24 -24
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +28 -28
- package/dist/bubbles/service-bubble/xero/xero.d.ts +2 -2
- package/dist/bubbles/service-bubble/xero/xero.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +20 -20
- package/dist/bubbles/service-bubble/zendesk/zendesk.schema.d.ts +20 -20
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/app-rankings-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/browser-tools/_shared/schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +328 -328
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +52 -52
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +124 -124
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +26 -26
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -203,9 +203,9 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
203
203
|
ok: boolean;
|
|
204
204
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
205
205
|
created_at?: string | undefined;
|
|
206
|
+
agent_name?: string | undefined;
|
|
206
207
|
session_id?: string | undefined;
|
|
207
208
|
vnc_url?: string | undefined;
|
|
208
|
-
agent_name?: string | undefined;
|
|
209
209
|
}, {
|
|
210
210
|
error: string;
|
|
211
211
|
success: boolean;
|
|
@@ -213,9 +213,9 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
213
213
|
ok: boolean;
|
|
214
214
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
215
215
|
created_at?: string | undefined;
|
|
216
|
+
agent_name?: string | undefined;
|
|
216
217
|
session_id?: string | undefined;
|
|
217
218
|
vnc_url?: string | undefined;
|
|
218
|
-
agent_name?: string | undefined;
|
|
219
219
|
}>, z.ZodObject<{
|
|
220
220
|
operation: z.ZodLiteral<"list_sessions">;
|
|
221
221
|
ok: z.ZodBoolean;
|
|
@@ -228,14 +228,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
|
229
229
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
230
230
|
created_at: string;
|
|
231
|
-
session_id: string;
|
|
232
231
|
agent_name: string;
|
|
232
|
+
session_id: string;
|
|
233
233
|
vnc_url?: string | undefined;
|
|
234
234
|
}, {
|
|
235
235
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
236
236
|
created_at: string;
|
|
237
|
-
session_id: string;
|
|
238
237
|
agent_name: string;
|
|
238
|
+
session_id: string;
|
|
239
239
|
vnc_url?: string | undefined;
|
|
240
240
|
}>, "many">>;
|
|
241
241
|
error: z.ZodString;
|
|
@@ -248,8 +248,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
248
248
|
sessions?: {
|
|
249
249
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
250
250
|
created_at: string;
|
|
251
|
-
session_id: string;
|
|
252
251
|
agent_name: string;
|
|
252
|
+
session_id: string;
|
|
253
253
|
vnc_url?: string | undefined;
|
|
254
254
|
}[] | undefined;
|
|
255
255
|
}, {
|
|
@@ -260,8 +260,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
260
260
|
sessions?: {
|
|
261
261
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
262
262
|
created_at: string;
|
|
263
|
-
session_id: string;
|
|
264
263
|
agent_name: string;
|
|
264
|
+
session_id: string;
|
|
265
265
|
vnc_url?: string | undefined;
|
|
266
266
|
}[] | undefined;
|
|
267
267
|
}>, z.ZodObject<{
|
|
@@ -276,14 +276,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
276
276
|
}, "strip", z.ZodTypeAny, {
|
|
277
277
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
278
278
|
created_at: string;
|
|
279
|
-
session_id: string;
|
|
280
279
|
agent_name: string;
|
|
280
|
+
session_id: string;
|
|
281
281
|
vnc_url?: string | undefined;
|
|
282
282
|
}, {
|
|
283
283
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
284
284
|
created_at: string;
|
|
285
|
-
session_id: string;
|
|
286
285
|
agent_name: string;
|
|
286
|
+
session_id: string;
|
|
287
287
|
vnc_url?: string | undefined;
|
|
288
288
|
}>>;
|
|
289
289
|
error: z.ZodString;
|
|
@@ -296,8 +296,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
296
296
|
session?: {
|
|
297
297
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
298
298
|
created_at: string;
|
|
299
|
-
session_id: string;
|
|
300
299
|
agent_name: string;
|
|
300
|
+
session_id: string;
|
|
301
301
|
vnc_url?: string | undefined;
|
|
302
302
|
} | undefined;
|
|
303
303
|
}, {
|
|
@@ -308,8 +308,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
308
308
|
session?: {
|
|
309
309
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
310
310
|
created_at: string;
|
|
311
|
-
session_id: string;
|
|
312
311
|
agent_name: string;
|
|
312
|
+
session_id: string;
|
|
313
313
|
vnc_url?: string | undefined;
|
|
314
314
|
} | undefined;
|
|
315
315
|
}>, z.ZodObject<{
|
|
@@ -756,9 +756,9 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
756
756
|
ok: boolean;
|
|
757
757
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
758
758
|
created_at?: string | undefined;
|
|
759
|
+
agent_name?: string | undefined;
|
|
759
760
|
session_id?: string | undefined;
|
|
760
761
|
vnc_url?: string | undefined;
|
|
761
|
-
agent_name?: string | undefined;
|
|
762
762
|
}, {
|
|
763
763
|
error: string;
|
|
764
764
|
success: boolean;
|
|
@@ -766,9 +766,9 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
766
766
|
ok: boolean;
|
|
767
767
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
768
768
|
created_at?: string | undefined;
|
|
769
|
+
agent_name?: string | undefined;
|
|
769
770
|
session_id?: string | undefined;
|
|
770
771
|
vnc_url?: string | undefined;
|
|
771
|
-
agent_name?: string | undefined;
|
|
772
772
|
}>, z.ZodObject<{
|
|
773
773
|
operation: z.ZodLiteral<"list_sessions">;
|
|
774
774
|
ok: z.ZodBoolean;
|
|
@@ -781,14 +781,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
781
781
|
}, "strip", z.ZodTypeAny, {
|
|
782
782
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
783
783
|
created_at: string;
|
|
784
|
-
session_id: string;
|
|
785
784
|
agent_name: string;
|
|
785
|
+
session_id: string;
|
|
786
786
|
vnc_url?: string | undefined;
|
|
787
787
|
}, {
|
|
788
788
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
789
789
|
created_at: string;
|
|
790
|
-
session_id: string;
|
|
791
790
|
agent_name: string;
|
|
791
|
+
session_id: string;
|
|
792
792
|
vnc_url?: string | undefined;
|
|
793
793
|
}>, "many">>;
|
|
794
794
|
error: z.ZodString;
|
|
@@ -801,8 +801,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
801
801
|
sessions?: {
|
|
802
802
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
803
803
|
created_at: string;
|
|
804
|
-
session_id: string;
|
|
805
804
|
agent_name: string;
|
|
805
|
+
session_id: string;
|
|
806
806
|
vnc_url?: string | undefined;
|
|
807
807
|
}[] | undefined;
|
|
808
808
|
}, {
|
|
@@ -813,8 +813,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
813
813
|
sessions?: {
|
|
814
814
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
815
815
|
created_at: string;
|
|
816
|
-
session_id: string;
|
|
817
816
|
agent_name: string;
|
|
817
|
+
session_id: string;
|
|
818
818
|
vnc_url?: string | undefined;
|
|
819
819
|
}[] | undefined;
|
|
820
820
|
}>, z.ZodObject<{
|
|
@@ -829,14 +829,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
829
829
|
}, "strip", z.ZodTypeAny, {
|
|
830
830
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
831
831
|
created_at: string;
|
|
832
|
-
session_id: string;
|
|
833
832
|
agent_name: string;
|
|
833
|
+
session_id: string;
|
|
834
834
|
vnc_url?: string | undefined;
|
|
835
835
|
}, {
|
|
836
836
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
837
837
|
created_at: string;
|
|
838
|
-
session_id: string;
|
|
839
838
|
agent_name: string;
|
|
839
|
+
session_id: string;
|
|
840
840
|
vnc_url?: string | undefined;
|
|
841
841
|
}>>;
|
|
842
842
|
error: z.ZodString;
|
|
@@ -849,8 +849,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
849
849
|
session?: {
|
|
850
850
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
851
851
|
created_at: string;
|
|
852
|
-
session_id: string;
|
|
853
852
|
agent_name: string;
|
|
853
|
+
session_id: string;
|
|
854
854
|
vnc_url?: string | undefined;
|
|
855
855
|
} | undefined;
|
|
856
856
|
}, {
|
|
@@ -861,8 +861,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
861
861
|
session?: {
|
|
862
862
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
863
863
|
created_at: string;
|
|
864
|
-
session_id: string;
|
|
865
864
|
agent_name: string;
|
|
865
|
+
session_id: string;
|
|
866
866
|
vnc_url?: string | undefined;
|
|
867
867
|
} | undefined;
|
|
868
868
|
}>, z.ZodObject<{
|
|
@@ -164,12 +164,12 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
164
164
|
}, "strip", z.ZodTypeAny, {
|
|
165
165
|
description: string;
|
|
166
166
|
name: string;
|
|
167
|
-
schema: Record<string, unknown
|
|
167
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
168
168
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
169
169
|
}, {
|
|
170
170
|
description: string;
|
|
171
171
|
name: string;
|
|
172
|
-
schema: Record<string, unknown
|
|
172
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
173
173
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
174
174
|
}>, "many">>>;
|
|
175
175
|
maxIterations: z.ZodDefault<z.ZodNumber>;
|
|
@@ -209,6 +209,17 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
209
209
|
enableSlackHistory: z.ZodDefault<z.ZodBoolean>;
|
|
210
210
|
}, "strip", z.ZodTypeAny, {
|
|
211
211
|
message: string;
|
|
212
|
+
images: ({
|
|
213
|
+
type: "base64";
|
|
214
|
+
data: string;
|
|
215
|
+
mimeType: string;
|
|
216
|
+
description?: string | undefined;
|
|
217
|
+
} | {
|
|
218
|
+
type: "url";
|
|
219
|
+
url: string;
|
|
220
|
+
description?: string | undefined;
|
|
221
|
+
})[];
|
|
222
|
+
systemPrompt: string;
|
|
212
223
|
model: {
|
|
213
224
|
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" | "google/gemini-3.1-pro-preview" | "google/gemini-3.1-flash-lite-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-sonnet-4-6" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-sonnet-4.6" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
|
|
214
225
|
temperature: number;
|
|
@@ -225,38 +236,27 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
225
236
|
maxRetries?: number | undefined;
|
|
226
237
|
} | undefined;
|
|
227
238
|
};
|
|
228
|
-
streaming: boolean;
|
|
229
239
|
tools: {
|
|
230
240
|
name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "list-capabilities-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "app-rankings-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
|
|
231
241
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
232
242
|
config?: Record<string, unknown> | undefined;
|
|
233
243
|
}[];
|
|
234
|
-
images: ({
|
|
235
|
-
type: "base64";
|
|
236
|
-
data: string;
|
|
237
|
-
mimeType: string;
|
|
238
|
-
description?: string | undefined;
|
|
239
|
-
} | {
|
|
240
|
-
type: "url";
|
|
241
|
-
url: string;
|
|
242
|
-
description?: string | undefined;
|
|
243
|
-
})[];
|
|
244
|
-
systemPrompt: string;
|
|
245
244
|
maxIterations: number;
|
|
245
|
+
streaming: boolean;
|
|
246
246
|
memoryEnabled: boolean;
|
|
247
247
|
enableSlackHistory: boolean;
|
|
248
248
|
name?: string | undefined;
|
|
249
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
250
249
|
conversationHistory?: {
|
|
251
250
|
role: "user" | "assistant" | "tool";
|
|
252
251
|
content: string;
|
|
253
252
|
toolCallId?: string | undefined;
|
|
254
253
|
name?: string | undefined;
|
|
255
254
|
}[] | undefined;
|
|
255
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
256
256
|
customTools?: {
|
|
257
257
|
description: string;
|
|
258
258
|
name: string;
|
|
259
|
-
schema: Record<string, unknown
|
|
259
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
260
260
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
261
261
|
}[] | undefined;
|
|
262
262
|
credentialPool?: Partial<Record<CredentialType, {
|
|
@@ -274,7 +274,23 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
274
274
|
}, {
|
|
275
275
|
message: string;
|
|
276
276
|
name?: string | undefined;
|
|
277
|
-
|
|
277
|
+
images?: ({
|
|
278
|
+
data: string;
|
|
279
|
+
type?: "base64" | undefined;
|
|
280
|
+
description?: string | undefined;
|
|
281
|
+
mimeType?: string | undefined;
|
|
282
|
+
} | {
|
|
283
|
+
type: "url";
|
|
284
|
+
url: string;
|
|
285
|
+
description?: string | undefined;
|
|
286
|
+
})[] | undefined;
|
|
287
|
+
conversationHistory?: {
|
|
288
|
+
role: "user" | "assistant" | "tool";
|
|
289
|
+
content: string;
|
|
290
|
+
toolCallId?: string | undefined;
|
|
291
|
+
name?: string | undefined;
|
|
292
|
+
}[] | undefined;
|
|
293
|
+
systemPrompt?: string | undefined;
|
|
278
294
|
model?: {
|
|
279
295
|
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" | "google/gemini-3.1-pro-preview" | "google/gemini-3.1-flash-lite-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-sonnet-4-6" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-sonnet-4.6" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
|
|
280
296
|
temperature?: number | undefined;
|
|
@@ -291,33 +307,16 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
291
307
|
maxRetries?: number | undefined;
|
|
292
308
|
} | undefined;
|
|
293
309
|
} | undefined;
|
|
294
|
-
|
|
310
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
295
311
|
tools?: {
|
|
296
312
|
name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "list-capabilities-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "app-rankings-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
|
|
297
313
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
298
314
|
config?: Record<string, unknown> | undefined;
|
|
299
315
|
}[] | undefined;
|
|
300
|
-
images?: ({
|
|
301
|
-
data: string;
|
|
302
|
-
type?: "base64" | undefined;
|
|
303
|
-
description?: string | undefined;
|
|
304
|
-
mimeType?: string | undefined;
|
|
305
|
-
} | {
|
|
306
|
-
type: "url";
|
|
307
|
-
url: string;
|
|
308
|
-
description?: string | undefined;
|
|
309
|
-
})[] | undefined;
|
|
310
|
-
conversationHistory?: {
|
|
311
|
-
role: "user" | "assistant" | "tool";
|
|
312
|
-
content: string;
|
|
313
|
-
toolCallId?: string | undefined;
|
|
314
|
-
name?: string | undefined;
|
|
315
|
-
}[] | undefined;
|
|
316
|
-
systemPrompt?: string | undefined;
|
|
317
316
|
customTools?: {
|
|
318
317
|
description: string;
|
|
319
318
|
name: string;
|
|
320
|
-
schema: Record<string, unknown
|
|
319
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
321
320
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
322
321
|
}[] | undefined;
|
|
323
322
|
maxIterations?: number | undefined;
|
|
@@ -326,6 +325,7 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
326
325
|
name: string;
|
|
327
326
|
id: number;
|
|
328
327
|
}[]>> | undefined;
|
|
328
|
+
streaming?: boolean | undefined;
|
|
329
329
|
capabilities?: {
|
|
330
330
|
id: string;
|
|
331
331
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -526,12 +526,12 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
526
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
527
|
description: string;
|
|
528
528
|
name: string;
|
|
529
|
-
schema: Record<string, unknown
|
|
529
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
530
530
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
531
531
|
}, {
|
|
532
532
|
description: string;
|
|
533
533
|
name: string;
|
|
534
|
-
schema: Record<string, unknown
|
|
534
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
535
535
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
536
536
|
}>, "many">>>;
|
|
537
537
|
maxIterations: z.ZodDefault<z.ZodNumber>;
|
|
@@ -571,6 +571,17 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
571
571
|
enableSlackHistory: z.ZodDefault<z.ZodBoolean>;
|
|
572
572
|
}, "strip", z.ZodTypeAny, {
|
|
573
573
|
message: string;
|
|
574
|
+
images: ({
|
|
575
|
+
type: "base64";
|
|
576
|
+
data: string;
|
|
577
|
+
mimeType: string;
|
|
578
|
+
description?: string | undefined;
|
|
579
|
+
} | {
|
|
580
|
+
type: "url";
|
|
581
|
+
url: string;
|
|
582
|
+
description?: string | undefined;
|
|
583
|
+
})[];
|
|
584
|
+
systemPrompt: string;
|
|
574
585
|
model: {
|
|
575
586
|
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" | "google/gemini-3.1-pro-preview" | "google/gemini-3.1-flash-lite-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-sonnet-4-6" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-sonnet-4.6" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
|
|
576
587
|
temperature: number;
|
|
@@ -587,38 +598,27 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
587
598
|
maxRetries?: number | undefined;
|
|
588
599
|
} | undefined;
|
|
589
600
|
};
|
|
590
|
-
streaming: boolean;
|
|
591
601
|
tools: {
|
|
592
602
|
name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "list-capabilities-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "app-rankings-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
|
|
593
603
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
594
604
|
config?: Record<string, unknown> | undefined;
|
|
595
605
|
}[];
|
|
596
|
-
images: ({
|
|
597
|
-
type: "base64";
|
|
598
|
-
data: string;
|
|
599
|
-
mimeType: string;
|
|
600
|
-
description?: string | undefined;
|
|
601
|
-
} | {
|
|
602
|
-
type: "url";
|
|
603
|
-
url: string;
|
|
604
|
-
description?: string | undefined;
|
|
605
|
-
})[];
|
|
606
|
-
systemPrompt: string;
|
|
607
606
|
maxIterations: number;
|
|
607
|
+
streaming: boolean;
|
|
608
608
|
memoryEnabled: boolean;
|
|
609
609
|
enableSlackHistory: boolean;
|
|
610
610
|
name?: string | undefined;
|
|
611
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
612
611
|
conversationHistory?: {
|
|
613
612
|
role: "user" | "assistant" | "tool";
|
|
614
613
|
content: string;
|
|
615
614
|
toolCallId?: string | undefined;
|
|
616
615
|
name?: string | undefined;
|
|
617
616
|
}[] | undefined;
|
|
617
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
618
618
|
customTools?: {
|
|
619
619
|
description: string;
|
|
620
620
|
name: string;
|
|
621
|
-
schema: Record<string, unknown
|
|
621
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
622
622
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
623
623
|
}[] | undefined;
|
|
624
624
|
credentialPool?: Partial<Record<CredentialType, {
|
|
@@ -636,7 +636,23 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
636
636
|
}, {
|
|
637
637
|
message: string;
|
|
638
638
|
name?: string | undefined;
|
|
639
|
-
|
|
639
|
+
images?: ({
|
|
640
|
+
data: string;
|
|
641
|
+
type?: "base64" | undefined;
|
|
642
|
+
description?: string | undefined;
|
|
643
|
+
mimeType?: string | undefined;
|
|
644
|
+
} | {
|
|
645
|
+
type: "url";
|
|
646
|
+
url: string;
|
|
647
|
+
description?: string | undefined;
|
|
648
|
+
})[] | undefined;
|
|
649
|
+
conversationHistory?: {
|
|
650
|
+
role: "user" | "assistant" | "tool";
|
|
651
|
+
content: string;
|
|
652
|
+
toolCallId?: string | undefined;
|
|
653
|
+
name?: string | undefined;
|
|
654
|
+
}[] | undefined;
|
|
655
|
+
systemPrompt?: string | undefined;
|
|
640
656
|
model?: {
|
|
641
657
|
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" | "google/gemini-3.1-pro-preview" | "google/gemini-3.1-flash-lite-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-sonnet-4-6" | "anthropic/claude-opus-4-5" | "anthropic/claude-opus-4-6" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-sonnet-4.6" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/anthropic/claude-opus-4.6" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
|
|
642
658
|
temperature?: number | undefined;
|
|
@@ -653,33 +669,16 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
653
669
|
maxRetries?: number | undefined;
|
|
654
670
|
} | undefined;
|
|
655
671
|
} | undefined;
|
|
656
|
-
|
|
672
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
657
673
|
tools?: {
|
|
658
674
|
name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-tool" | "list-capabilities-tool" | "sql-query-tool" | "chart-js-tool" | "web-search-tool" | "web-scrape-tool" | "web-crawl-tool" | "web-extract-tool" | "research-agent-tool" | "reddit-scrape-tool" | "bubbleflow-validation-tool" | "code-edit-tool" | "instagram-tool" | "linkedin-tool" | "tiktok-tool" | "twitter-tool" | "google-maps-tool" | "app-rankings-tool" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
|
|
659
675
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
660
676
|
config?: Record<string, unknown> | undefined;
|
|
661
677
|
}[] | undefined;
|
|
662
|
-
images?: ({
|
|
663
|
-
data: string;
|
|
664
|
-
type?: "base64" | undefined;
|
|
665
|
-
description?: string | undefined;
|
|
666
|
-
mimeType?: string | undefined;
|
|
667
|
-
} | {
|
|
668
|
-
type: "url";
|
|
669
|
-
url: string;
|
|
670
|
-
description?: string | undefined;
|
|
671
|
-
})[] | undefined;
|
|
672
|
-
conversationHistory?: {
|
|
673
|
-
role: "user" | "assistant" | "tool";
|
|
674
|
-
content: string;
|
|
675
|
-
toolCallId?: string | undefined;
|
|
676
|
-
name?: string | undefined;
|
|
677
|
-
}[] | undefined;
|
|
678
|
-
systemPrompt?: string | undefined;
|
|
679
678
|
customTools?: {
|
|
680
679
|
description: string;
|
|
681
680
|
name: string;
|
|
682
|
-
schema: Record<string, unknown
|
|
681
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
683
682
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
684
683
|
}[] | undefined;
|
|
685
684
|
maxIterations?: number | undefined;
|
|
@@ -688,6 +687,7 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
688
687
|
name: string;
|
|
689
688
|
id: number;
|
|
690
689
|
}[]>> | undefined;
|
|
690
|
+
streaming?: boolean | undefined;
|
|
691
691
|
capabilities?: {
|
|
692
692
|
id: string;
|
|
693
693
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|