@bubblelab/bubble-core 0.1.44 → 0.1.45
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 +67 -67
- package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +6 -6
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
- package/dist/bubbles/service-bubble/firecrawl.d.ts +268 -268
- package/dist/bubbles/service-bubble/followupboss.d.ts +172 -172
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +28 -28
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +88 -88
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +50 -50
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +330 -330
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -147,8 +147,16 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
147
147
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
149
|
url: string | null;
|
|
150
|
-
text: string | null;
|
|
151
150
|
id: string | null;
|
|
151
|
+
stats: {
|
|
152
|
+
viewCount: number | null;
|
|
153
|
+
retweetCount: number | null;
|
|
154
|
+
replyCount: number | null;
|
|
155
|
+
likeCount: number | null;
|
|
156
|
+
quoteCount: number | null;
|
|
157
|
+
bookmarkCount: number | null;
|
|
158
|
+
} | null;
|
|
159
|
+
text: string | null;
|
|
152
160
|
entities: {
|
|
153
161
|
hashtags: string[] | null;
|
|
154
162
|
mentions: string[] | null;
|
|
@@ -168,14 +176,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
168
176
|
tweetsCount: number | null;
|
|
169
177
|
createdAt: string | null;
|
|
170
178
|
} | 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
180
|
type: string | null;
|
|
181
181
|
url: string | null;
|
|
@@ -190,8 +190,16 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
190
190
|
isReply: boolean | null;
|
|
191
191
|
}, {
|
|
192
192
|
url: string | null;
|
|
193
|
-
text: string | null;
|
|
194
193
|
id: string | null;
|
|
194
|
+
stats: {
|
|
195
|
+
viewCount: number | null;
|
|
196
|
+
retweetCount: number | null;
|
|
197
|
+
replyCount: number | null;
|
|
198
|
+
likeCount: number | null;
|
|
199
|
+
quoteCount: number | null;
|
|
200
|
+
bookmarkCount: number | null;
|
|
201
|
+
} | null;
|
|
202
|
+
text: string | null;
|
|
195
203
|
entities: {
|
|
196
204
|
hashtags: string[] | null;
|
|
197
205
|
mentions: string[] | null;
|
|
@@ -211,14 +219,6 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
211
219
|
tweetsCount: number | null;
|
|
212
220
|
createdAt: string | null;
|
|
213
221
|
} | 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
223
|
type: string | null;
|
|
224
224
|
url: string | null;
|
|
@@ -367,8 +367,16 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
367
367
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
368
368
|
}, "strip", z.ZodTypeAny, {
|
|
369
369
|
url: string | null;
|
|
370
|
-
text: string | null;
|
|
371
370
|
id: string | null;
|
|
371
|
+
stats: {
|
|
372
|
+
viewCount: number | null;
|
|
373
|
+
retweetCount: number | null;
|
|
374
|
+
replyCount: number | null;
|
|
375
|
+
likeCount: number | null;
|
|
376
|
+
quoteCount: number | null;
|
|
377
|
+
bookmarkCount: number | null;
|
|
378
|
+
} | null;
|
|
379
|
+
text: string | null;
|
|
372
380
|
entities: {
|
|
373
381
|
hashtags: string[] | null;
|
|
374
382
|
mentions: string[] | null;
|
|
@@ -388,14 +396,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
388
396
|
tweetsCount: number | null;
|
|
389
397
|
createdAt: string | null;
|
|
390
398
|
} | 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
400
|
type: string | null;
|
|
401
401
|
url: string | null;
|
|
@@ -410,8 +410,16 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
410
410
|
isReply: boolean | null;
|
|
411
411
|
}, {
|
|
412
412
|
url: string | null;
|
|
413
|
-
text: string | null;
|
|
414
413
|
id: string | null;
|
|
414
|
+
stats: {
|
|
415
|
+
viewCount: number | null;
|
|
416
|
+
retweetCount: number | null;
|
|
417
|
+
replyCount: number | null;
|
|
418
|
+
likeCount: number | null;
|
|
419
|
+
quoteCount: number | null;
|
|
420
|
+
bookmarkCount: number | null;
|
|
421
|
+
} | null;
|
|
422
|
+
text: string | null;
|
|
415
423
|
entities: {
|
|
416
424
|
hashtags: string[] | null;
|
|
417
425
|
mentions: string[] | null;
|
|
@@ -431,14 +439,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
431
439
|
tweetsCount: number | null;
|
|
432
440
|
createdAt: string | null;
|
|
433
441
|
} | 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
443
|
type: string | null;
|
|
444
444
|
url: string | null;
|
|
@@ -461,8 +461,16 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
461
461
|
error: string;
|
|
462
462
|
tweets: {
|
|
463
463
|
url: string | null;
|
|
464
|
-
text: string | null;
|
|
465
464
|
id: string | null;
|
|
465
|
+
stats: {
|
|
466
|
+
viewCount: number | null;
|
|
467
|
+
retweetCount: number | null;
|
|
468
|
+
replyCount: number | null;
|
|
469
|
+
likeCount: number | null;
|
|
470
|
+
quoteCount: number | null;
|
|
471
|
+
bookmarkCount: number | null;
|
|
472
|
+
} | null;
|
|
473
|
+
text: string | null;
|
|
466
474
|
entities: {
|
|
467
475
|
hashtags: string[] | null;
|
|
468
476
|
mentions: string[] | null;
|
|
@@ -482,14 +490,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
482
490
|
tweetsCount: number | null;
|
|
483
491
|
createdAt: string | null;
|
|
484
492
|
} | 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
494
|
type: string | null;
|
|
495
495
|
url: string | null;
|
|
@@ -510,8 +510,16 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
510
510
|
error: string;
|
|
511
511
|
tweets: {
|
|
512
512
|
url: string | null;
|
|
513
|
-
text: string | null;
|
|
514
513
|
id: string | null;
|
|
514
|
+
stats: {
|
|
515
|
+
viewCount: number | null;
|
|
516
|
+
retweetCount: number | null;
|
|
517
|
+
replyCount: number | null;
|
|
518
|
+
likeCount: number | null;
|
|
519
|
+
quoteCount: number | null;
|
|
520
|
+
bookmarkCount: number | null;
|
|
521
|
+
} | null;
|
|
522
|
+
text: string | null;
|
|
515
523
|
entities: {
|
|
516
524
|
hashtags: string[] | null;
|
|
517
525
|
mentions: string[] | null;
|
|
@@ -531,14 +539,6 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
531
539
|
tweetsCount: number | null;
|
|
532
540
|
createdAt: string | null;
|
|
533
541
|
} | 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
543
|
type: string | null;
|
|
544
544
|
url: string | null;
|
|
@@ -713,8 +713,16 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
713
713
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
|
715
715
|
url: string | null;
|
|
716
|
-
text: string | null;
|
|
717
716
|
id: string | null;
|
|
717
|
+
stats: {
|
|
718
|
+
viewCount: number | null;
|
|
719
|
+
retweetCount: number | null;
|
|
720
|
+
replyCount: number | null;
|
|
721
|
+
likeCount: number | null;
|
|
722
|
+
quoteCount: number | null;
|
|
723
|
+
bookmarkCount: number | null;
|
|
724
|
+
} | null;
|
|
725
|
+
text: string | null;
|
|
718
726
|
entities: {
|
|
719
727
|
hashtags: string[] | null;
|
|
720
728
|
mentions: string[] | null;
|
|
@@ -734,14 +742,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
734
742
|
tweetsCount: number | null;
|
|
735
743
|
createdAt: string | null;
|
|
736
744
|
} | 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
746
|
type: string | null;
|
|
747
747
|
url: string | null;
|
|
@@ -756,8 +756,16 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
756
756
|
isReply: boolean | null;
|
|
757
757
|
}, {
|
|
758
758
|
url: string | null;
|
|
759
|
-
text: string | null;
|
|
760
759
|
id: string | null;
|
|
760
|
+
stats: {
|
|
761
|
+
viewCount: number | null;
|
|
762
|
+
retweetCount: number | null;
|
|
763
|
+
replyCount: number | null;
|
|
764
|
+
likeCount: number | null;
|
|
765
|
+
quoteCount: number | null;
|
|
766
|
+
bookmarkCount: number | null;
|
|
767
|
+
} | null;
|
|
768
|
+
text: string | null;
|
|
761
769
|
entities: {
|
|
762
770
|
hashtags: string[] | null;
|
|
763
771
|
mentions: string[] | null;
|
|
@@ -777,14 +785,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
777
785
|
tweetsCount: number | null;
|
|
778
786
|
createdAt: string | null;
|
|
779
787
|
} | 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
789
|
type: string | null;
|
|
790
790
|
url: string | null;
|
|
@@ -807,8 +807,16 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
807
807
|
error: string;
|
|
808
808
|
tweets: {
|
|
809
809
|
url: string | null;
|
|
810
|
-
text: string | null;
|
|
811
810
|
id: string | null;
|
|
811
|
+
stats: {
|
|
812
|
+
viewCount: number | null;
|
|
813
|
+
retweetCount: number | null;
|
|
814
|
+
replyCount: number | null;
|
|
815
|
+
likeCount: number | null;
|
|
816
|
+
quoteCount: number | null;
|
|
817
|
+
bookmarkCount: number | null;
|
|
818
|
+
} | null;
|
|
819
|
+
text: string | null;
|
|
812
820
|
entities: {
|
|
813
821
|
hashtags: string[] | null;
|
|
814
822
|
mentions: string[] | null;
|
|
@@ -828,14 +836,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
828
836
|
tweetsCount: number | null;
|
|
829
837
|
createdAt: string | null;
|
|
830
838
|
} | 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
840
|
type: string | null;
|
|
841
841
|
url: string | null;
|
|
@@ -856,8 +856,16 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
856
856
|
error: string;
|
|
857
857
|
tweets: {
|
|
858
858
|
url: string | null;
|
|
859
|
-
text: string | null;
|
|
860
859
|
id: string | null;
|
|
860
|
+
stats: {
|
|
861
|
+
viewCount: number | null;
|
|
862
|
+
retweetCount: number | null;
|
|
863
|
+
replyCount: number | null;
|
|
864
|
+
likeCount: number | null;
|
|
865
|
+
quoteCount: number | null;
|
|
866
|
+
bookmarkCount: number | null;
|
|
867
|
+
} | null;
|
|
868
|
+
text: string | null;
|
|
861
869
|
entities: {
|
|
862
870
|
hashtags: string[] | null;
|
|
863
871
|
mentions: string[] | null;
|
|
@@ -877,14 +885,6 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
877
885
|
tweetsCount: number | null;
|
|
878
886
|
createdAt: string | null;
|
|
879
887
|
} | 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
889
|
type: string | null;
|
|
890
890
|
url: string | null;
|
|
@@ -44,24 +44,24 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
45
|
success: boolean;
|
|
46
46
|
error: string;
|
|
47
|
-
query: string;
|
|
48
47
|
results: {
|
|
49
48
|
title: string;
|
|
50
49
|
content: string;
|
|
51
50
|
url: string;
|
|
52
51
|
}[];
|
|
52
|
+
query: string;
|
|
53
53
|
creditsUsed: number;
|
|
54
54
|
totalResults: number;
|
|
55
55
|
searchEngine: string;
|
|
56
56
|
}, {
|
|
57
57
|
success: boolean;
|
|
58
58
|
error: string;
|
|
59
|
-
query: string;
|
|
60
59
|
results: {
|
|
61
60
|
title: string;
|
|
62
61
|
content: string;
|
|
63
62
|
url: string;
|
|
64
63
|
}[];
|
|
64
|
+
query: string;
|
|
65
65
|
creditsUsed: number;
|
|
66
66
|
totalResults: number;
|
|
67
67
|
searchEngine: string;
|
|
@@ -113,24 +113,24 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
113
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
114
|
success: boolean;
|
|
115
115
|
error: string;
|
|
116
|
-
query: string;
|
|
117
116
|
results: {
|
|
118
117
|
title: string;
|
|
119
118
|
content: string;
|
|
120
119
|
url: string;
|
|
121
120
|
}[];
|
|
121
|
+
query: string;
|
|
122
122
|
creditsUsed: number;
|
|
123
123
|
totalResults: number;
|
|
124
124
|
searchEngine: string;
|
|
125
125
|
}, {
|
|
126
126
|
success: boolean;
|
|
127
127
|
error: string;
|
|
128
|
-
query: string;
|
|
129
128
|
results: {
|
|
130
129
|
title: string;
|
|
131
130
|
content: string;
|
|
132
131
|
url: string;
|
|
133
132
|
}[];
|
|
133
|
+
query: string;
|
|
134
134
|
creditsUsed: number;
|
|
135
135
|
totalResults: number;
|
|
136
136
|
searchEngine: string;
|
|
@@ -121,7 +121,7 @@ declare const GenerateDocumentWorkflowParamsSchema: z.ZodObject<{
|
|
|
121
121
|
} | undefined;
|
|
122
122
|
}[];
|
|
123
123
|
outputDescription: string;
|
|
124
|
-
outputFormat: "
|
|
124
|
+
outputFormat: "json" | "csv" | "html";
|
|
125
125
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
126
126
|
}, {
|
|
127
127
|
documents: {
|
|
@@ -145,7 +145,7 @@ declare const GenerateDocumentWorkflowParamsSchema: z.ZodObject<{
|
|
|
145
145
|
maxTokens?: number | undefined;
|
|
146
146
|
jsonMode?: boolean | undefined;
|
|
147
147
|
} | undefined;
|
|
148
|
-
outputFormat?: "
|
|
148
|
+
outputFormat?: "json" | "csv" | "html" | undefined;
|
|
149
149
|
}>;
|
|
150
150
|
/**
|
|
151
151
|
* Result schema for Generate Document workflow
|
|
@@ -189,13 +189,13 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
189
189
|
csv: z.ZodOptional<z.ZodString>;
|
|
190
190
|
json: z.ZodOptional<z.ZodString>;
|
|
191
191
|
}, "strip", z.ZodTypeAny, {
|
|
192
|
-
html?: string | undefined;
|
|
193
192
|
json?: string | undefined;
|
|
194
193
|
csv?: string | undefined;
|
|
195
|
-
}, {
|
|
196
194
|
html?: string | undefined;
|
|
195
|
+
}, {
|
|
197
196
|
json?: string | undefined;
|
|
198
197
|
csv?: string | undefined;
|
|
198
|
+
html?: string | undefined;
|
|
199
199
|
}>;
|
|
200
200
|
aiAnalysis: z.ZodObject<{
|
|
201
201
|
model: z.ZodString;
|
|
@@ -234,9 +234,9 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
234
234
|
processingTime?: number | undefined;
|
|
235
235
|
};
|
|
236
236
|
generatedFiles: {
|
|
237
|
-
html?: string | undefined;
|
|
238
237
|
json?: string | undefined;
|
|
239
238
|
csv?: string | undefined;
|
|
239
|
+
html?: string | undefined;
|
|
240
240
|
};
|
|
241
241
|
}, {
|
|
242
242
|
success: boolean;
|
|
@@ -260,9 +260,9 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
260
260
|
processingTime?: number | undefined;
|
|
261
261
|
};
|
|
262
262
|
generatedFiles: {
|
|
263
|
-
html?: string | undefined;
|
|
264
263
|
json?: string | undefined;
|
|
265
264
|
csv?: string | undefined;
|
|
265
|
+
html?: string | undefined;
|
|
266
266
|
};
|
|
267
267
|
}>;
|
|
268
268
|
type GenerateDocumentWorkflowParams = z.input<typeof GenerateDocumentWorkflowParamsSchema>;
|
|
@@ -376,7 +376,7 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
376
376
|
} | undefined;
|
|
377
377
|
}[];
|
|
378
378
|
outputDescription: string;
|
|
379
|
-
outputFormat: "
|
|
379
|
+
outputFormat: "json" | "csv" | "html";
|
|
380
380
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
381
381
|
}, {
|
|
382
382
|
documents: {
|
|
@@ -400,7 +400,7 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
400
400
|
maxTokens?: number | undefined;
|
|
401
401
|
jsonMode?: boolean | undefined;
|
|
402
402
|
} | undefined;
|
|
403
|
-
outputFormat?: "
|
|
403
|
+
outputFormat?: "json" | "csv" | "html" | undefined;
|
|
404
404
|
}>;
|
|
405
405
|
static readonly resultSchema: z.ZodObject<{
|
|
406
406
|
columns: z.ZodArray<z.ZodObject<{
|
|
@@ -441,13 +441,13 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
441
441
|
csv: z.ZodOptional<z.ZodString>;
|
|
442
442
|
json: z.ZodOptional<z.ZodString>;
|
|
443
443
|
}, "strip", z.ZodTypeAny, {
|
|
444
|
-
html?: string | undefined;
|
|
445
444
|
json?: string | undefined;
|
|
446
445
|
csv?: string | undefined;
|
|
447
|
-
}, {
|
|
448
446
|
html?: string | undefined;
|
|
447
|
+
}, {
|
|
449
448
|
json?: string | undefined;
|
|
450
449
|
csv?: string | undefined;
|
|
450
|
+
html?: string | undefined;
|
|
451
451
|
}>;
|
|
452
452
|
aiAnalysis: z.ZodObject<{
|
|
453
453
|
model: z.ZodString;
|
|
@@ -486,9 +486,9 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
486
486
|
processingTime?: number | undefined;
|
|
487
487
|
};
|
|
488
488
|
generatedFiles: {
|
|
489
|
-
html?: string | undefined;
|
|
490
489
|
json?: string | undefined;
|
|
491
490
|
csv?: string | undefined;
|
|
491
|
+
html?: string | undefined;
|
|
492
492
|
};
|
|
493
493
|
}, {
|
|
494
494
|
success: boolean;
|
|
@@ -512,9 +512,9 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
512
512
|
processingTime?: number | undefined;
|
|
513
513
|
};
|
|
514
514
|
generatedFiles: {
|
|
515
|
-
html?: string | undefined;
|
|
516
515
|
json?: string | undefined;
|
|
517
516
|
csv?: string | undefined;
|
|
517
|
+
html?: string | undefined;
|
|
518
518
|
};
|
|
519
519
|
}>;
|
|
520
520
|
static readonly shortDescription = "Generate Document workflow: convert markdown to structured formats using AI";
|
|
@@ -166,7 +166,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
166
166
|
emoji?: boolean | undefined;
|
|
167
167
|
verbatim?: boolean | undefined;
|
|
168
168
|
} | undefined;
|
|
169
|
-
element?: unknown;
|
|
170
169
|
image_url?: string | undefined;
|
|
171
170
|
optional?: boolean | undefined;
|
|
172
171
|
fields?: {
|
|
@@ -184,6 +183,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
184
183
|
}[] | undefined;
|
|
185
184
|
block_id?: string | undefined;
|
|
186
185
|
accessory?: unknown;
|
|
186
|
+
element?: unknown;
|
|
187
187
|
label?: unknown;
|
|
188
188
|
hint?: unknown;
|
|
189
189
|
}, {
|
|
@@ -199,7 +199,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
199
199
|
emoji?: boolean | undefined;
|
|
200
200
|
verbatim?: boolean | undefined;
|
|
201
201
|
} | undefined;
|
|
202
|
-
element?: unknown;
|
|
203
202
|
image_url?: string | undefined;
|
|
204
203
|
optional?: boolean | undefined;
|
|
205
204
|
fields?: {
|
|
@@ -217,6 +216,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
217
216
|
}[] | undefined;
|
|
218
217
|
block_id?: string | undefined;
|
|
219
218
|
accessory?: unknown;
|
|
219
|
+
element?: unknown;
|
|
220
220
|
label?: unknown;
|
|
221
221
|
hint?: unknown;
|
|
222
222
|
}>, "many">>;
|
|
@@ -255,14 +255,14 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
|
256
256
|
success: boolean;
|
|
257
257
|
error: string;
|
|
258
|
-
response: string;
|
|
259
|
-
iterations: number;
|
|
260
258
|
metadata: {
|
|
261
259
|
verbosityLevel: string;
|
|
262
260
|
technicalityLevel: string;
|
|
263
261
|
wordCount: number;
|
|
264
262
|
blockCount?: number | undefined;
|
|
265
263
|
};
|
|
264
|
+
response: string;
|
|
265
|
+
iterations: number;
|
|
266
266
|
toolCalls?: {
|
|
267
267
|
tool: string;
|
|
268
268
|
input?: unknown;
|
|
@@ -281,7 +281,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
281
281
|
emoji?: boolean | undefined;
|
|
282
282
|
verbatim?: boolean | undefined;
|
|
283
283
|
} | undefined;
|
|
284
|
-
element?: unknown;
|
|
285
284
|
image_url?: string | undefined;
|
|
286
285
|
optional?: boolean | undefined;
|
|
287
286
|
fields?: {
|
|
@@ -299,20 +298,21 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
299
298
|
}[] | undefined;
|
|
300
299
|
block_id?: string | undefined;
|
|
301
300
|
accessory?: unknown;
|
|
301
|
+
element?: unknown;
|
|
302
302
|
label?: unknown;
|
|
303
303
|
hint?: unknown;
|
|
304
304
|
}[] | undefined;
|
|
305
305
|
}, {
|
|
306
306
|
success: boolean;
|
|
307
307
|
error: string;
|
|
308
|
-
response: string;
|
|
309
|
-
iterations: number;
|
|
310
308
|
metadata: {
|
|
311
309
|
verbosityLevel: string;
|
|
312
310
|
technicalityLevel: string;
|
|
313
311
|
wordCount: number;
|
|
314
312
|
blockCount?: number | undefined;
|
|
315
313
|
};
|
|
314
|
+
response: string;
|
|
315
|
+
iterations: number;
|
|
316
316
|
toolCalls?: {
|
|
317
317
|
tool: string;
|
|
318
318
|
input?: unknown;
|
|
@@ -331,7 +331,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
331
331
|
emoji?: boolean | undefined;
|
|
332
332
|
verbatim?: boolean | undefined;
|
|
333
333
|
} | undefined;
|
|
334
|
-
element?: unknown;
|
|
335
334
|
image_url?: string | undefined;
|
|
336
335
|
optional?: boolean | undefined;
|
|
337
336
|
fields?: {
|
|
@@ -349,6 +348,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
349
348
|
}[] | undefined;
|
|
350
349
|
block_id?: string | undefined;
|
|
351
350
|
accessory?: unknown;
|
|
351
|
+
element?: unknown;
|
|
352
352
|
label?: unknown;
|
|
353
353
|
hint?: unknown;
|
|
354
354
|
}[] | undefined;
|
|
@@ -524,7 +524,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
524
524
|
emoji?: boolean | undefined;
|
|
525
525
|
verbatim?: boolean | undefined;
|
|
526
526
|
} | undefined;
|
|
527
|
-
element?: unknown;
|
|
528
527
|
image_url?: string | undefined;
|
|
529
528
|
optional?: boolean | undefined;
|
|
530
529
|
fields?: {
|
|
@@ -542,6 +541,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
542
541
|
}[] | undefined;
|
|
543
542
|
block_id?: string | undefined;
|
|
544
543
|
accessory?: unknown;
|
|
544
|
+
element?: unknown;
|
|
545
545
|
label?: unknown;
|
|
546
546
|
hint?: unknown;
|
|
547
547
|
}, {
|
|
@@ -557,7 +557,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
557
557
|
emoji?: boolean | undefined;
|
|
558
558
|
verbatim?: boolean | undefined;
|
|
559
559
|
} | undefined;
|
|
560
|
-
element?: unknown;
|
|
561
560
|
image_url?: string | undefined;
|
|
562
561
|
optional?: boolean | undefined;
|
|
563
562
|
fields?: {
|
|
@@ -575,6 +574,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
575
574
|
}[] | undefined;
|
|
576
575
|
block_id?: string | undefined;
|
|
577
576
|
accessory?: unknown;
|
|
577
|
+
element?: unknown;
|
|
578
578
|
label?: unknown;
|
|
579
579
|
hint?: unknown;
|
|
580
580
|
}>, "many">>;
|
|
@@ -613,14 +613,14 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
613
613
|
}, "strip", z.ZodTypeAny, {
|
|
614
614
|
success: boolean;
|
|
615
615
|
error: string;
|
|
616
|
-
response: string;
|
|
617
|
-
iterations: number;
|
|
618
616
|
metadata: {
|
|
619
617
|
verbosityLevel: string;
|
|
620
618
|
technicalityLevel: string;
|
|
621
619
|
wordCount: number;
|
|
622
620
|
blockCount?: number | undefined;
|
|
623
621
|
};
|
|
622
|
+
response: string;
|
|
623
|
+
iterations: number;
|
|
624
624
|
toolCalls?: {
|
|
625
625
|
tool: string;
|
|
626
626
|
input?: unknown;
|
|
@@ -639,7 +639,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
639
639
|
emoji?: boolean | undefined;
|
|
640
640
|
verbatim?: boolean | undefined;
|
|
641
641
|
} | undefined;
|
|
642
|
-
element?: unknown;
|
|
643
642
|
image_url?: string | undefined;
|
|
644
643
|
optional?: boolean | undefined;
|
|
645
644
|
fields?: {
|
|
@@ -657,20 +656,21 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
657
656
|
}[] | undefined;
|
|
658
657
|
block_id?: string | undefined;
|
|
659
658
|
accessory?: unknown;
|
|
659
|
+
element?: unknown;
|
|
660
660
|
label?: unknown;
|
|
661
661
|
hint?: unknown;
|
|
662
662
|
}[] | undefined;
|
|
663
663
|
}, {
|
|
664
664
|
success: boolean;
|
|
665
665
|
error: string;
|
|
666
|
-
response: string;
|
|
667
|
-
iterations: number;
|
|
668
666
|
metadata: {
|
|
669
667
|
verbosityLevel: string;
|
|
670
668
|
technicalityLevel: string;
|
|
671
669
|
wordCount: number;
|
|
672
670
|
blockCount?: number | undefined;
|
|
673
671
|
};
|
|
672
|
+
response: string;
|
|
673
|
+
iterations: number;
|
|
674
674
|
toolCalls?: {
|
|
675
675
|
tool: string;
|
|
676
676
|
input?: unknown;
|
|
@@ -689,7 +689,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
689
689
|
emoji?: boolean | undefined;
|
|
690
690
|
verbatim?: boolean | undefined;
|
|
691
691
|
} | undefined;
|
|
692
|
-
element?: unknown;
|
|
693
692
|
image_url?: string | undefined;
|
|
694
693
|
optional?: boolean | undefined;
|
|
695
694
|
fields?: {
|
|
@@ -707,6 +706,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
707
706
|
}[] | undefined;
|
|
708
707
|
block_id?: string | undefined;
|
|
709
708
|
accessory?: unknown;
|
|
709
|
+
element?: unknown;
|
|
710
710
|
label?: unknown;
|
|
711
711
|
hint?: unknown;
|
|
712
712
|
}[] | undefined;
|
package/dist/bubbles.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bubblelab/bubble-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.45",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"puppeteer-core": "^24.10.0",
|
|
41
41
|
"resend": "^4.8.0",
|
|
42
42
|
"zod": "^3.24.1",
|
|
43
|
-
"@bubblelab/shared-schemas": "0.1.
|
|
43
|
+
"@bubblelab/shared-schemas": "0.1.46"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"zod-to-json-schema": "^3.24.6",
|