@bubblelab/bubble-core 0.1.39 → 0.1.40
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 +81 -81
- package/dist/bubbles/service-bubble/agi-inc.d.ts +114 -114
- package/dist/bubbles/service-bubble/ai-agent.d.ts +70 -70
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +5 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +122 -122
- package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +144 -144
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +51 -51
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +84 -84
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +56 -56
- package/dist/bubbles/service-bubble/firecrawl.d.ts +835 -835
- package/dist/bubbles/service-bubble/followupboss.d.ts +474 -474
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +275 -275
- package/dist/bubbles/service-bubble/github.d.ts +196 -196
- package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
- package/dist/bubbles/service-bubble/google-calendar.d.ts +136 -136
- package/dist/bubbles/service-bubble/google-drive.d.ts +144 -144
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +68 -68
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +59 -59
- package/dist/bubbles/service-bubble/notion/notion.d.ts +244 -244
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +16 -16
- package/dist/bubbles/service-bubble/slack/slack.d.ts +442 -442
- package/dist/bubbles/service-bubble/storage.d.ts +60 -60
- package/dist/bubbles/service-bubble/telegram.d.ts +414 -414
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +26 -26
- 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 +66 -66
- 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 +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +422 -422
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +108 -108
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +26 -26
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +113 -113
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- 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 +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +90 -90
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +6 -6
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +66 -66
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -60,8 +60,8 @@ declare const SlackDataAssistantParamsSchema: z.ZodObject<{
|
|
|
60
60
|
slackChannel: string;
|
|
61
61
|
userQuestion: string;
|
|
62
62
|
name?: string | undefined;
|
|
63
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
64
63
|
temperature?: number | undefined;
|
|
64
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
65
65
|
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
66
66
|
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
67
67
|
includeQuery?: boolean | undefined;
|
|
@@ -104,8 +104,8 @@ declare const SlackDataAssistantResultSchema: z.ZodObject<{
|
|
|
104
104
|
wordCount?: number | undefined;
|
|
105
105
|
}>>;
|
|
106
106
|
}, "strip", z.ZodTypeAny, {
|
|
107
|
-
success: boolean;
|
|
108
107
|
error: string;
|
|
108
|
+
success: boolean;
|
|
109
109
|
metadata?: {
|
|
110
110
|
executionTime: number;
|
|
111
111
|
rowCount?: number | undefined;
|
|
@@ -119,8 +119,8 @@ declare const SlackDataAssistantResultSchema: z.ZodObject<{
|
|
|
119
119
|
slackMessageTs?: string | undefined;
|
|
120
120
|
isDataQuestion?: boolean | undefined;
|
|
121
121
|
}, {
|
|
122
|
-
success: boolean;
|
|
123
122
|
error: string;
|
|
123
|
+
success: boolean;
|
|
124
124
|
metadata?: {
|
|
125
125
|
executionTime: number;
|
|
126
126
|
rowCount?: number | undefined;
|
|
@@ -198,8 +198,8 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
198
198
|
slackChannel: string;
|
|
199
199
|
userQuestion: string;
|
|
200
200
|
name?: string | undefined;
|
|
201
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
202
201
|
temperature?: number | undefined;
|
|
202
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
203
203
|
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
204
204
|
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
205
205
|
includeQuery?: boolean | undefined;
|
|
@@ -242,8 +242,8 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
242
242
|
wordCount?: number | undefined;
|
|
243
243
|
}>>;
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
|
-
success: boolean;
|
|
246
245
|
error: string;
|
|
246
|
+
success: boolean;
|
|
247
247
|
metadata?: {
|
|
248
248
|
executionTime: number;
|
|
249
249
|
rowCount?: number | undefined;
|
|
@@ -257,8 +257,8 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
257
257
|
slackMessageTs?: string | undefined;
|
|
258
258
|
isDataQuestion?: boolean | undefined;
|
|
259
259
|
}, {
|
|
260
|
-
success: boolean;
|
|
261
260
|
error: string;
|
|
261
|
+
success: boolean;
|
|
262
262
|
metadata?: {
|
|
263
263
|
executionTime: number;
|
|
264
264
|
rowCount?: number | undefined;
|
|
@@ -61,12 +61,12 @@ declare const SlackFormatterAgentParamsSchema: z.ZodObject<{
|
|
|
61
61
|
additionalContext?: string | undefined;
|
|
62
62
|
}, {
|
|
63
63
|
message: string;
|
|
64
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
65
64
|
model?: {
|
|
66
65
|
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined;
|
|
67
66
|
temperature?: number | undefined;
|
|
68
67
|
maxTokens?: number | undefined;
|
|
69
68
|
} | undefined;
|
|
69
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
70
70
|
tools?: {
|
|
71
71
|
name: string;
|
|
72
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -160,13 +160,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
160
160
|
text: string;
|
|
161
161
|
emoji?: boolean | undefined;
|
|
162
162
|
} | undefined;
|
|
163
|
-
label?: unknown;
|
|
164
|
-
fields?: {
|
|
165
|
-
type: "plain_text" | "mrkdwn";
|
|
166
|
-
text: string;
|
|
167
|
-
emoji?: boolean | undefined;
|
|
168
|
-
verbatim?: boolean | undefined;
|
|
169
|
-
}[] | undefined;
|
|
170
163
|
text?: {
|
|
171
164
|
type: "plain_text" | "mrkdwn";
|
|
172
165
|
text: string;
|
|
@@ -175,6 +168,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
175
168
|
} | undefined;
|
|
176
169
|
image_url?: string | undefined;
|
|
177
170
|
optional?: boolean | undefined;
|
|
171
|
+
fields?: {
|
|
172
|
+
type: "plain_text" | "mrkdwn";
|
|
173
|
+
text: string;
|
|
174
|
+
emoji?: boolean | undefined;
|
|
175
|
+
verbatim?: boolean | undefined;
|
|
176
|
+
}[] | undefined;
|
|
178
177
|
alt_text?: string | undefined;
|
|
179
178
|
elements?: {
|
|
180
179
|
type: "plain_text" | "mrkdwn";
|
|
@@ -185,6 +184,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
185
184
|
block_id?: string | undefined;
|
|
186
185
|
accessory?: unknown;
|
|
187
186
|
element?: unknown;
|
|
187
|
+
label?: unknown;
|
|
188
188
|
hint?: unknown;
|
|
189
189
|
}, {
|
|
190
190
|
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
@@ -193,13 +193,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
193
193
|
text: string;
|
|
194
194
|
emoji?: boolean | undefined;
|
|
195
195
|
} | undefined;
|
|
196
|
-
label?: unknown;
|
|
197
|
-
fields?: {
|
|
198
|
-
type: "plain_text" | "mrkdwn";
|
|
199
|
-
text: string;
|
|
200
|
-
emoji?: boolean | undefined;
|
|
201
|
-
verbatim?: boolean | undefined;
|
|
202
|
-
}[] | undefined;
|
|
203
196
|
text?: {
|
|
204
197
|
type: "plain_text" | "mrkdwn";
|
|
205
198
|
text: string;
|
|
@@ -208,6 +201,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
208
201
|
} | undefined;
|
|
209
202
|
image_url?: string | undefined;
|
|
210
203
|
optional?: boolean | undefined;
|
|
204
|
+
fields?: {
|
|
205
|
+
type: "plain_text" | "mrkdwn";
|
|
206
|
+
text: string;
|
|
207
|
+
emoji?: boolean | undefined;
|
|
208
|
+
verbatim?: boolean | undefined;
|
|
209
|
+
}[] | undefined;
|
|
211
210
|
alt_text?: string | undefined;
|
|
212
211
|
elements?: {
|
|
213
212
|
type: "plain_text" | "mrkdwn";
|
|
@@ -218,6 +217,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
218
217
|
block_id?: string | undefined;
|
|
219
218
|
accessory?: unknown;
|
|
220
219
|
element?: unknown;
|
|
220
|
+
label?: unknown;
|
|
221
221
|
hint?: unknown;
|
|
222
222
|
}>, "many">>;
|
|
223
223
|
metadata: z.ZodObject<{
|
|
@@ -253,10 +253,10 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
253
253
|
error: z.ZodString;
|
|
254
254
|
success: z.ZodBoolean;
|
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
|
256
|
-
success: boolean;
|
|
257
|
-
error: string;
|
|
258
256
|
response: string;
|
|
259
257
|
iterations: number;
|
|
258
|
+
error: string;
|
|
259
|
+
success: boolean;
|
|
260
260
|
metadata: {
|
|
261
261
|
verbosityLevel: string;
|
|
262
262
|
technicalityLevel: string;
|
|
@@ -275,13 +275,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
275
275
|
text: string;
|
|
276
276
|
emoji?: boolean | undefined;
|
|
277
277
|
} | undefined;
|
|
278
|
-
label?: unknown;
|
|
279
|
-
fields?: {
|
|
280
|
-
type: "plain_text" | "mrkdwn";
|
|
281
|
-
text: string;
|
|
282
|
-
emoji?: boolean | undefined;
|
|
283
|
-
verbatim?: boolean | undefined;
|
|
284
|
-
}[] | undefined;
|
|
285
278
|
text?: {
|
|
286
279
|
type: "plain_text" | "mrkdwn";
|
|
287
280
|
text: string;
|
|
@@ -290,6 +283,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
290
283
|
} | undefined;
|
|
291
284
|
image_url?: string | undefined;
|
|
292
285
|
optional?: boolean | undefined;
|
|
286
|
+
fields?: {
|
|
287
|
+
type: "plain_text" | "mrkdwn";
|
|
288
|
+
text: string;
|
|
289
|
+
emoji?: boolean | undefined;
|
|
290
|
+
verbatim?: boolean | undefined;
|
|
291
|
+
}[] | undefined;
|
|
293
292
|
alt_text?: string | undefined;
|
|
294
293
|
elements?: {
|
|
295
294
|
type: "plain_text" | "mrkdwn";
|
|
@@ -300,13 +299,14 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
300
299
|
block_id?: string | undefined;
|
|
301
300
|
accessory?: unknown;
|
|
302
301
|
element?: unknown;
|
|
302
|
+
label?: unknown;
|
|
303
303
|
hint?: unknown;
|
|
304
304
|
}[] | undefined;
|
|
305
305
|
}, {
|
|
306
|
-
success: boolean;
|
|
307
|
-
error: string;
|
|
308
306
|
response: string;
|
|
309
307
|
iterations: number;
|
|
308
|
+
error: string;
|
|
309
|
+
success: boolean;
|
|
310
310
|
metadata: {
|
|
311
311
|
verbosityLevel: string;
|
|
312
312
|
technicalityLevel: string;
|
|
@@ -325,13 +325,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
325
325
|
text: string;
|
|
326
326
|
emoji?: boolean | undefined;
|
|
327
327
|
} | undefined;
|
|
328
|
-
label?: unknown;
|
|
329
|
-
fields?: {
|
|
330
|
-
type: "plain_text" | "mrkdwn";
|
|
331
|
-
text: string;
|
|
332
|
-
emoji?: boolean | undefined;
|
|
333
|
-
verbatim?: boolean | undefined;
|
|
334
|
-
}[] | undefined;
|
|
335
328
|
text?: {
|
|
336
329
|
type: "plain_text" | "mrkdwn";
|
|
337
330
|
text: string;
|
|
@@ -340,6 +333,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
340
333
|
} | undefined;
|
|
341
334
|
image_url?: string | undefined;
|
|
342
335
|
optional?: boolean | undefined;
|
|
336
|
+
fields?: {
|
|
337
|
+
type: "plain_text" | "mrkdwn";
|
|
338
|
+
text: string;
|
|
339
|
+
emoji?: boolean | undefined;
|
|
340
|
+
verbatim?: boolean | undefined;
|
|
341
|
+
}[] | undefined;
|
|
343
342
|
alt_text?: string | undefined;
|
|
344
343
|
elements?: {
|
|
345
344
|
type: "plain_text" | "mrkdwn";
|
|
@@ -350,6 +349,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
350
349
|
block_id?: string | undefined;
|
|
351
350
|
accessory?: unknown;
|
|
352
351
|
element?: unknown;
|
|
352
|
+
label?: unknown;
|
|
353
353
|
hint?: unknown;
|
|
354
354
|
}[] | undefined;
|
|
355
355
|
}>;
|
|
@@ -419,12 +419,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
419
419
|
additionalContext?: string | undefined;
|
|
420
420
|
}, {
|
|
421
421
|
message: string;
|
|
422
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
423
422
|
model?: {
|
|
424
423
|
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined;
|
|
425
424
|
temperature?: number | undefined;
|
|
426
425
|
maxTokens?: number | undefined;
|
|
427
426
|
} | undefined;
|
|
427
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
428
428
|
tools?: {
|
|
429
429
|
name: string;
|
|
430
430
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -518,13 +518,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
518
518
|
text: string;
|
|
519
519
|
emoji?: boolean | undefined;
|
|
520
520
|
} | undefined;
|
|
521
|
-
label?: unknown;
|
|
522
|
-
fields?: {
|
|
523
|
-
type: "plain_text" | "mrkdwn";
|
|
524
|
-
text: string;
|
|
525
|
-
emoji?: boolean | undefined;
|
|
526
|
-
verbatim?: boolean | undefined;
|
|
527
|
-
}[] | undefined;
|
|
528
521
|
text?: {
|
|
529
522
|
type: "plain_text" | "mrkdwn";
|
|
530
523
|
text: string;
|
|
@@ -533,6 +526,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
533
526
|
} | undefined;
|
|
534
527
|
image_url?: string | undefined;
|
|
535
528
|
optional?: boolean | undefined;
|
|
529
|
+
fields?: {
|
|
530
|
+
type: "plain_text" | "mrkdwn";
|
|
531
|
+
text: string;
|
|
532
|
+
emoji?: boolean | undefined;
|
|
533
|
+
verbatim?: boolean | undefined;
|
|
534
|
+
}[] | undefined;
|
|
536
535
|
alt_text?: string | undefined;
|
|
537
536
|
elements?: {
|
|
538
537
|
type: "plain_text" | "mrkdwn";
|
|
@@ -543,6 +542,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
543
542
|
block_id?: string | undefined;
|
|
544
543
|
accessory?: unknown;
|
|
545
544
|
element?: unknown;
|
|
545
|
+
label?: unknown;
|
|
546
546
|
hint?: unknown;
|
|
547
547
|
}, {
|
|
548
548
|
type: "input" | "image" | "file" | "section" | "header" | "divider" | "context" | "actions";
|
|
@@ -551,13 +551,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
551
551
|
text: string;
|
|
552
552
|
emoji?: boolean | undefined;
|
|
553
553
|
} | undefined;
|
|
554
|
-
label?: unknown;
|
|
555
|
-
fields?: {
|
|
556
|
-
type: "plain_text" | "mrkdwn";
|
|
557
|
-
text: string;
|
|
558
|
-
emoji?: boolean | undefined;
|
|
559
|
-
verbatim?: boolean | undefined;
|
|
560
|
-
}[] | undefined;
|
|
561
554
|
text?: {
|
|
562
555
|
type: "plain_text" | "mrkdwn";
|
|
563
556
|
text: string;
|
|
@@ -566,6 +559,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
566
559
|
} | undefined;
|
|
567
560
|
image_url?: string | undefined;
|
|
568
561
|
optional?: boolean | undefined;
|
|
562
|
+
fields?: {
|
|
563
|
+
type: "plain_text" | "mrkdwn";
|
|
564
|
+
text: string;
|
|
565
|
+
emoji?: boolean | undefined;
|
|
566
|
+
verbatim?: boolean | undefined;
|
|
567
|
+
}[] | undefined;
|
|
569
568
|
alt_text?: string | undefined;
|
|
570
569
|
elements?: {
|
|
571
570
|
type: "plain_text" | "mrkdwn";
|
|
@@ -576,6 +575,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
576
575
|
block_id?: string | undefined;
|
|
577
576
|
accessory?: unknown;
|
|
578
577
|
element?: unknown;
|
|
578
|
+
label?: unknown;
|
|
579
579
|
hint?: unknown;
|
|
580
580
|
}>, "many">>;
|
|
581
581
|
metadata: z.ZodObject<{
|
|
@@ -611,10 +611,10 @@ 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
|
-
error: string;
|
|
616
614
|
response: string;
|
|
617
615
|
iterations: number;
|
|
616
|
+
error: string;
|
|
617
|
+
success: boolean;
|
|
618
618
|
metadata: {
|
|
619
619
|
verbosityLevel: string;
|
|
620
620
|
technicalityLevel: string;
|
|
@@ -633,13 +633,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
633
633
|
text: string;
|
|
634
634
|
emoji?: boolean | undefined;
|
|
635
635
|
} | undefined;
|
|
636
|
-
label?: unknown;
|
|
637
|
-
fields?: {
|
|
638
|
-
type: "plain_text" | "mrkdwn";
|
|
639
|
-
text: string;
|
|
640
|
-
emoji?: boolean | undefined;
|
|
641
|
-
verbatim?: boolean | undefined;
|
|
642
|
-
}[] | undefined;
|
|
643
636
|
text?: {
|
|
644
637
|
type: "plain_text" | "mrkdwn";
|
|
645
638
|
text: string;
|
|
@@ -648,6 +641,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
648
641
|
} | undefined;
|
|
649
642
|
image_url?: string | undefined;
|
|
650
643
|
optional?: boolean | undefined;
|
|
644
|
+
fields?: {
|
|
645
|
+
type: "plain_text" | "mrkdwn";
|
|
646
|
+
text: string;
|
|
647
|
+
emoji?: boolean | undefined;
|
|
648
|
+
verbatim?: boolean | undefined;
|
|
649
|
+
}[] | undefined;
|
|
651
650
|
alt_text?: string | undefined;
|
|
652
651
|
elements?: {
|
|
653
652
|
type: "plain_text" | "mrkdwn";
|
|
@@ -658,13 +657,14 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
658
657
|
block_id?: string | undefined;
|
|
659
658
|
accessory?: unknown;
|
|
660
659
|
element?: unknown;
|
|
660
|
+
label?: unknown;
|
|
661
661
|
hint?: unknown;
|
|
662
662
|
}[] | undefined;
|
|
663
663
|
}, {
|
|
664
|
-
success: boolean;
|
|
665
|
-
error: string;
|
|
666
664
|
response: string;
|
|
667
665
|
iterations: number;
|
|
666
|
+
error: string;
|
|
667
|
+
success: boolean;
|
|
668
668
|
metadata: {
|
|
669
669
|
verbosityLevel: string;
|
|
670
670
|
technicalityLevel: string;
|
|
@@ -683,13 +683,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
683
683
|
text: string;
|
|
684
684
|
emoji?: boolean | undefined;
|
|
685
685
|
} | undefined;
|
|
686
|
-
label?: unknown;
|
|
687
|
-
fields?: {
|
|
688
|
-
type: "plain_text" | "mrkdwn";
|
|
689
|
-
text: string;
|
|
690
|
-
emoji?: boolean | undefined;
|
|
691
|
-
verbatim?: boolean | undefined;
|
|
692
|
-
}[] | undefined;
|
|
693
686
|
text?: {
|
|
694
687
|
type: "plain_text" | "mrkdwn";
|
|
695
688
|
text: string;
|
|
@@ -698,6 +691,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
698
691
|
} | undefined;
|
|
699
692
|
image_url?: string | undefined;
|
|
700
693
|
optional?: boolean | undefined;
|
|
694
|
+
fields?: {
|
|
695
|
+
type: "plain_text" | "mrkdwn";
|
|
696
|
+
text: string;
|
|
697
|
+
emoji?: boolean | undefined;
|
|
698
|
+
verbatim?: boolean | undefined;
|
|
699
|
+
}[] | undefined;
|
|
701
700
|
alt_text?: string | undefined;
|
|
702
701
|
elements?: {
|
|
703
702
|
type: "plain_text" | "mrkdwn";
|
|
@@ -708,6 +707,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
708
707
|
block_id?: string | undefined;
|
|
709
708
|
accessory?: unknown;
|
|
710
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.40",
|
|
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.41"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"zod-to-json-schema": "^3.24.6",
|