@bubblelab/bubble-core 0.1.76 → 0.1.77

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.
Files changed (48) hide show
  1. package/dist/bubble-bundle.d.ts +54 -54
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +38 -38
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  4. package/dist/bubbles/service-bubble/ai-agent.js +1 -0
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.d.ts +92 -92
  7. package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
  8. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +42 -42
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
  11. package/dist/bubbles/service-bubble/firecrawl.d.ts +318 -318
  12. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  14. package/dist/bubbles/service-bubble/gmail.d.ts +208 -208
  15. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  16. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  17. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/notion/notion.d.ts +453 -453
  20. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  21. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/slack/slack.d.ts +400 -400
  23. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +13 -13
  24. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  25. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  26. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
  27. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
  28. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +289 -289
  29. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
  30. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  31. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
  33. package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
  34. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +106 -106
  35. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  38. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  39. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
  40. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
  41. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
  42. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +18 -18
  43. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +118 -118
  44. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts.map +1 -1
  45. package/dist/bubbles/workflow-bubble/slack-formatter-agent.js +11 -1
  46. package/dist/bubbles/workflow-bubble/slack-formatter-agent.js.map +1 -1
  47. package/dist/bubbles.json +4 -3
  48. package/package.json +2 -2
@@ -117,15 +117,15 @@ 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
- duration: number | null;
121
120
  type: string | null;
122
121
  url: string | null;
122
+ duration: number | null;
123
123
  width: number | null;
124
124
  height: number | null;
125
125
  }, {
126
- duration: number | null;
127
126
  type: string | null;
128
127
  url: string | null;
128
+ duration: number | null;
129
129
  width: number | null;
130
130
  height: number | null;
131
131
  }>, "many">>;
@@ -146,17 +146,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
146
146
  isQuote: z.ZodNullable<z.ZodBoolean>;
147
147
  isReply: z.ZodNullable<z.ZodBoolean>;
148
148
  }, "strip", z.ZodTypeAny, {
149
- stats: {
150
- viewCount: number | null;
151
- retweetCount: number | null;
152
- replyCount: number | null;
153
- likeCount: number | null;
154
- quoteCount: number | null;
155
- bookmarkCount: number | null;
156
- } | null;
157
149
  url: string | null;
158
- id: string | null;
159
150
  text: string | null;
151
+ id: string | null;
160
152
  entities: {
161
153
  hashtags: string[] | null;
162
154
  mentions: string[] | null;
@@ -176,10 +168,18 @@ declare const TwitterTweetSchema: z.ZodObject<{
176
168
  tweetsCount: number | null;
177
169
  createdAt: string | null;
178
170
  } | null;
171
+ stats: {
172
+ viewCount: number | null;
173
+ retweetCount: number | null;
174
+ replyCount: number | null;
175
+ likeCount: number | null;
176
+ quoteCount: number | null;
177
+ bookmarkCount: number | null;
178
+ } | null;
179
179
  media: {
180
- duration: number | null;
181
180
  type: string | null;
182
181
  url: string | null;
182
+ duration: number | null;
183
183
  width: number | null;
184
184
  height: number | null;
185
185
  }[] | null;
@@ -189,17 +189,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
189
189
  isQuote: boolean | null;
190
190
  isReply: boolean | null;
191
191
  }, {
192
- stats: {
193
- viewCount: number | null;
194
- retweetCount: number | null;
195
- replyCount: number | null;
196
- likeCount: number | null;
197
- quoteCount: number | null;
198
- bookmarkCount: number | null;
199
- } | null;
200
192
  url: string | null;
201
- id: string | null;
202
193
  text: string | null;
194
+ id: string | null;
203
195
  entities: {
204
196
  hashtags: string[] | null;
205
197
  mentions: string[] | null;
@@ -219,10 +211,18 @@ declare const TwitterTweetSchema: z.ZodObject<{
219
211
  tweetsCount: number | null;
220
212
  createdAt: string | null;
221
213
  } | null;
214
+ stats: {
215
+ viewCount: number | null;
216
+ retweetCount: number | null;
217
+ replyCount: number | null;
218
+ likeCount: number | null;
219
+ quoteCount: number | null;
220
+ bookmarkCount: number | null;
221
+ } | null;
222
222
  media: {
223
- duration: number | null;
224
223
  type: string | null;
225
224
  url: string | null;
225
+ duration: number | null;
226
226
  width: number | null;
227
227
  height: number | null;
228
228
  }[] | null;
@@ -337,15 +337,15 @@ 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
- duration: number | null;
341
340
  type: string | null;
342
341
  url: string | null;
342
+ duration: number | null;
343
343
  width: number | null;
344
344
  height: number | null;
345
345
  }, {
346
- duration: number | null;
347
346
  type: string | null;
348
347
  url: string | null;
348
+ duration: number | null;
349
349
  width: number | null;
350
350
  height: number | null;
351
351
  }>, "many">>;
@@ -366,17 +366,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
366
366
  isQuote: z.ZodNullable<z.ZodBoolean>;
367
367
  isReply: z.ZodNullable<z.ZodBoolean>;
368
368
  }, "strip", z.ZodTypeAny, {
369
- stats: {
370
- viewCount: number | null;
371
- retweetCount: number | null;
372
- replyCount: number | null;
373
- likeCount: number | null;
374
- quoteCount: number | null;
375
- bookmarkCount: number | null;
376
- } | null;
377
369
  url: string | null;
378
- id: string | null;
379
370
  text: string | null;
371
+ id: string | null;
380
372
  entities: {
381
373
  hashtags: string[] | null;
382
374
  mentions: string[] | null;
@@ -396,10 +388,18 @@ declare const TwitterToolResultSchema: z.ZodObject<{
396
388
  tweetsCount: number | null;
397
389
  createdAt: string | null;
398
390
  } | null;
391
+ stats: {
392
+ viewCount: number | null;
393
+ retweetCount: number | null;
394
+ replyCount: number | null;
395
+ likeCount: number | null;
396
+ quoteCount: number | null;
397
+ bookmarkCount: number | null;
398
+ } | null;
399
399
  media: {
400
- duration: number | null;
401
400
  type: string | null;
402
401
  url: string | null;
402
+ duration: number | null;
403
403
  width: number | null;
404
404
  height: number | null;
405
405
  }[] | null;
@@ -409,17 +409,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
409
409
  isQuote: boolean | null;
410
410
  isReply: boolean | null;
411
411
  }, {
412
- stats: {
413
- viewCount: number | null;
414
- retweetCount: number | null;
415
- replyCount: number | null;
416
- likeCount: number | null;
417
- quoteCount: number | null;
418
- bookmarkCount: number | null;
419
- } | null;
420
412
  url: string | null;
421
- id: string | null;
422
413
  text: string | null;
414
+ id: string | null;
423
415
  entities: {
424
416
  hashtags: string[] | null;
425
417
  mentions: string[] | null;
@@ -439,10 +431,18 @@ declare const TwitterToolResultSchema: z.ZodObject<{
439
431
  tweetsCount: number | null;
440
432
  createdAt: string | null;
441
433
  } | null;
434
+ stats: {
435
+ viewCount: number | null;
436
+ retweetCount: number | null;
437
+ replyCount: number | null;
438
+ likeCount: number | null;
439
+ quoteCount: number | null;
440
+ bookmarkCount: number | null;
441
+ } | null;
442
442
  media: {
443
- duration: number | null;
444
443
  type: string | null;
445
444
  url: string | null;
445
+ duration: number | null;
446
446
  width: number | null;
447
447
  height: number | null;
448
448
  }[] | null;
@@ -460,17 +460,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
460
460
  success: boolean;
461
461
  operation: "search" | "scrapeProfile" | "scrapeUrl";
462
462
  tweets: {
463
- stats: {
464
- viewCount: number | null;
465
- retweetCount: number | null;
466
- replyCount: number | null;
467
- likeCount: number | null;
468
- quoteCount: number | null;
469
- bookmarkCount: number | null;
470
- } | null;
471
463
  url: string | null;
472
- id: string | null;
473
464
  text: string | null;
465
+ id: string | null;
474
466
  entities: {
475
467
  hashtags: string[] | null;
476
468
  mentions: string[] | null;
@@ -490,10 +482,18 @@ declare const TwitterToolResultSchema: z.ZodObject<{
490
482
  tweetsCount: number | null;
491
483
  createdAt: string | null;
492
484
  } | null;
485
+ stats: {
486
+ viewCount: number | null;
487
+ retweetCount: number | null;
488
+ replyCount: number | null;
489
+ likeCount: number | null;
490
+ quoteCount: number | null;
491
+ bookmarkCount: number | null;
492
+ } | null;
493
493
  media: {
494
- duration: number | null;
495
494
  type: string | null;
496
495
  url: string | null;
496
+ duration: number | null;
497
497
  width: number | null;
498
498
  height: number | null;
499
499
  }[] | null;
@@ -509,17 +509,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
509
509
  success: boolean;
510
510
  operation: "search" | "scrapeProfile" | "scrapeUrl";
511
511
  tweets: {
512
- stats: {
513
- viewCount: number | null;
514
- retweetCount: number | null;
515
- replyCount: number | null;
516
- likeCount: number | null;
517
- quoteCount: number | null;
518
- bookmarkCount: number | null;
519
- } | null;
520
512
  url: string | null;
521
- id: string | null;
522
513
  text: string | null;
514
+ id: string | null;
523
515
  entities: {
524
516
  hashtags: string[] | null;
525
517
  mentions: string[] | null;
@@ -539,10 +531,18 @@ declare const TwitterToolResultSchema: z.ZodObject<{
539
531
  tweetsCount: number | null;
540
532
  createdAt: string | null;
541
533
  } | null;
534
+ stats: {
535
+ viewCount: number | null;
536
+ retweetCount: number | null;
537
+ replyCount: number | null;
538
+ likeCount: number | null;
539
+ quoteCount: number | null;
540
+ bookmarkCount: number | null;
541
+ } | null;
542
542
  media: {
543
- duration: number | null;
544
543
  type: string | null;
545
544
  url: string | null;
545
+ duration: number | null;
546
546
  width: number | null;
547
547
  height: number | null;
548
548
  }[] | null;
@@ -683,15 +683,15 @@ 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
- duration: number | null;
687
686
  type: string | null;
688
687
  url: string | null;
688
+ duration: number | null;
689
689
  width: number | null;
690
690
  height: number | null;
691
691
  }, {
692
- duration: number | null;
693
692
  type: string | null;
694
693
  url: string | null;
694
+ duration: number | null;
695
695
  width: number | null;
696
696
  height: number | null;
697
697
  }>, "many">>;
@@ -712,17 +712,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
712
712
  isQuote: z.ZodNullable<z.ZodBoolean>;
713
713
  isReply: z.ZodNullable<z.ZodBoolean>;
714
714
  }, "strip", z.ZodTypeAny, {
715
- stats: {
716
- viewCount: number | null;
717
- retweetCount: number | null;
718
- replyCount: number | null;
719
- likeCount: number | null;
720
- quoteCount: number | null;
721
- bookmarkCount: number | null;
722
- } | null;
723
715
  url: string | null;
724
- id: string | null;
725
716
  text: string | null;
717
+ id: string | null;
726
718
  entities: {
727
719
  hashtags: string[] | null;
728
720
  mentions: string[] | null;
@@ -742,10 +734,18 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
742
734
  tweetsCount: number | null;
743
735
  createdAt: string | null;
744
736
  } | null;
737
+ stats: {
738
+ viewCount: number | null;
739
+ retweetCount: number | null;
740
+ replyCount: number | null;
741
+ likeCount: number | null;
742
+ quoteCount: number | null;
743
+ bookmarkCount: number | null;
744
+ } | null;
745
745
  media: {
746
- duration: number | null;
747
746
  type: string | null;
748
747
  url: string | null;
748
+ duration: number | null;
749
749
  width: number | null;
750
750
  height: number | null;
751
751
  }[] | null;
@@ -755,17 +755,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
755
755
  isQuote: boolean | null;
756
756
  isReply: boolean | null;
757
757
  }, {
758
- stats: {
759
- viewCount: number | null;
760
- retweetCount: number | null;
761
- replyCount: number | null;
762
- likeCount: number | null;
763
- quoteCount: number | null;
764
- bookmarkCount: number | null;
765
- } | null;
766
758
  url: string | null;
767
- id: string | null;
768
759
  text: string | null;
760
+ id: string | null;
769
761
  entities: {
770
762
  hashtags: string[] | null;
771
763
  mentions: string[] | null;
@@ -785,10 +777,18 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
785
777
  tweetsCount: number | null;
786
778
  createdAt: string | null;
787
779
  } | null;
780
+ stats: {
781
+ viewCount: number | null;
782
+ retweetCount: number | null;
783
+ replyCount: number | null;
784
+ likeCount: number | null;
785
+ quoteCount: number | null;
786
+ bookmarkCount: number | null;
787
+ } | null;
788
788
  media: {
789
- duration: number | null;
790
789
  type: string | null;
791
790
  url: string | null;
791
+ duration: number | null;
792
792
  width: number | null;
793
793
  height: number | null;
794
794
  }[] | null;
@@ -806,17 +806,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
806
806
  success: boolean;
807
807
  operation: "search" | "scrapeProfile" | "scrapeUrl";
808
808
  tweets: {
809
- stats: {
810
- viewCount: number | null;
811
- retweetCount: number | null;
812
- replyCount: number | null;
813
- likeCount: number | null;
814
- quoteCount: number | null;
815
- bookmarkCount: number | null;
816
- } | null;
817
809
  url: string | null;
818
- id: string | null;
819
810
  text: string | null;
811
+ id: string | null;
820
812
  entities: {
821
813
  hashtags: string[] | null;
822
814
  mentions: string[] | null;
@@ -836,10 +828,18 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
836
828
  tweetsCount: number | null;
837
829
  createdAt: string | null;
838
830
  } | null;
831
+ stats: {
832
+ viewCount: number | null;
833
+ retweetCount: number | null;
834
+ replyCount: number | null;
835
+ likeCount: number | null;
836
+ quoteCount: number | null;
837
+ bookmarkCount: number | null;
838
+ } | null;
839
839
  media: {
840
- duration: number | null;
841
840
  type: string | null;
842
841
  url: string | null;
842
+ duration: number | null;
843
843
  width: number | null;
844
844
  height: number | null;
845
845
  }[] | null;
@@ -855,17 +855,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
855
855
  success: boolean;
856
856
  operation: "search" | "scrapeProfile" | "scrapeUrl";
857
857
  tweets: {
858
- stats: {
859
- viewCount: number | null;
860
- retweetCount: number | null;
861
- replyCount: number | null;
862
- likeCount: number | null;
863
- quoteCount: number | null;
864
- bookmarkCount: number | null;
865
- } | null;
866
858
  url: string | null;
867
- id: string | null;
868
859
  text: string | null;
860
+ id: string | null;
869
861
  entities: {
870
862
  hashtags: string[] | null;
871
863
  mentions: string[] | null;
@@ -885,10 +877,18 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
885
877
  tweetsCount: number | null;
886
878
  createdAt: string | null;
887
879
  } | null;
880
+ stats: {
881
+ viewCount: number | null;
882
+ retweetCount: number | null;
883
+ replyCount: number | null;
884
+ likeCount: number | null;
885
+ quoteCount: number | null;
886
+ bookmarkCount: number | null;
887
+ } | null;
888
888
  media: {
889
- duration: number | null;
890
889
  type: string | null;
891
890
  url: string | null;
891
+ duration: number | null;
892
892
  width: number | null;
893
893
  height: number | null;
894
894
  }[] | 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;
@@ -17,11 +17,11 @@ declare const YouTubeVideoSchema: z.ZodObject<{
17
17
  comments: z.ZodNullable<z.ZodNumber>;
18
18
  thumbnail: z.ZodNullable<z.ZodString>;
19
19
  }, "strip", z.ZodTypeAny, {
20
- duration: string | null;
21
20
  description: string | null;
22
21
  title: string | null;
23
22
  date: string | null;
24
23
  url: string | null;
24
+ duration: string | null;
25
25
  id: string | null;
26
26
  thumbnail: string | null;
27
27
  comments: number | null;
@@ -31,11 +31,11 @@ declare const YouTubeVideoSchema: z.ZodObject<{
31
31
  channelUrl: string | null;
32
32
  subscribers: number | null;
33
33
  }, {
34
- duration: string | null;
35
34
  description: string | null;
36
35
  title: string | null;
37
36
  date: string | null;
38
37
  url: string | null;
38
+ duration: string | null;
39
39
  id: string | null;
40
40
  thumbnail: string | null;
41
41
  comments: number | null;
@@ -103,11 +103,11 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
103
103
  comments: z.ZodNullable<z.ZodNumber>;
104
104
  thumbnail: z.ZodNullable<z.ZodString>;
105
105
  }, "strip", z.ZodTypeAny, {
106
- duration: string | null;
107
106
  description: string | null;
108
107
  title: string | null;
109
108
  date: string | null;
110
109
  url: string | null;
110
+ duration: string | null;
111
111
  id: string | null;
112
112
  thumbnail: string | null;
113
113
  comments: number | null;
@@ -117,11 +117,11 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
117
117
  channelUrl: string | null;
118
118
  subscribers: number | null;
119
119
  }, {
120
- duration: string | null;
121
120
  description: string | null;
122
121
  title: string | null;
123
122
  date: string | null;
124
123
  url: string | null;
124
+ duration: string | null;
125
125
  id: string | null;
126
126
  thumbnail: string | null;
127
127
  comments: number | null;
@@ -154,11 +154,11 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
154
154
  operation: "searchVideos" | "getTranscript" | "scrapeChannel";
155
155
  totalResults: number;
156
156
  videos?: {
157
- duration: string | null;
158
157
  description: string | null;
159
158
  title: string | null;
160
159
  date: string | null;
161
160
  url: string | null;
161
+ duration: string | null;
162
162
  id: string | null;
163
163
  thumbnail: string | null;
164
164
  comments: number | null;
@@ -180,11 +180,11 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
180
180
  operation: "searchVideos" | "getTranscript" | "scrapeChannel";
181
181
  totalResults: number;
182
182
  videos?: {
183
- duration: string | null;
184
183
  description: string | null;
185
184
  title: string | null;
186
185
  date: string | null;
187
186
  url: string | null;
187
+ duration: string | null;
188
188
  id: string | null;
189
189
  thumbnail: string | null;
190
190
  comments: number | null;
@@ -261,11 +261,11 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
261
261
  comments: z.ZodNullable<z.ZodNumber>;
262
262
  thumbnail: z.ZodNullable<z.ZodString>;
263
263
  }, "strip", z.ZodTypeAny, {
264
- duration: string | null;
265
264
  description: string | null;
266
265
  title: string | null;
267
266
  date: string | null;
268
267
  url: string | null;
268
+ duration: string | null;
269
269
  id: string | null;
270
270
  thumbnail: string | null;
271
271
  comments: number | null;
@@ -275,11 +275,11 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
275
275
  channelUrl: string | null;
276
276
  subscribers: number | null;
277
277
  }, {
278
- duration: string | null;
279
278
  description: string | null;
280
279
  title: string | null;
281
280
  date: string | null;
282
281
  url: string | null;
282
+ duration: string | null;
283
283
  id: string | null;
284
284
  thumbnail: string | null;
285
285
  comments: number | null;
@@ -312,11 +312,11 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
312
312
  operation: "searchVideos" | "getTranscript" | "scrapeChannel";
313
313
  totalResults: number;
314
314
  videos?: {
315
- duration: string | null;
316
315
  description: string | null;
317
316
  title: string | null;
318
317
  date: string | null;
319
318
  url: string | null;
319
+ duration: string | null;
320
320
  id: string | null;
321
321
  thumbnail: string | null;
322
322
  comments: number | null;
@@ -338,11 +338,11 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
338
338
  operation: "searchVideos" | "getTranscript" | "scrapeChannel";
339
339
  totalResults: number;
340
340
  videos?: {
341
- duration: string | null;
342
341
  description: string | null;
343
342
  title: string | null;
344
343
  date: string | null;
345
344
  url: string | null;
345
+ duration: string | null;
346
346
  id: string | null;
347
347
  thumbnail: string | null;
348
348
  comments: number | null;