@bubblelab/bubble-core 0.1.19 → 0.1.20
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 +70 -70
- package/dist/bubbles/service-bubble/agi-inc.d.ts +140 -140
- package/dist/bubbles/service-bubble/ai-agent.d.ts +58 -58
- package/dist/bubbles/service-bubble/airtable.d.ts +106 -106
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +47 -47
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +730 -730
- package/dist/bubbles/service-bubble/followupboss.d.ts +282 -282
- package/dist/bubbles/service-bubble/github.d.ts +196 -196
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +1148 -346
- package/dist/bubbles/service-bubble/google-calendar.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.js +51 -9
- package/dist/bubbles/service-bubble/google-calendar.js.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.d.ts +259 -114
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +95 -0
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +52 -52
- package/dist/bubbles/service-bubble/hello-world.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +987 -987
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +40 -40
- package/dist/bubbles/service-bubble/slack/slack.d.ts +314 -314
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +30 -30
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- 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/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 +20 -20
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- 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 +20 -20
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +68 -68
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +10 -10
- 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 +28 -28
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +106 -106
- 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 +92 -92
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +3 -3
- 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;
|
|
58
57
|
includeQuery: boolean;
|
|
59
58
|
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;
|
|
79
78
|
includeQuery?: boolean | undefined;
|
|
80
79
|
includeExplanation?: boolean | undefined;
|
|
81
80
|
additionalContext?: string | undefined;
|
|
81
|
+
includeBlockKit?: boolean | undefined;
|
|
82
82
|
}>;
|
|
83
83
|
declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
84
84
|
response: z.ZodString;
|
|
@@ -154,24 +154,24 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
154
154
|
verbatim?: boolean | undefined;
|
|
155
155
|
}>, "many">>;
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
|
-
type: "
|
|
157
|
+
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
158
158
|
title?: {
|
|
159
159
|
type: "plain_text";
|
|
160
160
|
text: string;
|
|
161
161
|
emoji?: boolean | undefined;
|
|
162
162
|
} | undefined;
|
|
163
|
-
|
|
163
|
+
fields?: {
|
|
164
164
|
type: "plain_text" | "mrkdwn";
|
|
165
165
|
text: string;
|
|
166
166
|
emoji?: boolean | undefined;
|
|
167
167
|
verbatim?: boolean | undefined;
|
|
168
|
-
} | undefined;
|
|
169
|
-
|
|
168
|
+
}[] | undefined;
|
|
169
|
+
text?: {
|
|
170
170
|
type: "plain_text" | "mrkdwn";
|
|
171
171
|
text: string;
|
|
172
172
|
emoji?: boolean | undefined;
|
|
173
173
|
verbatim?: boolean | undefined;
|
|
174
|
-
}
|
|
174
|
+
} | undefined;
|
|
175
175
|
image_url?: string | undefined;
|
|
176
176
|
alt_text?: string | undefined;
|
|
177
177
|
elements?: {
|
|
@@ -180,31 +180,31 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
180
180
|
emoji?: boolean | undefined;
|
|
181
181
|
verbatim?: boolean | undefined;
|
|
182
182
|
}[] | undefined;
|
|
183
|
+
label?: unknown;
|
|
183
184
|
optional?: boolean | undefined;
|
|
185
|
+
element?: unknown;
|
|
184
186
|
block_id?: string | undefined;
|
|
185
187
|
accessory?: unknown;
|
|
186
|
-
element?: unknown;
|
|
187
|
-
label?: unknown;
|
|
188
188
|
hint?: unknown;
|
|
189
189
|
}, {
|
|
190
|
-
type: "
|
|
190
|
+
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
191
191
|
title?: {
|
|
192
192
|
type: "plain_text";
|
|
193
193
|
text: string;
|
|
194
194
|
emoji?: boolean | undefined;
|
|
195
195
|
} | undefined;
|
|
196
|
-
|
|
196
|
+
fields?: {
|
|
197
197
|
type: "plain_text" | "mrkdwn";
|
|
198
198
|
text: string;
|
|
199
199
|
emoji?: boolean | undefined;
|
|
200
200
|
verbatim?: boolean | undefined;
|
|
201
|
-
} | undefined;
|
|
202
|
-
|
|
201
|
+
}[] | undefined;
|
|
202
|
+
text?: {
|
|
203
203
|
type: "plain_text" | "mrkdwn";
|
|
204
204
|
text: string;
|
|
205
205
|
emoji?: boolean | undefined;
|
|
206
206
|
verbatim?: boolean | undefined;
|
|
207
|
-
}
|
|
207
|
+
} | undefined;
|
|
208
208
|
image_url?: string | undefined;
|
|
209
209
|
alt_text?: string | undefined;
|
|
210
210
|
elements?: {
|
|
@@ -213,11 +213,11 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
213
213
|
emoji?: boolean | undefined;
|
|
214
214
|
verbatim?: boolean | undefined;
|
|
215
215
|
}[] | undefined;
|
|
216
|
+
label?: unknown;
|
|
216
217
|
optional?: boolean | undefined;
|
|
218
|
+
element?: unknown;
|
|
217
219
|
block_id?: string | undefined;
|
|
218
220
|
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;
|
|
229
230
|
verbosityLevel: string;
|
|
230
231
|
technicalityLevel: string;
|
|
231
|
-
wordCount: number;
|
|
232
232
|
blockCount?: number | undefined;
|
|
233
233
|
}, {
|
|
234
|
+
wordCount: number;
|
|
234
235
|
verbosityLevel: string;
|
|
235
236
|
technicalityLevel: string;
|
|
236
|
-
wordCount: number;
|
|
237
237
|
blockCount?: number | undefined;
|
|
238
238
|
}>;
|
|
239
239
|
toolCalls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -253,35 +253,40 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
253
253
|
error: z.ZodString;
|
|
254
254
|
success: z.ZodBoolean;
|
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
|
256
|
-
error: string;
|
|
257
256
|
success: boolean;
|
|
257
|
+
error: string;
|
|
258
258
|
response: string;
|
|
259
259
|
iterations: number;
|
|
260
260
|
metadata: {
|
|
261
|
+
wordCount: number;
|
|
261
262
|
verbosityLevel: string;
|
|
262
263
|
technicalityLevel: string;
|
|
263
|
-
wordCount: number;
|
|
264
264
|
blockCount?: number | undefined;
|
|
265
265
|
};
|
|
266
|
+
toolCalls?: {
|
|
267
|
+
tool: string;
|
|
268
|
+
input?: unknown;
|
|
269
|
+
output?: unknown;
|
|
270
|
+
}[] | undefined;
|
|
266
271
|
blocks?: {
|
|
267
|
-
type: "
|
|
272
|
+
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
268
273
|
title?: {
|
|
269
274
|
type: "plain_text";
|
|
270
275
|
text: string;
|
|
271
276
|
emoji?: boolean | undefined;
|
|
272
277
|
} | undefined;
|
|
273
|
-
|
|
278
|
+
fields?: {
|
|
274
279
|
type: "plain_text" | "mrkdwn";
|
|
275
280
|
text: string;
|
|
276
281
|
emoji?: boolean | undefined;
|
|
277
282
|
verbatim?: boolean | undefined;
|
|
278
|
-
} | undefined;
|
|
279
|
-
|
|
283
|
+
}[] | undefined;
|
|
284
|
+
text?: {
|
|
280
285
|
type: "plain_text" | "mrkdwn";
|
|
281
286
|
text: string;
|
|
282
287
|
emoji?: boolean | undefined;
|
|
283
288
|
verbatim?: boolean | undefined;
|
|
284
|
-
}
|
|
289
|
+
} | undefined;
|
|
285
290
|
image_url?: string | undefined;
|
|
286
291
|
alt_text?: string | undefined;
|
|
287
292
|
elements?: {
|
|
@@ -290,48 +295,48 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
290
295
|
emoji?: boolean | undefined;
|
|
291
296
|
verbatim?: boolean | undefined;
|
|
292
297
|
}[] | undefined;
|
|
298
|
+
label?: unknown;
|
|
293
299
|
optional?: boolean | undefined;
|
|
300
|
+
element?: unknown;
|
|
294
301
|
block_id?: string | undefined;
|
|
295
302
|
accessory?: unknown;
|
|
296
|
-
element?: unknown;
|
|
297
|
-
label?: unknown;
|
|
298
303
|
hint?: unknown;
|
|
299
304
|
}[] | undefined;
|
|
300
|
-
toolCalls?: {
|
|
301
|
-
tool: string;
|
|
302
|
-
input?: unknown;
|
|
303
|
-
output?: unknown;
|
|
304
|
-
}[] | undefined;
|
|
305
305
|
}, {
|
|
306
|
-
error: string;
|
|
307
306
|
success: boolean;
|
|
307
|
+
error: string;
|
|
308
308
|
response: string;
|
|
309
309
|
iterations: number;
|
|
310
310
|
metadata: {
|
|
311
|
+
wordCount: number;
|
|
311
312
|
verbosityLevel: string;
|
|
312
313
|
technicalityLevel: string;
|
|
313
|
-
wordCount: number;
|
|
314
314
|
blockCount?: number | undefined;
|
|
315
315
|
};
|
|
316
|
+
toolCalls?: {
|
|
317
|
+
tool: string;
|
|
318
|
+
input?: unknown;
|
|
319
|
+
output?: unknown;
|
|
320
|
+
}[] | undefined;
|
|
316
321
|
blocks?: {
|
|
317
|
-
type: "
|
|
322
|
+
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
318
323
|
title?: {
|
|
319
324
|
type: "plain_text";
|
|
320
325
|
text: string;
|
|
321
326
|
emoji?: boolean | undefined;
|
|
322
327
|
} | undefined;
|
|
323
|
-
|
|
328
|
+
fields?: {
|
|
324
329
|
type: "plain_text" | "mrkdwn";
|
|
325
330
|
text: string;
|
|
326
331
|
emoji?: boolean | undefined;
|
|
327
332
|
verbatim?: boolean | undefined;
|
|
328
|
-
} | undefined;
|
|
329
|
-
|
|
333
|
+
}[] | undefined;
|
|
334
|
+
text?: {
|
|
330
335
|
type: "plain_text" | "mrkdwn";
|
|
331
336
|
text: string;
|
|
332
337
|
emoji?: boolean | undefined;
|
|
333
338
|
verbatim?: boolean | undefined;
|
|
334
|
-
}
|
|
339
|
+
} | undefined;
|
|
335
340
|
image_url?: string | undefined;
|
|
336
341
|
alt_text?: string | undefined;
|
|
337
342
|
elements?: {
|
|
@@ -340,18 +345,13 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
340
345
|
emoji?: boolean | undefined;
|
|
341
346
|
verbatim?: boolean | undefined;
|
|
342
347
|
}[] | undefined;
|
|
348
|
+
label?: unknown;
|
|
343
349
|
optional?: boolean | undefined;
|
|
350
|
+
element?: unknown;
|
|
344
351
|
block_id?: string | undefined;
|
|
345
352
|
accessory?: unknown;
|
|
346
|
-
element?: unknown;
|
|
347
|
-
label?: unknown;
|
|
348
353
|
hint?: unknown;
|
|
349
354
|
}[] | undefined;
|
|
350
|
-
toolCalls?: {
|
|
351
|
-
tool: string;
|
|
352
|
-
input?: unknown;
|
|
353
|
-
output?: unknown;
|
|
354
|
-
}[] | undefined;
|
|
355
355
|
}>;
|
|
356
356
|
type SlackFormatterAgentParams = z.input<typeof SlackFormatterAgentParamsSchema>;
|
|
357
357
|
type SlackFormatterAgentParamsParsed = z.output<typeof SlackFormatterAgentParamsSchema>;
|
|
@@ -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;
|
|
416
415
|
includeQuery: boolean;
|
|
417
416
|
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;
|
|
437
436
|
includeQuery?: boolean | undefined;
|
|
438
437
|
includeExplanation?: boolean | undefined;
|
|
439
438
|
additionalContext?: string | undefined;
|
|
439
|
+
includeBlockKit?: boolean | undefined;
|
|
440
440
|
}>;
|
|
441
441
|
static readonly resultSchema: z.ZodObject<{
|
|
442
442
|
response: z.ZodString;
|
|
@@ -512,24 +512,24 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
512
512
|
verbatim?: boolean | undefined;
|
|
513
513
|
}>, "many">>;
|
|
514
514
|
}, "strip", z.ZodTypeAny, {
|
|
515
|
-
type: "
|
|
515
|
+
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
516
516
|
title?: {
|
|
517
517
|
type: "plain_text";
|
|
518
518
|
text: string;
|
|
519
519
|
emoji?: boolean | undefined;
|
|
520
520
|
} | undefined;
|
|
521
|
-
|
|
521
|
+
fields?: {
|
|
522
522
|
type: "plain_text" | "mrkdwn";
|
|
523
523
|
text: string;
|
|
524
524
|
emoji?: boolean | undefined;
|
|
525
525
|
verbatim?: boolean | undefined;
|
|
526
|
-
} | undefined;
|
|
527
|
-
|
|
526
|
+
}[] | undefined;
|
|
527
|
+
text?: {
|
|
528
528
|
type: "plain_text" | "mrkdwn";
|
|
529
529
|
text: string;
|
|
530
530
|
emoji?: boolean | undefined;
|
|
531
531
|
verbatim?: boolean | undefined;
|
|
532
|
-
}
|
|
532
|
+
} | undefined;
|
|
533
533
|
image_url?: string | undefined;
|
|
534
534
|
alt_text?: string | undefined;
|
|
535
535
|
elements?: {
|
|
@@ -538,31 +538,31 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
538
538
|
emoji?: boolean | undefined;
|
|
539
539
|
verbatim?: boolean | undefined;
|
|
540
540
|
}[] | undefined;
|
|
541
|
+
label?: unknown;
|
|
541
542
|
optional?: boolean | undefined;
|
|
543
|
+
element?: unknown;
|
|
542
544
|
block_id?: string | undefined;
|
|
543
545
|
accessory?: unknown;
|
|
544
|
-
element?: unknown;
|
|
545
|
-
label?: unknown;
|
|
546
546
|
hint?: unknown;
|
|
547
547
|
}, {
|
|
548
|
-
type: "
|
|
548
|
+
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
549
549
|
title?: {
|
|
550
550
|
type: "plain_text";
|
|
551
551
|
text: string;
|
|
552
552
|
emoji?: boolean | undefined;
|
|
553
553
|
} | undefined;
|
|
554
|
-
|
|
554
|
+
fields?: {
|
|
555
555
|
type: "plain_text" | "mrkdwn";
|
|
556
556
|
text: string;
|
|
557
557
|
emoji?: boolean | undefined;
|
|
558
558
|
verbatim?: boolean | undefined;
|
|
559
|
-
} | undefined;
|
|
560
|
-
|
|
559
|
+
}[] | undefined;
|
|
560
|
+
text?: {
|
|
561
561
|
type: "plain_text" | "mrkdwn";
|
|
562
562
|
text: string;
|
|
563
563
|
emoji?: boolean | undefined;
|
|
564
564
|
verbatim?: boolean | undefined;
|
|
565
|
-
}
|
|
565
|
+
} | undefined;
|
|
566
566
|
image_url?: string | undefined;
|
|
567
567
|
alt_text?: string | undefined;
|
|
568
568
|
elements?: {
|
|
@@ -571,11 +571,11 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
571
571
|
emoji?: boolean | undefined;
|
|
572
572
|
verbatim?: boolean | undefined;
|
|
573
573
|
}[] | undefined;
|
|
574
|
+
label?: unknown;
|
|
574
575
|
optional?: boolean | undefined;
|
|
576
|
+
element?: unknown;
|
|
575
577
|
block_id?: string | undefined;
|
|
576
578
|
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;
|
|
587
588
|
verbosityLevel: string;
|
|
588
589
|
technicalityLevel: string;
|
|
589
|
-
wordCount: number;
|
|
590
590
|
blockCount?: number | undefined;
|
|
591
591
|
}, {
|
|
592
|
+
wordCount: number;
|
|
592
593
|
verbosityLevel: string;
|
|
593
594
|
technicalityLevel: string;
|
|
594
|
-
wordCount: number;
|
|
595
595
|
blockCount?: number | undefined;
|
|
596
596
|
}>;
|
|
597
597
|
toolCalls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -611,35 +611,40 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
611
611
|
error: z.ZodString;
|
|
612
612
|
success: z.ZodBoolean;
|
|
613
613
|
}, "strip", z.ZodTypeAny, {
|
|
614
|
-
error: string;
|
|
615
614
|
success: boolean;
|
|
615
|
+
error: string;
|
|
616
616
|
response: string;
|
|
617
617
|
iterations: number;
|
|
618
618
|
metadata: {
|
|
619
|
+
wordCount: number;
|
|
619
620
|
verbosityLevel: string;
|
|
620
621
|
technicalityLevel: string;
|
|
621
|
-
wordCount: number;
|
|
622
622
|
blockCount?: number | undefined;
|
|
623
623
|
};
|
|
624
|
+
toolCalls?: {
|
|
625
|
+
tool: string;
|
|
626
|
+
input?: unknown;
|
|
627
|
+
output?: unknown;
|
|
628
|
+
}[] | undefined;
|
|
624
629
|
blocks?: {
|
|
625
|
-
type: "
|
|
630
|
+
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
626
631
|
title?: {
|
|
627
632
|
type: "plain_text";
|
|
628
633
|
text: string;
|
|
629
634
|
emoji?: boolean | undefined;
|
|
630
635
|
} | undefined;
|
|
631
|
-
|
|
636
|
+
fields?: {
|
|
632
637
|
type: "plain_text" | "mrkdwn";
|
|
633
638
|
text: string;
|
|
634
639
|
emoji?: boolean | undefined;
|
|
635
640
|
verbatim?: boolean | undefined;
|
|
636
|
-
} | undefined;
|
|
637
|
-
|
|
641
|
+
}[] | undefined;
|
|
642
|
+
text?: {
|
|
638
643
|
type: "plain_text" | "mrkdwn";
|
|
639
644
|
text: string;
|
|
640
645
|
emoji?: boolean | undefined;
|
|
641
646
|
verbatim?: boolean | undefined;
|
|
642
|
-
}
|
|
647
|
+
} | undefined;
|
|
643
648
|
image_url?: string | undefined;
|
|
644
649
|
alt_text?: string | undefined;
|
|
645
650
|
elements?: {
|
|
@@ -648,48 +653,48 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
648
653
|
emoji?: boolean | undefined;
|
|
649
654
|
verbatim?: boolean | undefined;
|
|
650
655
|
}[] | undefined;
|
|
656
|
+
label?: unknown;
|
|
651
657
|
optional?: boolean | undefined;
|
|
658
|
+
element?: unknown;
|
|
652
659
|
block_id?: string | undefined;
|
|
653
660
|
accessory?: unknown;
|
|
654
|
-
element?: unknown;
|
|
655
|
-
label?: unknown;
|
|
656
661
|
hint?: unknown;
|
|
657
662
|
}[] | undefined;
|
|
658
|
-
toolCalls?: {
|
|
659
|
-
tool: string;
|
|
660
|
-
input?: unknown;
|
|
661
|
-
output?: unknown;
|
|
662
|
-
}[] | undefined;
|
|
663
663
|
}, {
|
|
664
|
-
error: string;
|
|
665
664
|
success: boolean;
|
|
665
|
+
error: string;
|
|
666
666
|
response: string;
|
|
667
667
|
iterations: number;
|
|
668
668
|
metadata: {
|
|
669
|
+
wordCount: number;
|
|
669
670
|
verbosityLevel: string;
|
|
670
671
|
technicalityLevel: string;
|
|
671
|
-
wordCount: number;
|
|
672
672
|
blockCount?: number | undefined;
|
|
673
673
|
};
|
|
674
|
+
toolCalls?: {
|
|
675
|
+
tool: string;
|
|
676
|
+
input?: unknown;
|
|
677
|
+
output?: unknown;
|
|
678
|
+
}[] | undefined;
|
|
674
679
|
blocks?: {
|
|
675
|
-
type: "
|
|
680
|
+
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
676
681
|
title?: {
|
|
677
682
|
type: "plain_text";
|
|
678
683
|
text: string;
|
|
679
684
|
emoji?: boolean | undefined;
|
|
680
685
|
} | undefined;
|
|
681
|
-
|
|
686
|
+
fields?: {
|
|
682
687
|
type: "plain_text" | "mrkdwn";
|
|
683
688
|
text: string;
|
|
684
689
|
emoji?: boolean | undefined;
|
|
685
690
|
verbatim?: boolean | undefined;
|
|
686
|
-
} | undefined;
|
|
687
|
-
|
|
691
|
+
}[] | undefined;
|
|
692
|
+
text?: {
|
|
688
693
|
type: "plain_text" | "mrkdwn";
|
|
689
694
|
text: string;
|
|
690
695
|
emoji?: boolean | undefined;
|
|
691
696
|
verbatim?: boolean | undefined;
|
|
692
|
-
}
|
|
697
|
+
} | undefined;
|
|
693
698
|
image_url?: string | undefined;
|
|
694
699
|
alt_text?: string | undefined;
|
|
695
700
|
elements?: {
|
|
@@ -698,18 +703,13 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
698
703
|
emoji?: boolean | undefined;
|
|
699
704
|
verbatim?: boolean | undefined;
|
|
700
705
|
}[] | undefined;
|
|
706
|
+
label?: unknown;
|
|
701
707
|
optional?: boolean | undefined;
|
|
708
|
+
element?: unknown;
|
|
702
709
|
block_id?: string | undefined;
|
|
703
710
|
accessory?: unknown;
|
|
704
|
-
element?: unknown;
|
|
705
|
-
label?: unknown;
|
|
706
711
|
hint?: unknown;
|
|
707
712
|
}[] | undefined;
|
|
708
|
-
toolCalls?: {
|
|
709
|
-
tool: string;
|
|
710
|
-
input?: unknown;
|
|
711
|
-
output?: unknown;
|
|
712
|
-
}[] | undefined;
|
|
713
713
|
}>;
|
|
714
714
|
static readonly shortDescription = "AI agent for creating well-formatted Slack messages with adjustable verbosity and technicality";
|
|
715
715
|
static readonly longDescription = "\n An AI agent that specializes in generating properly formatted Slack messages with:\n - Adjustable verbosity levels (1-5): from concise bullet points to comprehensive explanations\n - Adjustable technicality levels (1-5): from plain English to expert terminology\n - Native Slack markdown formatting (bold, italic, code blocks, lists)\n - Optional Slack Block Kit JSON for rich interactive messages\n - Tool integration for dynamic content generation\n \n Perfect for:\n - Creating consistent Slack notifications with appropriate detail level\n - Adapting any content for different audiences\n - Generating interactive Slack messages with Block Kit\n - Formatting summaries, reports, and updates for Slack channels\n - Building engaging team communications with proper structure\n - Converting any information into Slack-friendly format\n ";
|
|
@@ -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: "professional" | "casual" | "technical" | "concise" | "detailed";
|
|
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?: "professional" | "casual" | "technical" | "concise" | "detailed" | 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
|
-
error: string;
|
|
152
151
|
success: boolean;
|
|
152
|
+
error: string;
|
|
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
|
-
error: string;
|
|
167
166
|
success: boolean;
|
|
167
|
+
error: string;
|
|
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: "professional" | "casual" | "technical" | "concise" | "detailed";
|
|
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?: "professional" | "casual" | "technical" | "concise" | "detailed" | 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
|
-
error: string;
|
|
348
347
|
success: boolean;
|
|
348
|
+
error: string;
|
|
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
|
-
error: string;
|
|
363
362
|
success: boolean;
|
|
363
|
+
error: string;
|
|
364
364
|
messageInfo?: {
|
|
365
365
|
channelName?: string | undefined;
|
|
366
366
|
messageTimestamp?: string | undefined;
|