@bubblelab/bubble-core 0.1.107 → 0.1.109
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 +110 -33
- package/dist/bubbles/service-bubble/ai-agent.d.ts +51 -0
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +122 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/airtable.js +8 -4
- package/dist/bubbles/service-bubble/airtable.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/actors/instagram-hashtag-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/actors/instagram-scraper.d.ts +8 -8
- package/dist/bubbles/service-bubble/apify/actors/linkedin-posts-search.d.ts +4 -4
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-posts.d.ts +14 -14
- package/dist/bubbles/service-bubble/apify/actors/twitter-scraper.d.ts +6 -6
- package/dist/bubbles/service-bubble/apify/actors/youtube-scraper.d.ts +6 -6
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +30 -30
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +1 -1
- package/dist/bubbles/service-bubble/firecrawl.d.ts +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +24 -24
- package/dist/bubbles/service-bubble/notion/property-schemas.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +22 -22
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +26 -26
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +74 -74
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles.json +51 -6
- package/dist/capabilities/define-capability.d.ts +53 -0
- package/dist/capabilities/define-capability.d.ts.map +1 -0
- package/dist/capabilities/define-capability.js +50 -0
- package/dist/capabilities/define-capability.js.map +1 -0
- package/dist/capabilities/index.d.ts +3 -0
- package/dist/capabilities/index.d.ts.map +1 -0
- package/dist/capabilities/index.js +3 -0
- package/dist/capabilities/index.js.map +1 -0
- package/dist/capabilities/registry.d.ts +13 -0
- package/dist/capabilities/registry.d.ts.map +1 -0
- package/dist/capabilities/registry.js +26 -0
- package/dist/capabilities/registry.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -18,8 +18,8 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
19
|
description: string | null;
|
|
20
20
|
name: string | null;
|
|
21
|
-
url: string | null;
|
|
22
21
|
id: string | null;
|
|
22
|
+
url: string | null;
|
|
23
23
|
following: number | null;
|
|
24
24
|
userName: string | null;
|
|
25
25
|
isVerified: boolean | null;
|
|
@@ -31,8 +31,8 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
31
31
|
}, {
|
|
32
32
|
description: string | null;
|
|
33
33
|
name: string | null;
|
|
34
|
-
url: string | null;
|
|
35
34
|
id: string | null;
|
|
35
|
+
url: string | null;
|
|
36
36
|
following: number | null;
|
|
37
37
|
userName: string | null;
|
|
38
38
|
isVerified: boolean | null;
|
|
@@ -62,8 +62,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
62
62
|
}, "strip", z.ZodTypeAny, {
|
|
63
63
|
description: string | null;
|
|
64
64
|
name: string | null;
|
|
65
|
-
url: string | null;
|
|
66
65
|
id: string | null;
|
|
66
|
+
url: string | null;
|
|
67
67
|
following: number | null;
|
|
68
68
|
userName: string | null;
|
|
69
69
|
isVerified: boolean | null;
|
|
@@ -75,8 +75,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
75
75
|
}, {
|
|
76
76
|
description: string | null;
|
|
77
77
|
name: string | null;
|
|
78
|
-
url: string | null;
|
|
79
78
|
id: string | null;
|
|
79
|
+
url: string | null;
|
|
80
80
|
following: number | null;
|
|
81
81
|
userName: string | null;
|
|
82
82
|
isVerified: boolean | null;
|
|
@@ -154,9 +154,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
154
154
|
quoteCount: number | null;
|
|
155
155
|
bookmarkCount: number | null;
|
|
156
156
|
} | null;
|
|
157
|
-
url: string | null;
|
|
158
157
|
text: string | null;
|
|
159
158
|
id: string | null;
|
|
159
|
+
url: string | null;
|
|
160
160
|
entities: {
|
|
161
161
|
hashtags: string[] | null;
|
|
162
162
|
mentions: string[] | null;
|
|
@@ -165,8 +165,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
165
165
|
author: {
|
|
166
166
|
description: string | null;
|
|
167
167
|
name: string | null;
|
|
168
|
-
url: string | null;
|
|
169
168
|
id: string | null;
|
|
169
|
+
url: string | null;
|
|
170
170
|
following: number | null;
|
|
171
171
|
userName: string | null;
|
|
172
172
|
isVerified: boolean | null;
|
|
@@ -197,9 +197,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
197
197
|
quoteCount: number | null;
|
|
198
198
|
bookmarkCount: number | null;
|
|
199
199
|
} | null;
|
|
200
|
-
url: string | null;
|
|
201
200
|
text: string | null;
|
|
202
201
|
id: string | null;
|
|
202
|
+
url: string | null;
|
|
203
203
|
entities: {
|
|
204
204
|
hashtags: string[] | null;
|
|
205
205
|
mentions: string[] | null;
|
|
@@ -208,8 +208,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
208
208
|
author: {
|
|
209
209
|
description: string | null;
|
|
210
210
|
name: string | null;
|
|
211
|
-
url: string | null;
|
|
212
211
|
id: string | null;
|
|
212
|
+
url: string | null;
|
|
213
213
|
following: number | null;
|
|
214
214
|
userName: string | null;
|
|
215
215
|
isVerified: boolean | null;
|
|
@@ -282,8 +282,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
|
283
283
|
description: string | null;
|
|
284
284
|
name: string | null;
|
|
285
|
-
url: string | null;
|
|
286
285
|
id: string | null;
|
|
286
|
+
url: string | null;
|
|
287
287
|
following: number | null;
|
|
288
288
|
userName: string | null;
|
|
289
289
|
isVerified: boolean | null;
|
|
@@ -295,8 +295,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
295
295
|
}, {
|
|
296
296
|
description: string | null;
|
|
297
297
|
name: string | null;
|
|
298
|
-
url: string | null;
|
|
299
298
|
id: string | null;
|
|
299
|
+
url: string | null;
|
|
300
300
|
following: number | null;
|
|
301
301
|
userName: string | null;
|
|
302
302
|
isVerified: boolean | null;
|
|
@@ -374,9 +374,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
374
374
|
quoteCount: number | null;
|
|
375
375
|
bookmarkCount: number | null;
|
|
376
376
|
} | null;
|
|
377
|
-
url: string | null;
|
|
378
377
|
text: string | null;
|
|
379
378
|
id: string | null;
|
|
379
|
+
url: string | null;
|
|
380
380
|
entities: {
|
|
381
381
|
hashtags: string[] | null;
|
|
382
382
|
mentions: string[] | null;
|
|
@@ -385,8 +385,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
385
385
|
author: {
|
|
386
386
|
description: string | null;
|
|
387
387
|
name: string | null;
|
|
388
|
-
url: string | null;
|
|
389
388
|
id: string | null;
|
|
389
|
+
url: string | null;
|
|
390
390
|
following: number | null;
|
|
391
391
|
userName: string | null;
|
|
392
392
|
isVerified: boolean | null;
|
|
@@ -417,9 +417,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
417
417
|
quoteCount: number | null;
|
|
418
418
|
bookmarkCount: number | null;
|
|
419
419
|
} | null;
|
|
420
|
-
url: string | null;
|
|
421
420
|
text: string | null;
|
|
422
421
|
id: string | null;
|
|
422
|
+
url: string | null;
|
|
423
423
|
entities: {
|
|
424
424
|
hashtags: string[] | null;
|
|
425
425
|
mentions: string[] | null;
|
|
@@ -428,8 +428,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
428
428
|
author: {
|
|
429
429
|
description: string | null;
|
|
430
430
|
name: string | null;
|
|
431
|
-
url: string | null;
|
|
432
431
|
id: string | null;
|
|
432
|
+
url: string | null;
|
|
433
433
|
following: number | null;
|
|
434
434
|
userName: string | null;
|
|
435
435
|
isVerified: boolean | null;
|
|
@@ -468,9 +468,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
468
468
|
quoteCount: number | null;
|
|
469
469
|
bookmarkCount: number | null;
|
|
470
470
|
} | null;
|
|
471
|
-
url: string | null;
|
|
472
471
|
text: string | null;
|
|
473
472
|
id: string | null;
|
|
473
|
+
url: string | null;
|
|
474
474
|
entities: {
|
|
475
475
|
hashtags: string[] | null;
|
|
476
476
|
mentions: string[] | null;
|
|
@@ -479,8 +479,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
479
479
|
author: {
|
|
480
480
|
description: string | null;
|
|
481
481
|
name: string | null;
|
|
482
|
-
url: string | null;
|
|
483
482
|
id: string | null;
|
|
483
|
+
url: string | null;
|
|
484
484
|
following: number | null;
|
|
485
485
|
userName: string | null;
|
|
486
486
|
isVerified: boolean | null;
|
|
@@ -517,9 +517,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
517
517
|
quoteCount: number | null;
|
|
518
518
|
bookmarkCount: number | null;
|
|
519
519
|
} | null;
|
|
520
|
-
url: string | null;
|
|
521
520
|
text: string | null;
|
|
522
521
|
id: string | null;
|
|
522
|
+
url: string | null;
|
|
523
523
|
entities: {
|
|
524
524
|
hashtags: string[] | null;
|
|
525
525
|
mentions: string[] | null;
|
|
@@ -528,8 +528,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
528
528
|
author: {
|
|
529
529
|
description: string | null;
|
|
530
530
|
name: string | null;
|
|
531
|
-
url: string | null;
|
|
532
531
|
id: string | null;
|
|
532
|
+
url: string | null;
|
|
533
533
|
following: number | null;
|
|
534
534
|
userName: string | null;
|
|
535
535
|
isVerified: boolean | null;
|
|
@@ -628,8 +628,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
628
628
|
}, "strip", z.ZodTypeAny, {
|
|
629
629
|
description: string | null;
|
|
630
630
|
name: string | null;
|
|
631
|
-
url: string | null;
|
|
632
631
|
id: string | null;
|
|
632
|
+
url: string | null;
|
|
633
633
|
following: number | null;
|
|
634
634
|
userName: string | null;
|
|
635
635
|
isVerified: boolean | null;
|
|
@@ -641,8 +641,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
641
641
|
}, {
|
|
642
642
|
description: string | null;
|
|
643
643
|
name: string | null;
|
|
644
|
-
url: string | null;
|
|
645
644
|
id: string | null;
|
|
645
|
+
url: string | null;
|
|
646
646
|
following: number | null;
|
|
647
647
|
userName: string | null;
|
|
648
648
|
isVerified: boolean | null;
|
|
@@ -720,9 +720,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
720
720
|
quoteCount: number | null;
|
|
721
721
|
bookmarkCount: number | null;
|
|
722
722
|
} | null;
|
|
723
|
-
url: string | null;
|
|
724
723
|
text: string | null;
|
|
725
724
|
id: string | null;
|
|
725
|
+
url: string | null;
|
|
726
726
|
entities: {
|
|
727
727
|
hashtags: string[] | null;
|
|
728
728
|
mentions: string[] | null;
|
|
@@ -731,8 +731,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
731
731
|
author: {
|
|
732
732
|
description: string | null;
|
|
733
733
|
name: string | null;
|
|
734
|
-
url: string | null;
|
|
735
734
|
id: string | null;
|
|
735
|
+
url: string | null;
|
|
736
736
|
following: number | null;
|
|
737
737
|
userName: string | null;
|
|
738
738
|
isVerified: boolean | null;
|
|
@@ -763,9 +763,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
763
763
|
quoteCount: number | null;
|
|
764
764
|
bookmarkCount: number | null;
|
|
765
765
|
} | null;
|
|
766
|
-
url: string | null;
|
|
767
766
|
text: string | null;
|
|
768
767
|
id: string | null;
|
|
768
|
+
url: string | null;
|
|
769
769
|
entities: {
|
|
770
770
|
hashtags: string[] | null;
|
|
771
771
|
mentions: string[] | null;
|
|
@@ -774,8 +774,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
774
774
|
author: {
|
|
775
775
|
description: string | null;
|
|
776
776
|
name: string | null;
|
|
777
|
-
url: string | null;
|
|
778
777
|
id: string | null;
|
|
778
|
+
url: string | null;
|
|
779
779
|
following: number | null;
|
|
780
780
|
userName: string | null;
|
|
781
781
|
isVerified: boolean | null;
|
|
@@ -814,9 +814,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
814
814
|
quoteCount: number | null;
|
|
815
815
|
bookmarkCount: number | null;
|
|
816
816
|
} | null;
|
|
817
|
-
url: string | null;
|
|
818
817
|
text: string | null;
|
|
819
818
|
id: string | null;
|
|
819
|
+
url: string | null;
|
|
820
820
|
entities: {
|
|
821
821
|
hashtags: string[] | null;
|
|
822
822
|
mentions: string[] | null;
|
|
@@ -825,8 +825,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
825
825
|
author: {
|
|
826
826
|
description: string | null;
|
|
827
827
|
name: string | null;
|
|
828
|
-
url: string | null;
|
|
829
828
|
id: string | null;
|
|
829
|
+
url: string | null;
|
|
830
830
|
following: number | null;
|
|
831
831
|
userName: string | null;
|
|
832
832
|
isVerified: boolean | null;
|
|
@@ -863,9 +863,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
863
863
|
quoteCount: number | null;
|
|
864
864
|
bookmarkCount: number | null;
|
|
865
865
|
} | null;
|
|
866
|
-
url: string | null;
|
|
867
866
|
text: string | null;
|
|
868
867
|
id: string | null;
|
|
868
|
+
url: string | null;
|
|
869
869
|
entities: {
|
|
870
870
|
hashtags: string[] | null;
|
|
871
871
|
mentions: string[] | null;
|
|
@@ -874,8 +874,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
874
874
|
author: {
|
|
875
875
|
description: string | null;
|
|
876
876
|
name: string | null;
|
|
877
|
-
url: string | null;
|
|
878
877
|
id: string | null;
|
|
878
|
+
url: string | null;
|
|
879
879
|
following: number | null;
|
|
880
880
|
userName: string | null;
|
|
881
881
|
isVerified: boolean | null;
|
|
@@ -116,14 +116,14 @@ declare const YCScraperToolParamsSchema: z.ZodObject<{
|
|
|
116
116
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
118
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
119
|
-
url?: string | undefined;
|
|
120
119
|
batch?: string | undefined;
|
|
120
|
+
url?: string | undefined;
|
|
121
121
|
maxCompanies?: number | undefined;
|
|
122
122
|
includeFounders?: boolean | undefined;
|
|
123
123
|
}, {
|
|
124
124
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
125
|
-
url?: string | undefined;
|
|
126
125
|
batch?: string | undefined;
|
|
126
|
+
url?: string | undefined;
|
|
127
127
|
maxCompanies?: number | undefined;
|
|
128
128
|
includeFounders?: boolean | undefined;
|
|
129
129
|
}>;
|
|
@@ -224,8 +224,8 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
|
|
|
224
224
|
}, "strip", z.ZodTypeAny, {
|
|
225
225
|
error: string;
|
|
226
226
|
success: boolean;
|
|
227
|
-
url: string | null;
|
|
228
227
|
batch: string | null;
|
|
228
|
+
url: string | null;
|
|
229
229
|
people: {
|
|
230
230
|
title: string | null;
|
|
231
231
|
name: string | null;
|
|
@@ -256,8 +256,8 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
|
|
|
256
256
|
}, {
|
|
257
257
|
error: string;
|
|
258
258
|
success: boolean;
|
|
259
|
-
url: string | null;
|
|
260
259
|
batch: string | null;
|
|
260
|
+
url: string | null;
|
|
261
261
|
people: {
|
|
262
262
|
title: string | null;
|
|
263
263
|
name: string | null;
|
|
@@ -314,14 +314,14 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
|
|
|
314
314
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
315
315
|
}, "strip", z.ZodTypeAny, {
|
|
316
316
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
317
|
-
url?: string | undefined;
|
|
318
317
|
batch?: string | undefined;
|
|
318
|
+
url?: string | undefined;
|
|
319
319
|
maxCompanies?: number | undefined;
|
|
320
320
|
includeFounders?: boolean | undefined;
|
|
321
321
|
}, {
|
|
322
322
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
323
|
-
url?: string | undefined;
|
|
324
323
|
batch?: string | undefined;
|
|
324
|
+
url?: string | undefined;
|
|
325
325
|
maxCompanies?: number | undefined;
|
|
326
326
|
includeFounders?: boolean | undefined;
|
|
327
327
|
}>;
|
|
@@ -422,8 +422,8 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
|
|
|
422
422
|
}, "strip", z.ZodTypeAny, {
|
|
423
423
|
error: string;
|
|
424
424
|
success: boolean;
|
|
425
|
-
url: string | null;
|
|
426
425
|
batch: string | null;
|
|
426
|
+
url: string | null;
|
|
427
427
|
people: {
|
|
428
428
|
title: string | null;
|
|
429
429
|
name: string | null;
|
|
@@ -454,8 +454,8 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
|
|
|
454
454
|
}, {
|
|
455
455
|
error: string;
|
|
456
456
|
success: boolean;
|
|
457
|
-
url: string | null;
|
|
458
457
|
batch: string | null;
|
|
458
|
+
url: string | null;
|
|
459
459
|
people: {
|
|
460
460
|
title: string | null;
|
|
461
461
|
name: string | null;
|
|
@@ -21,8 +21,8 @@ declare const YouTubeVideoSchema: z.ZodObject<{
|
|
|
21
21
|
description: string | null;
|
|
22
22
|
title: string | null;
|
|
23
23
|
date: string | null;
|
|
24
|
-
url: string | null;
|
|
25
24
|
id: string | null;
|
|
25
|
+
url: string | null;
|
|
26
26
|
thumbnail: string | null;
|
|
27
27
|
comments: number | null;
|
|
28
28
|
viewCount: number | null;
|
|
@@ -35,8 +35,8 @@ declare const YouTubeVideoSchema: z.ZodObject<{
|
|
|
35
35
|
description: string | null;
|
|
36
36
|
title: string | null;
|
|
37
37
|
date: string | null;
|
|
38
|
-
url: string | null;
|
|
39
38
|
id: string | null;
|
|
39
|
+
url: string | null;
|
|
40
40
|
thumbnail: string | null;
|
|
41
41
|
comments: number | null;
|
|
42
42
|
viewCount: number | null;
|
|
@@ -107,8 +107,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
107
107
|
description: string | null;
|
|
108
108
|
title: string | null;
|
|
109
109
|
date: string | null;
|
|
110
|
-
url: string | null;
|
|
111
110
|
id: string | null;
|
|
111
|
+
url: string | null;
|
|
112
112
|
thumbnail: string | null;
|
|
113
113
|
comments: number | null;
|
|
114
114
|
viewCount: number | null;
|
|
@@ -121,8 +121,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
121
121
|
description: string | null;
|
|
122
122
|
title: string | null;
|
|
123
123
|
date: string | null;
|
|
124
|
-
url: string | null;
|
|
125
124
|
id: string | null;
|
|
125
|
+
url: string | null;
|
|
126
126
|
thumbnail: string | null;
|
|
127
127
|
comments: number | null;
|
|
128
128
|
viewCount: number | null;
|
|
@@ -158,8 +158,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
158
158
|
description: string | null;
|
|
159
159
|
title: string | null;
|
|
160
160
|
date: string | null;
|
|
161
|
-
url: string | null;
|
|
162
161
|
id: string | null;
|
|
162
|
+
url: string | null;
|
|
163
163
|
thumbnail: string | null;
|
|
164
164
|
comments: number | null;
|
|
165
165
|
viewCount: number | null;
|
|
@@ -184,8 +184,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
184
184
|
description: string | null;
|
|
185
185
|
title: string | null;
|
|
186
186
|
date: string | null;
|
|
187
|
-
url: string | null;
|
|
188
187
|
id: string | null;
|
|
188
|
+
url: string | null;
|
|
189
189
|
thumbnail: string | null;
|
|
190
190
|
comments: number | null;
|
|
191
191
|
viewCount: number | null;
|
|
@@ -265,8 +265,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
265
265
|
description: string | null;
|
|
266
266
|
title: string | null;
|
|
267
267
|
date: string | null;
|
|
268
|
-
url: string | null;
|
|
269
268
|
id: string | null;
|
|
269
|
+
url: string | null;
|
|
270
270
|
thumbnail: string | null;
|
|
271
271
|
comments: number | null;
|
|
272
272
|
viewCount: number | null;
|
|
@@ -279,8 +279,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
279
279
|
description: string | null;
|
|
280
280
|
title: string | null;
|
|
281
281
|
date: string | null;
|
|
282
|
-
url: string | null;
|
|
283
282
|
id: string | null;
|
|
283
|
+
url: string | null;
|
|
284
284
|
thumbnail: string | null;
|
|
285
285
|
comments: number | null;
|
|
286
286
|
viewCount: number | null;
|
|
@@ -316,8 +316,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
316
316
|
description: string | null;
|
|
317
317
|
title: string | null;
|
|
318
318
|
date: string | null;
|
|
319
|
-
url: string | null;
|
|
320
319
|
id: string | null;
|
|
320
|
+
url: string | null;
|
|
321
321
|
thumbnail: string | null;
|
|
322
322
|
comments: number | null;
|
|
323
323
|
viewCount: number | null;
|
|
@@ -342,8 +342,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
342
342
|
description: string | null;
|
|
343
343
|
title: string | null;
|
|
344
344
|
date: string | null;
|
|
345
|
-
url: string | null;
|
|
346
345
|
id: string | null;
|
|
346
|
+
url: string | null;
|
|
347
347
|
thumbnail: string | null;
|
|
348
348
|
comments: number | null;
|
|
349
349
|
viewCount: number | null;
|