@bubblelab/bubble-core 0.1.25 → 0.1.26
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 +82 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
- package/dist/bubbles/service-bubble/airtable.d.ts +116 -116
- package/dist/bubbles/service-bubble/apify/apify.d.ts +6 -6
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +30 -30
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +64 -64
- package/dist/bubbles/service-bubble/followupboss.d.ts +176 -176
- package/dist/bubbles/service-bubble/github.d.ts +80 -80
- package/dist/bubbles/service-bubble/gmail.d.ts +172 -172
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +56 -56
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +22 -22
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/notion/notion.d.ts +874 -874
- package/dist/bubbles/service-bubble/resend.d.ts +16 -16
- package/dist/bubbles/service-bubble/slack/slack.d.ts +144 -144
- package/dist/bubbles/service-bubble/storage.d.ts +30 -30
- package/dist/bubbles/service-bubble/telegram.d.ts +208 -208
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +138 -138
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +38 -38
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +173 -173
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +22 -6
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +22 -22
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +52 -52
- package/dist/bubbles.json +52054 -6
- package/dist/types/available-tools.d.ts +1 -1
- package/dist/types/available-tools.d.ts.map +1 -1
- package/dist/types/available-tools.js +1 -0
- package/dist/types/available-tools.js.map +1 -1
- package/package.json +3 -3
|
@@ -27,14 +27,14 @@ declare const ApifyParamsSchema: z.ZodObject<{
|
|
|
27
27
|
input: Record<string, unknown>;
|
|
28
28
|
timeout: number;
|
|
29
29
|
waitForFinish: boolean;
|
|
30
|
-
search?: string | undefined;
|
|
31
30
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
31
|
+
search?: string | undefined;
|
|
32
32
|
actorId?: string | undefined;
|
|
33
33
|
}, {
|
|
34
34
|
input: Record<string, unknown>;
|
|
35
|
-
search?: string | undefined;
|
|
36
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
37
35
|
limit?: number | undefined;
|
|
36
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
37
|
+
search?: string | undefined;
|
|
38
38
|
timeout?: number | undefined;
|
|
39
39
|
actorId?: string | undefined;
|
|
40
40
|
waitForFinish?: boolean | undefined;
|
|
@@ -163,14 +163,14 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
163
163
|
input: Record<string, unknown>;
|
|
164
164
|
timeout: number;
|
|
165
165
|
waitForFinish: boolean;
|
|
166
|
-
search?: string | undefined;
|
|
167
166
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
167
|
+
search?: string | undefined;
|
|
168
168
|
actorId?: string | undefined;
|
|
169
169
|
}, {
|
|
170
170
|
input: Record<string, unknown>;
|
|
171
|
-
search?: string | undefined;
|
|
172
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
173
171
|
limit?: number | undefined;
|
|
172
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
173
|
+
search?: string | undefined;
|
|
174
174
|
timeout?: number | undefined;
|
|
175
175
|
actorId?: string | undefined;
|
|
176
176
|
waitForFinish?: boolean | undefined;
|
|
@@ -57,17 +57,17 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
57
57
|
httpOnly: import("zod").ZodBoolean;
|
|
58
58
|
secure: import("zod").ZodBoolean;
|
|
59
59
|
}, "strip", import("zod").ZodTypeAny, {
|
|
60
|
-
name: string;
|
|
61
60
|
value: string;
|
|
62
61
|
path: string;
|
|
62
|
+
name: string;
|
|
63
63
|
domain: string;
|
|
64
64
|
expires: number;
|
|
65
65
|
httpOnly: boolean;
|
|
66
66
|
secure: boolean;
|
|
67
67
|
}, {
|
|
68
|
-
name: string;
|
|
69
68
|
value: string;
|
|
70
69
|
path: string;
|
|
70
|
+
name: string;
|
|
71
71
|
domain: string;
|
|
72
72
|
expires: number;
|
|
73
73
|
httpOnly: boolean;
|
|
@@ -83,9 +83,9 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
83
83
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
84
84
|
context_id?: string | undefined;
|
|
85
85
|
cookies?: {
|
|
86
|
-
name: string;
|
|
87
86
|
value: string;
|
|
88
87
|
path: string;
|
|
88
|
+
name: string;
|
|
89
89
|
domain: string;
|
|
90
90
|
expires: number;
|
|
91
91
|
httpOnly: boolean;
|
|
@@ -96,9 +96,9 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
96
96
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
97
97
|
context_id?: string | undefined;
|
|
98
98
|
cookies?: {
|
|
99
|
-
name: string;
|
|
100
99
|
value: string;
|
|
101
100
|
path: string;
|
|
101
|
+
name: string;
|
|
102
102
|
domain: string;
|
|
103
103
|
expires: number;
|
|
104
104
|
httpOnly: boolean;
|
|
@@ -114,15 +114,15 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
114
114
|
timeout: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
115
115
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
116
116
|
}, "strip", import("zod").ZodTypeAny, {
|
|
117
|
-
operation: "navigate";
|
|
118
117
|
url: string;
|
|
118
|
+
operation: "navigate";
|
|
119
119
|
timeout: number;
|
|
120
120
|
session_id: string;
|
|
121
121
|
wait_until: "load" | "domcontentloaded" | "networkidle0" | "networkidle2";
|
|
122
122
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
123
123
|
}, {
|
|
124
|
-
operation: "navigate";
|
|
125
124
|
url: string;
|
|
125
|
+
operation: "navigate";
|
|
126
126
|
session_id: string;
|
|
127
127
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
128
128
|
timeout?: number | undefined;
|
|
@@ -286,16 +286,16 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
286
286
|
debug_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
287
287
|
error: import("zod").ZodString;
|
|
288
288
|
}, "strip", import("zod").ZodTypeAny, {
|
|
289
|
-
operation: "start_session";
|
|
290
289
|
success: boolean;
|
|
291
290
|
error: string;
|
|
291
|
+
operation: "start_session";
|
|
292
292
|
session_id?: string | undefined;
|
|
293
293
|
context_id?: string | undefined;
|
|
294
294
|
debug_url?: string | undefined;
|
|
295
295
|
}, {
|
|
296
|
-
operation: "start_session";
|
|
297
296
|
success: boolean;
|
|
298
297
|
error: string;
|
|
298
|
+
operation: "start_session";
|
|
299
299
|
session_id?: string | undefined;
|
|
300
300
|
context_id?: string | undefined;
|
|
301
301
|
debug_url?: string | undefined;
|
|
@@ -305,53 +305,53 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
305
305
|
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
306
306
|
error: import("zod").ZodString;
|
|
307
307
|
}, "strip", import("zod").ZodTypeAny, {
|
|
308
|
-
operation: "navigate";
|
|
309
308
|
success: boolean;
|
|
310
309
|
error: string;
|
|
310
|
+
operation: "navigate";
|
|
311
311
|
url?: string | undefined;
|
|
312
312
|
}, {
|
|
313
|
-
operation: "navigate";
|
|
314
313
|
success: boolean;
|
|
315
314
|
error: string;
|
|
315
|
+
operation: "navigate";
|
|
316
316
|
url?: string | undefined;
|
|
317
317
|
}>, import("zod").ZodObject<{
|
|
318
318
|
operation: import("zod").ZodLiteral<"click">;
|
|
319
319
|
success: import("zod").ZodBoolean;
|
|
320
320
|
error: import("zod").ZodString;
|
|
321
321
|
}, "strip", import("zod").ZodTypeAny, {
|
|
322
|
-
operation: "click";
|
|
323
322
|
success: boolean;
|
|
324
323
|
error: string;
|
|
325
|
-
}, {
|
|
326
324
|
operation: "click";
|
|
325
|
+
}, {
|
|
327
326
|
success: boolean;
|
|
328
327
|
error: string;
|
|
328
|
+
operation: "click";
|
|
329
329
|
}>, import("zod").ZodObject<{
|
|
330
330
|
operation: import("zod").ZodLiteral<"type">;
|
|
331
331
|
success: import("zod").ZodBoolean;
|
|
332
332
|
error: import("zod").ZodString;
|
|
333
333
|
}, "strip", import("zod").ZodTypeAny, {
|
|
334
|
-
operation: "type";
|
|
335
334
|
success: boolean;
|
|
336
335
|
error: string;
|
|
337
|
-
}, {
|
|
338
336
|
operation: "type";
|
|
337
|
+
}, {
|
|
339
338
|
success: boolean;
|
|
340
339
|
error: string;
|
|
340
|
+
operation: "type";
|
|
341
341
|
}>, import("zod").ZodObject<{
|
|
342
342
|
operation: import("zod").ZodLiteral<"evaluate">;
|
|
343
343
|
success: import("zod").ZodBoolean;
|
|
344
344
|
result: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
345
345
|
error: import("zod").ZodString;
|
|
346
346
|
}, "strip", import("zod").ZodTypeAny, {
|
|
347
|
-
operation: "evaluate";
|
|
348
347
|
success: boolean;
|
|
349
348
|
error: string;
|
|
349
|
+
operation: "evaluate";
|
|
350
350
|
result?: unknown;
|
|
351
351
|
}, {
|
|
352
|
-
operation: "evaluate";
|
|
353
352
|
success: boolean;
|
|
354
353
|
error: string;
|
|
354
|
+
operation: "evaluate";
|
|
355
355
|
result?: unknown;
|
|
356
356
|
}>, import("zod").ZodObject<{
|
|
357
357
|
operation: import("zod").ZodLiteral<"get_content">;
|
|
@@ -359,14 +359,14 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
359
359
|
content: import("zod").ZodOptional<import("zod").ZodString>;
|
|
360
360
|
error: import("zod").ZodString;
|
|
361
361
|
}, "strip", import("zod").ZodTypeAny, {
|
|
362
|
-
operation: "get_content";
|
|
363
362
|
success: boolean;
|
|
364
363
|
error: string;
|
|
364
|
+
operation: "get_content";
|
|
365
365
|
content?: string | undefined;
|
|
366
366
|
}, {
|
|
367
|
-
operation: "get_content";
|
|
368
367
|
success: boolean;
|
|
369
368
|
error: string;
|
|
369
|
+
operation: "get_content";
|
|
370
370
|
content?: string | undefined;
|
|
371
371
|
}>, import("zod").ZodObject<{
|
|
372
372
|
operation: import("zod").ZodLiteral<"screenshot">;
|
|
@@ -375,15 +375,15 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
375
375
|
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
376
376
|
error: import("zod").ZodString;
|
|
377
377
|
}, "strip", import("zod").ZodTypeAny, {
|
|
378
|
-
operation: "screenshot";
|
|
379
378
|
success: boolean;
|
|
380
379
|
error: string;
|
|
380
|
+
operation: "screenshot";
|
|
381
381
|
format?: string | undefined;
|
|
382
382
|
data?: string | undefined;
|
|
383
383
|
}, {
|
|
384
|
-
operation: "screenshot";
|
|
385
384
|
success: boolean;
|
|
386
385
|
error: string;
|
|
386
|
+
operation: "screenshot";
|
|
387
387
|
format?: string | undefined;
|
|
388
388
|
data?: string | undefined;
|
|
389
389
|
}>, import("zod").ZodObject<{
|
|
@@ -391,13 +391,13 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
391
391
|
success: import("zod").ZodBoolean;
|
|
392
392
|
error: import("zod").ZodString;
|
|
393
393
|
}, "strip", import("zod").ZodTypeAny, {
|
|
394
|
-
operation: "wait";
|
|
395
394
|
success: boolean;
|
|
396
395
|
error: string;
|
|
397
|
-
}, {
|
|
398
396
|
operation: "wait";
|
|
397
|
+
}, {
|
|
399
398
|
success: boolean;
|
|
400
399
|
error: string;
|
|
400
|
+
operation: "wait";
|
|
401
401
|
}>, import("zod").ZodObject<{
|
|
402
402
|
operation: import("zod").ZodLiteral<"get_cookies">;
|
|
403
403
|
success: import("zod").ZodBoolean;
|
|
@@ -410,17 +410,17 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
410
410
|
httpOnly: import("zod").ZodBoolean;
|
|
411
411
|
secure: import("zod").ZodBoolean;
|
|
412
412
|
}, "strip", import("zod").ZodTypeAny, {
|
|
413
|
-
name: string;
|
|
414
413
|
value: string;
|
|
415
414
|
path: string;
|
|
415
|
+
name: string;
|
|
416
416
|
domain: string;
|
|
417
417
|
expires: number;
|
|
418
418
|
httpOnly: boolean;
|
|
419
419
|
secure: boolean;
|
|
420
420
|
}, {
|
|
421
|
-
name: string;
|
|
422
421
|
value: string;
|
|
423
422
|
path: string;
|
|
423
|
+
name: string;
|
|
424
424
|
domain: string;
|
|
425
425
|
expires: number;
|
|
426
426
|
httpOnly: boolean;
|
|
@@ -428,26 +428,26 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
428
428
|
}>, "many">>;
|
|
429
429
|
error: import("zod").ZodString;
|
|
430
430
|
}, "strip", import("zod").ZodTypeAny, {
|
|
431
|
-
operation: "get_cookies";
|
|
432
431
|
success: boolean;
|
|
433
432
|
error: string;
|
|
433
|
+
operation: "get_cookies";
|
|
434
434
|
cookies?: {
|
|
435
|
-
name: string;
|
|
436
435
|
value: string;
|
|
437
436
|
path: string;
|
|
437
|
+
name: string;
|
|
438
438
|
domain: string;
|
|
439
439
|
expires: number;
|
|
440
440
|
httpOnly: boolean;
|
|
441
441
|
secure: boolean;
|
|
442
442
|
}[] | undefined;
|
|
443
443
|
}, {
|
|
444
|
-
operation: "get_cookies";
|
|
445
444
|
success: boolean;
|
|
446
445
|
error: string;
|
|
446
|
+
operation: "get_cookies";
|
|
447
447
|
cookies?: {
|
|
448
|
-
name: string;
|
|
449
448
|
value: string;
|
|
450
449
|
path: string;
|
|
450
|
+
name: string;
|
|
451
451
|
domain: string;
|
|
452
452
|
expires: number;
|
|
453
453
|
httpOnly: boolean;
|
|
@@ -458,13 +458,13 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
458
458
|
success: import("zod").ZodBoolean;
|
|
459
459
|
error: import("zod").ZodString;
|
|
460
460
|
}, "strip", import("zod").ZodTypeAny, {
|
|
461
|
-
operation: "end_session";
|
|
462
461
|
success: boolean;
|
|
463
462
|
error: string;
|
|
464
|
-
}, {
|
|
465
463
|
operation: "end_session";
|
|
464
|
+
}, {
|
|
466
465
|
success: boolean;
|
|
467
466
|
error: string;
|
|
467
|
+
operation: "end_session";
|
|
468
468
|
}>]>;
|
|
469
469
|
static readonly shortDescription = "Browser automation service using BrowserBase cloud browsers";
|
|
470
470
|
static readonly longDescription = "\n BrowserBase service integration for cloud-based browser automation.\n\n Features:\n - Cloud-based browser sessions\n - Session persistence via context IDs\n - Cookie injection for authenticated sessions\n - Full page automation (click, type, evaluate)\n - Screenshot and content extraction\n - Cross-browser support\n\n Use cases:\n - Automated shopping workflows (Amazon, etc.)\n - Web scraping with authentication\n - Form automation and submission\n - Browser-based testing\n\n Security Features:\n - Sessions are isolated in BrowserBase cloud\n - Credentials are handled securely\n - Sessions are properly closed and cleaned up\n ";
|