@bubblelab/bubble-core 0.1.244 → 0.1.246
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 +84 -84
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +7 -6
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
- package/dist/bubbles/service-bubble/apify/actors/twitter-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +116 -116
- package/dist/bubbles/service-bubble/assembled/assembled.d.ts +5 -5
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/capability-pipeline.js +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
- package/dist/bubbles/service-bubble/confluence/confluence.d.ts +14 -14
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +192 -192
- package/dist/bubbles/service-bubble/followupboss.d.ts +58 -58
- package/dist/bubbles/service-bubble/github.d.ts +110 -110
- package/dist/bubbles/service-bubble/gmail.d.ts +68 -68
- package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/hubspot/hubspot.d.ts +32 -32
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +47 -47
- package/dist/bubbles/service-bubble/linear/linear.d.ts +5 -5
- package/dist/bubbles/service-bubble/notion/notion.d.ts +368 -368
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +10 -10
- package/dist/bubbles/service-bubble/s3/s3.d.ts +2 -2
- package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
- package/dist/bubbles/service-bubble/slab/slab.d.ts +18 -18
- package/dist/bubbles/service-bubble/slack/slack.d.ts +174 -174
- package/dist/bubbles/service-bubble/storage.d.ts +4 -4
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +10 -10
- package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +24 -24
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/app-rankings-tool.d.ts +8 -8
- 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 +56 -56
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- 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/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +54 -54
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -20,7 +20,6 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
20
20
|
name: string | null;
|
|
21
21
|
url: string | null;
|
|
22
22
|
id: string | null;
|
|
23
|
-
createdAt: string | null;
|
|
24
23
|
following: number | null;
|
|
25
24
|
userName: string | null;
|
|
26
25
|
isVerified: boolean | null;
|
|
@@ -28,12 +27,12 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
28
27
|
profilePicture: string | null;
|
|
29
28
|
followers: number | null;
|
|
30
29
|
tweetsCount: number | null;
|
|
30
|
+
createdAt: string | null;
|
|
31
31
|
}, {
|
|
32
32
|
description: string | null;
|
|
33
33
|
name: string | null;
|
|
34
34
|
url: string | null;
|
|
35
35
|
id: string | null;
|
|
36
|
-
createdAt: string | null;
|
|
37
36
|
following: number | null;
|
|
38
37
|
userName: string | null;
|
|
39
38
|
isVerified: boolean | null;
|
|
@@ -41,6 +40,7 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
41
40
|
profilePicture: string | null;
|
|
42
41
|
followers: number | null;
|
|
43
42
|
tweetsCount: number | null;
|
|
43
|
+
createdAt: string | null;
|
|
44
44
|
}>;
|
|
45
45
|
declare const TwitterTweetSchema: z.ZodObject<{
|
|
46
46
|
id: z.ZodNullable<z.ZodString>;
|
|
@@ -64,7 +64,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
64
64
|
name: string | null;
|
|
65
65
|
url: string | null;
|
|
66
66
|
id: string | null;
|
|
67
|
-
createdAt: string | null;
|
|
68
67
|
following: number | null;
|
|
69
68
|
userName: string | null;
|
|
70
69
|
isVerified: boolean | null;
|
|
@@ -72,12 +71,12 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
72
71
|
profilePicture: string | null;
|
|
73
72
|
followers: number | null;
|
|
74
73
|
tweetsCount: number | null;
|
|
74
|
+
createdAt: string | null;
|
|
75
75
|
}, {
|
|
76
76
|
description: string | null;
|
|
77
77
|
name: string | null;
|
|
78
78
|
url: string | null;
|
|
79
79
|
id: string | null;
|
|
80
|
-
createdAt: string | null;
|
|
81
80
|
following: number | null;
|
|
82
81
|
userName: string | null;
|
|
83
82
|
isVerified: boolean | null;
|
|
@@ -85,6 +84,7 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
85
84
|
profilePicture: string | null;
|
|
86
85
|
followers: number | null;
|
|
87
86
|
tweetsCount: number | null;
|
|
87
|
+
createdAt: string | null;
|
|
88
88
|
}>>;
|
|
89
89
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
90
90
|
stats: z.ZodNullable<z.ZodObject<{
|
|
@@ -149,7 +149,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
149
149
|
url: string | null;
|
|
150
150
|
id: string | null;
|
|
151
151
|
text: string | null;
|
|
152
|
-
createdAt: string | null;
|
|
153
152
|
entities: {
|
|
154
153
|
hashtags: string[] | null;
|
|
155
154
|
mentions: string[] | null;
|
|
@@ -160,7 +159,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
160
159
|
name: string | null;
|
|
161
160
|
url: string | null;
|
|
162
161
|
id: string | null;
|
|
163
|
-
createdAt: string | null;
|
|
164
162
|
following: number | null;
|
|
165
163
|
userName: string | null;
|
|
166
164
|
isVerified: boolean | null;
|
|
@@ -168,6 +166,7 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
168
166
|
profilePicture: string | null;
|
|
169
167
|
followers: number | null;
|
|
170
168
|
tweetsCount: number | null;
|
|
169
|
+
createdAt: string | null;
|
|
171
170
|
} | null;
|
|
172
171
|
stats: {
|
|
173
172
|
viewCount: number | null;
|
|
@@ -184,6 +183,7 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
184
183
|
width: number | null;
|
|
185
184
|
height: number | null;
|
|
186
185
|
}[] | null;
|
|
186
|
+
createdAt: string | null;
|
|
187
187
|
lang: string | null;
|
|
188
188
|
isRetweet: boolean | null;
|
|
189
189
|
isQuote: boolean | null;
|
|
@@ -192,7 +192,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
192
192
|
url: string | null;
|
|
193
193
|
id: string | null;
|
|
194
194
|
text: string | null;
|
|
195
|
-
createdAt: string | null;
|
|
196
195
|
entities: {
|
|
197
196
|
hashtags: string[] | null;
|
|
198
197
|
mentions: string[] | null;
|
|
@@ -203,7 +202,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
203
202
|
name: string | null;
|
|
204
203
|
url: string | null;
|
|
205
204
|
id: string | null;
|
|
206
|
-
createdAt: string | null;
|
|
207
205
|
following: number | null;
|
|
208
206
|
userName: string | null;
|
|
209
207
|
isVerified: boolean | null;
|
|
@@ -211,6 +209,7 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
211
209
|
profilePicture: string | null;
|
|
212
210
|
followers: number | null;
|
|
213
211
|
tweetsCount: number | null;
|
|
212
|
+
createdAt: string | null;
|
|
214
213
|
} | null;
|
|
215
214
|
stats: {
|
|
216
215
|
viewCount: number | null;
|
|
@@ -227,6 +226,7 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
227
226
|
width: number | null;
|
|
228
227
|
height: number | null;
|
|
229
228
|
}[] | null;
|
|
229
|
+
createdAt: string | null;
|
|
230
230
|
lang: string | null;
|
|
231
231
|
isRetweet: boolean | null;
|
|
232
232
|
isQuote: boolean | null;
|
|
@@ -284,7 +284,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
284
284
|
name: string | null;
|
|
285
285
|
url: string | null;
|
|
286
286
|
id: string | null;
|
|
287
|
-
createdAt: string | null;
|
|
288
287
|
following: number | null;
|
|
289
288
|
userName: string | null;
|
|
290
289
|
isVerified: boolean | null;
|
|
@@ -292,12 +291,12 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
292
291
|
profilePicture: string | null;
|
|
293
292
|
followers: number | null;
|
|
294
293
|
tweetsCount: number | null;
|
|
294
|
+
createdAt: string | null;
|
|
295
295
|
}, {
|
|
296
296
|
description: string | null;
|
|
297
297
|
name: string | null;
|
|
298
298
|
url: string | null;
|
|
299
299
|
id: string | null;
|
|
300
|
-
createdAt: string | null;
|
|
301
300
|
following: number | null;
|
|
302
301
|
userName: string | null;
|
|
303
302
|
isVerified: boolean | null;
|
|
@@ -305,6 +304,7 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
305
304
|
profilePicture: string | null;
|
|
306
305
|
followers: number | null;
|
|
307
306
|
tweetsCount: number | null;
|
|
307
|
+
createdAt: string | null;
|
|
308
308
|
}>>;
|
|
309
309
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
310
310
|
stats: z.ZodNullable<z.ZodObject<{
|
|
@@ -369,7 +369,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
369
369
|
url: string | null;
|
|
370
370
|
id: string | null;
|
|
371
371
|
text: string | null;
|
|
372
|
-
createdAt: string | null;
|
|
373
372
|
entities: {
|
|
374
373
|
hashtags: string[] | null;
|
|
375
374
|
mentions: string[] | null;
|
|
@@ -380,7 +379,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
380
379
|
name: string | null;
|
|
381
380
|
url: string | null;
|
|
382
381
|
id: string | null;
|
|
383
|
-
createdAt: string | null;
|
|
384
382
|
following: number | null;
|
|
385
383
|
userName: string | null;
|
|
386
384
|
isVerified: boolean | null;
|
|
@@ -388,6 +386,7 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
388
386
|
profilePicture: string | null;
|
|
389
387
|
followers: number | null;
|
|
390
388
|
tweetsCount: number | null;
|
|
389
|
+
createdAt: string | null;
|
|
391
390
|
} | null;
|
|
392
391
|
stats: {
|
|
393
392
|
viewCount: number | null;
|
|
@@ -404,6 +403,7 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
404
403
|
width: number | null;
|
|
405
404
|
height: number | null;
|
|
406
405
|
}[] | null;
|
|
406
|
+
createdAt: string | null;
|
|
407
407
|
lang: string | null;
|
|
408
408
|
isRetweet: boolean | null;
|
|
409
409
|
isQuote: boolean | null;
|
|
@@ -412,7 +412,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
412
412
|
url: string | null;
|
|
413
413
|
id: string | null;
|
|
414
414
|
text: string | null;
|
|
415
|
-
createdAt: string | null;
|
|
416
415
|
entities: {
|
|
417
416
|
hashtags: string[] | null;
|
|
418
417
|
mentions: string[] | null;
|
|
@@ -423,7 +422,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
423
422
|
name: string | null;
|
|
424
423
|
url: string | null;
|
|
425
424
|
id: string | null;
|
|
426
|
-
createdAt: string | null;
|
|
427
425
|
following: number | null;
|
|
428
426
|
userName: string | null;
|
|
429
427
|
isVerified: boolean | null;
|
|
@@ -431,6 +429,7 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
431
429
|
profilePicture: string | null;
|
|
432
430
|
followers: number | null;
|
|
433
431
|
tweetsCount: number | null;
|
|
432
|
+
createdAt: string | null;
|
|
434
433
|
} | null;
|
|
435
434
|
stats: {
|
|
436
435
|
viewCount: number | null;
|
|
@@ -447,6 +446,7 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
447
446
|
width: number | null;
|
|
448
447
|
height: number | null;
|
|
449
448
|
}[] | null;
|
|
449
|
+
createdAt: string | null;
|
|
450
450
|
lang: string | null;
|
|
451
451
|
isRetweet: boolean | null;
|
|
452
452
|
isQuote: boolean | null;
|
|
@@ -463,7 +463,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
463
463
|
url: string | null;
|
|
464
464
|
id: string | null;
|
|
465
465
|
text: string | null;
|
|
466
|
-
createdAt: string | null;
|
|
467
466
|
entities: {
|
|
468
467
|
hashtags: string[] | null;
|
|
469
468
|
mentions: string[] | null;
|
|
@@ -474,7 +473,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
474
473
|
name: string | null;
|
|
475
474
|
url: string | null;
|
|
476
475
|
id: string | null;
|
|
477
|
-
createdAt: string | null;
|
|
478
476
|
following: number | null;
|
|
479
477
|
userName: string | null;
|
|
480
478
|
isVerified: boolean | null;
|
|
@@ -482,6 +480,7 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
482
480
|
profilePicture: string | null;
|
|
483
481
|
followers: number | null;
|
|
484
482
|
tweetsCount: number | null;
|
|
483
|
+
createdAt: string | null;
|
|
485
484
|
} | null;
|
|
486
485
|
stats: {
|
|
487
486
|
viewCount: number | null;
|
|
@@ -498,6 +497,7 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
498
497
|
width: number | null;
|
|
499
498
|
height: number | null;
|
|
500
499
|
}[] | null;
|
|
500
|
+
createdAt: string | null;
|
|
501
501
|
lang: string | null;
|
|
502
502
|
isRetweet: boolean | null;
|
|
503
503
|
isQuote: boolean | null;
|
|
@@ -512,7 +512,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
512
512
|
url: string | null;
|
|
513
513
|
id: string | null;
|
|
514
514
|
text: string | null;
|
|
515
|
-
createdAt: string | null;
|
|
516
515
|
entities: {
|
|
517
516
|
hashtags: string[] | null;
|
|
518
517
|
mentions: string[] | null;
|
|
@@ -523,7 +522,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
523
522
|
name: string | null;
|
|
524
523
|
url: string | null;
|
|
525
524
|
id: string | null;
|
|
526
|
-
createdAt: string | null;
|
|
527
525
|
following: number | null;
|
|
528
526
|
userName: string | null;
|
|
529
527
|
isVerified: boolean | null;
|
|
@@ -531,6 +529,7 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
531
529
|
profilePicture: string | null;
|
|
532
530
|
followers: number | null;
|
|
533
531
|
tweetsCount: number | null;
|
|
532
|
+
createdAt: string | null;
|
|
534
533
|
} | null;
|
|
535
534
|
stats: {
|
|
536
535
|
viewCount: number | null;
|
|
@@ -547,6 +546,7 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
547
546
|
width: number | null;
|
|
548
547
|
height: number | null;
|
|
549
548
|
}[] | null;
|
|
549
|
+
createdAt: string | null;
|
|
550
550
|
lang: string | null;
|
|
551
551
|
isRetweet: boolean | null;
|
|
552
552
|
isQuote: boolean | null;
|
|
@@ -630,7 +630,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
630
630
|
name: string | null;
|
|
631
631
|
url: string | null;
|
|
632
632
|
id: string | null;
|
|
633
|
-
createdAt: string | null;
|
|
634
633
|
following: number | null;
|
|
635
634
|
userName: string | null;
|
|
636
635
|
isVerified: boolean | null;
|
|
@@ -638,12 +637,12 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
638
637
|
profilePicture: string | null;
|
|
639
638
|
followers: number | null;
|
|
640
639
|
tweetsCount: number | null;
|
|
640
|
+
createdAt: string | null;
|
|
641
641
|
}, {
|
|
642
642
|
description: string | null;
|
|
643
643
|
name: string | null;
|
|
644
644
|
url: string | null;
|
|
645
645
|
id: string | null;
|
|
646
|
-
createdAt: string | null;
|
|
647
646
|
following: number | null;
|
|
648
647
|
userName: string | null;
|
|
649
648
|
isVerified: boolean | null;
|
|
@@ -651,6 +650,7 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
651
650
|
profilePicture: string | null;
|
|
652
651
|
followers: number | null;
|
|
653
652
|
tweetsCount: number | null;
|
|
653
|
+
createdAt: string | null;
|
|
654
654
|
}>>;
|
|
655
655
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
656
656
|
stats: z.ZodNullable<z.ZodObject<{
|
|
@@ -715,7 +715,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
715
715
|
url: string | null;
|
|
716
716
|
id: string | null;
|
|
717
717
|
text: string | null;
|
|
718
|
-
createdAt: string | null;
|
|
719
718
|
entities: {
|
|
720
719
|
hashtags: string[] | null;
|
|
721
720
|
mentions: string[] | null;
|
|
@@ -726,7 +725,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
726
725
|
name: string | null;
|
|
727
726
|
url: string | null;
|
|
728
727
|
id: string | null;
|
|
729
|
-
createdAt: string | null;
|
|
730
728
|
following: number | null;
|
|
731
729
|
userName: string | null;
|
|
732
730
|
isVerified: boolean | null;
|
|
@@ -734,6 +732,7 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
734
732
|
profilePicture: string | null;
|
|
735
733
|
followers: number | null;
|
|
736
734
|
tweetsCount: number | null;
|
|
735
|
+
createdAt: string | null;
|
|
737
736
|
} | null;
|
|
738
737
|
stats: {
|
|
739
738
|
viewCount: number | null;
|
|
@@ -750,6 +749,7 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
750
749
|
width: number | null;
|
|
751
750
|
height: number | null;
|
|
752
751
|
}[] | null;
|
|
752
|
+
createdAt: string | null;
|
|
753
753
|
lang: string | null;
|
|
754
754
|
isRetweet: boolean | null;
|
|
755
755
|
isQuote: boolean | null;
|
|
@@ -758,7 +758,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
758
758
|
url: string | null;
|
|
759
759
|
id: string | null;
|
|
760
760
|
text: string | null;
|
|
761
|
-
createdAt: string | null;
|
|
762
761
|
entities: {
|
|
763
762
|
hashtags: string[] | null;
|
|
764
763
|
mentions: string[] | null;
|
|
@@ -769,7 +768,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
769
768
|
name: string | null;
|
|
770
769
|
url: string | null;
|
|
771
770
|
id: string | null;
|
|
772
|
-
createdAt: string | null;
|
|
773
771
|
following: number | null;
|
|
774
772
|
userName: string | null;
|
|
775
773
|
isVerified: boolean | null;
|
|
@@ -777,6 +775,7 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
777
775
|
profilePicture: string | null;
|
|
778
776
|
followers: number | null;
|
|
779
777
|
tweetsCount: number | null;
|
|
778
|
+
createdAt: string | null;
|
|
780
779
|
} | null;
|
|
781
780
|
stats: {
|
|
782
781
|
viewCount: number | null;
|
|
@@ -793,6 +792,7 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
793
792
|
width: number | null;
|
|
794
793
|
height: number | null;
|
|
795
794
|
}[] | null;
|
|
795
|
+
createdAt: string | null;
|
|
796
796
|
lang: string | null;
|
|
797
797
|
isRetweet: boolean | null;
|
|
798
798
|
isQuote: boolean | null;
|
|
@@ -809,7 +809,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
809
809
|
url: string | null;
|
|
810
810
|
id: string | null;
|
|
811
811
|
text: string | null;
|
|
812
|
-
createdAt: string | null;
|
|
813
812
|
entities: {
|
|
814
813
|
hashtags: string[] | null;
|
|
815
814
|
mentions: string[] | null;
|
|
@@ -820,7 +819,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
820
819
|
name: string | null;
|
|
821
820
|
url: string | null;
|
|
822
821
|
id: string | null;
|
|
823
|
-
createdAt: string | null;
|
|
824
822
|
following: number | null;
|
|
825
823
|
userName: string | null;
|
|
826
824
|
isVerified: boolean | null;
|
|
@@ -828,6 +826,7 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
828
826
|
profilePicture: string | null;
|
|
829
827
|
followers: number | null;
|
|
830
828
|
tweetsCount: number | null;
|
|
829
|
+
createdAt: string | null;
|
|
831
830
|
} | null;
|
|
832
831
|
stats: {
|
|
833
832
|
viewCount: number | null;
|
|
@@ -844,6 +843,7 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
844
843
|
width: number | null;
|
|
845
844
|
height: number | null;
|
|
846
845
|
}[] | null;
|
|
846
|
+
createdAt: string | null;
|
|
847
847
|
lang: string | null;
|
|
848
848
|
isRetweet: boolean | null;
|
|
849
849
|
isQuote: boolean | null;
|
|
@@ -858,7 +858,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
858
858
|
url: string | null;
|
|
859
859
|
id: string | null;
|
|
860
860
|
text: string | null;
|
|
861
|
-
createdAt: string | null;
|
|
862
861
|
entities: {
|
|
863
862
|
hashtags: string[] | null;
|
|
864
863
|
mentions: string[] | null;
|
|
@@ -869,7 +868,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
869
868
|
name: string | null;
|
|
870
869
|
url: string | null;
|
|
871
870
|
id: string | null;
|
|
872
|
-
createdAt: string | null;
|
|
873
871
|
following: number | null;
|
|
874
872
|
userName: string | null;
|
|
875
873
|
isVerified: boolean | null;
|
|
@@ -877,6 +875,7 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
877
875
|
profilePicture: string | null;
|
|
878
876
|
followers: number | null;
|
|
879
877
|
tweetsCount: number | null;
|
|
878
|
+
createdAt: string | null;
|
|
880
879
|
} | null;
|
|
881
880
|
stats: {
|
|
882
881
|
viewCount: number | null;
|
|
@@ -893,6 +892,7 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
893
892
|
width: number | null;
|
|
894
893
|
height: number | null;
|
|
895
894
|
}[] | null;
|
|
895
|
+
createdAt: string | null;
|
|
896
896
|
lang: string | null;
|
|
897
897
|
isRetweet: boolean | null;
|
|
898
898
|
isQuote: boolean | null;
|
|
@@ -69,9 +69,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
69
69
|
maxPagesReached?: boolean | undefined;
|
|
70
70
|
}>>;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
|
-
url: string;
|
|
73
72
|
error: string;
|
|
74
73
|
success: boolean;
|
|
74
|
+
url: string;
|
|
75
75
|
pages: {
|
|
76
76
|
content: string;
|
|
77
77
|
url: string;
|
|
@@ -86,9 +86,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
86
86
|
maxPagesReached?: boolean | undefined;
|
|
87
87
|
} | undefined;
|
|
88
88
|
}, {
|
|
89
|
-
url: string;
|
|
90
89
|
error: string;
|
|
91
90
|
success: boolean;
|
|
91
|
+
url: string;
|
|
92
92
|
pages: {
|
|
93
93
|
content: string;
|
|
94
94
|
url: string;
|
|
@@ -175,9 +175,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
175
175
|
maxPagesReached?: boolean | undefined;
|
|
176
176
|
}>>;
|
|
177
177
|
}, "strip", z.ZodTypeAny, {
|
|
178
|
-
url: string;
|
|
179
178
|
error: string;
|
|
180
179
|
success: boolean;
|
|
180
|
+
url: string;
|
|
181
181
|
pages: {
|
|
182
182
|
content: string;
|
|
183
183
|
url: string;
|
|
@@ -192,9 +192,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
192
192
|
maxPagesReached?: boolean | undefined;
|
|
193
193
|
} | undefined;
|
|
194
194
|
}, {
|
|
195
|
-
url: string;
|
|
196
195
|
error: string;
|
|
197
196
|
success: boolean;
|
|
197
|
+
url: string;
|
|
198
198
|
pages: {
|
|
199
199
|
content: string;
|
|
200
200
|
url: string;
|
|
@@ -40,9 +40,9 @@ declare const WebExtractToolResultSchema: z.ZodObject<{
|
|
|
40
40
|
pageTitle?: string | undefined;
|
|
41
41
|
}>>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
-
url: string;
|
|
44
43
|
error: string;
|
|
45
44
|
success: boolean;
|
|
45
|
+
url: string;
|
|
46
46
|
metadata?: {
|
|
47
47
|
statusCode?: number | undefined;
|
|
48
48
|
extractionTime?: number | undefined;
|
|
@@ -50,9 +50,9 @@ declare const WebExtractToolResultSchema: z.ZodObject<{
|
|
|
50
50
|
} | undefined;
|
|
51
51
|
extractedData?: any;
|
|
52
52
|
}, {
|
|
53
|
-
url: string;
|
|
54
53
|
error: string;
|
|
55
54
|
success: boolean;
|
|
55
|
+
url: string;
|
|
56
56
|
metadata?: {
|
|
57
57
|
statusCode?: number | undefined;
|
|
58
58
|
extractionTime?: number | undefined;
|
|
@@ -103,9 +103,9 @@ export declare class WebExtractTool extends ToolBubble<WebExtractToolParams, Web
|
|
|
103
103
|
pageTitle?: string | undefined;
|
|
104
104
|
}>>;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
|
-
url: string;
|
|
107
106
|
error: string;
|
|
108
107
|
success: boolean;
|
|
108
|
+
url: string;
|
|
109
109
|
metadata?: {
|
|
110
110
|
statusCode?: number | undefined;
|
|
111
111
|
extractionTime?: number | undefined;
|
|
@@ -113,9 +113,9 @@ export declare class WebExtractTool extends ToolBubble<WebExtractToolParams, Web
|
|
|
113
113
|
} | undefined;
|
|
114
114
|
extractedData?: any;
|
|
115
115
|
}, {
|
|
116
|
-
url: string;
|
|
117
116
|
error: string;
|
|
118
117
|
success: boolean;
|
|
118
|
+
url: string;
|
|
119
119
|
metadata?: {
|
|
120
120
|
statusCode?: number | undefined;
|
|
121
121
|
extractionTime?: number | undefined;
|
|
@@ -39,10 +39,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
format: string;
|
|
41
41
|
title: string;
|
|
42
|
-
content: string;
|
|
43
|
-
url: string;
|
|
44
42
|
error: string;
|
|
45
43
|
success: boolean;
|
|
44
|
+
content: string;
|
|
45
|
+
url: string;
|
|
46
46
|
creditsUsed: number;
|
|
47
47
|
metadata?: {
|
|
48
48
|
statusCode?: number | undefined;
|
|
@@ -51,10 +51,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
51
51
|
}, {
|
|
52
52
|
format: string;
|
|
53
53
|
title: string;
|
|
54
|
-
content: string;
|
|
55
|
-
url: string;
|
|
56
54
|
error: string;
|
|
57
55
|
success: boolean;
|
|
56
|
+
content: string;
|
|
57
|
+
url: string;
|
|
58
58
|
creditsUsed: number;
|
|
59
59
|
metadata?: {
|
|
60
60
|
statusCode?: number | undefined;
|
|
@@ -103,10 +103,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
104
|
format: string;
|
|
105
105
|
title: string;
|
|
106
|
-
content: string;
|
|
107
|
-
url: string;
|
|
108
106
|
error: string;
|
|
109
107
|
success: boolean;
|
|
108
|
+
content: string;
|
|
109
|
+
url: string;
|
|
110
110
|
creditsUsed: number;
|
|
111
111
|
metadata?: {
|
|
112
112
|
statusCode?: number | undefined;
|
|
@@ -115,10 +115,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
115
115
|
}, {
|
|
116
116
|
format: string;
|
|
117
117
|
title: string;
|
|
118
|
-
content: string;
|
|
119
|
-
url: string;
|
|
120
118
|
error: string;
|
|
121
119
|
success: boolean;
|
|
120
|
+
content: string;
|
|
121
|
+
url: string;
|
|
122
122
|
creditsUsed: number;
|
|
123
123
|
metadata?: {
|
|
124
124
|
statusCode?: number | undefined;
|
|
@@ -9,8 +9,8 @@ declare const WebSearchToolParamsSchema: z.ZodObject<{
|
|
|
9
9
|
location: z.ZodOptional<z.ZodString>;
|
|
10
10
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
limit: number;
|
|
13
12
|
query: string;
|
|
13
|
+
limit: number;
|
|
14
14
|
categories: ("github" | "pdf" | "research")[];
|
|
15
15
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
16
16
|
location?: string | undefined;
|
|
@@ -44,24 +44,24 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
45
|
error: string;
|
|
46
46
|
success: boolean;
|
|
47
|
+
query: string;
|
|
47
48
|
results: {
|
|
48
49
|
title: string;
|
|
49
50
|
content: string;
|
|
50
51
|
url: string;
|
|
51
52
|
}[];
|
|
52
|
-
query: string;
|
|
53
53
|
creditsUsed: number;
|
|
54
54
|
totalResults: number;
|
|
55
55
|
searchEngine: string;
|
|
56
56
|
}, {
|
|
57
57
|
error: string;
|
|
58
58
|
success: boolean;
|
|
59
|
+
query: string;
|
|
59
60
|
results: {
|
|
60
61
|
title: string;
|
|
61
62
|
content: string;
|
|
62
63
|
url: string;
|
|
63
64
|
}[];
|
|
64
|
-
query: string;
|
|
65
65
|
creditsUsed: number;
|
|
66
66
|
totalResults: number;
|
|
67
67
|
searchEngine: string;
|
|
@@ -78,8 +78,8 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
78
78
|
location: z.ZodOptional<z.ZodString>;
|
|
79
79
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
limit: number;
|
|
82
81
|
query: string;
|
|
82
|
+
limit: number;
|
|
83
83
|
categories: ("github" | "pdf" | "research")[];
|
|
84
84
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
85
|
location?: string | undefined;
|
|
@@ -113,24 +113,24 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
113
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
114
|
error: string;
|
|
115
115
|
success: boolean;
|
|
116
|
+
query: string;
|
|
116
117
|
results: {
|
|
117
118
|
title: string;
|
|
118
119
|
content: string;
|
|
119
120
|
url: string;
|
|
120
121
|
}[];
|
|
121
|
-
query: string;
|
|
122
122
|
creditsUsed: number;
|
|
123
123
|
totalResults: number;
|
|
124
124
|
searchEngine: string;
|
|
125
125
|
}, {
|
|
126
126
|
error: string;
|
|
127
127
|
success: boolean;
|
|
128
|
+
query: string;
|
|
128
129
|
results: {
|
|
129
130
|
title: string;
|
|
130
131
|
content: string;
|
|
131
132
|
url: string;
|
|
132
133
|
}[];
|
|
133
|
-
query: string;
|
|
134
134
|
creditsUsed: number;
|
|
135
135
|
totalResults: number;
|
|
136
136
|
searchEngine: string;
|
|
@@ -222,9 +222,9 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
|
|
|
222
222
|
success: z.ZodBoolean;
|
|
223
223
|
error: z.ZodString;
|
|
224
224
|
}, "strip", z.ZodTypeAny, {
|
|
225
|
-
url: string | null;
|
|
226
225
|
error: string;
|
|
227
226
|
success: boolean;
|
|
227
|
+
url: string | null;
|
|
228
228
|
batch: string | null;
|
|
229
229
|
people: {
|
|
230
230
|
title: string | null;
|
|
@@ -254,9 +254,9 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
|
|
|
254
254
|
totalPeople: number;
|
|
255
255
|
totalCompanies: number;
|
|
256
256
|
}, {
|
|
257
|
-
url: string | null;
|
|
258
257
|
error: string;
|
|
259
258
|
success: boolean;
|
|
259
|
+
url: string | null;
|
|
260
260
|
batch: string | null;
|
|
261
261
|
people: {
|
|
262
262
|
title: string | null;
|
|
@@ -420,9 +420,9 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
|
|
|
420
420
|
success: z.ZodBoolean;
|
|
421
421
|
error: z.ZodString;
|
|
422
422
|
}, "strip", z.ZodTypeAny, {
|
|
423
|
-
url: string | null;
|
|
424
423
|
error: string;
|
|
425
424
|
success: boolean;
|
|
425
|
+
url: string | null;
|
|
426
426
|
batch: string | null;
|
|
427
427
|
people: {
|
|
428
428
|
title: string | null;
|
|
@@ -452,9 +452,9 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
|
|
|
452
452
|
totalPeople: number;
|
|
453
453
|
totalCompanies: number;
|
|
454
454
|
}, {
|
|
455
|
-
url: string | null;
|
|
456
455
|
error: string;
|
|
457
456
|
success: boolean;
|
|
457
|
+
url: string | null;
|
|
458
458
|
batch: string | null;
|
|
459
459
|
people: {
|
|
460
460
|
title: string | null;
|