@bubblelab/bubble-core 0.1.51 → 0.1.52
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 +50 -50
- package/dist/bubbles/service-bubble/agi-inc.d.ts +8 -8
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +124 -124
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +48 -48
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +36 -36
- package/dist/bubbles/service-bubble/github.d.ts +56 -56
- package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
- package/dist/bubbles/service-bubble/google-drive.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.d.ts +24 -24
- package/dist/bubbles/service-bubble/notion/notion.d.ts +392 -392
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +28 -28
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +201 -32
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +51 -0
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +210 -40
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +45 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +140 -140
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- 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 +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +252 -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
|
-
description: string | null;
|
|
20
19
|
id: string | null;
|
|
21
20
|
name: string | null;
|
|
21
|
+
description: string | null;
|
|
22
22
|
url: 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
|
-
description: string | null;
|
|
33
32
|
id: string | null;
|
|
34
33
|
name: string | null;
|
|
34
|
+
description: string | null;
|
|
35
35
|
url: 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
|
-
description: string | null;
|
|
64
63
|
id: string | null;
|
|
65
64
|
name: string | null;
|
|
65
|
+
description: string | null;
|
|
66
66
|
url: 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
|
-
description: string | null;
|
|
77
76
|
id: string | null;
|
|
78
77
|
name: string | null;
|
|
78
|
+
description: string | null;
|
|
79
79
|
url: string | null;
|
|
80
80
|
following: number | null;
|
|
81
81
|
userName: string | null;
|
|
@@ -155,9 +155,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
155
155
|
urls: string[] | null;
|
|
156
156
|
} | null;
|
|
157
157
|
author: {
|
|
158
|
-
description: string | null;
|
|
159
158
|
id: string | null;
|
|
160
159
|
name: string | null;
|
|
160
|
+
description: string | null;
|
|
161
161
|
url: string | null;
|
|
162
162
|
following: number | null;
|
|
163
163
|
userName: string | null;
|
|
@@ -198,9 +198,9 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
198
198
|
urls: string[] | null;
|
|
199
199
|
} | null;
|
|
200
200
|
author: {
|
|
201
|
-
description: string | null;
|
|
202
201
|
id: string | null;
|
|
203
202
|
name: string | null;
|
|
203
|
+
description: string | null;
|
|
204
204
|
url: string | null;
|
|
205
205
|
following: number | null;
|
|
206
206
|
userName: string | 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
|
-
description: string | null;
|
|
284
283
|
id: string | null;
|
|
285
284
|
name: string | null;
|
|
285
|
+
description: string | null;
|
|
286
286
|
url: 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
|
-
description: string | null;
|
|
297
296
|
id: string | null;
|
|
298
297
|
name: string | null;
|
|
298
|
+
description: string | null;
|
|
299
299
|
url: string | null;
|
|
300
300
|
following: number | null;
|
|
301
301
|
userName: string | null;
|
|
@@ -375,9 +375,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
375
375
|
urls: string[] | null;
|
|
376
376
|
} | null;
|
|
377
377
|
author: {
|
|
378
|
-
description: string | null;
|
|
379
378
|
id: string | null;
|
|
380
379
|
name: string | null;
|
|
380
|
+
description: string | null;
|
|
381
381
|
url: string | null;
|
|
382
382
|
following: number | null;
|
|
383
383
|
userName: string | null;
|
|
@@ -418,9 +418,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
418
418
|
urls: string[] | null;
|
|
419
419
|
} | null;
|
|
420
420
|
author: {
|
|
421
|
-
description: string | null;
|
|
422
421
|
id: string | null;
|
|
423
422
|
name: string | null;
|
|
423
|
+
description: string | null;
|
|
424
424
|
url: string | null;
|
|
425
425
|
following: number | null;
|
|
426
426
|
userName: string | null;
|
|
@@ -469,9 +469,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
469
469
|
urls: string[] | null;
|
|
470
470
|
} | null;
|
|
471
471
|
author: {
|
|
472
|
-
description: string | null;
|
|
473
472
|
id: string | null;
|
|
474
473
|
name: string | null;
|
|
474
|
+
description: string | null;
|
|
475
475
|
url: string | null;
|
|
476
476
|
following: number | null;
|
|
477
477
|
userName: string | null;
|
|
@@ -518,9 +518,9 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
518
518
|
urls: string[] | null;
|
|
519
519
|
} | null;
|
|
520
520
|
author: {
|
|
521
|
-
description: string | null;
|
|
522
521
|
id: string | null;
|
|
523
522
|
name: string | null;
|
|
523
|
+
description: string | null;
|
|
524
524
|
url: string | null;
|
|
525
525
|
following: number | null;
|
|
526
526
|
userName: string | 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
|
-
description: string | null;
|
|
630
629
|
id: string | null;
|
|
631
630
|
name: string | null;
|
|
631
|
+
description: string | null;
|
|
632
632
|
url: 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
|
-
description: string | null;
|
|
643
642
|
id: string | null;
|
|
644
643
|
name: string | null;
|
|
644
|
+
description: string | null;
|
|
645
645
|
url: string | null;
|
|
646
646
|
following: number | null;
|
|
647
647
|
userName: string | null;
|
|
@@ -721,9 +721,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
721
721
|
urls: string[] | null;
|
|
722
722
|
} | null;
|
|
723
723
|
author: {
|
|
724
|
-
description: string | null;
|
|
725
724
|
id: string | null;
|
|
726
725
|
name: string | null;
|
|
726
|
+
description: string | null;
|
|
727
727
|
url: string | null;
|
|
728
728
|
following: number | null;
|
|
729
729
|
userName: string | null;
|
|
@@ -764,9 +764,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
764
764
|
urls: string[] | null;
|
|
765
765
|
} | null;
|
|
766
766
|
author: {
|
|
767
|
-
description: string | null;
|
|
768
767
|
id: string | null;
|
|
769
768
|
name: string | null;
|
|
769
|
+
description: string | null;
|
|
770
770
|
url: string | null;
|
|
771
771
|
following: number | null;
|
|
772
772
|
userName: string | null;
|
|
@@ -815,9 +815,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
815
815
|
urls: string[] | null;
|
|
816
816
|
} | null;
|
|
817
817
|
author: {
|
|
818
|
-
description: string | null;
|
|
819
818
|
id: string | null;
|
|
820
819
|
name: string | null;
|
|
820
|
+
description: string | null;
|
|
821
821
|
url: string | null;
|
|
822
822
|
following: number | null;
|
|
823
823
|
userName: string | null;
|
|
@@ -864,9 +864,9 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
864
864
|
urls: string[] | null;
|
|
865
865
|
} | null;
|
|
866
866
|
author: {
|
|
867
|
-
description: string | null;
|
|
868
867
|
id: string | null;
|
|
869
868
|
name: string | null;
|
|
869
|
+
description: string | null;
|
|
870
870
|
url: string | null;
|
|
871
871
|
following: number | null;
|
|
872
872
|
userName: string | null;
|
|
@@ -17,10 +17,10 @@ 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
|
+
id: string | null;
|
|
20
21
|
description: string | null;
|
|
21
22
|
title: string | null;
|
|
22
23
|
date: string | null;
|
|
23
|
-
id: string | null;
|
|
24
24
|
url: string | null;
|
|
25
25
|
duration: string | null;
|
|
26
26
|
thumbnail: string | null;
|
|
@@ -31,10 +31,10 @@ declare const YouTubeVideoSchema: z.ZodObject<{
|
|
|
31
31
|
channelUrl: string | null;
|
|
32
32
|
subscribers: number | null;
|
|
33
33
|
}, {
|
|
34
|
+
id: string | null;
|
|
34
35
|
description: string | null;
|
|
35
36
|
title: string | null;
|
|
36
37
|
date: string | null;
|
|
37
|
-
id: string | null;
|
|
38
38
|
url: string | null;
|
|
39
39
|
duration: string | null;
|
|
40
40
|
thumbnail: string | null;
|
|
@@ -103,10 +103,10 @@ 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
|
+
id: string | null;
|
|
106
107
|
description: string | null;
|
|
107
108
|
title: string | null;
|
|
108
109
|
date: string | null;
|
|
109
|
-
id: string | null;
|
|
110
110
|
url: string | null;
|
|
111
111
|
duration: string | null;
|
|
112
112
|
thumbnail: string | null;
|
|
@@ -117,10 +117,10 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
117
117
|
channelUrl: string | null;
|
|
118
118
|
subscribers: number | null;
|
|
119
119
|
}, {
|
|
120
|
+
id: string | null;
|
|
120
121
|
description: string | null;
|
|
121
122
|
title: string | null;
|
|
122
123
|
date: string | null;
|
|
123
|
-
id: string | null;
|
|
124
124
|
url: string | null;
|
|
125
125
|
duration: string | null;
|
|
126
126
|
thumbnail: string | null;
|
|
@@ -154,10 +154,10 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
154
154
|
error: string;
|
|
155
155
|
totalResults: number;
|
|
156
156
|
videos?: {
|
|
157
|
+
id: string | null;
|
|
157
158
|
description: string | null;
|
|
158
159
|
title: string | null;
|
|
159
160
|
date: string | null;
|
|
160
|
-
id: string | null;
|
|
161
161
|
url: string | null;
|
|
162
162
|
duration: string | null;
|
|
163
163
|
thumbnail: string | null;
|
|
@@ -180,10 +180,10 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
180
180
|
error: string;
|
|
181
181
|
totalResults: number;
|
|
182
182
|
videos?: {
|
|
183
|
+
id: string | null;
|
|
183
184
|
description: string | null;
|
|
184
185
|
title: string | null;
|
|
185
186
|
date: string | null;
|
|
186
|
-
id: string | null;
|
|
187
187
|
url: string | null;
|
|
188
188
|
duration: string | null;
|
|
189
189
|
thumbnail: string | null;
|
|
@@ -261,10 +261,10 @@ 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
|
+
id: string | null;
|
|
264
265
|
description: string | null;
|
|
265
266
|
title: string | null;
|
|
266
267
|
date: string | null;
|
|
267
|
-
id: string | null;
|
|
268
268
|
url: string | null;
|
|
269
269
|
duration: string | null;
|
|
270
270
|
thumbnail: string | null;
|
|
@@ -275,10 +275,10 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
275
275
|
channelUrl: string | null;
|
|
276
276
|
subscribers: number | null;
|
|
277
277
|
}, {
|
|
278
|
+
id: string | null;
|
|
278
279
|
description: string | null;
|
|
279
280
|
title: string | null;
|
|
280
281
|
date: string | null;
|
|
281
|
-
id: string | null;
|
|
282
282
|
url: string | null;
|
|
283
283
|
duration: string | null;
|
|
284
284
|
thumbnail: string | null;
|
|
@@ -312,10 +312,10 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
312
312
|
error: string;
|
|
313
313
|
totalResults: number;
|
|
314
314
|
videos?: {
|
|
315
|
+
id: string | null;
|
|
315
316
|
description: string | null;
|
|
316
317
|
title: string | null;
|
|
317
318
|
date: string | null;
|
|
318
|
-
id: string | null;
|
|
319
319
|
url: string | null;
|
|
320
320
|
duration: string | null;
|
|
321
321
|
thumbnail: string | null;
|
|
@@ -338,10 +338,10 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
338
338
|
error: string;
|
|
339
339
|
totalResults: number;
|
|
340
340
|
videos?: {
|
|
341
|
+
id: string | null;
|
|
341
342
|
description: string | null;
|
|
342
343
|
title: string | null;
|
|
343
344
|
date: string | null;
|
|
344
|
-
id: string | null;
|
|
345
345
|
url: string | null;
|
|
346
346
|
duration: string | null;
|
|
347
347
|
thumbnail: 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;
|
|
159
160
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
160
161
|
description: string;
|
|
161
|
-
name: string;
|
|
162
162
|
}, {
|
|
163
|
+
name: string;
|
|
163
164
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
164
165
|
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
|
error: string;
|
|
225
225
|
rows: Record<string, string | number | boolean | null>[];
|
|
226
226
|
columns: {
|
|
227
|
+
name: string;
|
|
227
228
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
228
229
|
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
|
error: string;
|
|
251
251
|
rows: Record<string, string | number | boolean | null>[];
|
|
252
252
|
columns: {
|
|
253
|
+
name: string;
|
|
253
254
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
254
255
|
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;
|
|
411
412
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
412
413
|
description: string;
|
|
413
|
-
name: string;
|
|
414
414
|
}, {
|
|
415
|
+
name: string;
|
|
415
416
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
416
417
|
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
|
error: string;
|
|
477
477
|
rows: Record<string, string | number | boolean | null>[];
|
|
478
478
|
columns: {
|
|
479
|
+
name: string;
|
|
479
480
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
480
481
|
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
|
error: string;
|
|
503
503
|
rows: Record<string, string | number | boolean | null>[];
|
|
504
504
|
columns: {
|
|
505
|
+
name: string;
|
|
505
506
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
506
507
|
description: string;
|
|
507
|
-
name: string;
|
|
508
508
|
}[];
|
|
509
509
|
aiAnalysis: {
|
|
510
510
|
model: string;
|