@bubblelab/bubble-core 0.1.101 → 0.1.102
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 +80 -80
- package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
- package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
- package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
- package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
- package/dist/bubbles/service-bubble/github.d.ts +240 -240
- package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +109 -2
- package/package.json +2 -2
|
@@ -16,9 +16,9 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
16
16
|
url: z.ZodNullable<z.ZodString>;
|
|
17
17
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
|
-
url: string | null;
|
|
20
19
|
description: string | null;
|
|
21
20
|
name: string | null;
|
|
21
|
+
url: string | null;
|
|
22
22
|
id: string | null;
|
|
23
23
|
following: number | null;
|
|
24
24
|
userName: string | null;
|
|
@@ -29,9 +29,9 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
29
29
|
tweetsCount: number | null;
|
|
30
30
|
createdAt: string | null;
|
|
31
31
|
}, {
|
|
32
|
-
url: string | null;
|
|
33
32
|
description: string | null;
|
|
34
33
|
name: string | null;
|
|
34
|
+
url: string | null;
|
|
35
35
|
id: string | null;
|
|
36
36
|
following: number | null;
|
|
37
37
|
userName: string | null;
|
|
@@ -60,9 +60,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
60
60
|
url: z.ZodNullable<z.ZodString>;
|
|
61
61
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
62
62
|
}, "strip", z.ZodTypeAny, {
|
|
63
|
-
url: string | null;
|
|
64
63
|
description: string | null;
|
|
65
64
|
name: string | null;
|
|
65
|
+
url: string | null;
|
|
66
66
|
id: string | null;
|
|
67
67
|
following: number | null;
|
|
68
68
|
userName: string | null;
|
|
@@ -73,9 +73,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
73
73
|
tweetsCount: number | null;
|
|
74
74
|
createdAt: string | null;
|
|
75
75
|
}, {
|
|
76
|
-
url: string | null;
|
|
77
76
|
description: string | null;
|
|
78
77
|
name: string | null;
|
|
78
|
+
url: string | null;
|
|
79
79
|
id: string | null;
|
|
80
80
|
following: number | null;
|
|
81
81
|
userName: string | null;
|
|
@@ -117,14 +117,14 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
117
117
|
height: z.ZodNullable<z.ZodNumber>;
|
|
118
118
|
duration: z.ZodNullable<z.ZodNumber>;
|
|
119
119
|
}, "strip", z.ZodTypeAny, {
|
|
120
|
-
url: string | null;
|
|
121
120
|
type: string | null;
|
|
121
|
+
url: string | null;
|
|
122
122
|
duration: number | null;
|
|
123
123
|
width: number | null;
|
|
124
124
|
height: number | null;
|
|
125
125
|
}, {
|
|
126
|
-
url: string | null;
|
|
127
126
|
type: string | null;
|
|
127
|
+
url: string | null;
|
|
128
128
|
duration: number | null;
|
|
129
129
|
width: number | null;
|
|
130
130
|
height: number | null;
|
|
@@ -147,12 +147,12 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
147
147
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
149
|
url: string | null;
|
|
150
|
-
id: string | null;
|
|
151
150
|
text: string | null;
|
|
151
|
+
id: string | null;
|
|
152
152
|
author: {
|
|
153
|
-
url: string | null;
|
|
154
153
|
description: string | null;
|
|
155
154
|
name: string | null;
|
|
155
|
+
url: string | null;
|
|
156
156
|
id: string | null;
|
|
157
157
|
following: number | null;
|
|
158
158
|
userName: string | null;
|
|
@@ -172,8 +172,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
172
172
|
bookmarkCount: number | null;
|
|
173
173
|
} | null;
|
|
174
174
|
media: {
|
|
175
|
-
url: string | null;
|
|
176
175
|
type: string | null;
|
|
176
|
+
url: string | null;
|
|
177
177
|
duration: number | null;
|
|
178
178
|
width: number | null;
|
|
179
179
|
height: number | null;
|
|
@@ -190,12 +190,12 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
190
190
|
isReply: boolean | null;
|
|
191
191
|
}, {
|
|
192
192
|
url: string | null;
|
|
193
|
-
id: string | null;
|
|
194
193
|
text: string | null;
|
|
194
|
+
id: string | null;
|
|
195
195
|
author: {
|
|
196
|
-
url: string | null;
|
|
197
196
|
description: string | null;
|
|
198
197
|
name: string | null;
|
|
198
|
+
url: string | null;
|
|
199
199
|
id: string | null;
|
|
200
200
|
following: number | null;
|
|
201
201
|
userName: string | null;
|
|
@@ -215,8 +215,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
215
215
|
bookmarkCount: number | null;
|
|
216
216
|
} | null;
|
|
217
217
|
media: {
|
|
218
|
-
url: string | null;
|
|
219
218
|
type: string | null;
|
|
219
|
+
url: string | null;
|
|
220
220
|
duration: number | null;
|
|
221
221
|
width: number | null;
|
|
222
222
|
height: number | null;
|
|
@@ -280,9 +280,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
280
280
|
url: z.ZodNullable<z.ZodString>;
|
|
281
281
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
|
283
|
-
url: string | null;
|
|
284
283
|
description: string | null;
|
|
285
284
|
name: string | null;
|
|
285
|
+
url: string | null;
|
|
286
286
|
id: string | null;
|
|
287
287
|
following: number | null;
|
|
288
288
|
userName: string | null;
|
|
@@ -293,9 +293,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
293
293
|
tweetsCount: number | null;
|
|
294
294
|
createdAt: string | null;
|
|
295
295
|
}, {
|
|
296
|
-
url: string | null;
|
|
297
296
|
description: string | null;
|
|
298
297
|
name: string | null;
|
|
298
|
+
url: string | null;
|
|
299
299
|
id: string | null;
|
|
300
300
|
following: number | null;
|
|
301
301
|
userName: string | null;
|
|
@@ -337,14 +337,14 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
337
337
|
height: z.ZodNullable<z.ZodNumber>;
|
|
338
338
|
duration: z.ZodNullable<z.ZodNumber>;
|
|
339
339
|
}, "strip", z.ZodTypeAny, {
|
|
340
|
-
url: string | null;
|
|
341
340
|
type: string | null;
|
|
341
|
+
url: string | null;
|
|
342
342
|
duration: number | null;
|
|
343
343
|
width: number | null;
|
|
344
344
|
height: number | null;
|
|
345
345
|
}, {
|
|
346
|
-
url: string | null;
|
|
347
346
|
type: string | null;
|
|
347
|
+
url: string | null;
|
|
348
348
|
duration: number | null;
|
|
349
349
|
width: number | null;
|
|
350
350
|
height: number | null;
|
|
@@ -367,12 +367,12 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
367
367
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
368
368
|
}, "strip", z.ZodTypeAny, {
|
|
369
369
|
url: string | null;
|
|
370
|
-
id: string | null;
|
|
371
370
|
text: string | null;
|
|
371
|
+
id: string | null;
|
|
372
372
|
author: {
|
|
373
|
-
url: string | null;
|
|
374
373
|
description: string | null;
|
|
375
374
|
name: string | null;
|
|
375
|
+
url: string | null;
|
|
376
376
|
id: string | null;
|
|
377
377
|
following: number | null;
|
|
378
378
|
userName: string | null;
|
|
@@ -392,8 +392,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
392
392
|
bookmarkCount: number | null;
|
|
393
393
|
} | null;
|
|
394
394
|
media: {
|
|
395
|
-
url: string | null;
|
|
396
395
|
type: string | null;
|
|
396
|
+
url: string | null;
|
|
397
397
|
duration: number | null;
|
|
398
398
|
width: number | null;
|
|
399
399
|
height: number | null;
|
|
@@ -410,12 +410,12 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
410
410
|
isReply: boolean | null;
|
|
411
411
|
}, {
|
|
412
412
|
url: string | null;
|
|
413
|
-
id: string | null;
|
|
414
413
|
text: string | null;
|
|
414
|
+
id: string | null;
|
|
415
415
|
author: {
|
|
416
|
-
url: string | null;
|
|
417
416
|
description: string | null;
|
|
418
417
|
name: string | null;
|
|
418
|
+
url: string | null;
|
|
419
419
|
id: string | null;
|
|
420
420
|
following: number | null;
|
|
421
421
|
userName: string | null;
|
|
@@ -435,8 +435,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
435
435
|
bookmarkCount: number | null;
|
|
436
436
|
} | null;
|
|
437
437
|
media: {
|
|
438
|
-
url: string | null;
|
|
439
438
|
type: string | null;
|
|
439
|
+
url: string | null;
|
|
440
440
|
duration: number | null;
|
|
441
441
|
width: number | null;
|
|
442
442
|
height: number | null;
|
|
@@ -461,12 +461,12 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
461
461
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
462
462
|
tweets: {
|
|
463
463
|
url: string | null;
|
|
464
|
-
id: string | null;
|
|
465
464
|
text: string | null;
|
|
465
|
+
id: string | null;
|
|
466
466
|
author: {
|
|
467
|
-
url: string | null;
|
|
468
467
|
description: string | null;
|
|
469
468
|
name: string | null;
|
|
469
|
+
url: string | null;
|
|
470
470
|
id: string | null;
|
|
471
471
|
following: number | null;
|
|
472
472
|
userName: string | null;
|
|
@@ -486,8 +486,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
486
486
|
bookmarkCount: number | null;
|
|
487
487
|
} | null;
|
|
488
488
|
media: {
|
|
489
|
-
url: string | null;
|
|
490
489
|
type: string | null;
|
|
490
|
+
url: string | null;
|
|
491
491
|
duration: number | null;
|
|
492
492
|
width: number | null;
|
|
493
493
|
height: number | null;
|
|
@@ -510,12 +510,12 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
510
510
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
511
511
|
tweets: {
|
|
512
512
|
url: string | null;
|
|
513
|
-
id: string | null;
|
|
514
513
|
text: string | null;
|
|
514
|
+
id: string | null;
|
|
515
515
|
author: {
|
|
516
|
-
url: string | null;
|
|
517
516
|
description: string | null;
|
|
518
517
|
name: string | null;
|
|
518
|
+
url: string | null;
|
|
519
519
|
id: string | null;
|
|
520
520
|
following: number | null;
|
|
521
521
|
userName: string | null;
|
|
@@ -535,8 +535,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
535
535
|
bookmarkCount: number | null;
|
|
536
536
|
} | null;
|
|
537
537
|
media: {
|
|
538
|
-
url: string | null;
|
|
539
538
|
type: string | null;
|
|
539
|
+
url: string | null;
|
|
540
540
|
duration: number | null;
|
|
541
541
|
width: number | null;
|
|
542
542
|
height: number | null;
|
|
@@ -626,9 +626,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
626
626
|
url: z.ZodNullable<z.ZodString>;
|
|
627
627
|
createdAt: z.ZodNullable<z.ZodString>;
|
|
628
628
|
}, "strip", z.ZodTypeAny, {
|
|
629
|
-
url: string | null;
|
|
630
629
|
description: string | null;
|
|
631
630
|
name: string | null;
|
|
631
|
+
url: string | null;
|
|
632
632
|
id: string | null;
|
|
633
633
|
following: number | null;
|
|
634
634
|
userName: string | null;
|
|
@@ -639,9 +639,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
639
639
|
tweetsCount: number | null;
|
|
640
640
|
createdAt: string | null;
|
|
641
641
|
}, {
|
|
642
|
-
url: string | null;
|
|
643
642
|
description: string | null;
|
|
644
643
|
name: string | null;
|
|
644
|
+
url: string | null;
|
|
645
645
|
id: string | null;
|
|
646
646
|
following: number | null;
|
|
647
647
|
userName: string | null;
|
|
@@ -683,14 +683,14 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
683
683
|
height: z.ZodNullable<z.ZodNumber>;
|
|
684
684
|
duration: z.ZodNullable<z.ZodNumber>;
|
|
685
685
|
}, "strip", z.ZodTypeAny, {
|
|
686
|
-
url: string | null;
|
|
687
686
|
type: string | null;
|
|
687
|
+
url: string | null;
|
|
688
688
|
duration: number | null;
|
|
689
689
|
width: number | null;
|
|
690
690
|
height: number | null;
|
|
691
691
|
}, {
|
|
692
|
-
url: string | null;
|
|
693
692
|
type: string | null;
|
|
693
|
+
url: string | null;
|
|
694
694
|
duration: number | null;
|
|
695
695
|
width: number | null;
|
|
696
696
|
height: number | null;
|
|
@@ -713,12 +713,12 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
713
713
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
|
715
715
|
url: string | null;
|
|
716
|
-
id: string | null;
|
|
717
716
|
text: string | null;
|
|
717
|
+
id: string | null;
|
|
718
718
|
author: {
|
|
719
|
-
url: string | null;
|
|
720
719
|
description: string | null;
|
|
721
720
|
name: string | null;
|
|
721
|
+
url: string | null;
|
|
722
722
|
id: string | null;
|
|
723
723
|
following: number | null;
|
|
724
724
|
userName: string | null;
|
|
@@ -738,8 +738,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
738
738
|
bookmarkCount: number | null;
|
|
739
739
|
} | null;
|
|
740
740
|
media: {
|
|
741
|
-
url: string | null;
|
|
742
741
|
type: string | null;
|
|
742
|
+
url: string | null;
|
|
743
743
|
duration: number | null;
|
|
744
744
|
width: number | null;
|
|
745
745
|
height: number | null;
|
|
@@ -756,12 +756,12 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
756
756
|
isReply: boolean | null;
|
|
757
757
|
}, {
|
|
758
758
|
url: string | null;
|
|
759
|
-
id: string | null;
|
|
760
759
|
text: string | null;
|
|
760
|
+
id: string | null;
|
|
761
761
|
author: {
|
|
762
|
-
url: string | null;
|
|
763
762
|
description: string | null;
|
|
764
763
|
name: string | null;
|
|
764
|
+
url: string | null;
|
|
765
765
|
id: string | null;
|
|
766
766
|
following: number | null;
|
|
767
767
|
userName: string | null;
|
|
@@ -781,8 +781,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
781
781
|
bookmarkCount: number | null;
|
|
782
782
|
} | null;
|
|
783
783
|
media: {
|
|
784
|
-
url: string | null;
|
|
785
784
|
type: string | null;
|
|
785
|
+
url: string | null;
|
|
786
786
|
duration: number | null;
|
|
787
787
|
width: number | null;
|
|
788
788
|
height: number | null;
|
|
@@ -807,12 +807,12 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
807
807
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
808
808
|
tweets: {
|
|
809
809
|
url: string | null;
|
|
810
|
-
id: string | null;
|
|
811
810
|
text: string | null;
|
|
811
|
+
id: string | null;
|
|
812
812
|
author: {
|
|
813
|
-
url: string | null;
|
|
814
813
|
description: string | null;
|
|
815
814
|
name: string | null;
|
|
815
|
+
url: string | null;
|
|
816
816
|
id: string | null;
|
|
817
817
|
following: number | null;
|
|
818
818
|
userName: string | null;
|
|
@@ -832,8 +832,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
832
832
|
bookmarkCount: number | null;
|
|
833
833
|
} | null;
|
|
834
834
|
media: {
|
|
835
|
-
url: string | null;
|
|
836
835
|
type: string | null;
|
|
836
|
+
url: string | null;
|
|
837
837
|
duration: number | null;
|
|
838
838
|
width: number | null;
|
|
839
839
|
height: number | null;
|
|
@@ -856,12 +856,12 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
856
856
|
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
857
857
|
tweets: {
|
|
858
858
|
url: string | null;
|
|
859
|
-
id: string | null;
|
|
860
859
|
text: string | null;
|
|
860
|
+
id: string | null;
|
|
861
861
|
author: {
|
|
862
|
-
url: string | null;
|
|
863
862
|
description: string | null;
|
|
864
863
|
name: string | null;
|
|
864
|
+
url: string | null;
|
|
865
865
|
id: string | null;
|
|
866
866
|
following: number | null;
|
|
867
867
|
userName: string | null;
|
|
@@ -881,8 +881,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
881
881
|
bookmarkCount: number | null;
|
|
882
882
|
} | null;
|
|
883
883
|
media: {
|
|
884
|
-
url: string | null;
|
|
885
884
|
type: string | null;
|
|
885
|
+
url: string | null;
|
|
886
886
|
duration: number | null;
|
|
887
887
|
width: number | null;
|
|
888
888
|
height: number | null;
|
|
@@ -13,25 +13,25 @@ declare const WebCrawlToolParamsSchema: z.ZodObject<{
|
|
|
13
13
|
waitFor: z.ZodDefault<z.ZodNumber>;
|
|
14
14
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
|
-
url: string;
|
|
17
16
|
format: "markdown";
|
|
17
|
+
url: string;
|
|
18
18
|
onlyMainContent: boolean;
|
|
19
19
|
waitFor: number;
|
|
20
20
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
21
21
|
maxPages?: number | undefined;
|
|
22
|
-
excludePaths?: string[] | undefined;
|
|
23
|
-
includePaths?: string[] | undefined;
|
|
24
22
|
crawlDepth?: number | undefined;
|
|
23
|
+
includePaths?: string[] | undefined;
|
|
24
|
+
excludePaths?: string[] | undefined;
|
|
25
25
|
}, {
|
|
26
26
|
url: string;
|
|
27
27
|
format?: "markdown" | undefined;
|
|
28
28
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
29
29
|
onlyMainContent?: boolean | undefined;
|
|
30
|
-
waitFor?: number | undefined;
|
|
31
30
|
maxPages?: number | undefined;
|
|
32
|
-
excludePaths?: string[] | undefined;
|
|
33
|
-
includePaths?: string[] | undefined;
|
|
34
31
|
crawlDepth?: number | undefined;
|
|
32
|
+
includePaths?: string[] | undefined;
|
|
33
|
+
excludePaths?: string[] | undefined;
|
|
34
|
+
waitFor?: number | undefined;
|
|
35
35
|
}>;
|
|
36
36
|
declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
37
37
|
url: z.ZodString;
|
|
@@ -43,13 +43,13 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
43
43
|
content: z.ZodString;
|
|
44
44
|
depth: z.ZodOptional<z.ZodNumber>;
|
|
45
45
|
}, "strip", z.ZodTypeAny, {
|
|
46
|
-
url: string;
|
|
47
46
|
content: string;
|
|
47
|
+
url: string;
|
|
48
48
|
title?: string | undefined;
|
|
49
49
|
depth?: number | undefined;
|
|
50
50
|
}, {
|
|
51
|
-
url: string;
|
|
52
51
|
content: string;
|
|
52
|
+
url: string;
|
|
53
53
|
title?: string | undefined;
|
|
54
54
|
depth?: number | undefined;
|
|
55
55
|
}>, "many">;
|
|
@@ -73,13 +73,13 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
73
73
|
success: boolean;
|
|
74
74
|
error: string;
|
|
75
75
|
pages: {
|
|
76
|
-
url: string;
|
|
77
76
|
content: string;
|
|
77
|
+
url: string;
|
|
78
78
|
title?: string | undefined;
|
|
79
79
|
depth?: number | undefined;
|
|
80
80
|
}[];
|
|
81
|
-
creditsUsed: number;
|
|
82
81
|
totalPages: number;
|
|
82
|
+
creditsUsed: number;
|
|
83
83
|
metadata?: {
|
|
84
84
|
loadTime?: number | undefined;
|
|
85
85
|
crawlDepth?: number | undefined;
|
|
@@ -90,13 +90,13 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
90
90
|
success: boolean;
|
|
91
91
|
error: string;
|
|
92
92
|
pages: {
|
|
93
|
-
url: string;
|
|
94
93
|
content: string;
|
|
94
|
+
url: string;
|
|
95
95
|
title?: string | undefined;
|
|
96
96
|
depth?: number | undefined;
|
|
97
97
|
}[];
|
|
98
|
-
creditsUsed: number;
|
|
99
98
|
totalPages: number;
|
|
99
|
+
creditsUsed: number;
|
|
100
100
|
metadata?: {
|
|
101
101
|
loadTime?: number | undefined;
|
|
102
102
|
crawlDepth?: number | undefined;
|
|
@@ -119,25 +119,25 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
119
119
|
waitFor: z.ZodDefault<z.ZodNumber>;
|
|
120
120
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
121
121
|
}, "strip", z.ZodTypeAny, {
|
|
122
|
-
url: string;
|
|
123
122
|
format: "markdown";
|
|
123
|
+
url: string;
|
|
124
124
|
onlyMainContent: boolean;
|
|
125
125
|
waitFor: number;
|
|
126
126
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
127
127
|
maxPages?: number | undefined;
|
|
128
|
-
excludePaths?: string[] | undefined;
|
|
129
|
-
includePaths?: string[] | undefined;
|
|
130
128
|
crawlDepth?: number | undefined;
|
|
129
|
+
includePaths?: string[] | undefined;
|
|
130
|
+
excludePaths?: string[] | undefined;
|
|
131
131
|
}, {
|
|
132
132
|
url: string;
|
|
133
133
|
format?: "markdown" | undefined;
|
|
134
134
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
135
135
|
onlyMainContent?: boolean | undefined;
|
|
136
|
-
waitFor?: number | undefined;
|
|
137
136
|
maxPages?: number | undefined;
|
|
138
|
-
excludePaths?: string[] | undefined;
|
|
139
|
-
includePaths?: string[] | undefined;
|
|
140
137
|
crawlDepth?: number | undefined;
|
|
138
|
+
includePaths?: string[] | undefined;
|
|
139
|
+
excludePaths?: string[] | undefined;
|
|
140
|
+
waitFor?: number | undefined;
|
|
141
141
|
}>;
|
|
142
142
|
static readonly resultSchema: z.ZodObject<{
|
|
143
143
|
url: z.ZodString;
|
|
@@ -149,13 +149,13 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
149
149
|
content: z.ZodString;
|
|
150
150
|
depth: z.ZodOptional<z.ZodNumber>;
|
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
|
152
|
-
url: string;
|
|
153
152
|
content: string;
|
|
153
|
+
url: string;
|
|
154
154
|
title?: string | undefined;
|
|
155
155
|
depth?: number | undefined;
|
|
156
156
|
}, {
|
|
157
|
-
url: string;
|
|
158
157
|
content: string;
|
|
158
|
+
url: string;
|
|
159
159
|
title?: string | undefined;
|
|
160
160
|
depth?: number | undefined;
|
|
161
161
|
}>, "many">;
|
|
@@ -179,13 +179,13 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
179
179
|
success: boolean;
|
|
180
180
|
error: string;
|
|
181
181
|
pages: {
|
|
182
|
-
url: string;
|
|
183
182
|
content: string;
|
|
183
|
+
url: string;
|
|
184
184
|
title?: string | undefined;
|
|
185
185
|
depth?: number | undefined;
|
|
186
186
|
}[];
|
|
187
|
-
creditsUsed: number;
|
|
188
187
|
totalPages: number;
|
|
188
|
+
creditsUsed: number;
|
|
189
189
|
metadata?: {
|
|
190
190
|
loadTime?: number | undefined;
|
|
191
191
|
crawlDepth?: number | undefined;
|
|
@@ -196,13 +196,13 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
196
196
|
success: boolean;
|
|
197
197
|
error: string;
|
|
198
198
|
pages: {
|
|
199
|
-
url: string;
|
|
200
199
|
content: string;
|
|
200
|
+
url: string;
|
|
201
201
|
title?: string | undefined;
|
|
202
202
|
depth?: number | undefined;
|
|
203
203
|
}[];
|
|
204
|
-
creditsUsed: number;
|
|
205
204
|
totalPages: number;
|
|
205
|
+
creditsUsed: number;
|
|
206
206
|
metadata?: {
|
|
207
207
|
loadTime?: number | undefined;
|
|
208
208
|
crawlDepth?: number | undefined;
|
|
@@ -9,14 +9,14 @@ declare const WebExtractToolParamsSchema: z.ZodObject<{
|
|
|
9
9
|
timeout: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
10
10
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
url: string;
|
|
13
12
|
schema: string;
|
|
13
|
+
url: string;
|
|
14
14
|
prompt: string;
|
|
15
15
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
16
16
|
timeout?: number | undefined;
|
|
17
17
|
}, {
|
|
18
|
-
url: string;
|
|
19
18
|
schema: string;
|
|
19
|
+
url: string;
|
|
20
20
|
prompt: string;
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
22
|
timeout?: number | undefined;
|
|
@@ -72,14 +72,14 @@ export declare class WebExtractTool extends ToolBubble<WebExtractToolParams, Web
|
|
|
72
72
|
timeout: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
73
73
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
74
74
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
-
url: string;
|
|
76
75
|
schema: string;
|
|
76
|
+
url: string;
|
|
77
77
|
prompt: string;
|
|
78
78
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
79
79
|
timeout?: number | undefined;
|
|
80
80
|
}, {
|
|
81
|
-
url: string;
|
|
82
81
|
schema: string;
|
|
82
|
+
url: string;
|
|
83
83
|
prompt: string;
|
|
84
84
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
85
|
timeout?: number | undefined;
|
|
@@ -8,8 +8,8 @@ declare const WebScrapeToolParamsSchema: z.ZodObject<{
|
|
|
8
8
|
onlyMainContent: z.ZodDefault<z.ZodBoolean>;
|
|
9
9
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
-
url: string;
|
|
12
11
|
format: "html" | "markdown";
|
|
12
|
+
url: string;
|
|
13
13
|
onlyMainContent: boolean;
|
|
14
14
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
15
15
|
}, {
|
|
@@ -37,10 +37,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
37
37
|
loadTime?: number | undefined;
|
|
38
38
|
}>>;
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
|
-
url: string;
|
|
41
40
|
format: string;
|
|
42
41
|
title: string;
|
|
43
42
|
content: string;
|
|
43
|
+
url: string;
|
|
44
44
|
success: boolean;
|
|
45
45
|
error: string;
|
|
46
46
|
creditsUsed: number;
|
|
@@ -49,10 +49,10 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
49
49
|
loadTime?: number | undefined;
|
|
50
50
|
} | undefined;
|
|
51
51
|
}, {
|
|
52
|
-
url: string;
|
|
53
52
|
format: string;
|
|
54
53
|
title: string;
|
|
55
54
|
content: string;
|
|
55
|
+
url: string;
|
|
56
56
|
success: boolean;
|
|
57
57
|
error: string;
|
|
58
58
|
creditsUsed: number;
|
|
@@ -72,8 +72,8 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
72
72
|
onlyMainContent: z.ZodDefault<z.ZodBoolean>;
|
|
73
73
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
74
74
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
-
url: string;
|
|
76
75
|
format: "html" | "markdown";
|
|
76
|
+
url: string;
|
|
77
77
|
onlyMainContent: boolean;
|
|
78
78
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
79
79
|
}, {
|
|
@@ -101,10 +101,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
101
101
|
loadTime?: number | undefined;
|
|
102
102
|
}>>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
url: string;
|
|
105
104
|
format: string;
|
|
106
105
|
title: string;
|
|
107
106
|
content: string;
|
|
107
|
+
url: string;
|
|
108
108
|
success: boolean;
|
|
109
109
|
error: string;
|
|
110
110
|
creditsUsed: number;
|
|
@@ -113,10 +113,10 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
113
113
|
loadTime?: number | undefined;
|
|
114
114
|
} | undefined;
|
|
115
115
|
}, {
|
|
116
|
-
url: string;
|
|
117
116
|
format: string;
|
|
118
117
|
title: string;
|
|
119
118
|
content: string;
|
|
119
|
+
url: string;
|
|
120
120
|
success: boolean;
|
|
121
121
|
error: string;
|
|
122
122
|
creditsUsed: number;
|