@bubblelab/bubble-core 0.1.251 → 0.1.253
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.js +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +36 -36
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +150 -150
- 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/confluence/confluence.d.ts +2 -2
- 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 +180 -180
- package/dist/bubbles/service-bubble/followupboss.d.ts +2 -2
- package/dist/bubbles/service-bubble/github.d.ts +120 -120
- 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 +6 -6
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +67 -48
- package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.js +77 -13
- package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
- package/dist/bubbles/service-bubble/linear/linear.d.ts +1 -1
- package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
- package/dist/bubbles/service-bubble/notion/property-schemas.d.ts +8 -8
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.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 +122 -122
- package/dist/bubbles/service-bubble/storage.d.ts +8 -8
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +60 -60
- package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +103 -103
- 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 +158 -158
- 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/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +32 -32
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +50 -50
- 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 +2 -2
- 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/pdf-form-operations.workflow.d.ts +44 -44
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +3 -3
- package/package.json +2 -2
|
@@ -100,10 +100,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
100
100
|
}, "strip", z.ZodTypeAny, {
|
|
101
101
|
id: string | null;
|
|
102
102
|
text: string | null;
|
|
103
|
-
hashtags: {
|
|
104
|
-
name: string | null;
|
|
105
|
-
}[] | null;
|
|
106
|
-
videoUrl: string | null;
|
|
107
103
|
author: {
|
|
108
104
|
id: string | null;
|
|
109
105
|
uniqueId: string | null;
|
|
@@ -116,6 +112,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
116
112
|
videoCount: number | null;
|
|
117
113
|
heartCount: number | null;
|
|
118
114
|
} | null;
|
|
115
|
+
hashtags: {
|
|
116
|
+
name: string | null;
|
|
117
|
+
}[] | null;
|
|
118
|
+
videoUrl: string | null;
|
|
119
119
|
stats: {
|
|
120
120
|
collectCount: number | null;
|
|
121
121
|
commentCount: number | null;
|
|
@@ -130,10 +130,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
130
130
|
}, {
|
|
131
131
|
id: string | null;
|
|
132
132
|
text: string | null;
|
|
133
|
-
hashtags: {
|
|
134
|
-
name: string | null;
|
|
135
|
-
}[] | null;
|
|
136
|
-
videoUrl: string | null;
|
|
137
133
|
author: {
|
|
138
134
|
id: string | null;
|
|
139
135
|
uniqueId: string | null;
|
|
@@ -146,6 +142,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
146
142
|
videoCount: number | null;
|
|
147
143
|
heartCount: number | null;
|
|
148
144
|
} | null;
|
|
145
|
+
hashtags: {
|
|
146
|
+
name: string | null;
|
|
147
|
+
}[] | null;
|
|
148
|
+
videoUrl: string | null;
|
|
149
149
|
stats: {
|
|
150
150
|
collectCount: number | null;
|
|
151
151
|
commentCount: number | null;
|
|
@@ -168,10 +168,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
168
168
|
videos: {
|
|
169
169
|
id: string | null;
|
|
170
170
|
text: string | null;
|
|
171
|
-
hashtags: {
|
|
172
|
-
name: string | null;
|
|
173
|
-
}[] | null;
|
|
174
|
-
videoUrl: string | null;
|
|
175
171
|
author: {
|
|
176
172
|
id: string | null;
|
|
177
173
|
uniqueId: string | null;
|
|
@@ -184,6 +180,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
184
180
|
videoCount: number | null;
|
|
185
181
|
heartCount: number | null;
|
|
186
182
|
} | null;
|
|
183
|
+
hashtags: {
|
|
184
|
+
name: string | null;
|
|
185
|
+
}[] | null;
|
|
186
|
+
videoUrl: string | null;
|
|
187
187
|
stats: {
|
|
188
188
|
collectCount: number | null;
|
|
189
189
|
commentCount: number | null;
|
|
@@ -204,10 +204,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
204
204
|
videos: {
|
|
205
205
|
id: string | null;
|
|
206
206
|
text: string | null;
|
|
207
|
-
hashtags: {
|
|
208
|
-
name: string | null;
|
|
209
|
-
}[] | null;
|
|
210
|
-
videoUrl: string | null;
|
|
211
207
|
author: {
|
|
212
208
|
id: string | null;
|
|
213
209
|
uniqueId: string | null;
|
|
@@ -220,6 +216,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
|
|
|
220
216
|
videoCount: number | null;
|
|
221
217
|
heartCount: number | null;
|
|
222
218
|
} | null;
|
|
219
|
+
hashtags: {
|
|
220
|
+
name: string | null;
|
|
221
|
+
}[] | null;
|
|
222
|
+
videoUrl: string | null;
|
|
223
223
|
stats: {
|
|
224
224
|
collectCount: number | null;
|
|
225
225
|
commentCount: number | null;
|
|
@@ -337,10 +337,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
337
337
|
}, "strip", z.ZodTypeAny, {
|
|
338
338
|
id: string | null;
|
|
339
339
|
text: string | null;
|
|
340
|
-
hashtags: {
|
|
341
|
-
name: string | null;
|
|
342
|
-
}[] | null;
|
|
343
|
-
videoUrl: string | null;
|
|
344
340
|
author: {
|
|
345
341
|
id: string | null;
|
|
346
342
|
uniqueId: string | null;
|
|
@@ -353,6 +349,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
353
349
|
videoCount: number | null;
|
|
354
350
|
heartCount: number | null;
|
|
355
351
|
} | null;
|
|
352
|
+
hashtags: {
|
|
353
|
+
name: string | null;
|
|
354
|
+
}[] | null;
|
|
355
|
+
videoUrl: string | null;
|
|
356
356
|
stats: {
|
|
357
357
|
collectCount: number | null;
|
|
358
358
|
commentCount: number | null;
|
|
@@ -367,10 +367,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
367
367
|
}, {
|
|
368
368
|
id: string | null;
|
|
369
369
|
text: string | null;
|
|
370
|
-
hashtags: {
|
|
371
|
-
name: string | null;
|
|
372
|
-
}[] | null;
|
|
373
|
-
videoUrl: string | null;
|
|
374
370
|
author: {
|
|
375
371
|
id: string | null;
|
|
376
372
|
uniqueId: string | null;
|
|
@@ -383,6 +379,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
383
379
|
videoCount: number | null;
|
|
384
380
|
heartCount: number | null;
|
|
385
381
|
} | null;
|
|
382
|
+
hashtags: {
|
|
383
|
+
name: string | null;
|
|
384
|
+
}[] | null;
|
|
385
|
+
videoUrl: string | null;
|
|
386
386
|
stats: {
|
|
387
387
|
collectCount: number | null;
|
|
388
388
|
commentCount: number | null;
|
|
@@ -405,10 +405,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
405
405
|
videos: {
|
|
406
406
|
id: string | null;
|
|
407
407
|
text: string | null;
|
|
408
|
-
hashtags: {
|
|
409
|
-
name: string | null;
|
|
410
|
-
}[] | null;
|
|
411
|
-
videoUrl: string | null;
|
|
412
408
|
author: {
|
|
413
409
|
id: string | null;
|
|
414
410
|
uniqueId: string | null;
|
|
@@ -421,6 +417,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
421
417
|
videoCount: number | null;
|
|
422
418
|
heartCount: number | null;
|
|
423
419
|
} | null;
|
|
420
|
+
hashtags: {
|
|
421
|
+
name: string | null;
|
|
422
|
+
}[] | null;
|
|
423
|
+
videoUrl: string | null;
|
|
424
424
|
stats: {
|
|
425
425
|
collectCount: number | null;
|
|
426
426
|
commentCount: number | null;
|
|
@@ -441,10 +441,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
441
441
|
videos: {
|
|
442
442
|
id: string | null;
|
|
443
443
|
text: string | null;
|
|
444
|
-
hashtags: {
|
|
445
|
-
name: string | null;
|
|
446
|
-
}[] | null;
|
|
447
|
-
videoUrl: string | null;
|
|
448
444
|
author: {
|
|
449
445
|
id: string | null;
|
|
450
446
|
uniqueId: string | null;
|
|
@@ -457,6 +453,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
|
|
|
457
453
|
videoCount: number | null;
|
|
458
454
|
heartCount: number | null;
|
|
459
455
|
} | null;
|
|
456
|
+
hashtags: {
|
|
457
|
+
name: string | null;
|
|
458
|
+
}[] | null;
|
|
459
|
+
videoUrl: string | null;
|
|
460
460
|
stats: {
|
|
461
461
|
collectCount: number | null;
|
|
462
462
|
commentCount: number | null;
|
|
@@ -149,11 +149,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
149
149
|
url: string | null;
|
|
150
150
|
id: string | null;
|
|
151
151
|
text: string | null;
|
|
152
|
-
entities: {
|
|
153
|
-
hashtags: string[] | null;
|
|
154
|
-
mentions: string[] | null;
|
|
155
|
-
urls: string[] | null;
|
|
156
|
-
} | null;
|
|
157
152
|
author: {
|
|
158
153
|
description: string | null;
|
|
159
154
|
name: string | null;
|
|
@@ -168,6 +163,11 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
168
163
|
tweetsCount: number | null;
|
|
169
164
|
createdAt: string | null;
|
|
170
165
|
} | null;
|
|
166
|
+
entities: {
|
|
167
|
+
hashtags: string[] | null;
|
|
168
|
+
mentions: string[] | null;
|
|
169
|
+
urls: string[] | null;
|
|
170
|
+
} | null;
|
|
171
171
|
stats: {
|
|
172
172
|
viewCount: number | null;
|
|
173
173
|
retweetCount: number | null;
|
|
@@ -192,11 +192,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
192
192
|
url: string | null;
|
|
193
193
|
id: string | null;
|
|
194
194
|
text: string | null;
|
|
195
|
-
entities: {
|
|
196
|
-
hashtags: string[] | null;
|
|
197
|
-
mentions: string[] | null;
|
|
198
|
-
urls: string[] | null;
|
|
199
|
-
} | null;
|
|
200
195
|
author: {
|
|
201
196
|
description: string | null;
|
|
202
197
|
name: string | null;
|
|
@@ -211,6 +206,11 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
211
206
|
tweetsCount: number | null;
|
|
212
207
|
createdAt: string | null;
|
|
213
208
|
} | null;
|
|
209
|
+
entities: {
|
|
210
|
+
hashtags: string[] | null;
|
|
211
|
+
mentions: string[] | null;
|
|
212
|
+
urls: string[] | null;
|
|
213
|
+
} | null;
|
|
214
214
|
stats: {
|
|
215
215
|
viewCount: number | null;
|
|
216
216
|
retweetCount: number | null;
|
|
@@ -369,11 +369,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
369
369
|
url: string | null;
|
|
370
370
|
id: string | null;
|
|
371
371
|
text: string | null;
|
|
372
|
-
entities: {
|
|
373
|
-
hashtags: string[] | null;
|
|
374
|
-
mentions: string[] | null;
|
|
375
|
-
urls: string[] | null;
|
|
376
|
-
} | null;
|
|
377
372
|
author: {
|
|
378
373
|
description: string | null;
|
|
379
374
|
name: string | null;
|
|
@@ -388,6 +383,11 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
388
383
|
tweetsCount: number | null;
|
|
389
384
|
createdAt: string | null;
|
|
390
385
|
} | null;
|
|
386
|
+
entities: {
|
|
387
|
+
hashtags: string[] | null;
|
|
388
|
+
mentions: string[] | null;
|
|
389
|
+
urls: string[] | null;
|
|
390
|
+
} | null;
|
|
391
391
|
stats: {
|
|
392
392
|
viewCount: number | null;
|
|
393
393
|
retweetCount: number | null;
|
|
@@ -412,11 +412,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
412
412
|
url: string | null;
|
|
413
413
|
id: string | null;
|
|
414
414
|
text: string | null;
|
|
415
|
-
entities: {
|
|
416
|
-
hashtags: string[] | null;
|
|
417
|
-
mentions: string[] | null;
|
|
418
|
-
urls: string[] | null;
|
|
419
|
-
} | null;
|
|
420
415
|
author: {
|
|
421
416
|
description: string | null;
|
|
422
417
|
name: string | null;
|
|
@@ -431,6 +426,11 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
431
426
|
tweetsCount: number | null;
|
|
432
427
|
createdAt: string | null;
|
|
433
428
|
} | null;
|
|
429
|
+
entities: {
|
|
430
|
+
hashtags: string[] | null;
|
|
431
|
+
mentions: string[] | null;
|
|
432
|
+
urls: string[] | null;
|
|
433
|
+
} | null;
|
|
434
434
|
stats: {
|
|
435
435
|
viewCount: number | null;
|
|
436
436
|
retweetCount: number | null;
|
|
@@ -463,11 +463,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
463
463
|
url: string | null;
|
|
464
464
|
id: string | null;
|
|
465
465
|
text: string | null;
|
|
466
|
-
entities: {
|
|
467
|
-
hashtags: string[] | null;
|
|
468
|
-
mentions: string[] | null;
|
|
469
|
-
urls: string[] | null;
|
|
470
|
-
} | null;
|
|
471
466
|
author: {
|
|
472
467
|
description: string | null;
|
|
473
468
|
name: string | null;
|
|
@@ -482,6 +477,11 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
482
477
|
tweetsCount: number | null;
|
|
483
478
|
createdAt: string | null;
|
|
484
479
|
} | null;
|
|
480
|
+
entities: {
|
|
481
|
+
hashtags: string[] | null;
|
|
482
|
+
mentions: string[] | null;
|
|
483
|
+
urls: string[] | null;
|
|
484
|
+
} | null;
|
|
485
485
|
stats: {
|
|
486
486
|
viewCount: number | null;
|
|
487
487
|
retweetCount: number | null;
|
|
@@ -512,11 +512,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
512
512
|
url: string | null;
|
|
513
513
|
id: string | null;
|
|
514
514
|
text: string | null;
|
|
515
|
-
entities: {
|
|
516
|
-
hashtags: string[] | null;
|
|
517
|
-
mentions: string[] | null;
|
|
518
|
-
urls: string[] | null;
|
|
519
|
-
} | null;
|
|
520
515
|
author: {
|
|
521
516
|
description: string | null;
|
|
522
517
|
name: string | null;
|
|
@@ -531,6 +526,11 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
531
526
|
tweetsCount: number | null;
|
|
532
527
|
createdAt: string | null;
|
|
533
528
|
} | null;
|
|
529
|
+
entities: {
|
|
530
|
+
hashtags: string[] | null;
|
|
531
|
+
mentions: string[] | null;
|
|
532
|
+
urls: string[] | null;
|
|
533
|
+
} | null;
|
|
534
534
|
stats: {
|
|
535
535
|
viewCount: number | null;
|
|
536
536
|
retweetCount: number | null;
|
|
@@ -715,11 +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
|
-
entities: {
|
|
719
|
-
hashtags: string[] | null;
|
|
720
|
-
mentions: string[] | null;
|
|
721
|
-
urls: string[] | null;
|
|
722
|
-
} | null;
|
|
723
718
|
author: {
|
|
724
719
|
description: string | null;
|
|
725
720
|
name: string | null;
|
|
@@ -734,6 +729,11 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
734
729
|
tweetsCount: number | null;
|
|
735
730
|
createdAt: string | null;
|
|
736
731
|
} | null;
|
|
732
|
+
entities: {
|
|
733
|
+
hashtags: string[] | null;
|
|
734
|
+
mentions: string[] | null;
|
|
735
|
+
urls: string[] | null;
|
|
736
|
+
} | null;
|
|
737
737
|
stats: {
|
|
738
738
|
viewCount: number | null;
|
|
739
739
|
retweetCount: number | null;
|
|
@@ -758,11 +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
|
-
entities: {
|
|
762
|
-
hashtags: string[] | null;
|
|
763
|
-
mentions: string[] | null;
|
|
764
|
-
urls: string[] | null;
|
|
765
|
-
} | null;
|
|
766
761
|
author: {
|
|
767
762
|
description: string | null;
|
|
768
763
|
name: string | null;
|
|
@@ -777,6 +772,11 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
777
772
|
tweetsCount: number | null;
|
|
778
773
|
createdAt: string | null;
|
|
779
774
|
} | null;
|
|
775
|
+
entities: {
|
|
776
|
+
hashtags: string[] | null;
|
|
777
|
+
mentions: string[] | null;
|
|
778
|
+
urls: string[] | null;
|
|
779
|
+
} | null;
|
|
780
780
|
stats: {
|
|
781
781
|
viewCount: number | null;
|
|
782
782
|
retweetCount: number | null;
|
|
@@ -809,11 +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
|
-
entities: {
|
|
813
|
-
hashtags: string[] | null;
|
|
814
|
-
mentions: string[] | null;
|
|
815
|
-
urls: string[] | null;
|
|
816
|
-
} | null;
|
|
817
812
|
author: {
|
|
818
813
|
description: string | null;
|
|
819
814
|
name: string | null;
|
|
@@ -828,6 +823,11 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
828
823
|
tweetsCount: number | null;
|
|
829
824
|
createdAt: string | null;
|
|
830
825
|
} | null;
|
|
826
|
+
entities: {
|
|
827
|
+
hashtags: string[] | null;
|
|
828
|
+
mentions: string[] | null;
|
|
829
|
+
urls: string[] | null;
|
|
830
|
+
} | null;
|
|
831
831
|
stats: {
|
|
832
832
|
viewCount: number | null;
|
|
833
833
|
retweetCount: number | null;
|
|
@@ -858,11 +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
|
-
entities: {
|
|
862
|
-
hashtags: string[] | null;
|
|
863
|
-
mentions: string[] | null;
|
|
864
|
-
urls: string[] | null;
|
|
865
|
-
} | null;
|
|
866
861
|
author: {
|
|
867
862
|
description: string | null;
|
|
868
863
|
name: string | null;
|
|
@@ -877,6 +872,11 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
877
872
|
tweetsCount: number | null;
|
|
878
873
|
createdAt: string | null;
|
|
879
874
|
} | null;
|
|
875
|
+
entities: {
|
|
876
|
+
hashtags: string[] | null;
|
|
877
|
+
mentions: string[] | null;
|
|
878
|
+
urls: string[] | null;
|
|
879
|
+
} | null;
|
|
880
880
|
stats: {
|
|
881
881
|
viewCount: number | null;
|
|
882
882
|
retweetCount: number | 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;
|
|
72
73
|
error: string;
|
|
73
74
|
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;
|
|
89
90
|
error: string;
|
|
90
91
|
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;
|
|
178
179
|
error: string;
|
|
179
180
|
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;
|
|
195
196
|
error: string;
|
|
196
197
|
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;
|
|
43
44
|
error: string;
|
|
44
45
|
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;
|
|
53
54
|
error: string;
|
|
54
55
|
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;
|
|
106
107
|
error: string;
|
|
107
108
|
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;
|
|
116
117
|
error: string;
|
|
117
118
|
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
|
-
error: string;
|
|
43
|
-
success: boolean;
|
|
44
42
|
content: string;
|
|
45
43
|
url: string;
|
|
44
|
+
error: string;
|
|
45
|
+
success: boolean;
|
|
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
|
-
error: string;
|
|
55
|
-
success: boolean;
|
|
56
54
|
content: string;
|
|
57
55
|
url: string;
|
|
56
|
+
error: string;
|
|
57
|
+
success: boolean;
|
|
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
|
-
error: string;
|
|
107
|
-
success: boolean;
|
|
108
106
|
content: string;
|
|
109
107
|
url: string;
|
|
108
|
+
error: string;
|
|
109
|
+
success: boolean;
|
|
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
|
-
error: string;
|
|
119
|
-
success: boolean;
|
|
120
118
|
content: string;
|
|
121
119
|
url: string;
|
|
120
|
+
error: string;
|
|
121
|
+
success: boolean;
|
|
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
|
-
query: string;
|
|
13
12
|
limit: number;
|
|
13
|
+
query: string;
|
|
14
14
|
categories: ("github" | "pdf" | "research")[];
|
|
15
15
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
16
16
|
location?: string | undefined;
|
|
@@ -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
|
-
query: string;
|
|
82
81
|
limit: number;
|
|
82
|
+
query: string;
|
|
83
83
|
categories: ("github" | "pdf" | "research")[];
|
|
84
84
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
85
|
location?: string | undefined;
|
|
@@ -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;
|
|
225
226
|
error: string;
|
|
226
227
|
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;
|
|
257
258
|
error: string;
|
|
258
259
|
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;
|
|
423
424
|
error: string;
|
|
424
425
|
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;
|
|
455
456
|
error: string;
|
|
456
457
|
success: boolean;
|
|
457
|
-
url: string | null;
|
|
458
458
|
batch: string | null;
|
|
459
459
|
people: {
|
|
460
460
|
title: string | null;
|
|
@@ -23,8 +23,8 @@ declare const YouTubeVideoSchema: z.ZodObject<{
|
|
|
23
23
|
url: string | null;
|
|
24
24
|
duration: string | null;
|
|
25
25
|
id: string | null;
|
|
26
|
-
thumbnail: string | null;
|
|
27
26
|
comments: number | null;
|
|
27
|
+
thumbnail: string | null;
|
|
28
28
|
viewCount: number | null;
|
|
29
29
|
likes: number | null;
|
|
30
30
|
channelName: string | null;
|
|
@@ -37,8 +37,8 @@ declare const YouTubeVideoSchema: z.ZodObject<{
|
|
|
37
37
|
url: string | null;
|
|
38
38
|
duration: string | null;
|
|
39
39
|
id: string | null;
|
|
40
|
-
thumbnail: string | null;
|
|
41
40
|
comments: number | null;
|
|
41
|
+
thumbnail: string | null;
|
|
42
42
|
viewCount: number | null;
|
|
43
43
|
likes: number | null;
|
|
44
44
|
channelName: string | null;
|
|
@@ -109,8 +109,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
109
109
|
url: string | null;
|
|
110
110
|
duration: string | null;
|
|
111
111
|
id: string | null;
|
|
112
|
-
thumbnail: string | null;
|
|
113
112
|
comments: number | null;
|
|
113
|
+
thumbnail: string | null;
|
|
114
114
|
viewCount: number | null;
|
|
115
115
|
likes: number | null;
|
|
116
116
|
channelName: string | null;
|
|
@@ -123,8 +123,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
123
123
|
url: string | null;
|
|
124
124
|
duration: string | null;
|
|
125
125
|
id: string | null;
|
|
126
|
-
thumbnail: string | null;
|
|
127
126
|
comments: number | null;
|
|
127
|
+
thumbnail: string | null;
|
|
128
128
|
viewCount: number | null;
|
|
129
129
|
likes: number | null;
|
|
130
130
|
channelName: string | null;
|
|
@@ -160,8 +160,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
160
160
|
url: string | null;
|
|
161
161
|
duration: string | null;
|
|
162
162
|
id: string | null;
|
|
163
|
-
thumbnail: string | null;
|
|
164
163
|
comments: number | null;
|
|
164
|
+
thumbnail: string | null;
|
|
165
165
|
viewCount: number | null;
|
|
166
166
|
likes: number | null;
|
|
167
167
|
channelName: string | null;
|
|
@@ -186,8 +186,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
186
186
|
url: string | null;
|
|
187
187
|
duration: string | null;
|
|
188
188
|
id: string | null;
|
|
189
|
-
thumbnail: string | null;
|
|
190
189
|
comments: number | null;
|
|
190
|
+
thumbnail: string | null;
|
|
191
191
|
viewCount: number | null;
|
|
192
192
|
likes: number | null;
|
|
193
193
|
channelName: string | null;
|
|
@@ -267,8 +267,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
267
267
|
url: string | null;
|
|
268
268
|
duration: string | null;
|
|
269
269
|
id: string | null;
|
|
270
|
-
thumbnail: string | null;
|
|
271
270
|
comments: number | null;
|
|
271
|
+
thumbnail: string | null;
|
|
272
272
|
viewCount: number | null;
|
|
273
273
|
likes: number | null;
|
|
274
274
|
channelName: string | null;
|
|
@@ -281,8 +281,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
281
281
|
url: string | null;
|
|
282
282
|
duration: string | null;
|
|
283
283
|
id: string | null;
|
|
284
|
-
thumbnail: string | null;
|
|
285
284
|
comments: number | null;
|
|
285
|
+
thumbnail: string | null;
|
|
286
286
|
viewCount: number | null;
|
|
287
287
|
likes: number | null;
|
|
288
288
|
channelName: string | null;
|
|
@@ -318,8 +318,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
318
318
|
url: string | null;
|
|
319
319
|
duration: string | null;
|
|
320
320
|
id: string | null;
|
|
321
|
-
thumbnail: string | null;
|
|
322
321
|
comments: number | null;
|
|
322
|
+
thumbnail: string | null;
|
|
323
323
|
viewCount: number | null;
|
|
324
324
|
likes: number | null;
|
|
325
325
|
channelName: string | null;
|
|
@@ -344,8 +344,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
344
344
|
url: string | null;
|
|
345
345
|
duration: string | null;
|
|
346
346
|
id: string | null;
|
|
347
|
-
thumbnail: string | null;
|
|
348
347
|
comments: number | null;
|
|
348
|
+
thumbnail: string | null;
|
|
349
349
|
viewCount: number | null;
|
|
350
350
|
likes: number | null;
|
|
351
351
|
channelName: string | null;
|