@bubblelab/bubble-core 0.1.62 → 0.1.64
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 +88 -88
- package/dist/bubbles/service-bubble/agi-inc.d.ts +148 -148
- package/dist/bubbles/service-bubble/ai-agent.d.ts +80 -80
- package/dist/bubbles/service-bubble/airtable.d.ts +214 -214
- package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +84 -84
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +90 -90
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +106 -106
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +138 -138
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +862 -862
- package/dist/bubbles/service-bubble/followupboss.d.ts +270 -270
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +88 -88
- package/dist/bubbles/service-bubble/github.d.ts +268 -268
- package/dist/bubbles/service-bubble/gmail.d.ts +416 -416
- package/dist/bubbles/service-bubble/google-calendar.d.ts +162 -162
- 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 +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +74 -74
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1923 -1923
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +44 -44
- package/dist/bubbles/service-bubble/slack/slack.d.ts +465 -465
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +141 -141
- package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +29 -29
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +88 -88
- 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 +8 -8
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +338 -338
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +130 -130
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +80 -80
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +182 -182
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +22 -22
- 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 +32 -32
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +44 -44
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +114 -114
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +56 -56
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -54,9 +54,9 @@ declare const SlackFormatterAgentParamsSchema: z.ZodObject<{
|
|
|
54
54
|
maxIterations: number;
|
|
55
55
|
verbosity: "1" | "2" | "3" | "4" | "5";
|
|
56
56
|
technicality: "1" | "2" | "3" | "4" | "5";
|
|
57
|
+
includeBlockKit: boolean;
|
|
57
58
|
includeQuery: boolean;
|
|
58
59
|
includeExplanation: boolean;
|
|
59
|
-
includeBlockKit: boolean;
|
|
60
60
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
61
61
|
additionalContext?: string | undefined;
|
|
62
62
|
}, {
|
|
@@ -75,10 +75,10 @@ declare const SlackFormatterAgentParamsSchema: z.ZodObject<{
|
|
|
75
75
|
maxIterations?: number | undefined;
|
|
76
76
|
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
77
77
|
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
78
|
+
includeBlockKit?: boolean | undefined;
|
|
78
79
|
includeQuery?: boolean | undefined;
|
|
79
80
|
includeExplanation?: boolean | undefined;
|
|
80
81
|
additionalContext?: string | undefined;
|
|
81
|
-
includeBlockKit?: boolean | undefined;
|
|
82
82
|
}>;
|
|
83
83
|
declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
84
84
|
response: z.ZodString;
|
|
@@ -166,13 +166,14 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
166
166
|
emoji?: boolean | undefined;
|
|
167
167
|
verbatim?: boolean | undefined;
|
|
168
168
|
} | undefined;
|
|
169
|
+
image_url?: string | undefined;
|
|
170
|
+
optional?: boolean | undefined;
|
|
169
171
|
fields?: {
|
|
170
172
|
type: "plain_text" | "mrkdwn";
|
|
171
173
|
text: string;
|
|
172
174
|
emoji?: boolean | undefined;
|
|
173
175
|
verbatim?: boolean | undefined;
|
|
174
176
|
}[] | undefined;
|
|
175
|
-
image_url?: string | undefined;
|
|
176
177
|
alt_text?: string | undefined;
|
|
177
178
|
elements?: {
|
|
178
179
|
type: "plain_text" | "mrkdwn";
|
|
@@ -180,11 +181,10 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
180
181
|
emoji?: boolean | undefined;
|
|
181
182
|
verbatim?: boolean | undefined;
|
|
182
183
|
}[] | undefined;
|
|
183
|
-
label?: unknown;
|
|
184
|
-
optional?: boolean | undefined;
|
|
185
|
-
element?: unknown;
|
|
186
184
|
block_id?: string | undefined;
|
|
187
185
|
accessory?: unknown;
|
|
186
|
+
element?: unknown;
|
|
187
|
+
label?: unknown;
|
|
188
188
|
hint?: unknown;
|
|
189
189
|
}, {
|
|
190
190
|
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
@@ -199,13 +199,14 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
199
199
|
emoji?: boolean | undefined;
|
|
200
200
|
verbatim?: boolean | undefined;
|
|
201
201
|
} | undefined;
|
|
202
|
+
image_url?: string | undefined;
|
|
203
|
+
optional?: boolean | undefined;
|
|
202
204
|
fields?: {
|
|
203
205
|
type: "plain_text" | "mrkdwn";
|
|
204
206
|
text: string;
|
|
205
207
|
emoji?: boolean | undefined;
|
|
206
208
|
verbatim?: boolean | undefined;
|
|
207
209
|
}[] | undefined;
|
|
208
|
-
image_url?: string | undefined;
|
|
209
210
|
alt_text?: string | undefined;
|
|
210
211
|
elements?: {
|
|
211
212
|
type: "plain_text" | "mrkdwn";
|
|
@@ -213,11 +214,10 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
213
214
|
emoji?: boolean | undefined;
|
|
214
215
|
verbatim?: boolean | undefined;
|
|
215
216
|
}[] | undefined;
|
|
216
|
-
label?: unknown;
|
|
217
|
-
optional?: boolean | undefined;
|
|
218
|
-
element?: unknown;
|
|
219
217
|
block_id?: string | undefined;
|
|
220
218
|
accessory?: unknown;
|
|
219
|
+
element?: unknown;
|
|
220
|
+
label?: unknown;
|
|
221
221
|
hint?: unknown;
|
|
222
222
|
}>, "many">>;
|
|
223
223
|
metadata: z.ZodObject<{
|
|
@@ -226,14 +226,14 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
226
226
|
wordCount: z.ZodNumber;
|
|
227
227
|
blockCount: z.ZodOptional<z.ZodNumber>;
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
|
229
|
-
wordCount: number;
|
|
230
229
|
verbosityLevel: string;
|
|
231
230
|
technicalityLevel: string;
|
|
231
|
+
wordCount: number;
|
|
232
232
|
blockCount?: number | undefined;
|
|
233
233
|
}, {
|
|
234
|
-
wordCount: number;
|
|
235
234
|
verbosityLevel: string;
|
|
236
235
|
technicalityLevel: string;
|
|
236
|
+
wordCount: number;
|
|
237
237
|
blockCount?: number | undefined;
|
|
238
238
|
}>;
|
|
239
239
|
toolCalls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -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
|
-
wordCount: number;
|
|
262
259
|
verbosityLevel: string;
|
|
263
260
|
technicalityLevel: string;
|
|
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,13 +281,14 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
281
281
|
emoji?: boolean | undefined;
|
|
282
282
|
verbatim?: boolean | undefined;
|
|
283
283
|
} | undefined;
|
|
284
|
+
image_url?: string | undefined;
|
|
285
|
+
optional?: boolean | undefined;
|
|
284
286
|
fields?: {
|
|
285
287
|
type: "plain_text" | "mrkdwn";
|
|
286
288
|
text: string;
|
|
287
289
|
emoji?: boolean | undefined;
|
|
288
290
|
verbatim?: boolean | undefined;
|
|
289
291
|
}[] | undefined;
|
|
290
|
-
image_url?: string | undefined;
|
|
291
292
|
alt_text?: string | undefined;
|
|
292
293
|
elements?: {
|
|
293
294
|
type: "plain_text" | "mrkdwn";
|
|
@@ -295,24 +296,23 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
295
296
|
emoji?: boolean | undefined;
|
|
296
297
|
verbatim?: boolean | undefined;
|
|
297
298
|
}[] | undefined;
|
|
298
|
-
label?: unknown;
|
|
299
|
-
optional?: boolean | undefined;
|
|
300
|
-
element?: unknown;
|
|
301
299
|
block_id?: string | undefined;
|
|
302
300
|
accessory?: unknown;
|
|
301
|
+
element?: unknown;
|
|
302
|
+
label?: unknown;
|
|
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
|
-
wordCount: number;
|
|
312
309
|
verbosityLevel: string;
|
|
313
310
|
technicalityLevel: string;
|
|
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,13 +331,14 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
331
331
|
emoji?: boolean | undefined;
|
|
332
332
|
verbatim?: boolean | undefined;
|
|
333
333
|
} | undefined;
|
|
334
|
+
image_url?: string | undefined;
|
|
335
|
+
optional?: boolean | undefined;
|
|
334
336
|
fields?: {
|
|
335
337
|
type: "plain_text" | "mrkdwn";
|
|
336
338
|
text: string;
|
|
337
339
|
emoji?: boolean | undefined;
|
|
338
340
|
verbatim?: boolean | undefined;
|
|
339
341
|
}[] | undefined;
|
|
340
|
-
image_url?: string | undefined;
|
|
341
342
|
alt_text?: string | undefined;
|
|
342
343
|
elements?: {
|
|
343
344
|
type: "plain_text" | "mrkdwn";
|
|
@@ -345,11 +346,10 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
345
346
|
emoji?: boolean | undefined;
|
|
346
347
|
verbatim?: boolean | undefined;
|
|
347
348
|
}[] | undefined;
|
|
348
|
-
label?: unknown;
|
|
349
|
-
optional?: boolean | undefined;
|
|
350
|
-
element?: unknown;
|
|
351
349
|
block_id?: string | undefined;
|
|
352
350
|
accessory?: unknown;
|
|
351
|
+
element?: unknown;
|
|
352
|
+
label?: unknown;
|
|
353
353
|
hint?: unknown;
|
|
354
354
|
}[] | undefined;
|
|
355
355
|
}>;
|
|
@@ -412,9 +412,9 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
412
412
|
maxIterations: number;
|
|
413
413
|
verbosity: "1" | "2" | "3" | "4" | "5";
|
|
414
414
|
technicality: "1" | "2" | "3" | "4" | "5";
|
|
415
|
+
includeBlockKit: boolean;
|
|
415
416
|
includeQuery: boolean;
|
|
416
417
|
includeExplanation: boolean;
|
|
417
|
-
includeBlockKit: boolean;
|
|
418
418
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
419
419
|
additionalContext?: string | undefined;
|
|
420
420
|
}, {
|
|
@@ -433,10 +433,10 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
433
433
|
maxIterations?: number | undefined;
|
|
434
434
|
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
435
435
|
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
436
|
+
includeBlockKit?: boolean | undefined;
|
|
436
437
|
includeQuery?: boolean | undefined;
|
|
437
438
|
includeExplanation?: boolean | undefined;
|
|
438
439
|
additionalContext?: string | undefined;
|
|
439
|
-
includeBlockKit?: boolean | undefined;
|
|
440
440
|
}>;
|
|
441
441
|
static readonly resultSchema: z.ZodObject<{
|
|
442
442
|
response: z.ZodString;
|
|
@@ -524,13 +524,14 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
524
524
|
emoji?: boolean | undefined;
|
|
525
525
|
verbatim?: boolean | undefined;
|
|
526
526
|
} | undefined;
|
|
527
|
+
image_url?: string | undefined;
|
|
528
|
+
optional?: boolean | undefined;
|
|
527
529
|
fields?: {
|
|
528
530
|
type: "plain_text" | "mrkdwn";
|
|
529
531
|
text: string;
|
|
530
532
|
emoji?: boolean | undefined;
|
|
531
533
|
verbatim?: boolean | undefined;
|
|
532
534
|
}[] | undefined;
|
|
533
|
-
image_url?: string | undefined;
|
|
534
535
|
alt_text?: string | undefined;
|
|
535
536
|
elements?: {
|
|
536
537
|
type: "plain_text" | "mrkdwn";
|
|
@@ -538,11 +539,10 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
538
539
|
emoji?: boolean | undefined;
|
|
539
540
|
verbatim?: boolean | undefined;
|
|
540
541
|
}[] | undefined;
|
|
541
|
-
label?: unknown;
|
|
542
|
-
optional?: boolean | undefined;
|
|
543
|
-
element?: unknown;
|
|
544
542
|
block_id?: string | undefined;
|
|
545
543
|
accessory?: unknown;
|
|
544
|
+
element?: unknown;
|
|
545
|
+
label?: unknown;
|
|
546
546
|
hint?: unknown;
|
|
547
547
|
}, {
|
|
548
548
|
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
@@ -557,13 +557,14 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
557
557
|
emoji?: boolean | undefined;
|
|
558
558
|
verbatim?: boolean | undefined;
|
|
559
559
|
} | undefined;
|
|
560
|
+
image_url?: string | undefined;
|
|
561
|
+
optional?: boolean | undefined;
|
|
560
562
|
fields?: {
|
|
561
563
|
type: "plain_text" | "mrkdwn";
|
|
562
564
|
text: string;
|
|
563
565
|
emoji?: boolean | undefined;
|
|
564
566
|
verbatim?: boolean | undefined;
|
|
565
567
|
}[] | undefined;
|
|
566
|
-
image_url?: string | undefined;
|
|
567
568
|
alt_text?: string | undefined;
|
|
568
569
|
elements?: {
|
|
569
570
|
type: "plain_text" | "mrkdwn";
|
|
@@ -571,11 +572,10 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
571
572
|
emoji?: boolean | undefined;
|
|
572
573
|
verbatim?: boolean | undefined;
|
|
573
574
|
}[] | undefined;
|
|
574
|
-
label?: unknown;
|
|
575
|
-
optional?: boolean | undefined;
|
|
576
|
-
element?: unknown;
|
|
577
575
|
block_id?: string | undefined;
|
|
578
576
|
accessory?: unknown;
|
|
577
|
+
element?: unknown;
|
|
578
|
+
label?: unknown;
|
|
579
579
|
hint?: unknown;
|
|
580
580
|
}>, "many">>;
|
|
581
581
|
metadata: z.ZodObject<{
|
|
@@ -584,14 +584,14 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
584
584
|
wordCount: z.ZodNumber;
|
|
585
585
|
blockCount: z.ZodOptional<z.ZodNumber>;
|
|
586
586
|
}, "strip", z.ZodTypeAny, {
|
|
587
|
-
wordCount: number;
|
|
588
587
|
verbosityLevel: string;
|
|
589
588
|
technicalityLevel: string;
|
|
589
|
+
wordCount: number;
|
|
590
590
|
blockCount?: number | undefined;
|
|
591
591
|
}, {
|
|
592
|
-
wordCount: number;
|
|
593
592
|
verbosityLevel: string;
|
|
594
593
|
technicalityLevel: string;
|
|
594
|
+
wordCount: number;
|
|
595
595
|
blockCount?: number | undefined;
|
|
596
596
|
}>;
|
|
597
597
|
toolCalls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -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
|
-
wordCount: number;
|
|
620
617
|
verbosityLevel: string;
|
|
621
618
|
technicalityLevel: string;
|
|
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,13 +639,14 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
639
639
|
emoji?: boolean | undefined;
|
|
640
640
|
verbatim?: boolean | undefined;
|
|
641
641
|
} | undefined;
|
|
642
|
+
image_url?: string | undefined;
|
|
643
|
+
optional?: boolean | undefined;
|
|
642
644
|
fields?: {
|
|
643
645
|
type: "plain_text" | "mrkdwn";
|
|
644
646
|
text: string;
|
|
645
647
|
emoji?: boolean | undefined;
|
|
646
648
|
verbatim?: boolean | undefined;
|
|
647
649
|
}[] | undefined;
|
|
648
|
-
image_url?: string | undefined;
|
|
649
650
|
alt_text?: string | undefined;
|
|
650
651
|
elements?: {
|
|
651
652
|
type: "plain_text" | "mrkdwn";
|
|
@@ -653,24 +654,23 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
653
654
|
emoji?: boolean | undefined;
|
|
654
655
|
verbatim?: boolean | undefined;
|
|
655
656
|
}[] | undefined;
|
|
656
|
-
label?: unknown;
|
|
657
|
-
optional?: boolean | undefined;
|
|
658
|
-
element?: unknown;
|
|
659
657
|
block_id?: string | undefined;
|
|
660
658
|
accessory?: unknown;
|
|
659
|
+
element?: unknown;
|
|
660
|
+
label?: unknown;
|
|
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
|
-
wordCount: number;
|
|
670
667
|
verbosityLevel: string;
|
|
671
668
|
technicalityLevel: string;
|
|
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,13 +689,14 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
689
689
|
emoji?: boolean | undefined;
|
|
690
690
|
verbatim?: boolean | undefined;
|
|
691
691
|
} | undefined;
|
|
692
|
+
image_url?: string | undefined;
|
|
693
|
+
optional?: boolean | undefined;
|
|
692
694
|
fields?: {
|
|
693
695
|
type: "plain_text" | "mrkdwn";
|
|
694
696
|
text: string;
|
|
695
697
|
emoji?: boolean | undefined;
|
|
696
698
|
verbatim?: boolean | undefined;
|
|
697
699
|
}[] | undefined;
|
|
698
|
-
image_url?: string | undefined;
|
|
699
700
|
alt_text?: string | undefined;
|
|
700
701
|
elements?: {
|
|
701
702
|
type: "plain_text" | "mrkdwn";
|
|
@@ -703,11 +704,10 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
703
704
|
emoji?: boolean | undefined;
|
|
704
705
|
verbatim?: boolean | undefined;
|
|
705
706
|
}[] | undefined;
|
|
706
|
-
label?: unknown;
|
|
707
|
-
optional?: boolean | undefined;
|
|
708
|
-
element?: unknown;
|
|
709
707
|
block_id?: string | undefined;
|
|
710
708
|
accessory?: unknown;
|
|
709
|
+
element?: unknown;
|
|
710
|
+
label?: unknown;
|
|
711
711
|
hint?: unknown;
|
|
712
712
|
}[] | undefined;
|
|
713
713
|
}>;
|
|
@@ -54,7 +54,7 @@ declare const SlackNotifierParamsSchema: z.ZodObject<{
|
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
55
|
contentToFormat: string;
|
|
56
56
|
targetChannel: string;
|
|
57
|
-
messageStyle: "
|
|
57
|
+
messageStyle: "concise" | "detailed" | "professional" | "casual" | "technical";
|
|
58
58
|
includeFormatting: boolean;
|
|
59
59
|
maxMessageLength: number;
|
|
60
60
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -71,7 +71,7 @@ declare const SlackNotifierParamsSchema: z.ZodObject<{
|
|
|
71
71
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
72
72
|
originalUserQuery?: string | undefined;
|
|
73
73
|
messageTitle?: string | undefined;
|
|
74
|
-
messageStyle?: "
|
|
74
|
+
messageStyle?: "concise" | "detailed" | "professional" | "casual" | "technical" | undefined;
|
|
75
75
|
includeFormatting?: boolean | undefined;
|
|
76
76
|
maxMessageLength?: number | undefined;
|
|
77
77
|
aiModel?: {
|
|
@@ -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;
|
|
@@ -252,7 +252,7 @@ export declare class SlackNotifierWorkflowBubble extends WorkflowBubble<SlackNot
|
|
|
252
252
|
}, "strip", z.ZodTypeAny, {
|
|
253
253
|
contentToFormat: string;
|
|
254
254
|
targetChannel: string;
|
|
255
|
-
messageStyle: "
|
|
255
|
+
messageStyle: "concise" | "detailed" | "professional" | "casual" | "technical";
|
|
256
256
|
includeFormatting: boolean;
|
|
257
257
|
maxMessageLength: number;
|
|
258
258
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -269,7 +269,7 @@ export declare class SlackNotifierWorkflowBubble extends WorkflowBubble<SlackNot
|
|
|
269
269
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
270
270
|
originalUserQuery?: string | undefined;
|
|
271
271
|
messageTitle?: string | undefined;
|
|
272
|
-
messageStyle?: "
|
|
272
|
+
messageStyle?: "concise" | "detailed" | "professional" | "casual" | "technical" | undefined;
|
|
273
273
|
includeFormatting?: boolean | undefined;
|
|
274
274
|
maxMessageLength?: number | undefined;
|
|
275
275
|
aiModel?: {
|
|
@@ -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.64",
|
|
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.65"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"zod-to-json-schema": "^3.24.6",
|