@bubblelab/bubble-core 0.1.101 → 0.1.102
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 +80 -80
- package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
- package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
- package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
- package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
- package/dist/bubbles/service-bubble/github.d.ts +240 -240
- package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
- 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 +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +109 -2
- 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;
|
|
@@ -160,21 +160,19 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
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
|
-
|
|
170
|
-
element?: unknown;
|
|
171
|
-
optional?: boolean | undefined;
|
|
172
|
-
fields?: {
|
|
168
|
+
}[] | undefined;
|
|
169
|
+
text?: {
|
|
173
170
|
type: "plain_text" | "mrkdwn";
|
|
174
171
|
text: string;
|
|
175
172
|
emoji?: boolean | undefined;
|
|
176
173
|
verbatim?: boolean | undefined;
|
|
177
|
-
}
|
|
174
|
+
} | undefined;
|
|
175
|
+
image_url?: string | undefined;
|
|
178
176
|
alt_text?: string | undefined;
|
|
179
177
|
elements?: {
|
|
180
178
|
type: "plain_text" | "mrkdwn";
|
|
@@ -182,9 +180,11 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
182
180
|
emoji?: boolean | undefined;
|
|
183
181
|
verbatim?: boolean | undefined;
|
|
184
182
|
}[] | undefined;
|
|
183
|
+
label?: unknown;
|
|
184
|
+
optional?: boolean | undefined;
|
|
185
|
+
element?: unknown;
|
|
185
186
|
block_id?: string | undefined;
|
|
186
187
|
accessory?: unknown;
|
|
187
|
-
label?: unknown;
|
|
188
188
|
hint?: unknown;
|
|
189
189
|
}, {
|
|
190
190
|
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
@@ -193,21 +193,19 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
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
|
-
|
|
203
|
-
element?: unknown;
|
|
204
|
-
optional?: boolean | undefined;
|
|
205
|
-
fields?: {
|
|
201
|
+
}[] | undefined;
|
|
202
|
+
text?: {
|
|
206
203
|
type: "plain_text" | "mrkdwn";
|
|
207
204
|
text: string;
|
|
208
205
|
emoji?: boolean | undefined;
|
|
209
206
|
verbatim?: boolean | undefined;
|
|
210
|
-
}
|
|
207
|
+
} | undefined;
|
|
208
|
+
image_url?: string | undefined;
|
|
211
209
|
alt_text?: string | undefined;
|
|
212
210
|
elements?: {
|
|
213
211
|
type: "plain_text" | "mrkdwn";
|
|
@@ -215,9 +213,11 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
215
213
|
emoji?: boolean | undefined;
|
|
216
214
|
verbatim?: boolean | undefined;
|
|
217
215
|
}[] | undefined;
|
|
216
|
+
label?: unknown;
|
|
217
|
+
optional?: boolean | undefined;
|
|
218
|
+
element?: unknown;
|
|
218
219
|
block_id?: string | undefined;
|
|
219
220
|
accessory?: 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<{
|
|
@@ -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;
|
|
258
260
|
metadata: {
|
|
261
|
+
wordCount: number;
|
|
259
262
|
verbosityLevel: string;
|
|
260
263
|
technicalityLevel: string;
|
|
261
|
-
wordCount: number;
|
|
262
264
|
blockCount?: number | undefined;
|
|
263
265
|
};
|
|
264
|
-
response: string;
|
|
265
|
-
iterations: number;
|
|
266
266
|
toolCalls?: {
|
|
267
267
|
tool: string;
|
|
268
268
|
input?: unknown;
|
|
@@ -275,21 +275,19 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
275
275
|
text: string;
|
|
276
276
|
emoji?: boolean | undefined;
|
|
277
277
|
} | undefined;
|
|
278
|
-
|
|
278
|
+
fields?: {
|
|
279
279
|
type: "plain_text" | "mrkdwn";
|
|
280
280
|
text: string;
|
|
281
281
|
emoji?: boolean | undefined;
|
|
282
282
|
verbatim?: boolean | undefined;
|
|
283
|
-
} | undefined;
|
|
284
|
-
|
|
285
|
-
element?: unknown;
|
|
286
|
-
optional?: boolean | undefined;
|
|
287
|
-
fields?: {
|
|
283
|
+
}[] | undefined;
|
|
284
|
+
text?: {
|
|
288
285
|
type: "plain_text" | "mrkdwn";
|
|
289
286
|
text: string;
|
|
290
287
|
emoji?: boolean | undefined;
|
|
291
288
|
verbatim?: boolean | undefined;
|
|
292
|
-
}
|
|
289
|
+
} | undefined;
|
|
290
|
+
image_url?: string | undefined;
|
|
293
291
|
alt_text?: string | undefined;
|
|
294
292
|
elements?: {
|
|
295
293
|
type: "plain_text" | "mrkdwn";
|
|
@@ -297,22 +295,24 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
297
295
|
emoji?: boolean | undefined;
|
|
298
296
|
verbatim?: boolean | undefined;
|
|
299
297
|
}[] | undefined;
|
|
298
|
+
label?: unknown;
|
|
299
|
+
optional?: boolean | undefined;
|
|
300
|
+
element?: unknown;
|
|
300
301
|
block_id?: string | undefined;
|
|
301
302
|
accessory?: unknown;
|
|
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;
|
|
308
310
|
metadata: {
|
|
311
|
+
wordCount: number;
|
|
309
312
|
verbosityLevel: string;
|
|
310
313
|
technicalityLevel: string;
|
|
311
|
-
wordCount: number;
|
|
312
314
|
blockCount?: number | undefined;
|
|
313
315
|
};
|
|
314
|
-
response: string;
|
|
315
|
-
iterations: number;
|
|
316
316
|
toolCalls?: {
|
|
317
317
|
tool: string;
|
|
318
318
|
input?: unknown;
|
|
@@ -325,21 +325,19 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
325
325
|
text: string;
|
|
326
326
|
emoji?: boolean | undefined;
|
|
327
327
|
} | undefined;
|
|
328
|
-
|
|
328
|
+
fields?: {
|
|
329
329
|
type: "plain_text" | "mrkdwn";
|
|
330
330
|
text: string;
|
|
331
331
|
emoji?: boolean | undefined;
|
|
332
332
|
verbatim?: boolean | undefined;
|
|
333
|
-
} | undefined;
|
|
334
|
-
|
|
335
|
-
element?: unknown;
|
|
336
|
-
optional?: boolean | undefined;
|
|
337
|
-
fields?: {
|
|
333
|
+
}[] | undefined;
|
|
334
|
+
text?: {
|
|
338
335
|
type: "plain_text" | "mrkdwn";
|
|
339
336
|
text: string;
|
|
340
337
|
emoji?: boolean | undefined;
|
|
341
338
|
verbatim?: boolean | undefined;
|
|
342
|
-
}
|
|
339
|
+
} | undefined;
|
|
340
|
+
image_url?: string | undefined;
|
|
343
341
|
alt_text?: string | undefined;
|
|
344
342
|
elements?: {
|
|
345
343
|
type: "plain_text" | "mrkdwn";
|
|
@@ -347,9 +345,11 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
347
345
|
emoji?: boolean | undefined;
|
|
348
346
|
verbatim?: boolean | undefined;
|
|
349
347
|
}[] | undefined;
|
|
348
|
+
label?: unknown;
|
|
349
|
+
optional?: boolean | undefined;
|
|
350
|
+
element?: unknown;
|
|
350
351
|
block_id?: string | undefined;
|
|
351
352
|
accessory?: 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;
|
|
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;
|
|
@@ -518,21 +518,19 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
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
|
-
|
|
528
|
-
element?: unknown;
|
|
529
|
-
optional?: boolean | undefined;
|
|
530
|
-
fields?: {
|
|
526
|
+
}[] | undefined;
|
|
527
|
+
text?: {
|
|
531
528
|
type: "plain_text" | "mrkdwn";
|
|
532
529
|
text: string;
|
|
533
530
|
emoji?: boolean | undefined;
|
|
534
531
|
verbatim?: boolean | undefined;
|
|
535
|
-
}
|
|
532
|
+
} | undefined;
|
|
533
|
+
image_url?: string | undefined;
|
|
536
534
|
alt_text?: string | undefined;
|
|
537
535
|
elements?: {
|
|
538
536
|
type: "plain_text" | "mrkdwn";
|
|
@@ -540,9 +538,11 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
540
538
|
emoji?: boolean | undefined;
|
|
541
539
|
verbatim?: boolean | undefined;
|
|
542
540
|
}[] | undefined;
|
|
541
|
+
label?: unknown;
|
|
542
|
+
optional?: boolean | undefined;
|
|
543
|
+
element?: unknown;
|
|
543
544
|
block_id?: string | undefined;
|
|
544
545
|
accessory?: unknown;
|
|
545
|
-
label?: unknown;
|
|
546
546
|
hint?: unknown;
|
|
547
547
|
}, {
|
|
548
548
|
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
@@ -551,21 +551,19 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
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
|
-
|
|
561
|
-
element?: unknown;
|
|
562
|
-
optional?: boolean | undefined;
|
|
563
|
-
fields?: {
|
|
559
|
+
}[] | undefined;
|
|
560
|
+
text?: {
|
|
564
561
|
type: "plain_text" | "mrkdwn";
|
|
565
562
|
text: string;
|
|
566
563
|
emoji?: boolean | undefined;
|
|
567
564
|
verbatim?: boolean | undefined;
|
|
568
|
-
}
|
|
565
|
+
} | undefined;
|
|
566
|
+
image_url?: string | undefined;
|
|
569
567
|
alt_text?: string | undefined;
|
|
570
568
|
elements?: {
|
|
571
569
|
type: "plain_text" | "mrkdwn";
|
|
@@ -573,9 +571,11 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
573
571
|
emoji?: boolean | undefined;
|
|
574
572
|
verbatim?: boolean | undefined;
|
|
575
573
|
}[] | undefined;
|
|
574
|
+
label?: unknown;
|
|
575
|
+
optional?: boolean | undefined;
|
|
576
|
+
element?: unknown;
|
|
576
577
|
block_id?: string | undefined;
|
|
577
578
|
accessory?: 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<{
|
|
@@ -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;
|
|
616
618
|
metadata: {
|
|
619
|
+
wordCount: number;
|
|
617
620
|
verbosityLevel: string;
|
|
618
621
|
technicalityLevel: string;
|
|
619
|
-
wordCount: number;
|
|
620
622
|
blockCount?: number | undefined;
|
|
621
623
|
};
|
|
622
|
-
response: string;
|
|
623
|
-
iterations: number;
|
|
624
624
|
toolCalls?: {
|
|
625
625
|
tool: string;
|
|
626
626
|
input?: unknown;
|
|
@@ -633,21 +633,19 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
633
633
|
text: string;
|
|
634
634
|
emoji?: boolean | undefined;
|
|
635
635
|
} | undefined;
|
|
636
|
-
|
|
636
|
+
fields?: {
|
|
637
637
|
type: "plain_text" | "mrkdwn";
|
|
638
638
|
text: string;
|
|
639
639
|
emoji?: boolean | undefined;
|
|
640
640
|
verbatim?: boolean | undefined;
|
|
641
|
-
} | undefined;
|
|
642
|
-
|
|
643
|
-
element?: unknown;
|
|
644
|
-
optional?: boolean | undefined;
|
|
645
|
-
fields?: {
|
|
641
|
+
}[] | undefined;
|
|
642
|
+
text?: {
|
|
646
643
|
type: "plain_text" | "mrkdwn";
|
|
647
644
|
text: string;
|
|
648
645
|
emoji?: boolean | undefined;
|
|
649
646
|
verbatim?: boolean | undefined;
|
|
650
|
-
}
|
|
647
|
+
} | undefined;
|
|
648
|
+
image_url?: string | undefined;
|
|
651
649
|
alt_text?: string | undefined;
|
|
652
650
|
elements?: {
|
|
653
651
|
type: "plain_text" | "mrkdwn";
|
|
@@ -655,22 +653,24 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
655
653
|
emoji?: boolean | undefined;
|
|
656
654
|
verbatim?: boolean | undefined;
|
|
657
655
|
}[] | undefined;
|
|
656
|
+
label?: unknown;
|
|
657
|
+
optional?: boolean | undefined;
|
|
658
|
+
element?: unknown;
|
|
658
659
|
block_id?: string | undefined;
|
|
659
660
|
accessory?: unknown;
|
|
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;
|
|
666
668
|
metadata: {
|
|
669
|
+
wordCount: number;
|
|
667
670
|
verbosityLevel: string;
|
|
668
671
|
technicalityLevel: string;
|
|
669
|
-
wordCount: number;
|
|
670
672
|
blockCount?: number | undefined;
|
|
671
673
|
};
|
|
672
|
-
response: string;
|
|
673
|
-
iterations: number;
|
|
674
674
|
toolCalls?: {
|
|
675
675
|
tool: string;
|
|
676
676
|
input?: unknown;
|
|
@@ -683,21 +683,19 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
683
683
|
text: string;
|
|
684
684
|
emoji?: boolean | undefined;
|
|
685
685
|
} | undefined;
|
|
686
|
-
|
|
686
|
+
fields?: {
|
|
687
687
|
type: "plain_text" | "mrkdwn";
|
|
688
688
|
text: string;
|
|
689
689
|
emoji?: boolean | undefined;
|
|
690
690
|
verbatim?: boolean | undefined;
|
|
691
|
-
} | undefined;
|
|
692
|
-
|
|
693
|
-
element?: unknown;
|
|
694
|
-
optional?: boolean | undefined;
|
|
695
|
-
fields?: {
|
|
691
|
+
}[] | undefined;
|
|
692
|
+
text?: {
|
|
696
693
|
type: "plain_text" | "mrkdwn";
|
|
697
694
|
text: string;
|
|
698
695
|
emoji?: boolean | undefined;
|
|
699
696
|
verbatim?: boolean | undefined;
|
|
700
|
-
}
|
|
697
|
+
} | undefined;
|
|
698
|
+
image_url?: string | undefined;
|
|
701
699
|
alt_text?: string | undefined;
|
|
702
700
|
elements?: {
|
|
703
701
|
type: "plain_text" | "mrkdwn";
|
|
@@ -705,9 +703,11 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
705
703
|
emoji?: boolean | undefined;
|
|
706
704
|
verbatim?: boolean | undefined;
|
|
707
705
|
}[] | undefined;
|
|
706
|
+
label?: unknown;
|
|
707
|
+
optional?: boolean | undefined;
|
|
708
|
+
element?: unknown;
|
|
708
709
|
block_id?: string | undefined;
|
|
709
710
|
accessory?: 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: "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?: {
|
|
@@ -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?: {
|