@bubblelab/bubble-core 0.1.55 → 0.1.57
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 +102 -102
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/ai-agent.d.ts +68 -68
- package/dist/bubbles/service-bubble/airtable.d.ts +86 -86
- package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +128 -128
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +180 -180
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +28 -28
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +36 -36
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +118 -118
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +879 -879
- package/dist/bubbles/service-bubble/followupboss.d.ts +254 -254
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +112 -112
- package/dist/bubbles/service-bubble/gmail.d.ts +555 -555
- package/dist/bubbles/service-bubble/google-calendar.d.ts +20 -20
- package/dist/bubbles/service-bubble/google-drive.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +35 -35
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +37 -37
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1365 -1365
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +320 -320
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +91 -91
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +107 -107
- package/dist/bubbles/service-bubble/telegram.d.ts +1491 -1491
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +16 -16
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- 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/company-enrichment-tool.d.ts +126 -126
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +421 -421
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +150 -150
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +146 -146
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +86 -86
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -14,15 +14,15 @@ declare const AGIIncParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
14
14
|
operation: "create_session";
|
|
15
15
|
agent_name: "agi-0" | "agi-0-fast";
|
|
16
16
|
enable_memory_snapshot: boolean;
|
|
17
|
-
webhook_url?: string | undefined;
|
|
18
17
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18
|
+
webhook_url?: string | undefined;
|
|
19
19
|
restore_from_session_id?: string | undefined;
|
|
20
20
|
restore_default_environment_from_user_id?: string | undefined;
|
|
21
21
|
}, {
|
|
22
22
|
operation: "create_session";
|
|
23
|
-
webhook_url?: string | undefined;
|
|
24
23
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
25
24
|
agent_name?: "agi-0" | "agi-0-fast" | undefined;
|
|
25
|
+
webhook_url?: string | undefined;
|
|
26
26
|
restore_from_session_id?: string | undefined;
|
|
27
27
|
restore_default_environment_from_user_id?: string | undefined;
|
|
28
28
|
enable_memory_snapshot?: boolean | undefined;
|
|
@@ -164,13 +164,13 @@ declare const AGIIncParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
164
164
|
url: z.ZodString;
|
|
165
165
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
166
166
|
}, "strip", z.ZodTypeAny, {
|
|
167
|
-
operation: "navigate";
|
|
168
167
|
url: string;
|
|
168
|
+
operation: "navigate";
|
|
169
169
|
session_id: string;
|
|
170
170
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
171
171
|
}, {
|
|
172
|
-
operation: "navigate";
|
|
173
172
|
url: string;
|
|
173
|
+
operation: "navigate";
|
|
174
174
|
session_id: string;
|
|
175
175
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
176
176
|
}>, z.ZodObject<{
|
|
@@ -201,21 +201,21 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
201
201
|
success: boolean;
|
|
202
202
|
operation: "create_session";
|
|
203
203
|
ok: boolean;
|
|
204
|
-
status?: "error" | "
|
|
205
|
-
session_id?: string | undefined;
|
|
204
|
+
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
206
205
|
created_at?: string | undefined;
|
|
207
|
-
|
|
206
|
+
session_id?: string | undefined;
|
|
208
207
|
vnc_url?: string | undefined;
|
|
208
|
+
agent_name?: string | undefined;
|
|
209
209
|
}, {
|
|
210
210
|
error: string;
|
|
211
211
|
success: boolean;
|
|
212
212
|
operation: "create_session";
|
|
213
213
|
ok: boolean;
|
|
214
|
-
status?: "error" | "
|
|
215
|
-
session_id?: string | undefined;
|
|
214
|
+
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
216
215
|
created_at?: string | undefined;
|
|
217
|
-
|
|
216
|
+
session_id?: string | undefined;
|
|
218
217
|
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;
|
|
@@ -226,15 +226,15 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
226
226
|
status: z.ZodEnum<["initializing", "ready", "running", "paused", "completed", "error", "terminated"]>;
|
|
227
227
|
created_at: z.ZodString;
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
|
229
|
-
status: "error" | "
|
|
230
|
-
session_id: string;
|
|
229
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
231
230
|
created_at: string;
|
|
231
|
+
session_id: string;
|
|
232
232
|
agent_name: string;
|
|
233
233
|
vnc_url?: string | undefined;
|
|
234
234
|
}, {
|
|
235
|
-
status: "error" | "
|
|
236
|
-
session_id: string;
|
|
235
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
237
236
|
created_at: string;
|
|
237
|
+
session_id: string;
|
|
238
238
|
agent_name: string;
|
|
239
239
|
vnc_url?: string | undefined;
|
|
240
240
|
}>, "many">>;
|
|
@@ -246,9 +246,9 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
246
246
|
operation: "list_sessions";
|
|
247
247
|
ok: boolean;
|
|
248
248
|
sessions?: {
|
|
249
|
-
status: "error" | "
|
|
250
|
-
session_id: string;
|
|
249
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
251
250
|
created_at: string;
|
|
251
|
+
session_id: string;
|
|
252
252
|
agent_name: string;
|
|
253
253
|
vnc_url?: string | undefined;
|
|
254
254
|
}[] | undefined;
|
|
@@ -258,9 +258,9 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
258
258
|
operation: "list_sessions";
|
|
259
259
|
ok: boolean;
|
|
260
260
|
sessions?: {
|
|
261
|
-
status: "error" | "
|
|
262
|
-
session_id: string;
|
|
261
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
263
262
|
created_at: string;
|
|
263
|
+
session_id: string;
|
|
264
264
|
agent_name: string;
|
|
265
265
|
vnc_url?: string | undefined;
|
|
266
266
|
}[] | undefined;
|
|
@@ -274,15 +274,15 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
274
274
|
status: z.ZodEnum<["initializing", "ready", "running", "paused", "completed", "error", "terminated"]>;
|
|
275
275
|
created_at: z.ZodString;
|
|
276
276
|
}, "strip", z.ZodTypeAny, {
|
|
277
|
-
status: "error" | "
|
|
278
|
-
session_id: string;
|
|
277
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
279
278
|
created_at: string;
|
|
279
|
+
session_id: string;
|
|
280
280
|
agent_name: string;
|
|
281
281
|
vnc_url?: string | undefined;
|
|
282
282
|
}, {
|
|
283
|
-
status: "error" | "
|
|
284
|
-
session_id: string;
|
|
283
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
285
284
|
created_at: string;
|
|
285
|
+
session_id: string;
|
|
286
286
|
agent_name: string;
|
|
287
287
|
vnc_url?: string | undefined;
|
|
288
288
|
}>>;
|
|
@@ -294,9 +294,9 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
294
294
|
operation: "get_session";
|
|
295
295
|
ok: boolean;
|
|
296
296
|
session?: {
|
|
297
|
-
status: "error" | "
|
|
298
|
-
session_id: string;
|
|
297
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
299
298
|
created_at: string;
|
|
299
|
+
session_id: string;
|
|
300
300
|
agent_name: string;
|
|
301
301
|
vnc_url?: string | undefined;
|
|
302
302
|
} | undefined;
|
|
@@ -306,9 +306,9 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
306
306
|
operation: "get_session";
|
|
307
307
|
ok: boolean;
|
|
308
308
|
session?: {
|
|
309
|
-
status: "error" | "
|
|
310
|
-
session_id: string;
|
|
309
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
311
310
|
created_at: string;
|
|
311
|
+
session_id: string;
|
|
312
312
|
agent_name: string;
|
|
313
313
|
vnc_url?: string | undefined;
|
|
314
314
|
} | undefined;
|
|
@@ -400,13 +400,13 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
400
400
|
timestamp: z.ZodString;
|
|
401
401
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
402
402
|
}, "strip", z.ZodTypeAny, {
|
|
403
|
-
type: "
|
|
403
|
+
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
404
404
|
content: string | Record<string, unknown>;
|
|
405
405
|
id: number;
|
|
406
406
|
timestamp: string;
|
|
407
407
|
metadata?: Record<string, unknown> | undefined;
|
|
408
408
|
}, {
|
|
409
|
-
type: "
|
|
409
|
+
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
410
410
|
content: string | Record<string, unknown>;
|
|
411
411
|
id: number;
|
|
412
412
|
timestamp: string;
|
|
@@ -423,7 +423,7 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
423
423
|
ok: boolean;
|
|
424
424
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
425
425
|
messages?: {
|
|
426
|
-
type: "
|
|
426
|
+
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
427
427
|
content: string | Record<string, unknown>;
|
|
428
428
|
id: number;
|
|
429
429
|
timestamp: string;
|
|
@@ -437,7 +437,7 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
437
437
|
ok: boolean;
|
|
438
438
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
439
439
|
messages?: {
|
|
440
|
-
type: "
|
|
440
|
+
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
441
441
|
content: string | Record<string, unknown>;
|
|
442
442
|
id: number;
|
|
443
443
|
timestamp: string;
|
|
@@ -567,15 +567,15 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
567
567
|
operation: "create_session";
|
|
568
568
|
agent_name: "agi-0" | "agi-0-fast";
|
|
569
569
|
enable_memory_snapshot: boolean;
|
|
570
|
-
webhook_url?: string | undefined;
|
|
571
570
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
571
|
+
webhook_url?: string | undefined;
|
|
572
572
|
restore_from_session_id?: string | undefined;
|
|
573
573
|
restore_default_environment_from_user_id?: string | undefined;
|
|
574
574
|
}, {
|
|
575
575
|
operation: "create_session";
|
|
576
|
-
webhook_url?: string | undefined;
|
|
577
576
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
578
577
|
agent_name?: "agi-0" | "agi-0-fast" | undefined;
|
|
578
|
+
webhook_url?: string | undefined;
|
|
579
579
|
restore_from_session_id?: string | undefined;
|
|
580
580
|
restore_default_environment_from_user_id?: string | undefined;
|
|
581
581
|
enable_memory_snapshot?: boolean | undefined;
|
|
@@ -717,13 +717,13 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
717
717
|
url: z.ZodString;
|
|
718
718
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
719
719
|
}, "strip", z.ZodTypeAny, {
|
|
720
|
-
operation: "navigate";
|
|
721
720
|
url: string;
|
|
721
|
+
operation: "navigate";
|
|
722
722
|
session_id: string;
|
|
723
723
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
724
724
|
}, {
|
|
725
|
-
operation: "navigate";
|
|
726
725
|
url: string;
|
|
726
|
+
operation: "navigate";
|
|
727
727
|
session_id: string;
|
|
728
728
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
729
729
|
}>, z.ZodObject<{
|
|
@@ -754,21 +754,21 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
754
754
|
success: boolean;
|
|
755
755
|
operation: "create_session";
|
|
756
756
|
ok: boolean;
|
|
757
|
-
status?: "error" | "
|
|
758
|
-
session_id?: string | undefined;
|
|
757
|
+
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
759
758
|
created_at?: string | undefined;
|
|
760
|
-
|
|
759
|
+
session_id?: string | undefined;
|
|
761
760
|
vnc_url?: string | undefined;
|
|
761
|
+
agent_name?: string | undefined;
|
|
762
762
|
}, {
|
|
763
763
|
error: string;
|
|
764
764
|
success: boolean;
|
|
765
765
|
operation: "create_session";
|
|
766
766
|
ok: boolean;
|
|
767
|
-
status?: "error" | "
|
|
768
|
-
session_id?: string | undefined;
|
|
767
|
+
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
769
768
|
created_at?: string | undefined;
|
|
770
|
-
|
|
769
|
+
session_id?: string | undefined;
|
|
771
770
|
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;
|
|
@@ -779,15 +779,15 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
779
779
|
status: z.ZodEnum<["initializing", "ready", "running", "paused", "completed", "error", "terminated"]>;
|
|
780
780
|
created_at: z.ZodString;
|
|
781
781
|
}, "strip", z.ZodTypeAny, {
|
|
782
|
-
status: "error" | "
|
|
783
|
-
session_id: string;
|
|
782
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
784
783
|
created_at: string;
|
|
784
|
+
session_id: string;
|
|
785
785
|
agent_name: string;
|
|
786
786
|
vnc_url?: string | undefined;
|
|
787
787
|
}, {
|
|
788
|
-
status: "error" | "
|
|
789
|
-
session_id: string;
|
|
788
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
790
789
|
created_at: string;
|
|
790
|
+
session_id: string;
|
|
791
791
|
agent_name: string;
|
|
792
792
|
vnc_url?: string | undefined;
|
|
793
793
|
}>, "many">>;
|
|
@@ -799,9 +799,9 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
799
799
|
operation: "list_sessions";
|
|
800
800
|
ok: boolean;
|
|
801
801
|
sessions?: {
|
|
802
|
-
status: "error" | "
|
|
803
|
-
session_id: string;
|
|
802
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
804
803
|
created_at: string;
|
|
804
|
+
session_id: string;
|
|
805
805
|
agent_name: string;
|
|
806
806
|
vnc_url?: string | undefined;
|
|
807
807
|
}[] | undefined;
|
|
@@ -811,9 +811,9 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
811
811
|
operation: "list_sessions";
|
|
812
812
|
ok: boolean;
|
|
813
813
|
sessions?: {
|
|
814
|
-
status: "error" | "
|
|
815
|
-
session_id: string;
|
|
814
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
816
815
|
created_at: string;
|
|
816
|
+
session_id: string;
|
|
817
817
|
agent_name: string;
|
|
818
818
|
vnc_url?: string | undefined;
|
|
819
819
|
}[] | undefined;
|
|
@@ -827,15 +827,15 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
827
827
|
status: z.ZodEnum<["initializing", "ready", "running", "paused", "completed", "error", "terminated"]>;
|
|
828
828
|
created_at: z.ZodString;
|
|
829
829
|
}, "strip", z.ZodTypeAny, {
|
|
830
|
-
status: "error" | "
|
|
831
|
-
session_id: string;
|
|
830
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
832
831
|
created_at: string;
|
|
832
|
+
session_id: string;
|
|
833
833
|
agent_name: string;
|
|
834
834
|
vnc_url?: string | undefined;
|
|
835
835
|
}, {
|
|
836
|
-
status: "error" | "
|
|
837
|
-
session_id: string;
|
|
836
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
838
837
|
created_at: string;
|
|
838
|
+
session_id: string;
|
|
839
839
|
agent_name: string;
|
|
840
840
|
vnc_url?: string | undefined;
|
|
841
841
|
}>>;
|
|
@@ -847,9 +847,9 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
847
847
|
operation: "get_session";
|
|
848
848
|
ok: boolean;
|
|
849
849
|
session?: {
|
|
850
|
-
status: "error" | "
|
|
851
|
-
session_id: string;
|
|
850
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
852
851
|
created_at: string;
|
|
852
|
+
session_id: string;
|
|
853
853
|
agent_name: string;
|
|
854
854
|
vnc_url?: string | undefined;
|
|
855
855
|
} | undefined;
|
|
@@ -859,9 +859,9 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
859
859
|
operation: "get_session";
|
|
860
860
|
ok: boolean;
|
|
861
861
|
session?: {
|
|
862
|
-
status: "error" | "
|
|
863
|
-
session_id: string;
|
|
862
|
+
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
864
863
|
created_at: string;
|
|
864
|
+
session_id: string;
|
|
865
865
|
agent_name: string;
|
|
866
866
|
vnc_url?: string | undefined;
|
|
867
867
|
} | undefined;
|
|
@@ -953,13 +953,13 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
953
953
|
timestamp: z.ZodString;
|
|
954
954
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
955
955
|
}, "strip", z.ZodTypeAny, {
|
|
956
|
-
type: "
|
|
956
|
+
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
957
957
|
content: string | Record<string, unknown>;
|
|
958
958
|
id: number;
|
|
959
959
|
timestamp: string;
|
|
960
960
|
metadata?: Record<string, unknown> | undefined;
|
|
961
961
|
}, {
|
|
962
|
-
type: "
|
|
962
|
+
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
963
963
|
content: string | Record<string, unknown>;
|
|
964
964
|
id: number;
|
|
965
965
|
timestamp: string;
|
|
@@ -976,7 +976,7 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
976
976
|
ok: boolean;
|
|
977
977
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
978
978
|
messages?: {
|
|
979
|
-
type: "
|
|
979
|
+
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
980
980
|
content: string | Record<string, unknown>;
|
|
981
981
|
id: number;
|
|
982
982
|
timestamp: string;
|
|
@@ -990,7 +990,7 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
990
990
|
ok: boolean;
|
|
991
991
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
992
992
|
messages?: {
|
|
993
|
-
type: "
|
|
993
|
+
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
994
994
|
content: string | Record<string, unknown>;
|
|
995
995
|
id: number;
|
|
996
996
|
timestamp: string;
|
|
@@ -161,12 +161,12 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
|
162
162
|
description: string;
|
|
163
163
|
name: string;
|
|
164
|
-
schema:
|
|
164
|
+
schema: Record<string, unknown> | z.ZodTypeAny;
|
|
165
165
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
166
166
|
}, {
|
|
167
167
|
description: string;
|
|
168
168
|
name: string;
|
|
169
|
-
schema:
|
|
169
|
+
schema: Record<string, unknown> | z.ZodTypeAny;
|
|
170
170
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
171
171
|
}>, "many">>>;
|
|
172
172
|
maxIterations: z.ZodDefault<z.ZodNumber>;
|
|
@@ -175,17 +175,6 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
175
175
|
expectedOutputSchema: z.ZodOptional<z.ZodUnion<[z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>, z.ZodString]>>;
|
|
176
176
|
}, "strip", z.ZodTypeAny, {
|
|
177
177
|
message: string;
|
|
178
|
-
images: ({
|
|
179
|
-
type: "base64";
|
|
180
|
-
data: string;
|
|
181
|
-
mimeType: string;
|
|
182
|
-
description?: string | undefined;
|
|
183
|
-
} | {
|
|
184
|
-
type: "url";
|
|
185
|
-
url: string;
|
|
186
|
-
description?: string | undefined;
|
|
187
|
-
})[];
|
|
188
|
-
systemPrompt: string;
|
|
189
178
|
model: {
|
|
190
179
|
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/openai/gpt-oss-120b";
|
|
191
180
|
temperature: number;
|
|
@@ -202,13 +191,24 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
202
191
|
maxRetries?: number | undefined;
|
|
203
192
|
} | undefined;
|
|
204
193
|
};
|
|
194
|
+
streaming: boolean;
|
|
205
195
|
tools: {
|
|
206
196
|
name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-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";
|
|
207
197
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
208
198
|
config?: Record<string, unknown> | undefined;
|
|
209
199
|
}[];
|
|
200
|
+
images: ({
|
|
201
|
+
type: "base64";
|
|
202
|
+
data: string;
|
|
203
|
+
mimeType: string;
|
|
204
|
+
description?: string | undefined;
|
|
205
|
+
} | {
|
|
206
|
+
type: "url";
|
|
207
|
+
url: string;
|
|
208
|
+
description?: string | undefined;
|
|
209
|
+
})[];
|
|
210
|
+
systemPrompt: string;
|
|
210
211
|
maxIterations: number;
|
|
211
|
-
streaming: boolean;
|
|
212
212
|
name?: string | undefined;
|
|
213
213
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
214
214
|
conversationHistory?: {
|
|
@@ -220,7 +220,7 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
220
220
|
customTools?: {
|
|
221
221
|
description: string;
|
|
222
222
|
name: string;
|
|
223
|
-
schema:
|
|
223
|
+
schema: Record<string, unknown> | z.ZodTypeAny;
|
|
224
224
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
225
225
|
}[] | undefined;
|
|
226
226
|
expectedOutputSchema?: string | z.ZodTypeAny | undefined;
|
|
@@ -228,23 +228,6 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
228
228
|
message: string;
|
|
229
229
|
name?: string | undefined;
|
|
230
230
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
231
|
-
images?: ({
|
|
232
|
-
data: string;
|
|
233
|
-
type?: "base64" | undefined;
|
|
234
|
-
description?: string | undefined;
|
|
235
|
-
mimeType?: string | undefined;
|
|
236
|
-
} | {
|
|
237
|
-
type: "url";
|
|
238
|
-
url: string;
|
|
239
|
-
description?: string | undefined;
|
|
240
|
-
})[] | undefined;
|
|
241
|
-
conversationHistory?: {
|
|
242
|
-
role: "user" | "assistant" | "tool";
|
|
243
|
-
content: string;
|
|
244
|
-
toolCallId?: string | undefined;
|
|
245
|
-
name?: string | undefined;
|
|
246
|
-
}[] | undefined;
|
|
247
|
-
systemPrompt?: string | undefined;
|
|
248
231
|
model?: {
|
|
249
232
|
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/openai/gpt-oss-120b";
|
|
250
233
|
temperature?: number | undefined;
|
|
@@ -261,19 +244,36 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
261
244
|
maxRetries?: number | undefined;
|
|
262
245
|
} | undefined;
|
|
263
246
|
} | undefined;
|
|
247
|
+
streaming?: boolean | undefined;
|
|
264
248
|
tools?: {
|
|
265
249
|
name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-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";
|
|
266
250
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
267
251
|
config?: Record<string, unknown> | undefined;
|
|
268
252
|
}[] | undefined;
|
|
253
|
+
images?: ({
|
|
254
|
+
data: string;
|
|
255
|
+
type?: "base64" | undefined;
|
|
256
|
+
description?: string | undefined;
|
|
257
|
+
mimeType?: string | undefined;
|
|
258
|
+
} | {
|
|
259
|
+
type: "url";
|
|
260
|
+
url: string;
|
|
261
|
+
description?: string | undefined;
|
|
262
|
+
})[] | undefined;
|
|
263
|
+
conversationHistory?: {
|
|
264
|
+
role: "user" | "assistant" | "tool";
|
|
265
|
+
content: string;
|
|
266
|
+
toolCallId?: string | undefined;
|
|
267
|
+
name?: string | undefined;
|
|
268
|
+
}[] | undefined;
|
|
269
|
+
systemPrompt?: string | undefined;
|
|
269
270
|
customTools?: {
|
|
270
271
|
description: string;
|
|
271
272
|
name: string;
|
|
272
|
-
schema:
|
|
273
|
+
schema: Record<string, unknown> | z.ZodTypeAny;
|
|
273
274
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
274
275
|
}[] | undefined;
|
|
275
276
|
maxIterations?: number | undefined;
|
|
276
|
-
streaming?: boolean | undefined;
|
|
277
277
|
expectedOutputSchema?: string | z.ZodTypeAny | undefined;
|
|
278
278
|
}>;
|
|
279
279
|
declare const AIAgentResultSchema: z.ZodObject<{
|
|
@@ -460,12 +460,12 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
460
460
|
}, "strip", z.ZodTypeAny, {
|
|
461
461
|
description: string;
|
|
462
462
|
name: string;
|
|
463
|
-
schema:
|
|
463
|
+
schema: Record<string, unknown> | z.ZodTypeAny;
|
|
464
464
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
465
465
|
}, {
|
|
466
466
|
description: string;
|
|
467
467
|
name: string;
|
|
468
|
-
schema:
|
|
468
|
+
schema: Record<string, unknown> | z.ZodTypeAny;
|
|
469
469
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
470
470
|
}>, "many">>>;
|
|
471
471
|
maxIterations: z.ZodDefault<z.ZodNumber>;
|
|
@@ -474,17 +474,6 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
474
474
|
expectedOutputSchema: z.ZodOptional<z.ZodUnion<[z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>, z.ZodString]>>;
|
|
475
475
|
}, "strip", z.ZodTypeAny, {
|
|
476
476
|
message: string;
|
|
477
|
-
images: ({
|
|
478
|
-
type: "base64";
|
|
479
|
-
data: string;
|
|
480
|
-
mimeType: string;
|
|
481
|
-
description?: string | undefined;
|
|
482
|
-
} | {
|
|
483
|
-
type: "url";
|
|
484
|
-
url: string;
|
|
485
|
-
description?: string | undefined;
|
|
486
|
-
})[];
|
|
487
|
-
systemPrompt: string;
|
|
488
477
|
model: {
|
|
489
478
|
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/openai/gpt-oss-120b";
|
|
490
479
|
temperature: number;
|
|
@@ -501,13 +490,24 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
501
490
|
maxRetries?: number | undefined;
|
|
502
491
|
} | undefined;
|
|
503
492
|
};
|
|
493
|
+
streaming: boolean;
|
|
504
494
|
tools: {
|
|
505
495
|
name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-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";
|
|
506
496
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
507
497
|
config?: Record<string, unknown> | undefined;
|
|
508
498
|
}[];
|
|
499
|
+
images: ({
|
|
500
|
+
type: "base64";
|
|
501
|
+
data: string;
|
|
502
|
+
mimeType: string;
|
|
503
|
+
description?: string | undefined;
|
|
504
|
+
} | {
|
|
505
|
+
type: "url";
|
|
506
|
+
url: string;
|
|
507
|
+
description?: string | undefined;
|
|
508
|
+
})[];
|
|
509
|
+
systemPrompt: string;
|
|
509
510
|
maxIterations: number;
|
|
510
|
-
streaming: boolean;
|
|
511
511
|
name?: string | undefined;
|
|
512
512
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
513
513
|
conversationHistory?: {
|
|
@@ -519,7 +519,7 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
519
519
|
customTools?: {
|
|
520
520
|
description: string;
|
|
521
521
|
name: string;
|
|
522
|
-
schema:
|
|
522
|
+
schema: Record<string, unknown> | z.ZodTypeAny;
|
|
523
523
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
524
524
|
}[] | undefined;
|
|
525
525
|
expectedOutputSchema?: string | z.ZodTypeAny | undefined;
|
|
@@ -527,23 +527,6 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
527
527
|
message: string;
|
|
528
528
|
name?: string | undefined;
|
|
529
529
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
530
|
-
images?: ({
|
|
531
|
-
data: string;
|
|
532
|
-
type?: "base64" | undefined;
|
|
533
|
-
description?: string | undefined;
|
|
534
|
-
mimeType?: string | undefined;
|
|
535
|
-
} | {
|
|
536
|
-
type: "url";
|
|
537
|
-
url: string;
|
|
538
|
-
description?: string | undefined;
|
|
539
|
-
})[] | undefined;
|
|
540
|
-
conversationHistory?: {
|
|
541
|
-
role: "user" | "assistant" | "tool";
|
|
542
|
-
content: string;
|
|
543
|
-
toolCallId?: string | undefined;
|
|
544
|
-
name?: string | undefined;
|
|
545
|
-
}[] | undefined;
|
|
546
|
-
systemPrompt?: string | undefined;
|
|
547
530
|
model?: {
|
|
548
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/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b";
|
|
549
532
|
temperature?: number | undefined;
|
|
@@ -560,19 +543,36 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
560
543
|
maxRetries?: number | undefined;
|
|
561
544
|
} | undefined;
|
|
562
545
|
} | undefined;
|
|
546
|
+
streaming?: boolean | undefined;
|
|
563
547
|
tools?: {
|
|
564
548
|
name: "get-bubble-details-tool" | "get-trigger-detail-tool" | "list-bubbles-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";
|
|
565
549
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
566
550
|
config?: Record<string, unknown> | undefined;
|
|
567
551
|
}[] | undefined;
|
|
552
|
+
images?: ({
|
|
553
|
+
data: string;
|
|
554
|
+
type?: "base64" | undefined;
|
|
555
|
+
description?: string | undefined;
|
|
556
|
+
mimeType?: string | undefined;
|
|
557
|
+
} | {
|
|
558
|
+
type: "url";
|
|
559
|
+
url: string;
|
|
560
|
+
description?: string | undefined;
|
|
561
|
+
})[] | undefined;
|
|
562
|
+
conversationHistory?: {
|
|
563
|
+
role: "user" | "assistant" | "tool";
|
|
564
|
+
content: string;
|
|
565
|
+
toolCallId?: string | undefined;
|
|
566
|
+
name?: string | undefined;
|
|
567
|
+
}[] | undefined;
|
|
568
|
+
systemPrompt?: string | undefined;
|
|
568
569
|
customTools?: {
|
|
569
570
|
description: string;
|
|
570
571
|
name: string;
|
|
571
|
-
schema:
|
|
572
|
+
schema: Record<string, unknown> | z.ZodTypeAny;
|
|
572
573
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
573
574
|
}[] | undefined;
|
|
574
575
|
maxIterations?: number | undefined;
|
|
575
|
-
streaming?: boolean | undefined;
|
|
576
576
|
expectedOutputSchema?: string | z.ZodTypeAny | undefined;
|
|
577
577
|
}>;
|
|
578
578
|
static readonly resultSchema: z.ZodObject<{
|