@bubblelab/bubble-core 0.1.146 → 0.1.147
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 +76 -76
- package/dist/bubbles/service-bubble/agi-inc.d.ts +28 -28
- package/dist/bubbles/service-bubble/ai-agent.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +112 -112
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +37 -37
- package/dist/bubbles/service-bubble/confluence/confluence.d.ts +21 -21
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +394 -394
- package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +60 -60
- package/dist/bubbles/service-bubble/github.d.ts +210 -210
- package/dist/bubbles/service-bubble/gmail.d.ts +410 -410
- package/dist/bubbles/service-bubble/google-calendar.d.ts +2 -2
- package/dist/bubbles/service-bubble/google-drive.d.ts +48 -48
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
- package/dist/bubbles/service-bubble/jira/jira.d.ts +18 -18
- package/dist/bubbles/service-bubble/notion/notion.d.ts +13738 -9223
- package/dist/bubbles/service-bubble/notion/notion.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.js +55 -2
- package/dist/bubbles/service-bubble/notion/notion.js.map +1 -1
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +504 -504
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +25 -25
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-accept-invitations/tool.d.ts +7 -7
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-connection/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-received-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-sent-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +386 -386
- package/dist/bubbles/tool-bubble/list-airtable-bases-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/list-airtable-tables-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +46 -46
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- package/dist/bubbles.json +732 -3
- package/package.json +2 -2
|
@@ -202,8 +202,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
202
202
|
error: string;
|
|
203
203
|
ok: boolean;
|
|
204
204
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
205
|
-
session_id?: string | undefined;
|
|
206
205
|
created_at?: string | undefined;
|
|
206
|
+
session_id?: string | undefined;
|
|
207
207
|
vnc_url?: string | undefined;
|
|
208
208
|
agent_name?: string | undefined;
|
|
209
209
|
}, {
|
|
@@ -212,8 +212,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
212
212
|
error: string;
|
|
213
213
|
ok: boolean;
|
|
214
214
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
215
|
-
session_id?: string | undefined;
|
|
216
215
|
created_at?: string | undefined;
|
|
216
|
+
session_id?: string | undefined;
|
|
217
217
|
vnc_url?: string | undefined;
|
|
218
218
|
agent_name?: string | undefined;
|
|
219
219
|
}>, z.ZodObject<{
|
|
@@ -227,14 +227,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
227
227
|
created_at: z.ZodString;
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
|
229
229
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
230
|
-
session_id: string;
|
|
231
230
|
created_at: string;
|
|
231
|
+
session_id: string;
|
|
232
232
|
agent_name: string;
|
|
233
233
|
vnc_url?: string | undefined;
|
|
234
234
|
}, {
|
|
235
235
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
236
|
-
session_id: string;
|
|
237
236
|
created_at: string;
|
|
237
|
+
session_id: string;
|
|
238
238
|
agent_name: string;
|
|
239
239
|
vnc_url?: string | undefined;
|
|
240
240
|
}>, "many">>;
|
|
@@ -247,8 +247,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
247
247
|
ok: boolean;
|
|
248
248
|
sessions?: {
|
|
249
249
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
250
|
-
session_id: string;
|
|
251
250
|
created_at: string;
|
|
251
|
+
session_id: string;
|
|
252
252
|
agent_name: string;
|
|
253
253
|
vnc_url?: string | undefined;
|
|
254
254
|
}[] | undefined;
|
|
@@ -259,8 +259,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
259
259
|
ok: boolean;
|
|
260
260
|
sessions?: {
|
|
261
261
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
262
|
-
session_id: string;
|
|
263
262
|
created_at: string;
|
|
263
|
+
session_id: string;
|
|
264
264
|
agent_name: string;
|
|
265
265
|
vnc_url?: string | undefined;
|
|
266
266
|
}[] | undefined;
|
|
@@ -275,14 +275,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
275
275
|
created_at: z.ZodString;
|
|
276
276
|
}, "strip", z.ZodTypeAny, {
|
|
277
277
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
278
|
-
session_id: string;
|
|
279
278
|
created_at: string;
|
|
279
|
+
session_id: string;
|
|
280
280
|
agent_name: string;
|
|
281
281
|
vnc_url?: string | undefined;
|
|
282
282
|
}, {
|
|
283
283
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
284
|
-
session_id: string;
|
|
285
284
|
created_at: string;
|
|
285
|
+
session_id: string;
|
|
286
286
|
agent_name: string;
|
|
287
287
|
vnc_url?: string | undefined;
|
|
288
288
|
}>>;
|
|
@@ -295,8 +295,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
295
295
|
ok: boolean;
|
|
296
296
|
session?: {
|
|
297
297
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
298
|
-
session_id: string;
|
|
299
298
|
created_at: string;
|
|
299
|
+
session_id: string;
|
|
300
300
|
agent_name: string;
|
|
301
301
|
vnc_url?: string | undefined;
|
|
302
302
|
} | undefined;
|
|
@@ -307,8 +307,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
307
307
|
ok: boolean;
|
|
308
308
|
session?: {
|
|
309
309
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
310
|
-
session_id: string;
|
|
311
310
|
created_at: string;
|
|
311
|
+
session_id: string;
|
|
312
312
|
agent_name: string;
|
|
313
313
|
vnc_url?: string | undefined;
|
|
314
314
|
} | undefined;
|
|
@@ -401,14 +401,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
401
401
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
402
402
|
}, "strip", z.ZodTypeAny, {
|
|
403
403
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
404
|
-
content: string | Record<string, unknown>;
|
|
405
404
|
id: number;
|
|
405
|
+
content: string | Record<string, unknown>;
|
|
406
406
|
timestamp: string;
|
|
407
407
|
metadata?: Record<string, unknown> | undefined;
|
|
408
408
|
}, {
|
|
409
409
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
410
|
-
content: string | Record<string, unknown>;
|
|
411
410
|
id: number;
|
|
411
|
+
content: string | Record<string, unknown>;
|
|
412
412
|
timestamp: string;
|
|
413
413
|
metadata?: Record<string, unknown> | undefined;
|
|
414
414
|
}>, "many">>;
|
|
@@ -424,8 +424,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
424
424
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
425
425
|
messages?: {
|
|
426
426
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
427
|
-
content: string | Record<string, unknown>;
|
|
428
427
|
id: number;
|
|
428
|
+
content: string | Record<string, unknown>;
|
|
429
429
|
timestamp: string;
|
|
430
430
|
metadata?: Record<string, unknown> | undefined;
|
|
431
431
|
}[] | undefined;
|
|
@@ -438,8 +438,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
438
438
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
439
439
|
messages?: {
|
|
440
440
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
441
|
-
content: string | Record<string, unknown>;
|
|
442
441
|
id: number;
|
|
442
|
+
content: string | Record<string, unknown>;
|
|
443
443
|
timestamp: string;
|
|
444
444
|
metadata?: Record<string, unknown> | undefined;
|
|
445
445
|
}[] | undefined;
|
|
@@ -755,8 +755,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
755
755
|
error: string;
|
|
756
756
|
ok: boolean;
|
|
757
757
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
758
|
-
session_id?: string | undefined;
|
|
759
758
|
created_at?: string | undefined;
|
|
759
|
+
session_id?: string | undefined;
|
|
760
760
|
vnc_url?: string | undefined;
|
|
761
761
|
agent_name?: string | undefined;
|
|
762
762
|
}, {
|
|
@@ -765,8 +765,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
765
765
|
error: string;
|
|
766
766
|
ok: boolean;
|
|
767
767
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
768
|
-
session_id?: string | undefined;
|
|
769
768
|
created_at?: string | undefined;
|
|
769
|
+
session_id?: string | undefined;
|
|
770
770
|
vnc_url?: string | undefined;
|
|
771
771
|
agent_name?: string | undefined;
|
|
772
772
|
}>, z.ZodObject<{
|
|
@@ -780,14 +780,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
780
780
|
created_at: z.ZodString;
|
|
781
781
|
}, "strip", z.ZodTypeAny, {
|
|
782
782
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
783
|
-
session_id: string;
|
|
784
783
|
created_at: string;
|
|
784
|
+
session_id: string;
|
|
785
785
|
agent_name: string;
|
|
786
786
|
vnc_url?: string | undefined;
|
|
787
787
|
}, {
|
|
788
788
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
789
|
-
session_id: string;
|
|
790
789
|
created_at: string;
|
|
790
|
+
session_id: string;
|
|
791
791
|
agent_name: string;
|
|
792
792
|
vnc_url?: string | undefined;
|
|
793
793
|
}>, "many">>;
|
|
@@ -800,8 +800,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
800
800
|
ok: boolean;
|
|
801
801
|
sessions?: {
|
|
802
802
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
803
|
-
session_id: string;
|
|
804
803
|
created_at: string;
|
|
804
|
+
session_id: string;
|
|
805
805
|
agent_name: string;
|
|
806
806
|
vnc_url?: string | undefined;
|
|
807
807
|
}[] | undefined;
|
|
@@ -812,8 +812,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
812
812
|
ok: boolean;
|
|
813
813
|
sessions?: {
|
|
814
814
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
815
|
-
session_id: string;
|
|
816
815
|
created_at: string;
|
|
816
|
+
session_id: string;
|
|
817
817
|
agent_name: string;
|
|
818
818
|
vnc_url?: string | undefined;
|
|
819
819
|
}[] | undefined;
|
|
@@ -828,14 +828,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
828
828
|
created_at: z.ZodString;
|
|
829
829
|
}, "strip", z.ZodTypeAny, {
|
|
830
830
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
831
|
-
session_id: string;
|
|
832
831
|
created_at: string;
|
|
832
|
+
session_id: string;
|
|
833
833
|
agent_name: string;
|
|
834
834
|
vnc_url?: string | undefined;
|
|
835
835
|
}, {
|
|
836
836
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
837
|
-
session_id: string;
|
|
838
837
|
created_at: string;
|
|
838
|
+
session_id: string;
|
|
839
839
|
agent_name: string;
|
|
840
840
|
vnc_url?: string | undefined;
|
|
841
841
|
}>>;
|
|
@@ -848,8 +848,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
848
848
|
ok: boolean;
|
|
849
849
|
session?: {
|
|
850
850
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
851
|
-
session_id: string;
|
|
852
851
|
created_at: string;
|
|
852
|
+
session_id: string;
|
|
853
853
|
agent_name: string;
|
|
854
854
|
vnc_url?: string | undefined;
|
|
855
855
|
} | undefined;
|
|
@@ -860,8 +860,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
860
860
|
ok: boolean;
|
|
861
861
|
session?: {
|
|
862
862
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
863
|
-
session_id: string;
|
|
864
863
|
created_at: string;
|
|
864
|
+
session_id: string;
|
|
865
865
|
agent_name: string;
|
|
866
866
|
vnc_url?: string | undefined;
|
|
867
867
|
} | undefined;
|
|
@@ -954,14 +954,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
954
954
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
955
955
|
}, "strip", z.ZodTypeAny, {
|
|
956
956
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
957
|
-
content: string | Record<string, unknown>;
|
|
958
957
|
id: number;
|
|
958
|
+
content: string | Record<string, unknown>;
|
|
959
959
|
timestamp: string;
|
|
960
960
|
metadata?: Record<string, unknown> | undefined;
|
|
961
961
|
}, {
|
|
962
962
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
963
|
-
content: string | Record<string, unknown>;
|
|
964
963
|
id: number;
|
|
964
|
+
content: string | Record<string, unknown>;
|
|
965
965
|
timestamp: string;
|
|
966
966
|
metadata?: Record<string, unknown> | undefined;
|
|
967
967
|
}>, "many">>;
|
|
@@ -977,8 +977,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
977
977
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
978
978
|
messages?: {
|
|
979
979
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
980
|
-
content: string | Record<string, unknown>;
|
|
981
980
|
id: number;
|
|
981
|
+
content: string | Record<string, unknown>;
|
|
982
982
|
timestamp: string;
|
|
983
983
|
metadata?: Record<string, unknown> | undefined;
|
|
984
984
|
}[] | undefined;
|
|
@@ -991,8 +991,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
991
991
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
992
992
|
messages?: {
|
|
993
993
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
994
|
-
content: string | Record<string, unknown>;
|
|
995
994
|
id: number;
|
|
995
|
+
content: string | Record<string, unknown>;
|
|
996
996
|
timestamp: string;
|
|
997
997
|
metadata?: Record<string, unknown> | undefined;
|
|
998
998
|
}[] | undefined;
|
|
@@ -188,6 +188,17 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
188
188
|
expectedOutputSchema: z.ZodOptional<z.ZodUnion<[z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>, z.ZodString]>>;
|
|
189
189
|
}, "strip", z.ZodTypeAny, {
|
|
190
190
|
message: string;
|
|
191
|
+
images: ({
|
|
192
|
+
type: "base64";
|
|
193
|
+
data: string;
|
|
194
|
+
mimeType: string;
|
|
195
|
+
description?: string | undefined;
|
|
196
|
+
} | {
|
|
197
|
+
type: "url";
|
|
198
|
+
url: string;
|
|
199
|
+
description?: string | undefined;
|
|
200
|
+
})[];
|
|
201
|
+
systemPrompt: string;
|
|
191
202
|
model: {
|
|
192
203
|
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/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "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";
|
|
193
204
|
temperature: number;
|
|
@@ -204,24 +215,13 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
204
215
|
maxRetries?: number | undefined;
|
|
205
216
|
} | undefined;
|
|
206
217
|
};
|
|
207
|
-
streaming: boolean;
|
|
208
218
|
tools: {
|
|
209
219
|
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" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
|
|
210
220
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
211
221
|
config?: Record<string, unknown> | undefined;
|
|
212
222
|
}[];
|
|
213
|
-
images: ({
|
|
214
|
-
type: "base64";
|
|
215
|
-
data: string;
|
|
216
|
-
mimeType: string;
|
|
217
|
-
description?: string | undefined;
|
|
218
|
-
} | {
|
|
219
|
-
type: "url";
|
|
220
|
-
url: string;
|
|
221
|
-
description?: string | undefined;
|
|
222
|
-
})[];
|
|
223
|
-
systemPrompt: string;
|
|
224
223
|
maxIterations: number;
|
|
224
|
+
streaming: boolean;
|
|
225
225
|
name?: string | undefined;
|
|
226
226
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
227
227
|
conversationHistory?: {
|
|
@@ -246,6 +246,23 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
246
246
|
message: string;
|
|
247
247
|
name?: string | undefined;
|
|
248
248
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
249
|
+
images?: ({
|
|
250
|
+
data: string;
|
|
251
|
+
type?: "base64" | undefined;
|
|
252
|
+
description?: string | undefined;
|
|
253
|
+
mimeType?: string | undefined;
|
|
254
|
+
} | {
|
|
255
|
+
type: "url";
|
|
256
|
+
url: string;
|
|
257
|
+
description?: string | undefined;
|
|
258
|
+
})[] | undefined;
|
|
259
|
+
conversationHistory?: {
|
|
260
|
+
role: "user" | "assistant" | "tool";
|
|
261
|
+
content: string;
|
|
262
|
+
toolCallId?: string | undefined;
|
|
263
|
+
name?: string | undefined;
|
|
264
|
+
}[] | undefined;
|
|
265
|
+
systemPrompt?: string | undefined;
|
|
249
266
|
model?: {
|
|
250
267
|
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/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "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";
|
|
251
268
|
temperature?: number | undefined;
|
|
@@ -262,29 +279,11 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
262
279
|
maxRetries?: number | undefined;
|
|
263
280
|
} | undefined;
|
|
264
281
|
} | undefined;
|
|
265
|
-
streaming?: boolean | undefined;
|
|
266
282
|
tools?: {
|
|
267
283
|
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" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
|
|
268
284
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
269
285
|
config?: Record<string, unknown> | undefined;
|
|
270
286
|
}[] | undefined;
|
|
271
|
-
images?: ({
|
|
272
|
-
data: string;
|
|
273
|
-
type?: "base64" | undefined;
|
|
274
|
-
description?: string | undefined;
|
|
275
|
-
mimeType?: string | undefined;
|
|
276
|
-
} | {
|
|
277
|
-
type: "url";
|
|
278
|
-
url: string;
|
|
279
|
-
description?: string | undefined;
|
|
280
|
-
})[] | undefined;
|
|
281
|
-
conversationHistory?: {
|
|
282
|
-
role: "user" | "assistant" | "tool";
|
|
283
|
-
content: string;
|
|
284
|
-
toolCallId?: string | undefined;
|
|
285
|
-
name?: string | undefined;
|
|
286
|
-
}[] | undefined;
|
|
287
|
-
systemPrompt?: string | undefined;
|
|
288
287
|
customTools?: {
|
|
289
288
|
description: string;
|
|
290
289
|
name: string;
|
|
@@ -292,6 +291,7 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
292
291
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
293
292
|
}[] | undefined;
|
|
294
293
|
maxIterations?: number | undefined;
|
|
294
|
+
streaming?: boolean | undefined;
|
|
295
295
|
capabilities?: {
|
|
296
296
|
id: string;
|
|
297
297
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -516,6 +516,17 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
516
516
|
expectedOutputSchema: z.ZodOptional<z.ZodUnion<[z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>, z.ZodString]>>;
|
|
517
517
|
}, "strip", z.ZodTypeAny, {
|
|
518
518
|
message: string;
|
|
519
|
+
images: ({
|
|
520
|
+
type: "base64";
|
|
521
|
+
data: string;
|
|
522
|
+
mimeType: string;
|
|
523
|
+
description?: string | undefined;
|
|
524
|
+
} | {
|
|
525
|
+
type: "url";
|
|
526
|
+
url: string;
|
|
527
|
+
description?: string | undefined;
|
|
528
|
+
})[];
|
|
529
|
+
systemPrompt: string;
|
|
519
530
|
model: {
|
|
520
531
|
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/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "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";
|
|
521
532
|
temperature: number;
|
|
@@ -532,24 +543,13 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
532
543
|
maxRetries?: number | undefined;
|
|
533
544
|
} | undefined;
|
|
534
545
|
};
|
|
535
|
-
streaming: boolean;
|
|
536
546
|
tools: {
|
|
537
547
|
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" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
|
|
538
548
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
539
549
|
config?: Record<string, unknown> | undefined;
|
|
540
550
|
}[];
|
|
541
|
-
images: ({
|
|
542
|
-
type: "base64";
|
|
543
|
-
data: string;
|
|
544
|
-
mimeType: string;
|
|
545
|
-
description?: string | undefined;
|
|
546
|
-
} | {
|
|
547
|
-
type: "url";
|
|
548
|
-
url: string;
|
|
549
|
-
description?: string | undefined;
|
|
550
|
-
})[];
|
|
551
|
-
systemPrompt: string;
|
|
552
551
|
maxIterations: number;
|
|
552
|
+
streaming: boolean;
|
|
553
553
|
name?: string | undefined;
|
|
554
554
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
555
555
|
conversationHistory?: {
|
|
@@ -574,6 +574,23 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
574
574
|
message: string;
|
|
575
575
|
name?: string | undefined;
|
|
576
576
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
577
|
+
images?: ({
|
|
578
|
+
data: string;
|
|
579
|
+
type?: "base64" | undefined;
|
|
580
|
+
description?: string | undefined;
|
|
581
|
+
mimeType?: string | undefined;
|
|
582
|
+
} | {
|
|
583
|
+
type: "url";
|
|
584
|
+
url: string;
|
|
585
|
+
description?: string | undefined;
|
|
586
|
+
})[] | undefined;
|
|
587
|
+
conversationHistory?: {
|
|
588
|
+
role: "user" | "assistant" | "tool";
|
|
589
|
+
content: string;
|
|
590
|
+
toolCallId?: string | undefined;
|
|
591
|
+
name?: string | undefined;
|
|
592
|
+
}[] | undefined;
|
|
593
|
+
systemPrompt?: string | undefined;
|
|
577
594
|
model?: {
|
|
578
595
|
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/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "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";
|
|
579
596
|
temperature?: number | undefined;
|
|
@@ -590,29 +607,11 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
590
607
|
maxRetries?: number | undefined;
|
|
591
608
|
} | undefined;
|
|
592
609
|
} | undefined;
|
|
593
|
-
streaming?: boolean | undefined;
|
|
594
610
|
tools?: {
|
|
595
611
|
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" | "youtube-tool" | "amazon-shopping-tool" | "people-search-tool";
|
|
596
612
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
597
613
|
config?: Record<string, unknown> | undefined;
|
|
598
614
|
}[] | undefined;
|
|
599
|
-
images?: ({
|
|
600
|
-
data: string;
|
|
601
|
-
type?: "base64" | undefined;
|
|
602
|
-
description?: string | undefined;
|
|
603
|
-
mimeType?: string | undefined;
|
|
604
|
-
} | {
|
|
605
|
-
type: "url";
|
|
606
|
-
url: string;
|
|
607
|
-
description?: string | undefined;
|
|
608
|
-
})[] | undefined;
|
|
609
|
-
conversationHistory?: {
|
|
610
|
-
role: "user" | "assistant" | "tool";
|
|
611
|
-
content: string;
|
|
612
|
-
toolCallId?: string | undefined;
|
|
613
|
-
name?: string | undefined;
|
|
614
|
-
}[] | undefined;
|
|
615
|
-
systemPrompt?: string | undefined;
|
|
616
615
|
customTools?: {
|
|
617
616
|
description: string;
|
|
618
617
|
name: string;
|
|
@@ -620,6 +619,7 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
620
619
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
621
620
|
}[] | undefined;
|
|
622
621
|
maxIterations?: number | undefined;
|
|
622
|
+
streaming?: boolean | undefined;
|
|
623
623
|
capabilities?: {
|
|
624
624
|
id: string;
|
|
625
625
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|