@bubblelab/bubble-core 0.1.96 → 0.1.97
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 +66 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +68 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +108 -108
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +25 -25
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +172 -172
- package/dist/bubbles/service-bubble/followupboss.d.ts +144 -144
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +148 -148
- package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
- package/dist/bubbles/service-bubble/gmail.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/gmail.js +10 -4
- package/dist/bubbles/service-bubble/gmail.js.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.d.ts +30 -30
- package/dist/bubbles/service-bubble/google-drive.d.ts +100 -100
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +10 -10
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +29 -29
- package/dist/bubbles/service-bubble/notion/notion.d.ts +72 -72
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +26 -26
- package/dist/bubbles/service-bubble/slack/slack.d.ts +218 -218
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +62 -62
- package/dist/bubbles/service-bubble/telegram.d.ts +56 -56
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +6 -6
- package/package.json +2 -2
|
@@ -80,8 +80,8 @@ declare const PDFFormOperationsParamsSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
80
80
|
pages: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
81
81
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
|
-
format: "png" | "jpeg";
|
|
84
83
|
operation: "convert-to-images";
|
|
84
|
+
format: "png" | "jpeg";
|
|
85
85
|
pdfData: string;
|
|
86
86
|
quality: number;
|
|
87
87
|
dpi: number;
|
|
@@ -172,6 +172,7 @@ 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
178
|
fields: {
|
|
@@ -191,9 +192,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
191
192
|
field_flags: number;
|
|
192
193
|
potential_labels: string[];
|
|
193
194
|
}[];
|
|
194
|
-
operation: "discover";
|
|
195
195
|
totalFields: number;
|
|
196
196
|
}, {
|
|
197
|
+
operation: "discover";
|
|
197
198
|
success: boolean;
|
|
198
199
|
error: string;
|
|
199
200
|
fields: {
|
|
@@ -213,7 +214,6 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
213
214
|
field_flags: number;
|
|
214
215
|
potential_labels: string[];
|
|
215
216
|
}[];
|
|
216
|
-
operation: "discover";
|
|
217
217
|
totalFields: number;
|
|
218
218
|
}>, z.ZodObject<{
|
|
219
219
|
operation: z.ZodLiteral<"fill">;
|
|
@@ -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,6 +320,7 @@ 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
326
|
fields: Record<string, {
|
|
@@ -327,11 +328,11 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
327
328
|
type: string;
|
|
328
329
|
page: number;
|
|
329
330
|
}>;
|
|
330
|
-
operation: "validate";
|
|
331
331
|
totalFields: number;
|
|
332
332
|
filledFields: number;
|
|
333
333
|
emptyFields: number;
|
|
334
334
|
}, {
|
|
335
|
+
operation: "validate";
|
|
335
336
|
success: boolean;
|
|
336
337
|
error: string;
|
|
337
338
|
fields: Record<string, {
|
|
@@ -339,7 +340,6 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
339
340
|
type: string;
|
|
340
341
|
page: number;
|
|
341
342
|
}>;
|
|
342
|
-
operation: "validate";
|
|
343
343
|
totalFields: number;
|
|
344
344
|
filledFields: number;
|
|
345
345
|
emptyFields: number;
|
|
@@ -369,6 +369,7 @@ 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
375
|
images: {
|
|
@@ -378,10 +379,10 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
378
379
|
height: number;
|
|
379
380
|
imageData: string;
|
|
380
381
|
}[];
|
|
381
|
-
operation: "convert-to-images";
|
|
382
382
|
totalPages: number;
|
|
383
383
|
convertedPages: number;
|
|
384
384
|
}, {
|
|
385
|
+
operation: "convert-to-images";
|
|
385
386
|
success: boolean;
|
|
386
387
|
error: string;
|
|
387
388
|
images: {
|
|
@@ -391,7 +392,6 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
391
392
|
height: number;
|
|
392
393
|
imageData: string;
|
|
393
394
|
}[];
|
|
394
|
-
operation: "convert-to-images";
|
|
395
395
|
totalPages: number;
|
|
396
396
|
convertedPages: number;
|
|
397
397
|
}>, z.ZodObject<{
|
|
@@ -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
|
convertedPages: number;
|
|
470
470
|
markdown: string;
|
|
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;
|
|
@@ -562,8 +562,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
562
562
|
pages: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
563
563
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
564
564
|
}, "strip", z.ZodTypeAny, {
|
|
565
|
-
format: "png" | "jpeg";
|
|
566
565
|
operation: "convert-to-images";
|
|
566
|
+
format: "png" | "jpeg";
|
|
567
567
|
pdfData: string;
|
|
568
568
|
quality: number;
|
|
569
569
|
dpi: number;
|
|
@@ -651,6 +651,7 @@ 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
657
|
fields: {
|
|
@@ -670,9 +671,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
670
671
|
field_flags: number;
|
|
671
672
|
potential_labels: string[];
|
|
672
673
|
}[];
|
|
673
|
-
operation: "discover";
|
|
674
674
|
totalFields: number;
|
|
675
675
|
}, {
|
|
676
|
+
operation: "discover";
|
|
676
677
|
success: boolean;
|
|
677
678
|
error: string;
|
|
678
679
|
fields: {
|
|
@@ -692,7 +693,6 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
692
693
|
field_flags: number;
|
|
693
694
|
potential_labels: string[];
|
|
694
695
|
}[];
|
|
695
|
-
operation: "discover";
|
|
696
696
|
totalFields: number;
|
|
697
697
|
}>, z.ZodObject<{
|
|
698
698
|
operation: z.ZodLiteral<"fill">;
|
|
@@ -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,6 +799,7 @@ 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
805
|
fields: Record<string, {
|
|
@@ -806,11 +807,11 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
806
807
|
type: string;
|
|
807
808
|
page: number;
|
|
808
809
|
}>;
|
|
809
|
-
operation: "validate";
|
|
810
810
|
totalFields: number;
|
|
811
811
|
filledFields: number;
|
|
812
812
|
emptyFields: number;
|
|
813
813
|
}, {
|
|
814
|
+
operation: "validate";
|
|
814
815
|
success: boolean;
|
|
815
816
|
error: string;
|
|
816
817
|
fields: Record<string, {
|
|
@@ -818,7 +819,6 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
818
819
|
type: string;
|
|
819
820
|
page: number;
|
|
820
821
|
}>;
|
|
821
|
-
operation: "validate";
|
|
822
822
|
totalFields: number;
|
|
823
823
|
filledFields: number;
|
|
824
824
|
emptyFields: number;
|
|
@@ -848,6 +848,7 @@ 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
854
|
images: {
|
|
@@ -857,10 +858,10 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
857
858
|
height: number;
|
|
858
859
|
imageData: string;
|
|
859
860
|
}[];
|
|
860
|
-
operation: "convert-to-images";
|
|
861
861
|
totalPages: number;
|
|
862
862
|
convertedPages: number;
|
|
863
863
|
}, {
|
|
864
|
+
operation: "convert-to-images";
|
|
864
865
|
success: boolean;
|
|
865
866
|
error: string;
|
|
866
867
|
images: {
|
|
@@ -870,7 +871,6 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
870
871
|
height: number;
|
|
871
872
|
imageData: string;
|
|
872
873
|
}[];
|
|
873
|
-
operation: "convert-to-images";
|
|
874
874
|
totalPages: number;
|
|
875
875
|
convertedPages: number;
|
|
876
876
|
}>, z.ZodObject<{
|
|
@@ -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
|
convertedPages: number;
|
|
949
949
|
markdown: string;
|
|
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,6 +160,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
160
160
|
text: string;
|
|
161
161
|
emoji?: boolean | undefined;
|
|
162
162
|
} | undefined;
|
|
163
|
+
label?: unknown;
|
|
163
164
|
fields?: {
|
|
164
165
|
type: "plain_text" | "mrkdwn";
|
|
165
166
|
text: string;
|
|
@@ -180,7 +181,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
180
181
|
emoji?: boolean | undefined;
|
|
181
182
|
verbatim?: boolean | undefined;
|
|
182
183
|
}[] | undefined;
|
|
183
|
-
label?: unknown;
|
|
184
184
|
optional?: boolean | undefined;
|
|
185
185
|
element?: unknown;
|
|
186
186
|
block_id?: string | undefined;
|
|
@@ -193,6 +193,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
193
193
|
text: string;
|
|
194
194
|
emoji?: boolean | undefined;
|
|
195
195
|
} | undefined;
|
|
196
|
+
label?: unknown;
|
|
196
197
|
fields?: {
|
|
197
198
|
type: "plain_text" | "mrkdwn";
|
|
198
199
|
text: string;
|
|
@@ -213,7 +214,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
213
214
|
emoji?: boolean | undefined;
|
|
214
215
|
verbatim?: boolean | undefined;
|
|
215
216
|
}[] | undefined;
|
|
216
|
-
label?: unknown;
|
|
217
217
|
optional?: boolean | undefined;
|
|
218
218
|
element?: unknown;
|
|
219
219
|
block_id?: string | undefined;
|
|
@@ -253,16 +253,16 @@ 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
|
-
response: string;
|
|
259
|
-
iterations: number;
|
|
260
256
|
metadata: {
|
|
261
257
|
wordCount: number;
|
|
262
258
|
verbosityLevel: string;
|
|
263
259
|
technicalityLevel: string;
|
|
264
260
|
blockCount?: number | undefined;
|
|
265
261
|
};
|
|
262
|
+
success: boolean;
|
|
263
|
+
error: string;
|
|
264
|
+
response: string;
|
|
265
|
+
iterations: number;
|
|
266
266
|
toolCalls?: {
|
|
267
267
|
tool: string;
|
|
268
268
|
input?: unknown;
|
|
@@ -275,6 +275,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
275
275
|
text: string;
|
|
276
276
|
emoji?: boolean | undefined;
|
|
277
277
|
} | undefined;
|
|
278
|
+
label?: unknown;
|
|
278
279
|
fields?: {
|
|
279
280
|
type: "plain_text" | "mrkdwn";
|
|
280
281
|
text: string;
|
|
@@ -295,7 +296,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
295
296
|
emoji?: boolean | undefined;
|
|
296
297
|
verbatim?: boolean | undefined;
|
|
297
298
|
}[] | undefined;
|
|
298
|
-
label?: unknown;
|
|
299
299
|
optional?: boolean | undefined;
|
|
300
300
|
element?: unknown;
|
|
301
301
|
block_id?: string | undefined;
|
|
@@ -303,16 +303,16 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
303
303
|
hint?: unknown;
|
|
304
304
|
}[] | undefined;
|
|
305
305
|
}, {
|
|
306
|
-
success: boolean;
|
|
307
|
-
error: string;
|
|
308
|
-
response: string;
|
|
309
|
-
iterations: number;
|
|
310
306
|
metadata: {
|
|
311
307
|
wordCount: number;
|
|
312
308
|
verbosityLevel: string;
|
|
313
309
|
technicalityLevel: string;
|
|
314
310
|
blockCount?: number | undefined;
|
|
315
311
|
};
|
|
312
|
+
success: boolean;
|
|
313
|
+
error: string;
|
|
314
|
+
response: string;
|
|
315
|
+
iterations: number;
|
|
316
316
|
toolCalls?: {
|
|
317
317
|
tool: string;
|
|
318
318
|
input?: unknown;
|
|
@@ -325,6 +325,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
325
325
|
text: string;
|
|
326
326
|
emoji?: boolean | undefined;
|
|
327
327
|
} | undefined;
|
|
328
|
+
label?: unknown;
|
|
328
329
|
fields?: {
|
|
329
330
|
type: "plain_text" | "mrkdwn";
|
|
330
331
|
text: string;
|
|
@@ -345,7 +346,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
345
346
|
emoji?: boolean | undefined;
|
|
346
347
|
verbatim?: boolean | undefined;
|
|
347
348
|
}[] | undefined;
|
|
348
|
-
label?: unknown;
|
|
349
349
|
optional?: boolean | undefined;
|
|
350
350
|
element?: unknown;
|
|
351
351
|
block_id?: string | undefined;
|
|
@@ -518,6 +518,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
518
518
|
text: string;
|
|
519
519
|
emoji?: boolean | undefined;
|
|
520
520
|
} | undefined;
|
|
521
|
+
label?: unknown;
|
|
521
522
|
fields?: {
|
|
522
523
|
type: "plain_text" | "mrkdwn";
|
|
523
524
|
text: string;
|
|
@@ -538,7 +539,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
538
539
|
emoji?: boolean | undefined;
|
|
539
540
|
verbatim?: boolean | undefined;
|
|
540
541
|
}[] | undefined;
|
|
541
|
-
label?: unknown;
|
|
542
542
|
optional?: boolean | undefined;
|
|
543
543
|
element?: unknown;
|
|
544
544
|
block_id?: string | undefined;
|
|
@@ -551,6 +551,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
551
551
|
text: string;
|
|
552
552
|
emoji?: boolean | undefined;
|
|
553
553
|
} | undefined;
|
|
554
|
+
label?: unknown;
|
|
554
555
|
fields?: {
|
|
555
556
|
type: "plain_text" | "mrkdwn";
|
|
556
557
|
text: string;
|
|
@@ -571,7 +572,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
571
572
|
emoji?: boolean | undefined;
|
|
572
573
|
verbatim?: boolean | undefined;
|
|
573
574
|
}[] | undefined;
|
|
574
|
-
label?: unknown;
|
|
575
575
|
optional?: boolean | undefined;
|
|
576
576
|
element?: unknown;
|
|
577
577
|
block_id?: string | undefined;
|
|
@@ -611,16 +611,16 @@ 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
|
-
response: string;
|
|
617
|
-
iterations: number;
|
|
618
614
|
metadata: {
|
|
619
615
|
wordCount: number;
|
|
620
616
|
verbosityLevel: string;
|
|
621
617
|
technicalityLevel: string;
|
|
622
618
|
blockCount?: number | undefined;
|
|
623
619
|
};
|
|
620
|
+
success: boolean;
|
|
621
|
+
error: string;
|
|
622
|
+
response: string;
|
|
623
|
+
iterations: number;
|
|
624
624
|
toolCalls?: {
|
|
625
625
|
tool: string;
|
|
626
626
|
input?: unknown;
|
|
@@ -633,6 +633,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
633
633
|
text: string;
|
|
634
634
|
emoji?: boolean | undefined;
|
|
635
635
|
} | undefined;
|
|
636
|
+
label?: unknown;
|
|
636
637
|
fields?: {
|
|
637
638
|
type: "plain_text" | "mrkdwn";
|
|
638
639
|
text: string;
|
|
@@ -653,7 +654,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
653
654
|
emoji?: boolean | undefined;
|
|
654
655
|
verbatim?: boolean | undefined;
|
|
655
656
|
}[] | undefined;
|
|
656
|
-
label?: unknown;
|
|
657
657
|
optional?: boolean | undefined;
|
|
658
658
|
element?: unknown;
|
|
659
659
|
block_id?: string | undefined;
|
|
@@ -661,16 +661,16 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
661
661
|
hint?: unknown;
|
|
662
662
|
}[] | undefined;
|
|
663
663
|
}, {
|
|
664
|
-
success: boolean;
|
|
665
|
-
error: string;
|
|
666
|
-
response: string;
|
|
667
|
-
iterations: number;
|
|
668
664
|
metadata: {
|
|
669
665
|
wordCount: number;
|
|
670
666
|
verbosityLevel: string;
|
|
671
667
|
technicalityLevel: string;
|
|
672
668
|
blockCount?: number | undefined;
|
|
673
669
|
};
|
|
670
|
+
success: boolean;
|
|
671
|
+
error: string;
|
|
672
|
+
response: string;
|
|
673
|
+
iterations: number;
|
|
674
674
|
toolCalls?: {
|
|
675
675
|
tool: string;
|
|
676
676
|
input?: unknown;
|
|
@@ -683,6 +683,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
683
683
|
text: string;
|
|
684
684
|
emoji?: boolean | undefined;
|
|
685
685
|
} | undefined;
|
|
686
|
+
label?: unknown;
|
|
686
687
|
fields?: {
|
|
687
688
|
type: "plain_text" | "mrkdwn";
|
|
688
689
|
text: string;
|
|
@@ -703,7 +704,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
703
704
|
emoji?: boolean | undefined;
|
|
704
705
|
verbatim?: boolean | undefined;
|
|
705
706
|
}[] | undefined;
|
|
706
|
-
label?: unknown;
|
|
707
707
|
optional?: boolean | undefined;
|
|
708
708
|
element?: unknown;
|
|
709
709
|
block_id?: string | undefined;
|