@bubblelab/bubble-core 0.1.25 → 0.1.27
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 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +8 -8
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +102 -102
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
- package/dist/bubbles/service-bubble/firecrawl.d.ts +288 -288
- package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +108 -108
- package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-drive.d.ts +20 -20
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +33 -33
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +601 -601
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +168 -168
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +602 -602
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +82 -82
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +132 -132
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +55 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +52057 -9
- package/dist/types/available-tools.d.ts +1 -1
- package/dist/types/available-tools.d.ts.map +1 -1
- package/dist/types/available-tools.js +1 -0
- package/dist/types/available-tools.js.map +1 -1
- package/package.json +3 -3
|
@@ -16,8 +16,8 @@ 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
|
-
name: string | null;
|
|
20
19
|
description: string | null;
|
|
20
|
+
name: string | null;
|
|
21
21
|
url: string | null;
|
|
22
22
|
id: string | null;
|
|
23
23
|
following: number | null;
|
|
@@ -29,8 +29,8 @@ declare const TwitterUserSchema: z.ZodObject<{
|
|
|
29
29
|
tweetsCount: number | null;
|
|
30
30
|
createdAt: string | null;
|
|
31
31
|
}, {
|
|
32
|
-
name: string | null;
|
|
33
32
|
description: string | null;
|
|
33
|
+
name: string | null;
|
|
34
34
|
url: string | null;
|
|
35
35
|
id: string | null;
|
|
36
36
|
following: number | null;
|
|
@@ -60,8 +60,8 @@ 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
|
-
name: string | null;
|
|
64
63
|
description: string | null;
|
|
64
|
+
name: string | null;
|
|
65
65
|
url: string | null;
|
|
66
66
|
id: string | null;
|
|
67
67
|
following: number | null;
|
|
@@ -73,8 +73,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
73
73
|
tweetsCount: number | null;
|
|
74
74
|
createdAt: string | null;
|
|
75
75
|
}, {
|
|
76
|
-
name: string | null;
|
|
77
76
|
description: string | null;
|
|
77
|
+
name: string | null;
|
|
78
78
|
url: string | null;
|
|
79
79
|
id: string | null;
|
|
80
80
|
following: number | null;
|
|
@@ -155,8 +155,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
155
155
|
urls: string[] | null;
|
|
156
156
|
} | null;
|
|
157
157
|
author: {
|
|
158
|
-
name: string | null;
|
|
159
158
|
description: string | null;
|
|
159
|
+
name: string | null;
|
|
160
160
|
url: string | null;
|
|
161
161
|
id: string | null;
|
|
162
162
|
following: number | null;
|
|
@@ -198,8 +198,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
198
198
|
urls: string[] | null;
|
|
199
199
|
} | null;
|
|
200
200
|
author: {
|
|
201
|
-
name: string | null;
|
|
202
201
|
description: string | null;
|
|
202
|
+
name: string | null;
|
|
203
203
|
url: string | null;
|
|
204
204
|
id: string | null;
|
|
205
205
|
following: number | null;
|
|
@@ -280,8 +280,8 @@ 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
|
-
name: string | null;
|
|
284
283
|
description: string | null;
|
|
284
|
+
name: string | null;
|
|
285
285
|
url: string | null;
|
|
286
286
|
id: string | null;
|
|
287
287
|
following: number | null;
|
|
@@ -293,8 +293,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
293
293
|
tweetsCount: number | null;
|
|
294
294
|
createdAt: string | null;
|
|
295
295
|
}, {
|
|
296
|
-
name: string | null;
|
|
297
296
|
description: string | null;
|
|
297
|
+
name: string | null;
|
|
298
298
|
url: string | null;
|
|
299
299
|
id: string | null;
|
|
300
300
|
following: number | null;
|
|
@@ -375,8 +375,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
375
375
|
urls: string[] | null;
|
|
376
376
|
} | null;
|
|
377
377
|
author: {
|
|
378
|
-
name: string | null;
|
|
379
378
|
description: string | null;
|
|
379
|
+
name: string | null;
|
|
380
380
|
url: string | null;
|
|
381
381
|
id: string | null;
|
|
382
382
|
following: number | null;
|
|
@@ -418,8 +418,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
418
418
|
urls: string[] | null;
|
|
419
419
|
} | null;
|
|
420
420
|
author: {
|
|
421
|
-
name: string | null;
|
|
422
421
|
description: string | null;
|
|
422
|
+
name: string | null;
|
|
423
423
|
url: string | null;
|
|
424
424
|
id: string | null;
|
|
425
425
|
following: number | null;
|
|
@@ -469,8 +469,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
469
469
|
urls: string[] | null;
|
|
470
470
|
} | null;
|
|
471
471
|
author: {
|
|
472
|
-
name: string | null;
|
|
473
472
|
description: string | null;
|
|
473
|
+
name: string | null;
|
|
474
474
|
url: string | null;
|
|
475
475
|
id: string | null;
|
|
476
476
|
following: number | null;
|
|
@@ -518,8 +518,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
518
518
|
urls: string[] | null;
|
|
519
519
|
} | null;
|
|
520
520
|
author: {
|
|
521
|
-
name: string | null;
|
|
522
521
|
description: string | null;
|
|
522
|
+
name: string | null;
|
|
523
523
|
url: string | null;
|
|
524
524
|
id: string | null;
|
|
525
525
|
following: number | null;
|
|
@@ -626,8 +626,8 @@ 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
|
-
name: string | null;
|
|
630
629
|
description: string | null;
|
|
630
|
+
name: string | null;
|
|
631
631
|
url: string | null;
|
|
632
632
|
id: string | null;
|
|
633
633
|
following: number | null;
|
|
@@ -639,8 +639,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
639
639
|
tweetsCount: number | null;
|
|
640
640
|
createdAt: string | null;
|
|
641
641
|
}, {
|
|
642
|
-
name: string | null;
|
|
643
642
|
description: string | null;
|
|
643
|
+
name: string | null;
|
|
644
644
|
url: string | null;
|
|
645
645
|
id: string | null;
|
|
646
646
|
following: number | null;
|
|
@@ -721,8 +721,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
721
721
|
urls: string[] | null;
|
|
722
722
|
} | null;
|
|
723
723
|
author: {
|
|
724
|
-
name: string | null;
|
|
725
724
|
description: string | null;
|
|
725
|
+
name: string | null;
|
|
726
726
|
url: string | null;
|
|
727
727
|
id: string | null;
|
|
728
728
|
following: number | null;
|
|
@@ -764,8 +764,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
764
764
|
urls: string[] | null;
|
|
765
765
|
} | null;
|
|
766
766
|
author: {
|
|
767
|
-
name: string | null;
|
|
768
767
|
description: string | null;
|
|
768
|
+
name: string | null;
|
|
769
769
|
url: string | null;
|
|
770
770
|
id: string | null;
|
|
771
771
|
following: number | null;
|
|
@@ -815,8 +815,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
815
815
|
urls: string[] | null;
|
|
816
816
|
} | null;
|
|
817
817
|
author: {
|
|
818
|
-
name: string | null;
|
|
819
818
|
description: string | null;
|
|
819
|
+
name: string | null;
|
|
820
820
|
url: string | null;
|
|
821
821
|
id: string | null;
|
|
822
822
|
following: number | null;
|
|
@@ -864,8 +864,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
864
864
|
urls: string[] | null;
|
|
865
865
|
} | null;
|
|
866
866
|
author: {
|
|
867
|
-
name: string | null;
|
|
868
867
|
description: string | null;
|
|
868
|
+
name: string | null;
|
|
869
869
|
url: string | null;
|
|
870
870
|
id: string | null;
|
|
871
871
|
following: number | null;
|
|
@@ -37,8 +37,8 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
37
37
|
loadTime?: number | undefined;
|
|
38
38
|
}>>;
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
|
-
title: string;
|
|
41
40
|
format: string;
|
|
41
|
+
title: string;
|
|
42
42
|
content: string;
|
|
43
43
|
url: string;
|
|
44
44
|
success: boolean;
|
|
@@ -49,8 +49,8 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
49
49
|
loadTime?: number | undefined;
|
|
50
50
|
} | undefined;
|
|
51
51
|
}, {
|
|
52
|
-
title: string;
|
|
53
52
|
format: string;
|
|
53
|
+
title: string;
|
|
54
54
|
content: string;
|
|
55
55
|
url: string;
|
|
56
56
|
success: boolean;
|
|
@@ -101,8 +101,8 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
101
101
|
loadTime?: number | undefined;
|
|
102
102
|
}>>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
title: string;
|
|
105
104
|
format: string;
|
|
105
|
+
title: string;
|
|
106
106
|
content: string;
|
|
107
107
|
url: string;
|
|
108
108
|
success: boolean;
|
|
@@ -113,8 +113,8 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
113
113
|
loadTime?: number | undefined;
|
|
114
114
|
} | undefined;
|
|
115
115
|
}, {
|
|
116
|
-
title: string;
|
|
117
116
|
format: string;
|
|
117
|
+
title: string;
|
|
118
118
|
content: string;
|
|
119
119
|
url: string;
|
|
120
120
|
success: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web-scrape-tool.d.ts","sourceRoot":"","sources":["../../../src/bubbles/tool-bubble/web-scrape-tool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAE3D,OAAO,EAAE,cAAc,EAAE,KAAK,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAgC5E,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"web-scrape-tool.d.ts","sourceRoot":"","sources":["../../../src/bubbles/tool-bubble/web-scrape-tool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAE3D,OAAO,EAAE,cAAc,EAAE,KAAK,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAgC5E,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;EAmB7B,CAAC;AAGH,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAe7B,CAAC;AAGH,KAAK,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,yBAAyB,CAAC,CAAC;AACtE,KAAK,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,yBAAyB,CAAC,CAAC;AACtE,KAAK,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE1E,qBAAa,aAAc,SAAQ,UAAU,CAC3C,mBAAmB,EACnB,mBAAmB,CACpB;IAEC,MAAM,CAAC,QAAQ,CAAC,UAAU,EAAE,UAAU,CAAqB;IAC3D,MAAM,CAAC,QAAQ,CAAC,MAAM;;;;;;;;;;;;;;;OAA6B;IACnD,MAAM,CAAC,QAAQ,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAA6B;IACzD,MAAM,CAAC,QAAQ,CAAC,gBAAgB,kLACiJ;IACjL,MAAM,CAAC,QAAQ,CAAC,eAAe,m7BAuB7B;IACF,MAAM,CAAC,QAAQ,CAAC,KAAK,YAAY;IACjC,MAAM,CAAC,QAAQ,CAAC,IAAI,UAAU;gBAG5B,MAAM,GAAE,wBAAsC,EAC9C,OAAO,CAAC,EAAE,aAAa;IAKnB,aAAa,IAAI,OAAO,CAAC,mBAAmB,CAAC;CAyHpD"}
|
|
@@ -39,7 +39,7 @@ const WebScrapeToolParamsSchema = z.object({
|
|
|
39
39
|
format: z
|
|
40
40
|
.enum(['markdown', 'html'])
|
|
41
41
|
.default('markdown')
|
|
42
|
-
.describe('Content format to extract (default: markdown)'),
|
|
42
|
+
.describe('Content format to extract (default: markdown), only use html if looking for particular html elements'),
|
|
43
43
|
onlyMainContent: z
|
|
44
44
|
.boolean()
|
|
45
45
|
.default(true)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web-scrape-tool.js","sourceRoot":"","sources":["../../../src/bubbles/tool-bubble/web-scrape-tool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAE9D,OAAO,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAE,cAAc,EAAmB,MAAM,2BAA2B,CAAC;AAC5E,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAE9D,6EAA6E;AAC7E,kCAAkC;AAClC,YAAY;AACZ,gFAAgF;AAChF,2CAA2C;AAC3C,oBAAoB;AACpB,gBAAgB;AAChB,kBAAkB;AAClB,4DAA4D;AAC5D,gBAAgB;AAChB,gBAAgB;AAChB,kBAAkB;AAClB,4EAA4E;AAC5E,uEAAuE;AACvE,WAAW;AACX,gBAAgB;AAChB,kBAAkB;AAClB,6DAA6D;AAC7D,iBAAiB;AACjB,4BAA4B;AAC5B,kBAAkB;AAClB,kDAAkD;AAClD,cAAc;AACd,gBAAgB;AAChB,kBAAkB;AAClB,4DAA4D;AAC5D,MAAM;AAEN,6DAA6D;AAC7D,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,GAAG,EAAE,CAAC;SACH,MAAM,EAAE;SACR,GAAG,CAAC,qBAAqB,CAAC;SAC1B,QAAQ,CAAC,gCAAgC,CAAC;IAC7C,MAAM,EAAE,CAAC;SACN,IAAI,CAAC,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC;SAC1B,OAAO,CAAC,UAAU,CAAC;SACnB,QAAQ,
|
|
1
|
+
{"version":3,"file":"web-scrape-tool.js","sourceRoot":"","sources":["../../../src/bubbles/tool-bubble/web-scrape-tool.ts"],"names":[],"mappings":"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"}
|
|
@@ -9,16 +9,16 @@ declare const WebSearchToolParamsSchema: z.ZodObject<{
|
|
|
9
9
|
location: z.ZodOptional<z.ZodString>;
|
|
10
10
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
limit: number;
|
|
13
12
|
query: string;
|
|
13
|
+
limit: number;
|
|
14
14
|
categories: ("github" | "pdf" | "research")[];
|
|
15
|
-
location?: string | undefined;
|
|
16
15
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
16
|
+
location?: string | undefined;
|
|
17
17
|
}, {
|
|
18
18
|
query: string;
|
|
19
|
-
location?: string | undefined;
|
|
20
19
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
21
20
|
limit?: number | undefined;
|
|
21
|
+
location?: string | undefined;
|
|
22
22
|
categories?: ("github" | "pdf" | "research")[] | undefined;
|
|
23
23
|
}>;
|
|
24
24
|
declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
@@ -43,25 +43,25 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
43
43
|
error: z.ZodString;
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
45
|
success: boolean;
|
|
46
|
+
error: string;
|
|
47
|
+
query: string;
|
|
46
48
|
results: {
|
|
47
49
|
title: string;
|
|
48
50
|
content: string;
|
|
49
51
|
url: string;
|
|
50
52
|
}[];
|
|
51
|
-
error: string;
|
|
52
|
-
query: string;
|
|
53
53
|
creditsUsed: number;
|
|
54
54
|
totalResults: number;
|
|
55
55
|
searchEngine: string;
|
|
56
56
|
}, {
|
|
57
57
|
success: boolean;
|
|
58
|
+
error: string;
|
|
59
|
+
query: string;
|
|
58
60
|
results: {
|
|
59
61
|
title: string;
|
|
60
62
|
content: string;
|
|
61
63
|
url: string;
|
|
62
64
|
}[];
|
|
63
|
-
error: string;
|
|
64
|
-
query: string;
|
|
65
65
|
creditsUsed: number;
|
|
66
66
|
totalResults: number;
|
|
67
67
|
searchEngine: string;
|
|
@@ -78,16 +78,16 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
78
78
|
location: z.ZodOptional<z.ZodString>;
|
|
79
79
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
limit: number;
|
|
82
81
|
query: string;
|
|
82
|
+
limit: number;
|
|
83
83
|
categories: ("github" | "pdf" | "research")[];
|
|
84
|
-
location?: string | undefined;
|
|
85
84
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
|
+
location?: string | undefined;
|
|
86
86
|
}, {
|
|
87
87
|
query: string;
|
|
88
|
-
location?: string | undefined;
|
|
89
88
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
90
89
|
limit?: number | undefined;
|
|
90
|
+
location?: string | undefined;
|
|
91
91
|
categories?: ("github" | "pdf" | "research")[] | undefined;
|
|
92
92
|
}>;
|
|
93
93
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -112,25 +112,25 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
112
112
|
error: z.ZodString;
|
|
113
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
114
|
success: boolean;
|
|
115
|
+
error: string;
|
|
116
|
+
query: string;
|
|
115
117
|
results: {
|
|
116
118
|
title: string;
|
|
117
119
|
content: string;
|
|
118
120
|
url: string;
|
|
119
121
|
}[];
|
|
120
|
-
error: string;
|
|
121
|
-
query: string;
|
|
122
122
|
creditsUsed: number;
|
|
123
123
|
totalResults: number;
|
|
124
124
|
searchEngine: string;
|
|
125
125
|
}, {
|
|
126
126
|
success: boolean;
|
|
127
|
+
error: string;
|
|
128
|
+
query: string;
|
|
127
129
|
results: {
|
|
128
130
|
title: string;
|
|
129
131
|
content: string;
|
|
130
132
|
url: string;
|
|
131
133
|
}[];
|
|
132
|
-
error: string;
|
|
133
|
-
query: string;
|
|
134
134
|
creditsUsed: number;
|
|
135
135
|
totalResults: number;
|
|
136
136
|
searchEngine: string;
|
|
@@ -17,8 +17,8 @@ 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
|
-
title: string | null;
|
|
21
20
|
description: string | null;
|
|
21
|
+
title: string | null;
|
|
22
22
|
date: string | null;
|
|
23
23
|
url: string | null;
|
|
24
24
|
duration: string | null;
|
|
@@ -31,8 +31,8 @@ declare const YouTubeVideoSchema: z.ZodObject<{
|
|
|
31
31
|
channelUrl: string | null;
|
|
32
32
|
subscribers: number | null;
|
|
33
33
|
}, {
|
|
34
|
-
title: string | null;
|
|
35
34
|
description: string | null;
|
|
35
|
+
title: string | null;
|
|
36
36
|
date: string | null;
|
|
37
37
|
url: string | null;
|
|
38
38
|
duration: string | null;
|
|
@@ -103,8 +103,8 @@ 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
|
-
title: string | null;
|
|
107
106
|
description: string | null;
|
|
107
|
+
title: string | null;
|
|
108
108
|
date: string | null;
|
|
109
109
|
url: string | null;
|
|
110
110
|
duration: string | null;
|
|
@@ -117,8 +117,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
117
117
|
channelUrl: string | null;
|
|
118
118
|
subscribers: number | null;
|
|
119
119
|
}, {
|
|
120
|
-
title: string | null;
|
|
121
120
|
description: string | null;
|
|
121
|
+
title: string | null;
|
|
122
122
|
date: string | null;
|
|
123
123
|
url: string | null;
|
|
124
124
|
duration: string | null;
|
|
@@ -154,8 +154,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
154
154
|
error: string;
|
|
155
155
|
totalResults: number;
|
|
156
156
|
videos?: {
|
|
157
|
-
title: string | null;
|
|
158
157
|
description: string | null;
|
|
158
|
+
title: string | null;
|
|
159
159
|
date: string | null;
|
|
160
160
|
url: string | null;
|
|
161
161
|
duration: string | null;
|
|
@@ -180,8 +180,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
180
180
|
error: string;
|
|
181
181
|
totalResults: number;
|
|
182
182
|
videos?: {
|
|
183
|
-
title: string | null;
|
|
184
183
|
description: string | null;
|
|
184
|
+
title: string | null;
|
|
185
185
|
date: string | null;
|
|
186
186
|
url: string | null;
|
|
187
187
|
duration: string | null;
|
|
@@ -261,8 +261,8 @@ 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
|
-
title: string | null;
|
|
265
264
|
description: string | null;
|
|
265
|
+
title: string | null;
|
|
266
266
|
date: string | null;
|
|
267
267
|
url: string | null;
|
|
268
268
|
duration: string | null;
|
|
@@ -275,8 +275,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
275
275
|
channelUrl: string | null;
|
|
276
276
|
subscribers: number | null;
|
|
277
277
|
}, {
|
|
278
|
-
title: string | null;
|
|
279
278
|
description: string | null;
|
|
279
|
+
title: string | null;
|
|
280
280
|
date: string | null;
|
|
281
281
|
url: string | null;
|
|
282
282
|
duration: string | null;
|
|
@@ -312,8 +312,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
312
312
|
error: string;
|
|
313
313
|
totalResults: number;
|
|
314
314
|
videos?: {
|
|
315
|
-
title: string | null;
|
|
316
315
|
description: string | null;
|
|
316
|
+
title: string | null;
|
|
317
317
|
date: string | null;
|
|
318
318
|
url: string | null;
|
|
319
319
|
duration: string | null;
|
|
@@ -338,8 +338,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
338
338
|
error: string;
|
|
339
339
|
totalResults: number;
|
|
340
340
|
videos?: {
|
|
341
|
-
title: string | null;
|
|
342
341
|
description: string | null;
|
|
342
|
+
title: string | null;
|
|
343
343
|
date: string | null;
|
|
344
344
|
url: string | null;
|
|
345
345
|
duration: string | null;
|
|
@@ -156,13 +156,13 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
156
156
|
type: z.ZodEnum<["string", "number", "integer", "float", "date", "boolean"]>;
|
|
157
157
|
description: z.ZodString;
|
|
158
158
|
}, "strip", z.ZodTypeAny, {
|
|
159
|
-
name: string;
|
|
160
159
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
161
160
|
description: string;
|
|
162
|
-
}, {
|
|
163
161
|
name: string;
|
|
162
|
+
}, {
|
|
164
163
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
165
164
|
description: string;
|
|
165
|
+
name: string;
|
|
166
166
|
}>, "many">;
|
|
167
167
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">;
|
|
168
168
|
metadata: z.ZodObject<{
|
|
@@ -224,9 +224,9 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
224
224
|
};
|
|
225
225
|
rows: Record<string, string | number | boolean | null>[];
|
|
226
226
|
columns: {
|
|
227
|
-
name: string;
|
|
228
227
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
229
228
|
description: string;
|
|
229
|
+
name: string;
|
|
230
230
|
}[];
|
|
231
231
|
aiAnalysis: {
|
|
232
232
|
model: string;
|
|
@@ -250,9 +250,9 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
250
250
|
};
|
|
251
251
|
rows: Record<string, string | number | boolean | null>[];
|
|
252
252
|
columns: {
|
|
253
|
-
name: string;
|
|
254
253
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
255
254
|
description: string;
|
|
255
|
+
name: string;
|
|
256
256
|
}[];
|
|
257
257
|
aiAnalysis: {
|
|
258
258
|
model: string;
|
|
@@ -408,13 +408,13 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
408
408
|
type: z.ZodEnum<["string", "number", "integer", "float", "date", "boolean"]>;
|
|
409
409
|
description: z.ZodString;
|
|
410
410
|
}, "strip", z.ZodTypeAny, {
|
|
411
|
-
name: string;
|
|
412
411
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
413
412
|
description: string;
|
|
414
|
-
}, {
|
|
415
413
|
name: string;
|
|
414
|
+
}, {
|
|
416
415
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
417
416
|
description: string;
|
|
417
|
+
name: string;
|
|
418
418
|
}>, "many">;
|
|
419
419
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>, "many">;
|
|
420
420
|
metadata: z.ZodObject<{
|
|
@@ -476,9 +476,9 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
476
476
|
};
|
|
477
477
|
rows: Record<string, string | number | boolean | null>[];
|
|
478
478
|
columns: {
|
|
479
|
-
name: string;
|
|
480
479
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
481
480
|
description: string;
|
|
481
|
+
name: string;
|
|
482
482
|
}[];
|
|
483
483
|
aiAnalysis: {
|
|
484
484
|
model: string;
|
|
@@ -502,9 +502,9 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
502
502
|
};
|
|
503
503
|
rows: Record<string, string | number | boolean | null>[];
|
|
504
504
|
columns: {
|
|
505
|
-
name: string;
|
|
506
505
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
507
506
|
description: string;
|
|
507
|
+
name: string;
|
|
508
508
|
}[];
|
|
509
509
|
aiAnalysis: {
|
|
510
510
|
model: string;
|