@bubblelab/bubble-core 0.1.13 → 0.1.14
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 +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +40 -40
- package/dist/bubbles/service-bubble/airtable.d.ts +152 -152
- package/dist/bubbles/service-bubble/apify/apify.d.ts +26 -26
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +51 -51
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +202 -202
- package/dist/bubbles/service-bubble/followupboss.d.ts +260 -260
- package/dist/bubbles/service-bubble/github.d.ts +168 -168
- package/dist/bubbles/service-bubble/gmail.d.ts +352 -352
- package/dist/bubbles/service-bubble/google-calendar.d.ts +148 -148
- package/dist/bubbles/service-bubble/google-drive.d.ts +130 -130
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +55 -17
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +62 -62
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +18 -18
- package/dist/bubbles/service-bubble/notion/notion.d.ts +152 -152
- package/dist/bubbles/service-bubble/postgresql.d.ts +18 -18
- package/dist/bubbles/service-bubble/resend.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack.d.ts +318 -318
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +256 -256
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +33 -33
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/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 +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +294 -294
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- 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 +50 -50
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -104,14 +104,14 @@ declare const SlackDataAssistantResultSchema: z.ZodObject<{
|
|
|
104
104
|
wordCount?: number | undefined;
|
|
105
105
|
}>>;
|
|
106
106
|
}, "strip", z.ZodTypeAny, {
|
|
107
|
-
error: string;
|
|
108
107
|
success: boolean;
|
|
108
|
+
error: string;
|
|
109
|
+
query?: string | undefined;
|
|
109
110
|
metadata?: {
|
|
110
111
|
executionTime: number;
|
|
111
112
|
rowCount?: number | undefined;
|
|
112
113
|
wordCount?: number | undefined;
|
|
113
114
|
} | undefined;
|
|
114
|
-
query?: string | undefined;
|
|
115
115
|
queryExplanation?: string | undefined;
|
|
116
116
|
queryResults?: Record<string, unknown>[] | undefined;
|
|
117
117
|
formattedResponse?: string | undefined;
|
|
@@ -119,14 +119,14 @@ declare const SlackDataAssistantResultSchema: z.ZodObject<{
|
|
|
119
119
|
slackMessageTs?: string | undefined;
|
|
120
120
|
isDataQuestion?: boolean | undefined;
|
|
121
121
|
}, {
|
|
122
|
-
error: string;
|
|
123
122
|
success: boolean;
|
|
123
|
+
error: string;
|
|
124
|
+
query?: string | undefined;
|
|
124
125
|
metadata?: {
|
|
125
126
|
executionTime: number;
|
|
126
127
|
rowCount?: number | undefined;
|
|
127
128
|
wordCount?: number | undefined;
|
|
128
129
|
} | undefined;
|
|
129
|
-
query?: string | undefined;
|
|
130
130
|
queryExplanation?: string | undefined;
|
|
131
131
|
queryResults?: Record<string, unknown>[] | undefined;
|
|
132
132
|
formattedResponse?: string | undefined;
|
|
@@ -242,14 +242,14 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
242
242
|
wordCount?: number | undefined;
|
|
243
243
|
}>>;
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
|
-
error: string;
|
|
246
245
|
success: boolean;
|
|
246
|
+
error: string;
|
|
247
|
+
query?: string | undefined;
|
|
247
248
|
metadata?: {
|
|
248
249
|
executionTime: number;
|
|
249
250
|
rowCount?: number | undefined;
|
|
250
251
|
wordCount?: number | undefined;
|
|
251
252
|
} | undefined;
|
|
252
|
-
query?: string | undefined;
|
|
253
253
|
queryExplanation?: string | undefined;
|
|
254
254
|
queryResults?: Record<string, unknown>[] | undefined;
|
|
255
255
|
formattedResponse?: string | undefined;
|
|
@@ -257,14 +257,14 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
257
257
|
slackMessageTs?: string | undefined;
|
|
258
258
|
isDataQuestion?: boolean | undefined;
|
|
259
259
|
}, {
|
|
260
|
-
error: string;
|
|
261
260
|
success: boolean;
|
|
261
|
+
error: string;
|
|
262
|
+
query?: string | undefined;
|
|
262
263
|
metadata?: {
|
|
263
264
|
executionTime: number;
|
|
264
265
|
rowCount?: number | undefined;
|
|
265
266
|
wordCount?: number | undefined;
|
|
266
267
|
} | undefined;
|
|
267
|
-
query?: string | undefined;
|
|
268
268
|
queryExplanation?: string | undefined;
|
|
269
269
|
queryResults?: Record<string, unknown>[] | undefined;
|
|
270
270
|
formattedResponse?: string | undefined;
|
|
@@ -154,7 +154,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
154
154
|
verbatim?: boolean | undefined;
|
|
155
155
|
}>, "many">>;
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
|
-
type: "
|
|
157
|
+
type: "file" | "image" | "input" | "section" | "header" | "divider" | "context" | "actions";
|
|
158
158
|
title?: {
|
|
159
159
|
type: "plain_text";
|
|
160
160
|
text: string;
|
|
@@ -166,14 +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;
|
|
171
169
|
fields?: {
|
|
172
170
|
type: "plain_text" | "mrkdwn";
|
|
173
171
|
text: string;
|
|
174
172
|
emoji?: boolean | undefined;
|
|
175
173
|
verbatim?: boolean | undefined;
|
|
176
174
|
}[] | undefined;
|
|
175
|
+
image_url?: string | undefined;
|
|
176
|
+
optional?: boolean | undefined;
|
|
177
177
|
alt_text?: string | undefined;
|
|
178
178
|
elements?: {
|
|
179
179
|
type: "plain_text" | "mrkdwn";
|
|
@@ -187,7 +187,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
187
187
|
label?: unknown;
|
|
188
188
|
hint?: unknown;
|
|
189
189
|
}, {
|
|
190
|
-
type: "
|
|
190
|
+
type: "file" | "image" | "input" | "section" | "header" | "divider" | "context" | "actions";
|
|
191
191
|
title?: {
|
|
192
192
|
type: "plain_text";
|
|
193
193
|
text: string;
|
|
@@ -199,14 +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;
|
|
204
202
|
fields?: {
|
|
205
203
|
type: "plain_text" | "mrkdwn";
|
|
206
204
|
text: string;
|
|
207
205
|
emoji?: boolean | undefined;
|
|
208
206
|
verbatim?: boolean | undefined;
|
|
209
207
|
}[] | undefined;
|
|
208
|
+
image_url?: string | undefined;
|
|
209
|
+
optional?: boolean | undefined;
|
|
210
210
|
alt_text?: string | undefined;
|
|
211
211
|
elements?: {
|
|
212
212
|
type: "plain_text" | "mrkdwn";
|
|
@@ -253,23 +253,23 @@ 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
|
+
response: string;
|
|
259
|
+
iterations: number;
|
|
258
260
|
metadata: {
|
|
259
261
|
verbosityLevel: string;
|
|
260
262
|
technicalityLevel: string;
|
|
261
263
|
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;
|
|
269
269
|
output?: unknown;
|
|
270
270
|
}[] | undefined;
|
|
271
271
|
blocks?: {
|
|
272
|
-
type: "
|
|
272
|
+
type: "file" | "image" | "input" | "section" | "header" | "divider" | "context" | "actions";
|
|
273
273
|
title?: {
|
|
274
274
|
type: "plain_text";
|
|
275
275
|
text: string;
|
|
@@ -281,14 +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;
|
|
286
284
|
fields?: {
|
|
287
285
|
type: "plain_text" | "mrkdwn";
|
|
288
286
|
text: string;
|
|
289
287
|
emoji?: boolean | undefined;
|
|
290
288
|
verbatim?: boolean | undefined;
|
|
291
289
|
}[] | undefined;
|
|
290
|
+
image_url?: string | undefined;
|
|
291
|
+
optional?: boolean | undefined;
|
|
292
292
|
alt_text?: string | undefined;
|
|
293
293
|
elements?: {
|
|
294
294
|
type: "plain_text" | "mrkdwn";
|
|
@@ -303,23 +303,23 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
303
303
|
hint?: unknown;
|
|
304
304
|
}[] | undefined;
|
|
305
305
|
}, {
|
|
306
|
-
error: string;
|
|
307
306
|
success: boolean;
|
|
307
|
+
error: string;
|
|
308
|
+
response: string;
|
|
309
|
+
iterations: number;
|
|
308
310
|
metadata: {
|
|
309
311
|
verbosityLevel: string;
|
|
310
312
|
technicalityLevel: string;
|
|
311
313
|
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;
|
|
319
319
|
output?: unknown;
|
|
320
320
|
}[] | undefined;
|
|
321
321
|
blocks?: {
|
|
322
|
-
type: "
|
|
322
|
+
type: "file" | "image" | "input" | "section" | "header" | "divider" | "context" | "actions";
|
|
323
323
|
title?: {
|
|
324
324
|
type: "plain_text";
|
|
325
325
|
text: string;
|
|
@@ -331,14 +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;
|
|
336
334
|
fields?: {
|
|
337
335
|
type: "plain_text" | "mrkdwn";
|
|
338
336
|
text: string;
|
|
339
337
|
emoji?: boolean | undefined;
|
|
340
338
|
verbatim?: boolean | undefined;
|
|
341
339
|
}[] | undefined;
|
|
340
|
+
image_url?: string | undefined;
|
|
341
|
+
optional?: boolean | undefined;
|
|
342
342
|
alt_text?: string | undefined;
|
|
343
343
|
elements?: {
|
|
344
344
|
type: "plain_text" | "mrkdwn";
|
|
@@ -512,7 +512,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
512
512
|
verbatim?: boolean | undefined;
|
|
513
513
|
}>, "many">>;
|
|
514
514
|
}, "strip", z.ZodTypeAny, {
|
|
515
|
-
type: "
|
|
515
|
+
type: "file" | "image" | "input" | "section" | "header" | "divider" | "context" | "actions";
|
|
516
516
|
title?: {
|
|
517
517
|
type: "plain_text";
|
|
518
518
|
text: string;
|
|
@@ -524,14 +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;
|
|
529
527
|
fields?: {
|
|
530
528
|
type: "plain_text" | "mrkdwn";
|
|
531
529
|
text: string;
|
|
532
530
|
emoji?: boolean | undefined;
|
|
533
531
|
verbatim?: boolean | undefined;
|
|
534
532
|
}[] | undefined;
|
|
533
|
+
image_url?: string | undefined;
|
|
534
|
+
optional?: boolean | undefined;
|
|
535
535
|
alt_text?: string | undefined;
|
|
536
536
|
elements?: {
|
|
537
537
|
type: "plain_text" | "mrkdwn";
|
|
@@ -545,7 +545,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
545
545
|
label?: unknown;
|
|
546
546
|
hint?: unknown;
|
|
547
547
|
}, {
|
|
548
|
-
type: "
|
|
548
|
+
type: "file" | "image" | "input" | "section" | "header" | "divider" | "context" | "actions";
|
|
549
549
|
title?: {
|
|
550
550
|
type: "plain_text";
|
|
551
551
|
text: string;
|
|
@@ -557,14 +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;
|
|
562
560
|
fields?: {
|
|
563
561
|
type: "plain_text" | "mrkdwn";
|
|
564
562
|
text: string;
|
|
565
563
|
emoji?: boolean | undefined;
|
|
566
564
|
verbatim?: boolean | undefined;
|
|
567
565
|
}[] | undefined;
|
|
566
|
+
image_url?: string | undefined;
|
|
567
|
+
optional?: boolean | undefined;
|
|
568
568
|
alt_text?: string | undefined;
|
|
569
569
|
elements?: {
|
|
570
570
|
type: "plain_text" | "mrkdwn";
|
|
@@ -611,23 +611,23 @@ 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
|
+
response: string;
|
|
617
|
+
iterations: number;
|
|
616
618
|
metadata: {
|
|
617
619
|
verbosityLevel: string;
|
|
618
620
|
technicalityLevel: string;
|
|
619
621
|
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;
|
|
627
627
|
output?: unknown;
|
|
628
628
|
}[] | undefined;
|
|
629
629
|
blocks?: {
|
|
630
|
-
type: "
|
|
630
|
+
type: "file" | "image" | "input" | "section" | "header" | "divider" | "context" | "actions";
|
|
631
631
|
title?: {
|
|
632
632
|
type: "plain_text";
|
|
633
633
|
text: string;
|
|
@@ -639,14 +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;
|
|
644
642
|
fields?: {
|
|
645
643
|
type: "plain_text" | "mrkdwn";
|
|
646
644
|
text: string;
|
|
647
645
|
emoji?: boolean | undefined;
|
|
648
646
|
verbatim?: boolean | undefined;
|
|
649
647
|
}[] | undefined;
|
|
648
|
+
image_url?: string | undefined;
|
|
649
|
+
optional?: boolean | undefined;
|
|
650
650
|
alt_text?: string | undefined;
|
|
651
651
|
elements?: {
|
|
652
652
|
type: "plain_text" | "mrkdwn";
|
|
@@ -661,23 +661,23 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
661
661
|
hint?: unknown;
|
|
662
662
|
}[] | undefined;
|
|
663
663
|
}, {
|
|
664
|
-
error: string;
|
|
665
664
|
success: boolean;
|
|
665
|
+
error: string;
|
|
666
|
+
response: string;
|
|
667
|
+
iterations: number;
|
|
666
668
|
metadata: {
|
|
667
669
|
verbosityLevel: string;
|
|
668
670
|
technicalityLevel: string;
|
|
669
671
|
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;
|
|
677
677
|
output?: unknown;
|
|
678
678
|
}[] | undefined;
|
|
679
679
|
blocks?: {
|
|
680
|
-
type: "
|
|
680
|
+
type: "file" | "image" | "input" | "section" | "header" | "divider" | "context" | "actions";
|
|
681
681
|
title?: {
|
|
682
682
|
type: "plain_text";
|
|
683
683
|
text: string;
|
|
@@ -689,14 +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;
|
|
694
692
|
fields?: {
|
|
695
693
|
type: "plain_text" | "mrkdwn";
|
|
696
694
|
text: string;
|
|
697
695
|
emoji?: boolean | undefined;
|
|
698
696
|
verbatim?: boolean | undefined;
|
|
699
697
|
}[] | undefined;
|
|
698
|
+
image_url?: string | undefined;
|
|
699
|
+
optional?: boolean | undefined;
|
|
700
700
|
alt_text?: string | undefined;
|
|
701
701
|
elements?: {
|
|
702
702
|
type: "plain_text" | "mrkdwn";
|
|
@@ -148,8 +148,8 @@ declare const SlackNotifierResultSchema: z.ZodObject<{
|
|
|
148
148
|
originalLength?: number | undefined;
|
|
149
149
|
}>>;
|
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
|
151
|
-
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;
|
|
@@ -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;
|
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.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"resend": "^4.8.0",
|
|
42
42
|
"zod": "^3.24.1",
|
|
43
43
|
"zod-to-json-schema": "^3.24.6",
|
|
44
|
-
"@bubblelab/shared-schemas": "0.1.
|
|
44
|
+
"@bubblelab/shared-schemas": "0.1.15"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^20.12.12",
|