@bubblelab/bubble-core 0.1.33 → 0.1.35
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 +85 -85
- package/dist/bubbles/service-bubble/agi-inc.d.ts +116 -116
- package/dist/bubbles/service-bubble/ai-agent.d.ts +36 -36
- package/dist/bubbles/service-bubble/airtable.d.ts +232 -232
- package/dist/bubbles/service-bubble/apify/apify.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +50 -50
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +56 -56
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +326 -326
- package/dist/bubbles/service-bubble/followupboss.d.ts +332 -332
- package/dist/bubbles/service-bubble/github.d.ts +172 -172
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +232 -232
- package/dist/bubbles/service-bubble/google-drive.d.ts +128 -128
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +54 -54
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +18 -18
- package/dist/bubbles/service-bubble/jira/jira.d.ts +513 -513
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +670 -670
- package/dist/bubbles/service-bubble/notion/notion.d.ts +204 -204
- package/dist/bubbles/service-bubble/postgresql.d.ts +18 -18
- package/dist/bubbles/service-bubble/resend.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack/slack.d.ts +414 -414
- package/dist/bubbles/service-bubble/storage.d.ts +60 -60
- package/dist/bubbles/service-bubble/telegram.d.ts +122 -122
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +33 -33
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +424 -424
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +192 -192
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +38 -38
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +68 -68
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +60 -60
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -160,12 +160,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
160
160
|
text: string;
|
|
161
161
|
emoji?: boolean | undefined;
|
|
162
162
|
} | undefined;
|
|
163
|
-
fields?: {
|
|
164
|
-
type: "plain_text" | "mrkdwn";
|
|
165
|
-
text: string;
|
|
166
|
-
emoji?: boolean | undefined;
|
|
167
|
-
verbatim?: boolean | undefined;
|
|
168
|
-
}[] | undefined;
|
|
169
163
|
text?: {
|
|
170
164
|
type: "plain_text" | "mrkdwn";
|
|
171
165
|
text: string;
|
|
@@ -174,6 +168,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
174
168
|
} | undefined;
|
|
175
169
|
image_url?: string | undefined;
|
|
176
170
|
optional?: boolean | undefined;
|
|
171
|
+
fields?: {
|
|
172
|
+
type: "plain_text" | "mrkdwn";
|
|
173
|
+
text: string;
|
|
174
|
+
emoji?: boolean | undefined;
|
|
175
|
+
verbatim?: boolean | undefined;
|
|
176
|
+
}[] | undefined;
|
|
177
177
|
alt_text?: string | undefined;
|
|
178
178
|
elements?: {
|
|
179
179
|
type: "plain_text" | "mrkdwn";
|
|
@@ -193,12 +193,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
193
193
|
text: string;
|
|
194
194
|
emoji?: boolean | undefined;
|
|
195
195
|
} | undefined;
|
|
196
|
-
fields?: {
|
|
197
|
-
type: "plain_text" | "mrkdwn";
|
|
198
|
-
text: string;
|
|
199
|
-
emoji?: boolean | undefined;
|
|
200
|
-
verbatim?: boolean | undefined;
|
|
201
|
-
}[] | undefined;
|
|
202
196
|
text?: {
|
|
203
197
|
type: "plain_text" | "mrkdwn";
|
|
204
198
|
text: string;
|
|
@@ -207,6 +201,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
207
201
|
} | undefined;
|
|
208
202
|
image_url?: string | undefined;
|
|
209
203
|
optional?: boolean | undefined;
|
|
204
|
+
fields?: {
|
|
205
|
+
type: "plain_text" | "mrkdwn";
|
|
206
|
+
text: string;
|
|
207
|
+
emoji?: boolean | undefined;
|
|
208
|
+
verbatim?: boolean | undefined;
|
|
209
|
+
}[] | undefined;
|
|
210
210
|
alt_text?: string | undefined;
|
|
211
211
|
elements?: {
|
|
212
212
|
type: "plain_text" | "mrkdwn";
|
|
@@ -253,16 +253,16 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
253
253
|
error: z.ZodString;
|
|
254
254
|
success: z.ZodBoolean;
|
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
|
256
|
-
success: boolean;
|
|
257
256
|
error: string;
|
|
258
|
-
|
|
259
|
-
iterations: number;
|
|
257
|
+
success: boolean;
|
|
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;
|
|
@@ -275,12 +275,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
275
275
|
text: string;
|
|
276
276
|
emoji?: boolean | undefined;
|
|
277
277
|
} | undefined;
|
|
278
|
-
fields?: {
|
|
279
|
-
type: "plain_text" | "mrkdwn";
|
|
280
|
-
text: string;
|
|
281
|
-
emoji?: boolean | undefined;
|
|
282
|
-
verbatim?: boolean | undefined;
|
|
283
|
-
}[] | undefined;
|
|
284
278
|
text?: {
|
|
285
279
|
type: "plain_text" | "mrkdwn";
|
|
286
280
|
text: string;
|
|
@@ -289,6 +283,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
289
283
|
} | undefined;
|
|
290
284
|
image_url?: string | undefined;
|
|
291
285
|
optional?: boolean | undefined;
|
|
286
|
+
fields?: {
|
|
287
|
+
type: "plain_text" | "mrkdwn";
|
|
288
|
+
text: string;
|
|
289
|
+
emoji?: boolean | undefined;
|
|
290
|
+
verbatim?: boolean | undefined;
|
|
291
|
+
}[] | undefined;
|
|
292
292
|
alt_text?: string | undefined;
|
|
293
293
|
elements?: {
|
|
294
294
|
type: "plain_text" | "mrkdwn";
|
|
@@ -303,16 +303,16 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
303
303
|
hint?: unknown;
|
|
304
304
|
}[] | undefined;
|
|
305
305
|
}, {
|
|
306
|
-
success: boolean;
|
|
307
306
|
error: string;
|
|
308
|
-
|
|
309
|
-
iterations: number;
|
|
307
|
+
success: boolean;
|
|
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;
|
|
@@ -325,12 +325,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
325
325
|
text: string;
|
|
326
326
|
emoji?: boolean | undefined;
|
|
327
327
|
} | undefined;
|
|
328
|
-
fields?: {
|
|
329
|
-
type: "plain_text" | "mrkdwn";
|
|
330
|
-
text: string;
|
|
331
|
-
emoji?: boolean | undefined;
|
|
332
|
-
verbatim?: boolean | undefined;
|
|
333
|
-
}[] | undefined;
|
|
334
328
|
text?: {
|
|
335
329
|
type: "plain_text" | "mrkdwn";
|
|
336
330
|
text: string;
|
|
@@ -339,6 +333,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
339
333
|
} | undefined;
|
|
340
334
|
image_url?: string | undefined;
|
|
341
335
|
optional?: boolean | undefined;
|
|
336
|
+
fields?: {
|
|
337
|
+
type: "plain_text" | "mrkdwn";
|
|
338
|
+
text: string;
|
|
339
|
+
emoji?: boolean | undefined;
|
|
340
|
+
verbatim?: boolean | undefined;
|
|
341
|
+
}[] | undefined;
|
|
342
342
|
alt_text?: string | undefined;
|
|
343
343
|
elements?: {
|
|
344
344
|
type: "plain_text" | "mrkdwn";
|
|
@@ -518,12 +518,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
518
518
|
text: string;
|
|
519
519
|
emoji?: boolean | undefined;
|
|
520
520
|
} | undefined;
|
|
521
|
-
fields?: {
|
|
522
|
-
type: "plain_text" | "mrkdwn";
|
|
523
|
-
text: string;
|
|
524
|
-
emoji?: boolean | undefined;
|
|
525
|
-
verbatim?: boolean | undefined;
|
|
526
|
-
}[] | undefined;
|
|
527
521
|
text?: {
|
|
528
522
|
type: "plain_text" | "mrkdwn";
|
|
529
523
|
text: string;
|
|
@@ -532,6 +526,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
532
526
|
} | undefined;
|
|
533
527
|
image_url?: string | undefined;
|
|
534
528
|
optional?: boolean | undefined;
|
|
529
|
+
fields?: {
|
|
530
|
+
type: "plain_text" | "mrkdwn";
|
|
531
|
+
text: string;
|
|
532
|
+
emoji?: boolean | undefined;
|
|
533
|
+
verbatim?: boolean | undefined;
|
|
534
|
+
}[] | undefined;
|
|
535
535
|
alt_text?: string | undefined;
|
|
536
536
|
elements?: {
|
|
537
537
|
type: "plain_text" | "mrkdwn";
|
|
@@ -551,12 +551,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
551
551
|
text: string;
|
|
552
552
|
emoji?: boolean | undefined;
|
|
553
553
|
} | undefined;
|
|
554
|
-
fields?: {
|
|
555
|
-
type: "plain_text" | "mrkdwn";
|
|
556
|
-
text: string;
|
|
557
|
-
emoji?: boolean | undefined;
|
|
558
|
-
verbatim?: boolean | undefined;
|
|
559
|
-
}[] | undefined;
|
|
560
554
|
text?: {
|
|
561
555
|
type: "plain_text" | "mrkdwn";
|
|
562
556
|
text: string;
|
|
@@ -565,6 +559,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
565
559
|
} | undefined;
|
|
566
560
|
image_url?: string | undefined;
|
|
567
561
|
optional?: boolean | undefined;
|
|
562
|
+
fields?: {
|
|
563
|
+
type: "plain_text" | "mrkdwn";
|
|
564
|
+
text: string;
|
|
565
|
+
emoji?: boolean | undefined;
|
|
566
|
+
verbatim?: boolean | undefined;
|
|
567
|
+
}[] | undefined;
|
|
568
568
|
alt_text?: string | undefined;
|
|
569
569
|
elements?: {
|
|
570
570
|
type: "plain_text" | "mrkdwn";
|
|
@@ -611,16 +611,16 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
611
611
|
error: z.ZodString;
|
|
612
612
|
success: z.ZodBoolean;
|
|
613
613
|
}, "strip", z.ZodTypeAny, {
|
|
614
|
-
success: boolean;
|
|
615
614
|
error: string;
|
|
616
|
-
|
|
617
|
-
iterations: number;
|
|
615
|
+
success: boolean;
|
|
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;
|
|
@@ -633,12 +633,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
633
633
|
text: string;
|
|
634
634
|
emoji?: boolean | undefined;
|
|
635
635
|
} | undefined;
|
|
636
|
-
fields?: {
|
|
637
|
-
type: "plain_text" | "mrkdwn";
|
|
638
|
-
text: string;
|
|
639
|
-
emoji?: boolean | undefined;
|
|
640
|
-
verbatim?: boolean | undefined;
|
|
641
|
-
}[] | undefined;
|
|
642
636
|
text?: {
|
|
643
637
|
type: "plain_text" | "mrkdwn";
|
|
644
638
|
text: string;
|
|
@@ -647,6 +641,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
647
641
|
} | undefined;
|
|
648
642
|
image_url?: string | undefined;
|
|
649
643
|
optional?: boolean | undefined;
|
|
644
|
+
fields?: {
|
|
645
|
+
type: "plain_text" | "mrkdwn";
|
|
646
|
+
text: string;
|
|
647
|
+
emoji?: boolean | undefined;
|
|
648
|
+
verbatim?: boolean | undefined;
|
|
649
|
+
}[] | undefined;
|
|
650
650
|
alt_text?: string | undefined;
|
|
651
651
|
elements?: {
|
|
652
652
|
type: "plain_text" | "mrkdwn";
|
|
@@ -661,16 +661,16 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
661
661
|
hint?: unknown;
|
|
662
662
|
}[] | undefined;
|
|
663
663
|
}, {
|
|
664
|
-
success: boolean;
|
|
665
664
|
error: string;
|
|
666
|
-
|
|
667
|
-
iterations: number;
|
|
665
|
+
success: boolean;
|
|
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;
|
|
@@ -683,12 +683,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
683
683
|
text: string;
|
|
684
684
|
emoji?: boolean | undefined;
|
|
685
685
|
} | undefined;
|
|
686
|
-
fields?: {
|
|
687
|
-
type: "plain_text" | "mrkdwn";
|
|
688
|
-
text: string;
|
|
689
|
-
emoji?: boolean | undefined;
|
|
690
|
-
verbatim?: boolean | undefined;
|
|
691
|
-
}[] | undefined;
|
|
692
686
|
text?: {
|
|
693
687
|
type: "plain_text" | "mrkdwn";
|
|
694
688
|
text: string;
|
|
@@ -697,6 +691,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
697
691
|
} | undefined;
|
|
698
692
|
image_url?: string | undefined;
|
|
699
693
|
optional?: boolean | undefined;
|
|
694
|
+
fields?: {
|
|
695
|
+
type: "plain_text" | "mrkdwn";
|
|
696
|
+
text: string;
|
|
697
|
+
emoji?: boolean | undefined;
|
|
698
|
+
verbatim?: boolean | undefined;
|
|
699
|
+
}[] | undefined;
|
|
700
700
|
alt_text?: string | undefined;
|
|
701
701
|
elements?: {
|
|
702
702
|
type: "plain_text" | "mrkdwn";
|
|
@@ -148,8 +148,8 @@ declare const SlackNotifierResultSchema: z.ZodObject<{
|
|
|
148
148
|
originalLength?: number | undefined;
|
|
149
149
|
}>>;
|
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
|
151
|
-
success: boolean;
|
|
152
151
|
error: string;
|
|
152
|
+
success: boolean;
|
|
153
153
|
messageInfo?: {
|
|
154
154
|
channelName?: string | undefined;
|
|
155
155
|
messageTimestamp?: string | undefined;
|
|
@@ -163,8 +163,8 @@ declare const SlackNotifierResultSchema: z.ZodObject<{
|
|
|
163
163
|
originalLength?: number | undefined;
|
|
164
164
|
} | undefined;
|
|
165
165
|
}, {
|
|
166
|
-
success: boolean;
|
|
167
166
|
error: string;
|
|
167
|
+
success: boolean;
|
|
168
168
|
messageInfo?: {
|
|
169
169
|
channelName?: string | undefined;
|
|
170
170
|
messageTimestamp?: string | undefined;
|
|
@@ -344,8 +344,8 @@ export declare class SlackNotifierWorkflowBubble extends WorkflowBubble<SlackNot
|
|
|
344
344
|
originalLength?: number | undefined;
|
|
345
345
|
}>>;
|
|
346
346
|
}, "strip", z.ZodTypeAny, {
|
|
347
|
-
success: boolean;
|
|
348
347
|
error: string;
|
|
348
|
+
success: boolean;
|
|
349
349
|
messageInfo?: {
|
|
350
350
|
channelName?: string | undefined;
|
|
351
351
|
messageTimestamp?: string | undefined;
|
|
@@ -359,8 +359,8 @@ export declare class SlackNotifierWorkflowBubble extends WorkflowBubble<SlackNot
|
|
|
359
359
|
originalLength?: number | undefined;
|
|
360
360
|
} | undefined;
|
|
361
361
|
}, {
|
|
362
|
-
success: boolean;
|
|
363
362
|
error: string;
|
|
363
|
+
success: boolean;
|
|
364
364
|
messageInfo?: {
|
|
365
365
|
channelName?: string | undefined;
|
|
366
366
|
messageTimestamp?: string | 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.35",
|
|
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.36"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"zod-to-json-schema": "^3.24.6",
|