@bubblelab/bubble-core 0.1.26 → 0.1.28
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 +60 -60
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/airtable.d.ts +104 -104
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +22 -22
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +28 -28
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +308 -308
- package/dist/bubbles/service-bubble/followupboss.d.ts +392 -392
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +44 -44
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +55 -55
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +100 -100
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +202 -202
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +512 -512
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +148 -148
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +129 -129
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +217 -217
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +33 -4
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +19 -19
- package/package.json +2 -2
|
@@ -149,9 +149,9 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
149
149
|
success: z.ZodBoolean;
|
|
150
150
|
error: z.ZodString;
|
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
|
152
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
152
153
|
success: boolean;
|
|
153
154
|
error: string;
|
|
154
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
155
155
|
totalResults: number;
|
|
156
156
|
videos?: {
|
|
157
157
|
description: string | null;
|
|
@@ -175,9 +175,9 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
175
175
|
}[] | undefined;
|
|
176
176
|
fullTranscriptText?: string | undefined;
|
|
177
177
|
}, {
|
|
178
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
178
179
|
success: boolean;
|
|
179
180
|
error: string;
|
|
180
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
181
181
|
totalResults: number;
|
|
182
182
|
videos?: {
|
|
183
183
|
description: string | null;
|
|
@@ -307,9 +307,9 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
307
307
|
success: z.ZodBoolean;
|
|
308
308
|
error: z.ZodString;
|
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
|
310
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
310
311
|
success: boolean;
|
|
311
312
|
error: string;
|
|
312
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
313
313
|
totalResults: number;
|
|
314
314
|
videos?: {
|
|
315
315
|
description: string | null;
|
|
@@ -333,9 +333,9 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
333
333
|
}[] | undefined;
|
|
334
334
|
fullTranscriptText?: string | undefined;
|
|
335
335
|
}, {
|
|
336
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
336
337
|
success: boolean;
|
|
337
338
|
error: string;
|
|
338
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
339
339
|
totalResults: number;
|
|
340
340
|
videos?: {
|
|
341
341
|
description: string | null;
|
|
@@ -172,9 +172,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
172
172
|
success: z.ZodBoolean;
|
|
173
173
|
error: z.ZodString;
|
|
174
174
|
}, "strip", z.ZodTypeAny, {
|
|
175
|
+
operation: "discover";
|
|
175
176
|
success: boolean;
|
|
176
177
|
error: string;
|
|
177
|
-
operation: "discover";
|
|
178
178
|
fields: {
|
|
179
179
|
type: string;
|
|
180
180
|
name: string;
|
|
@@ -194,9 +194,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
194
194
|
}[];
|
|
195
195
|
totalFields: number;
|
|
196
196
|
}, {
|
|
197
|
+
operation: "discover";
|
|
197
198
|
success: boolean;
|
|
198
199
|
error: string;
|
|
199
|
-
operation: "discover";
|
|
200
200
|
fields: {
|
|
201
201
|
type: string;
|
|
202
202
|
name: string;
|
|
@@ -235,9 +235,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
235
235
|
success: z.ZodBoolean;
|
|
236
236
|
error: z.ZodString;
|
|
237
237
|
}, "strip", z.ZodTypeAny, {
|
|
238
|
+
operation: "fill";
|
|
238
239
|
success: boolean;
|
|
239
240
|
error: string;
|
|
240
|
-
operation: "fill";
|
|
241
241
|
filledPdfData: string;
|
|
242
242
|
filledFields: number;
|
|
243
243
|
verification: Record<string, {
|
|
@@ -246,9 +246,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
246
246
|
page: number;
|
|
247
247
|
}>;
|
|
248
248
|
}, {
|
|
249
|
+
operation: "fill";
|
|
249
250
|
success: boolean;
|
|
250
251
|
error: string;
|
|
251
|
-
operation: "fill";
|
|
252
252
|
filledPdfData: string;
|
|
253
253
|
filledFields: number;
|
|
254
254
|
verification: Record<string, {
|
|
@@ -278,9 +278,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
278
278
|
success: z.ZodBoolean;
|
|
279
279
|
error: z.ZodString;
|
|
280
280
|
}, "strip", z.ZodTypeAny, {
|
|
281
|
+
operation: "analyze-checkboxes";
|
|
281
282
|
success: boolean;
|
|
282
283
|
error: string;
|
|
283
|
-
operation: "analyze-checkboxes";
|
|
284
284
|
checkboxes: Record<string, {
|
|
285
285
|
page: number;
|
|
286
286
|
current_value: string;
|
|
@@ -289,9 +289,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
289
289
|
}>;
|
|
290
290
|
totalCheckboxes: number;
|
|
291
291
|
}, {
|
|
292
|
+
operation: "analyze-checkboxes";
|
|
292
293
|
success: boolean;
|
|
293
294
|
error: string;
|
|
294
|
-
operation: "analyze-checkboxes";
|
|
295
295
|
checkboxes: Record<string, {
|
|
296
296
|
page: number;
|
|
297
297
|
current_value: string;
|
|
@@ -320,9 +320,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
320
320
|
success: z.ZodBoolean;
|
|
321
321
|
error: z.ZodString;
|
|
322
322
|
}, "strip", z.ZodTypeAny, {
|
|
323
|
+
operation: "validate";
|
|
323
324
|
success: boolean;
|
|
324
325
|
error: string;
|
|
325
|
-
operation: "validate";
|
|
326
326
|
fields: Record<string, {
|
|
327
327
|
value: string;
|
|
328
328
|
type: string;
|
|
@@ -332,9 +332,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
332
332
|
filledFields: number;
|
|
333
333
|
emptyFields: number;
|
|
334
334
|
}, {
|
|
335
|
+
operation: "validate";
|
|
335
336
|
success: boolean;
|
|
336
337
|
error: string;
|
|
337
|
-
operation: "validate";
|
|
338
338
|
fields: Record<string, {
|
|
339
339
|
value: string;
|
|
340
340
|
type: string;
|
|
@@ -369,9 +369,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
369
369
|
success: z.ZodBoolean;
|
|
370
370
|
error: z.ZodString;
|
|
371
371
|
}, "strip", z.ZodTypeAny, {
|
|
372
|
+
operation: "convert-to-images";
|
|
372
373
|
success: boolean;
|
|
373
374
|
error: string;
|
|
374
|
-
operation: "convert-to-images";
|
|
375
375
|
images: {
|
|
376
376
|
format: string;
|
|
377
377
|
width: number;
|
|
@@ -382,9 +382,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
382
382
|
totalPages: number;
|
|
383
383
|
convertedPages: number;
|
|
384
384
|
}, {
|
|
385
|
+
operation: "convert-to-images";
|
|
385
386
|
success: boolean;
|
|
386
387
|
error: string;
|
|
387
|
-
operation: "convert-to-images";
|
|
388
388
|
images: {
|
|
389
389
|
format: string;
|
|
390
390
|
width: number;
|
|
@@ -450,9 +450,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
450
450
|
success: z.ZodBoolean;
|
|
451
451
|
error: z.ZodString;
|
|
452
452
|
}, "strip", z.ZodTypeAny, {
|
|
453
|
+
operation: "convert-to-markdown";
|
|
453
454
|
success: boolean;
|
|
454
455
|
error: string;
|
|
455
|
-
operation: "convert-to-markdown";
|
|
456
456
|
pages: {
|
|
457
457
|
pageNumber: number;
|
|
458
458
|
markdown: string;
|
|
@@ -469,9 +469,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
469
469
|
totalPages: number;
|
|
470
470
|
convertedPages: number;
|
|
471
471
|
}, {
|
|
472
|
+
operation: "convert-to-markdown";
|
|
472
473
|
success: boolean;
|
|
473
474
|
error: string;
|
|
474
|
-
operation: "convert-to-markdown";
|
|
475
475
|
pages: {
|
|
476
476
|
pageNumber: number;
|
|
477
477
|
markdown: string;
|
|
@@ -651,9 +651,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
651
651
|
success: z.ZodBoolean;
|
|
652
652
|
error: z.ZodString;
|
|
653
653
|
}, "strip", z.ZodTypeAny, {
|
|
654
|
+
operation: "discover";
|
|
654
655
|
success: boolean;
|
|
655
656
|
error: string;
|
|
656
|
-
operation: "discover";
|
|
657
657
|
fields: {
|
|
658
658
|
type: string;
|
|
659
659
|
name: string;
|
|
@@ -673,9 +673,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
673
673
|
}[];
|
|
674
674
|
totalFields: number;
|
|
675
675
|
}, {
|
|
676
|
+
operation: "discover";
|
|
676
677
|
success: boolean;
|
|
677
678
|
error: string;
|
|
678
|
-
operation: "discover";
|
|
679
679
|
fields: {
|
|
680
680
|
type: string;
|
|
681
681
|
name: string;
|
|
@@ -714,9 +714,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
714
714
|
success: z.ZodBoolean;
|
|
715
715
|
error: z.ZodString;
|
|
716
716
|
}, "strip", z.ZodTypeAny, {
|
|
717
|
+
operation: "fill";
|
|
717
718
|
success: boolean;
|
|
718
719
|
error: string;
|
|
719
|
-
operation: "fill";
|
|
720
720
|
filledPdfData: string;
|
|
721
721
|
filledFields: number;
|
|
722
722
|
verification: Record<string, {
|
|
@@ -725,9 +725,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
725
725
|
page: number;
|
|
726
726
|
}>;
|
|
727
727
|
}, {
|
|
728
|
+
operation: "fill";
|
|
728
729
|
success: boolean;
|
|
729
730
|
error: string;
|
|
730
|
-
operation: "fill";
|
|
731
731
|
filledPdfData: string;
|
|
732
732
|
filledFields: number;
|
|
733
733
|
verification: Record<string, {
|
|
@@ -757,9 +757,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
757
757
|
success: z.ZodBoolean;
|
|
758
758
|
error: z.ZodString;
|
|
759
759
|
}, "strip", z.ZodTypeAny, {
|
|
760
|
+
operation: "analyze-checkboxes";
|
|
760
761
|
success: boolean;
|
|
761
762
|
error: string;
|
|
762
|
-
operation: "analyze-checkboxes";
|
|
763
763
|
checkboxes: Record<string, {
|
|
764
764
|
page: number;
|
|
765
765
|
current_value: string;
|
|
@@ -768,9 +768,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
768
768
|
}>;
|
|
769
769
|
totalCheckboxes: number;
|
|
770
770
|
}, {
|
|
771
|
+
operation: "analyze-checkboxes";
|
|
771
772
|
success: boolean;
|
|
772
773
|
error: string;
|
|
773
|
-
operation: "analyze-checkboxes";
|
|
774
774
|
checkboxes: Record<string, {
|
|
775
775
|
page: number;
|
|
776
776
|
current_value: string;
|
|
@@ -799,9 +799,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
799
799
|
success: z.ZodBoolean;
|
|
800
800
|
error: z.ZodString;
|
|
801
801
|
}, "strip", z.ZodTypeAny, {
|
|
802
|
+
operation: "validate";
|
|
802
803
|
success: boolean;
|
|
803
804
|
error: string;
|
|
804
|
-
operation: "validate";
|
|
805
805
|
fields: Record<string, {
|
|
806
806
|
value: string;
|
|
807
807
|
type: string;
|
|
@@ -811,9 +811,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
811
811
|
filledFields: number;
|
|
812
812
|
emptyFields: number;
|
|
813
813
|
}, {
|
|
814
|
+
operation: "validate";
|
|
814
815
|
success: boolean;
|
|
815
816
|
error: string;
|
|
816
|
-
operation: "validate";
|
|
817
817
|
fields: Record<string, {
|
|
818
818
|
value: string;
|
|
819
819
|
type: string;
|
|
@@ -848,9 +848,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
848
848
|
success: z.ZodBoolean;
|
|
849
849
|
error: z.ZodString;
|
|
850
850
|
}, "strip", z.ZodTypeAny, {
|
|
851
|
+
operation: "convert-to-images";
|
|
851
852
|
success: boolean;
|
|
852
853
|
error: string;
|
|
853
|
-
operation: "convert-to-images";
|
|
854
854
|
images: {
|
|
855
855
|
format: string;
|
|
856
856
|
width: number;
|
|
@@ -861,9 +861,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
861
861
|
totalPages: number;
|
|
862
862
|
convertedPages: number;
|
|
863
863
|
}, {
|
|
864
|
+
operation: "convert-to-images";
|
|
864
865
|
success: boolean;
|
|
865
866
|
error: string;
|
|
866
|
-
operation: "convert-to-images";
|
|
867
867
|
images: {
|
|
868
868
|
format: string;
|
|
869
869
|
width: number;
|
|
@@ -929,9 +929,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
929
929
|
success: z.ZodBoolean;
|
|
930
930
|
error: z.ZodString;
|
|
931
931
|
}, "strip", z.ZodTypeAny, {
|
|
932
|
+
operation: "convert-to-markdown";
|
|
932
933
|
success: boolean;
|
|
933
934
|
error: string;
|
|
934
|
-
operation: "convert-to-markdown";
|
|
935
935
|
pages: {
|
|
936
936
|
pageNumber: number;
|
|
937
937
|
markdown: string;
|
|
@@ -948,9 +948,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
948
948
|
totalPages: number;
|
|
949
949
|
convertedPages: number;
|
|
950
950
|
}, {
|
|
951
|
+
operation: "convert-to-markdown";
|
|
951
952
|
success: boolean;
|
|
952
953
|
error: string;
|
|
953
|
-
operation: "convert-to-markdown";
|
|
954
954
|
pages: {
|
|
955
955
|
pageNumber: number;
|
|
956
956
|
markdown: string;
|
|
@@ -160,12 +160,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
160
160
|
text: string;
|
|
161
161
|
emoji?: boolean | undefined;
|
|
162
162
|
} | undefined;
|
|
163
|
-
fields?: {
|
|
164
|
-
type: "plain_text" | "mrkdwn";
|
|
165
|
-
text: string;
|
|
166
|
-
emoji?: boolean | undefined;
|
|
167
|
-
verbatim?: boolean | undefined;
|
|
168
|
-
}[] | undefined;
|
|
169
163
|
text?: {
|
|
170
164
|
type: "plain_text" | "mrkdwn";
|
|
171
165
|
text: string;
|
|
@@ -174,6 +168,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
174
168
|
} | undefined;
|
|
175
169
|
image_url?: string | undefined;
|
|
176
170
|
optional?: boolean | undefined;
|
|
171
|
+
fields?: {
|
|
172
|
+
type: "plain_text" | "mrkdwn";
|
|
173
|
+
text: string;
|
|
174
|
+
emoji?: boolean | undefined;
|
|
175
|
+
verbatim?: boolean | undefined;
|
|
176
|
+
}[] | undefined;
|
|
177
177
|
alt_text?: string | undefined;
|
|
178
178
|
elements?: {
|
|
179
179
|
type: "plain_text" | "mrkdwn";
|
|
@@ -193,12 +193,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
193
193
|
text: string;
|
|
194
194
|
emoji?: boolean | undefined;
|
|
195
195
|
} | undefined;
|
|
196
|
-
fields?: {
|
|
197
|
-
type: "plain_text" | "mrkdwn";
|
|
198
|
-
text: string;
|
|
199
|
-
emoji?: boolean | undefined;
|
|
200
|
-
verbatim?: boolean | undefined;
|
|
201
|
-
}[] | undefined;
|
|
202
196
|
text?: {
|
|
203
197
|
type: "plain_text" | "mrkdwn";
|
|
204
198
|
text: string;
|
|
@@ -207,6 +201,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
207
201
|
} | undefined;
|
|
208
202
|
image_url?: string | undefined;
|
|
209
203
|
optional?: boolean | undefined;
|
|
204
|
+
fields?: {
|
|
205
|
+
type: "plain_text" | "mrkdwn";
|
|
206
|
+
text: string;
|
|
207
|
+
emoji?: boolean | undefined;
|
|
208
|
+
verbatim?: boolean | undefined;
|
|
209
|
+
}[] | undefined;
|
|
210
210
|
alt_text?: string | undefined;
|
|
211
211
|
elements?: {
|
|
212
212
|
type: "plain_text" | "mrkdwn";
|
|
@@ -275,12 +275,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
275
275
|
text: string;
|
|
276
276
|
emoji?: boolean | undefined;
|
|
277
277
|
} | undefined;
|
|
278
|
-
fields?: {
|
|
279
|
-
type: "plain_text" | "mrkdwn";
|
|
280
|
-
text: string;
|
|
281
|
-
emoji?: boolean | undefined;
|
|
282
|
-
verbatim?: boolean | undefined;
|
|
283
|
-
}[] | undefined;
|
|
284
278
|
text?: {
|
|
285
279
|
type: "plain_text" | "mrkdwn";
|
|
286
280
|
text: string;
|
|
@@ -289,6 +283,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
289
283
|
} | undefined;
|
|
290
284
|
image_url?: string | undefined;
|
|
291
285
|
optional?: boolean | undefined;
|
|
286
|
+
fields?: {
|
|
287
|
+
type: "plain_text" | "mrkdwn";
|
|
288
|
+
text: string;
|
|
289
|
+
emoji?: boolean | undefined;
|
|
290
|
+
verbatim?: boolean | undefined;
|
|
291
|
+
}[] | undefined;
|
|
292
292
|
alt_text?: string | undefined;
|
|
293
293
|
elements?: {
|
|
294
294
|
type: "plain_text" | "mrkdwn";
|
|
@@ -325,12 +325,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
325
325
|
text: string;
|
|
326
326
|
emoji?: boolean | undefined;
|
|
327
327
|
} | undefined;
|
|
328
|
-
fields?: {
|
|
329
|
-
type: "plain_text" | "mrkdwn";
|
|
330
|
-
text: string;
|
|
331
|
-
emoji?: boolean | undefined;
|
|
332
|
-
verbatim?: boolean | undefined;
|
|
333
|
-
}[] | undefined;
|
|
334
328
|
text?: {
|
|
335
329
|
type: "plain_text" | "mrkdwn";
|
|
336
330
|
text: string;
|
|
@@ -339,6 +333,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
339
333
|
} | undefined;
|
|
340
334
|
image_url?: string | undefined;
|
|
341
335
|
optional?: boolean | undefined;
|
|
336
|
+
fields?: {
|
|
337
|
+
type: "plain_text" | "mrkdwn";
|
|
338
|
+
text: string;
|
|
339
|
+
emoji?: boolean | undefined;
|
|
340
|
+
verbatim?: boolean | undefined;
|
|
341
|
+
}[] | undefined;
|
|
342
342
|
alt_text?: string | undefined;
|
|
343
343
|
elements?: {
|
|
344
344
|
type: "plain_text" | "mrkdwn";
|
|
@@ -518,12 +518,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
518
518
|
text: string;
|
|
519
519
|
emoji?: boolean | undefined;
|
|
520
520
|
} | undefined;
|
|
521
|
-
fields?: {
|
|
522
|
-
type: "plain_text" | "mrkdwn";
|
|
523
|
-
text: string;
|
|
524
|
-
emoji?: boolean | undefined;
|
|
525
|
-
verbatim?: boolean | undefined;
|
|
526
|
-
}[] | undefined;
|
|
527
521
|
text?: {
|
|
528
522
|
type: "plain_text" | "mrkdwn";
|
|
529
523
|
text: string;
|
|
@@ -532,6 +526,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
532
526
|
} | undefined;
|
|
533
527
|
image_url?: string | undefined;
|
|
534
528
|
optional?: boolean | undefined;
|
|
529
|
+
fields?: {
|
|
530
|
+
type: "plain_text" | "mrkdwn";
|
|
531
|
+
text: string;
|
|
532
|
+
emoji?: boolean | undefined;
|
|
533
|
+
verbatim?: boolean | undefined;
|
|
534
|
+
}[] | undefined;
|
|
535
535
|
alt_text?: string | undefined;
|
|
536
536
|
elements?: {
|
|
537
537
|
type: "plain_text" | "mrkdwn";
|
|
@@ -551,12 +551,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
551
551
|
text: string;
|
|
552
552
|
emoji?: boolean | undefined;
|
|
553
553
|
} | undefined;
|
|
554
|
-
fields?: {
|
|
555
|
-
type: "plain_text" | "mrkdwn";
|
|
556
|
-
text: string;
|
|
557
|
-
emoji?: boolean | undefined;
|
|
558
|
-
verbatim?: boolean | undefined;
|
|
559
|
-
}[] | undefined;
|
|
560
554
|
text?: {
|
|
561
555
|
type: "plain_text" | "mrkdwn";
|
|
562
556
|
text: string;
|
|
@@ -565,6 +559,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
565
559
|
} | undefined;
|
|
566
560
|
image_url?: string | undefined;
|
|
567
561
|
optional?: boolean | undefined;
|
|
562
|
+
fields?: {
|
|
563
|
+
type: "plain_text" | "mrkdwn";
|
|
564
|
+
text: string;
|
|
565
|
+
emoji?: boolean | undefined;
|
|
566
|
+
verbatim?: boolean | undefined;
|
|
567
|
+
}[] | undefined;
|
|
568
568
|
alt_text?: string | undefined;
|
|
569
569
|
elements?: {
|
|
570
570
|
type: "plain_text" | "mrkdwn";
|
|
@@ -633,12 +633,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
633
633
|
text: string;
|
|
634
634
|
emoji?: boolean | undefined;
|
|
635
635
|
} | undefined;
|
|
636
|
-
fields?: {
|
|
637
|
-
type: "plain_text" | "mrkdwn";
|
|
638
|
-
text: string;
|
|
639
|
-
emoji?: boolean | undefined;
|
|
640
|
-
verbatim?: boolean | undefined;
|
|
641
|
-
}[] | undefined;
|
|
642
636
|
text?: {
|
|
643
637
|
type: "plain_text" | "mrkdwn";
|
|
644
638
|
text: string;
|
|
@@ -647,6 +641,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
647
641
|
} | undefined;
|
|
648
642
|
image_url?: string | undefined;
|
|
649
643
|
optional?: boolean | undefined;
|
|
644
|
+
fields?: {
|
|
645
|
+
type: "plain_text" | "mrkdwn";
|
|
646
|
+
text: string;
|
|
647
|
+
emoji?: boolean | undefined;
|
|
648
|
+
verbatim?: boolean | undefined;
|
|
649
|
+
}[] | undefined;
|
|
650
650
|
alt_text?: string | undefined;
|
|
651
651
|
elements?: {
|
|
652
652
|
type: "plain_text" | "mrkdwn";
|
|
@@ -683,12 +683,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
683
683
|
text: string;
|
|
684
684
|
emoji?: boolean | undefined;
|
|
685
685
|
} | undefined;
|
|
686
|
-
fields?: {
|
|
687
|
-
type: "plain_text" | "mrkdwn";
|
|
688
|
-
text: string;
|
|
689
|
-
emoji?: boolean | undefined;
|
|
690
|
-
verbatim?: boolean | undefined;
|
|
691
|
-
}[] | undefined;
|
|
692
686
|
text?: {
|
|
693
687
|
type: "plain_text" | "mrkdwn";
|
|
694
688
|
text: string;
|
|
@@ -697,6 +691,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
697
691
|
} | undefined;
|
|
698
692
|
image_url?: string | undefined;
|
|
699
693
|
optional?: boolean | undefined;
|
|
694
|
+
fields?: {
|
|
695
|
+
type: "plain_text" | "mrkdwn";
|
|
696
|
+
text: string;
|
|
697
|
+
emoji?: boolean | undefined;
|
|
698
|
+
verbatim?: boolean | undefined;
|
|
699
|
+
}[] | undefined;
|
|
700
700
|
alt_text?: string | undefined;
|
|
701
701
|
elements?: {
|
|
702
702
|
type: "plain_text" | "mrkdwn";
|