@bubblelab/bubble-core 0.1.209 → 0.1.210
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 +55 -55
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +53 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +112 -112
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/capability-pipeline.js +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
- package/dist/bubbles/service-bubble/firecrawl.d.ts +176 -176
- package/dist/bubbles/service-bubble/github.d.ts +72 -72
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
- package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +98 -98
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +15 -15
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- 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 +8 -8
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -222,9 +222,9 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
|
|
|
222
222
|
success: z.ZodBoolean;
|
|
223
223
|
error: z.ZodString;
|
|
224
224
|
}, "strip", z.ZodTypeAny, {
|
|
225
|
+
url: string | null;
|
|
225
226
|
error: string;
|
|
226
227
|
success: boolean;
|
|
227
|
-
url: string | null;
|
|
228
228
|
batch: string | null;
|
|
229
229
|
people: {
|
|
230
230
|
title: string | null;
|
|
@@ -254,9 +254,9 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
|
|
|
254
254
|
totalPeople: number;
|
|
255
255
|
totalCompanies: number;
|
|
256
256
|
}, {
|
|
257
|
+
url: string | null;
|
|
257
258
|
error: string;
|
|
258
259
|
success: boolean;
|
|
259
|
-
url: string | null;
|
|
260
260
|
batch: string | null;
|
|
261
261
|
people: {
|
|
262
262
|
title: string | null;
|
|
@@ -420,9 +420,9 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
|
|
|
420
420
|
success: z.ZodBoolean;
|
|
421
421
|
error: z.ZodString;
|
|
422
422
|
}, "strip", z.ZodTypeAny, {
|
|
423
|
+
url: string | null;
|
|
423
424
|
error: string;
|
|
424
425
|
success: boolean;
|
|
425
|
-
url: string | null;
|
|
426
426
|
batch: string | null;
|
|
427
427
|
people: {
|
|
428
428
|
title: string | null;
|
|
@@ -452,9 +452,9 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
|
|
|
452
452
|
totalPeople: number;
|
|
453
453
|
totalCompanies: number;
|
|
454
454
|
}, {
|
|
455
|
+
url: string | null;
|
|
455
456
|
error: string;
|
|
456
457
|
success: boolean;
|
|
457
|
-
url: string | null;
|
|
458
458
|
batch: string | null;
|
|
459
459
|
people: {
|
|
460
460
|
title: string | null;
|
|
@@ -224,12 +224,12 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
224
224
|
type: z.ZodString;
|
|
225
225
|
page: z.ZodNumber;
|
|
226
226
|
}, "strip", z.ZodTypeAny, {
|
|
227
|
-
value: string;
|
|
228
227
|
type: string;
|
|
228
|
+
value: string;
|
|
229
229
|
page: number;
|
|
230
230
|
}, {
|
|
231
|
-
value: string;
|
|
232
231
|
type: string;
|
|
232
|
+
value: string;
|
|
233
233
|
page: number;
|
|
234
234
|
}>>;
|
|
235
235
|
success: z.ZodBoolean;
|
|
@@ -241,8 +241,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
241
241
|
filledPdfData: string;
|
|
242
242
|
filledFields: number;
|
|
243
243
|
verification: Record<string, {
|
|
244
|
-
value: string;
|
|
245
244
|
type: string;
|
|
245
|
+
value: string;
|
|
246
246
|
page: number;
|
|
247
247
|
}>;
|
|
248
248
|
}, {
|
|
@@ -252,8 +252,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
252
252
|
filledPdfData: string;
|
|
253
253
|
filledFields: number;
|
|
254
254
|
verification: Record<string, {
|
|
255
|
-
value: string;
|
|
256
255
|
type: string;
|
|
256
|
+
value: string;
|
|
257
257
|
page: number;
|
|
258
258
|
}>;
|
|
259
259
|
}>, z.ZodObject<{
|
|
@@ -306,12 +306,12 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
306
306
|
type: z.ZodString;
|
|
307
307
|
page: z.ZodNumber;
|
|
308
308
|
}, "strip", z.ZodTypeAny, {
|
|
309
|
-
value: string;
|
|
310
309
|
type: string;
|
|
310
|
+
value: string;
|
|
311
311
|
page: number;
|
|
312
312
|
}, {
|
|
313
|
-
value: string;
|
|
314
313
|
type: string;
|
|
314
|
+
value: string;
|
|
315
315
|
page: number;
|
|
316
316
|
}>>;
|
|
317
317
|
totalFields: z.ZodNumber;
|
|
@@ -323,8 +323,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
323
323
|
error: string;
|
|
324
324
|
success: boolean;
|
|
325
325
|
fields: Record<string, {
|
|
326
|
-
value: string;
|
|
327
326
|
type: string;
|
|
327
|
+
value: string;
|
|
328
328
|
page: number;
|
|
329
329
|
}>;
|
|
330
330
|
operation: "validate";
|
|
@@ -335,8 +335,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
335
335
|
error: string;
|
|
336
336
|
success: boolean;
|
|
337
337
|
fields: Record<string, {
|
|
338
|
-
value: string;
|
|
339
338
|
type: string;
|
|
339
|
+
value: string;
|
|
340
340
|
page: number;
|
|
341
341
|
}>;
|
|
342
342
|
operation: "validate";
|
|
@@ -369,8 +369,6 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
369
369
|
success: z.ZodBoolean;
|
|
370
370
|
error: z.ZodString;
|
|
371
371
|
}, "strip", z.ZodTypeAny, {
|
|
372
|
-
error: string;
|
|
373
|
-
success: boolean;
|
|
374
372
|
images: {
|
|
375
373
|
format: string;
|
|
376
374
|
width: number;
|
|
@@ -378,12 +376,12 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
378
376
|
pageNumber: number;
|
|
379
377
|
imageData: string;
|
|
380
378
|
}[];
|
|
379
|
+
error: string;
|
|
380
|
+
success: boolean;
|
|
381
381
|
operation: "convert-to-images";
|
|
382
382
|
totalPages: number;
|
|
383
383
|
convertedPages: number;
|
|
384
384
|
}, {
|
|
385
|
-
error: string;
|
|
386
|
-
success: boolean;
|
|
387
385
|
images: {
|
|
388
386
|
format: string;
|
|
389
387
|
width: number;
|
|
@@ -391,6 +389,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
391
389
|
pageNumber: number;
|
|
392
390
|
imageData: string;
|
|
393
391
|
}[];
|
|
392
|
+
error: string;
|
|
393
|
+
success: boolean;
|
|
394
394
|
operation: "convert-to-images";
|
|
395
395
|
totalPages: number;
|
|
396
396
|
convertedPages: number;
|
|
@@ -408,15 +408,15 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
408
408
|
x: z.ZodNumber;
|
|
409
409
|
y: z.ZodNumber;
|
|
410
410
|
}, "strip", z.ZodTypeAny, {
|
|
411
|
-
value: string;
|
|
412
411
|
type: string;
|
|
412
|
+
value: string;
|
|
413
413
|
name: string;
|
|
414
414
|
id: number;
|
|
415
415
|
x: number;
|
|
416
416
|
y: number;
|
|
417
417
|
}, {
|
|
418
|
-
value: string;
|
|
419
418
|
type: string;
|
|
419
|
+
value: string;
|
|
420
420
|
name: string;
|
|
421
421
|
id: number;
|
|
422
422
|
x: number;
|
|
@@ -426,8 +426,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
426
426
|
pageNumber: number;
|
|
427
427
|
markdown: string;
|
|
428
428
|
formFields?: {
|
|
429
|
-
value: string;
|
|
430
429
|
type: string;
|
|
430
|
+
value: string;
|
|
431
431
|
name: string;
|
|
432
432
|
id: number;
|
|
433
433
|
x: number;
|
|
@@ -437,8 +437,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
437
437
|
pageNumber: number;
|
|
438
438
|
markdown: string;
|
|
439
439
|
formFields?: {
|
|
440
|
-
value: string;
|
|
441
440
|
type: string;
|
|
441
|
+
value: string;
|
|
442
442
|
name: string;
|
|
443
443
|
id: number;
|
|
444
444
|
x: number;
|
|
@@ -457,8 +457,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
457
457
|
pageNumber: number;
|
|
458
458
|
markdown: string;
|
|
459
459
|
formFields?: {
|
|
460
|
-
value: string;
|
|
461
460
|
type: string;
|
|
461
|
+
value: string;
|
|
462
462
|
name: string;
|
|
463
463
|
id: number;
|
|
464
464
|
x: number;
|
|
@@ -476,8 +476,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
476
476
|
pageNumber: number;
|
|
477
477
|
markdown: string;
|
|
478
478
|
formFields?: {
|
|
479
|
-
value: string;
|
|
480
479
|
type: string;
|
|
480
|
+
value: string;
|
|
481
481
|
name: string;
|
|
482
482
|
id: number;
|
|
483
483
|
x: number;
|
|
@@ -703,12 +703,12 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
703
703
|
type: z.ZodString;
|
|
704
704
|
page: z.ZodNumber;
|
|
705
705
|
}, "strip", z.ZodTypeAny, {
|
|
706
|
-
value: string;
|
|
707
706
|
type: string;
|
|
707
|
+
value: string;
|
|
708
708
|
page: number;
|
|
709
709
|
}, {
|
|
710
|
-
value: string;
|
|
711
710
|
type: string;
|
|
711
|
+
value: string;
|
|
712
712
|
page: number;
|
|
713
713
|
}>>;
|
|
714
714
|
success: z.ZodBoolean;
|
|
@@ -720,8 +720,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
720
720
|
filledPdfData: string;
|
|
721
721
|
filledFields: number;
|
|
722
722
|
verification: Record<string, {
|
|
723
|
-
value: string;
|
|
724
723
|
type: string;
|
|
724
|
+
value: string;
|
|
725
725
|
page: number;
|
|
726
726
|
}>;
|
|
727
727
|
}, {
|
|
@@ -731,8 +731,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
731
731
|
filledPdfData: string;
|
|
732
732
|
filledFields: number;
|
|
733
733
|
verification: Record<string, {
|
|
734
|
-
value: string;
|
|
735
734
|
type: string;
|
|
735
|
+
value: string;
|
|
736
736
|
page: number;
|
|
737
737
|
}>;
|
|
738
738
|
}>, z.ZodObject<{
|
|
@@ -785,12 +785,12 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
785
785
|
type: z.ZodString;
|
|
786
786
|
page: z.ZodNumber;
|
|
787
787
|
}, "strip", z.ZodTypeAny, {
|
|
788
|
-
value: string;
|
|
789
788
|
type: string;
|
|
789
|
+
value: string;
|
|
790
790
|
page: number;
|
|
791
791
|
}, {
|
|
792
|
-
value: string;
|
|
793
792
|
type: string;
|
|
793
|
+
value: string;
|
|
794
794
|
page: number;
|
|
795
795
|
}>>;
|
|
796
796
|
totalFields: z.ZodNumber;
|
|
@@ -802,8 +802,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
802
802
|
error: string;
|
|
803
803
|
success: boolean;
|
|
804
804
|
fields: Record<string, {
|
|
805
|
-
value: string;
|
|
806
805
|
type: string;
|
|
806
|
+
value: string;
|
|
807
807
|
page: number;
|
|
808
808
|
}>;
|
|
809
809
|
operation: "validate";
|
|
@@ -814,8 +814,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
814
814
|
error: string;
|
|
815
815
|
success: boolean;
|
|
816
816
|
fields: Record<string, {
|
|
817
|
-
value: string;
|
|
818
817
|
type: string;
|
|
818
|
+
value: string;
|
|
819
819
|
page: number;
|
|
820
820
|
}>;
|
|
821
821
|
operation: "validate";
|
|
@@ -848,8 +848,6 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
848
848
|
success: z.ZodBoolean;
|
|
849
849
|
error: z.ZodString;
|
|
850
850
|
}, "strip", z.ZodTypeAny, {
|
|
851
|
-
error: string;
|
|
852
|
-
success: boolean;
|
|
853
851
|
images: {
|
|
854
852
|
format: string;
|
|
855
853
|
width: number;
|
|
@@ -857,12 +855,12 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
857
855
|
pageNumber: number;
|
|
858
856
|
imageData: string;
|
|
859
857
|
}[];
|
|
858
|
+
error: string;
|
|
859
|
+
success: boolean;
|
|
860
860
|
operation: "convert-to-images";
|
|
861
861
|
totalPages: number;
|
|
862
862
|
convertedPages: number;
|
|
863
863
|
}, {
|
|
864
|
-
error: string;
|
|
865
|
-
success: boolean;
|
|
866
864
|
images: {
|
|
867
865
|
format: string;
|
|
868
866
|
width: number;
|
|
@@ -870,6 +868,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
870
868
|
pageNumber: number;
|
|
871
869
|
imageData: string;
|
|
872
870
|
}[];
|
|
871
|
+
error: string;
|
|
872
|
+
success: boolean;
|
|
873
873
|
operation: "convert-to-images";
|
|
874
874
|
totalPages: number;
|
|
875
875
|
convertedPages: number;
|
|
@@ -887,15 +887,15 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
887
887
|
x: z.ZodNumber;
|
|
888
888
|
y: z.ZodNumber;
|
|
889
889
|
}, "strip", z.ZodTypeAny, {
|
|
890
|
-
value: string;
|
|
891
890
|
type: string;
|
|
891
|
+
value: string;
|
|
892
892
|
name: string;
|
|
893
893
|
id: number;
|
|
894
894
|
x: number;
|
|
895
895
|
y: number;
|
|
896
896
|
}, {
|
|
897
|
-
value: string;
|
|
898
897
|
type: string;
|
|
898
|
+
value: string;
|
|
899
899
|
name: string;
|
|
900
900
|
id: number;
|
|
901
901
|
x: number;
|
|
@@ -905,8 +905,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
905
905
|
pageNumber: number;
|
|
906
906
|
markdown: string;
|
|
907
907
|
formFields?: {
|
|
908
|
-
value: string;
|
|
909
908
|
type: string;
|
|
909
|
+
value: string;
|
|
910
910
|
name: string;
|
|
911
911
|
id: number;
|
|
912
912
|
x: number;
|
|
@@ -916,8 +916,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
916
916
|
pageNumber: number;
|
|
917
917
|
markdown: string;
|
|
918
918
|
formFields?: {
|
|
919
|
-
value: string;
|
|
920
919
|
type: string;
|
|
920
|
+
value: string;
|
|
921
921
|
name: string;
|
|
922
922
|
id: number;
|
|
923
923
|
x: number;
|
|
@@ -936,8 +936,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
936
936
|
pageNumber: number;
|
|
937
937
|
markdown: string;
|
|
938
938
|
formFields?: {
|
|
939
|
-
value: string;
|
|
940
939
|
type: string;
|
|
940
|
+
value: string;
|
|
941
941
|
name: string;
|
|
942
942
|
id: number;
|
|
943
943
|
x: number;
|
|
@@ -955,8 +955,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
955
955
|
pageNumber: number;
|
|
956
956
|
markdown: string;
|
|
957
957
|
formFields?: {
|
|
958
|
-
value: string;
|
|
959
958
|
type: string;
|
|
959
|
+
value: string;
|
|
960
960
|
name: string;
|
|
961
961
|
id: number;
|
|
962
962
|
x: number;
|
|
@@ -195,12 +195,12 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
195
195
|
fieldName: z.ZodString;
|
|
196
196
|
confidence: z.ZodNumber;
|
|
197
197
|
}, "strip", z.ZodTypeAny, {
|
|
198
|
-
fieldName: string;
|
|
199
198
|
id: number;
|
|
199
|
+
fieldName: string;
|
|
200
200
|
confidence: number;
|
|
201
201
|
}, {
|
|
202
|
-
fieldName: string;
|
|
203
202
|
id: number;
|
|
203
|
+
fieldName: string;
|
|
204
204
|
confidence: number;
|
|
205
205
|
}>, "many">;
|
|
206
206
|
discoveryData: z.ZodObject<{
|
|
@@ -258,8 +258,8 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
258
258
|
convertedPages: number;
|
|
259
259
|
};
|
|
260
260
|
extractedFields: {
|
|
261
|
-
fieldName: string;
|
|
262
261
|
id: number;
|
|
262
|
+
fieldName: string;
|
|
263
263
|
confidence: number;
|
|
264
264
|
}[];
|
|
265
265
|
discoveryData: {
|
|
@@ -283,8 +283,8 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
283
283
|
convertedPages: number;
|
|
284
284
|
};
|
|
285
285
|
extractedFields: {
|
|
286
|
-
fieldName: string;
|
|
287
286
|
id: number;
|
|
287
|
+
fieldName: string;
|
|
288
288
|
confidence: number;
|
|
289
289
|
}[];
|
|
290
290
|
discoveryData: {
|
|
@@ -307,14 +307,14 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
307
307
|
confidence: z.ZodNumber;
|
|
308
308
|
}, "strip", z.ZodTypeAny, {
|
|
309
309
|
value: string;
|
|
310
|
-
fieldName: string;
|
|
311
310
|
id: number;
|
|
311
|
+
fieldName: string;
|
|
312
312
|
confidence: number;
|
|
313
313
|
originalFieldName?: string | undefined;
|
|
314
314
|
}, {
|
|
315
315
|
value: string;
|
|
316
|
-
fieldName: string;
|
|
317
316
|
id: number;
|
|
317
|
+
fieldName: string;
|
|
318
318
|
confidence: number;
|
|
319
319
|
originalFieldName?: string | undefined;
|
|
320
320
|
}>, "many">;
|
|
@@ -386,8 +386,8 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
386
386
|
};
|
|
387
387
|
extractedFields: {
|
|
388
388
|
value: string;
|
|
389
|
-
fieldName: string;
|
|
390
389
|
id: number;
|
|
390
|
+
fieldName: string;
|
|
391
391
|
confidence: number;
|
|
392
392
|
originalFieldName?: string | undefined;
|
|
393
393
|
}[];
|
|
@@ -418,8 +418,8 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
418
418
|
};
|
|
419
419
|
extractedFields: {
|
|
420
420
|
value: string;
|
|
421
|
-
fieldName: string;
|
|
422
421
|
id: number;
|
|
422
|
+
fieldName: string;
|
|
423
423
|
confidence: number;
|
|
424
424
|
originalFieldName?: string | undefined;
|
|
425
425
|
}[];
|
|
@@ -628,12 +628,12 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
628
628
|
fieldName: z.ZodString;
|
|
629
629
|
confidence: z.ZodNumber;
|
|
630
630
|
}, "strip", z.ZodTypeAny, {
|
|
631
|
-
fieldName: string;
|
|
632
631
|
id: number;
|
|
632
|
+
fieldName: string;
|
|
633
633
|
confidence: number;
|
|
634
634
|
}, {
|
|
635
|
-
fieldName: string;
|
|
636
635
|
id: number;
|
|
636
|
+
fieldName: string;
|
|
637
637
|
confidence: number;
|
|
638
638
|
}>, "many">;
|
|
639
639
|
discoveryData: z.ZodObject<{
|
|
@@ -691,8 +691,8 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
691
691
|
convertedPages: number;
|
|
692
692
|
};
|
|
693
693
|
extractedFields: {
|
|
694
|
-
fieldName: string;
|
|
695
694
|
id: number;
|
|
695
|
+
fieldName: string;
|
|
696
696
|
confidence: number;
|
|
697
697
|
}[];
|
|
698
698
|
discoveryData: {
|
|
@@ -716,8 +716,8 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
716
716
|
convertedPages: number;
|
|
717
717
|
};
|
|
718
718
|
extractedFields: {
|
|
719
|
-
fieldName: string;
|
|
720
719
|
id: number;
|
|
720
|
+
fieldName: string;
|
|
721
721
|
confidence: number;
|
|
722
722
|
}[];
|
|
723
723
|
discoveryData: {
|
|
@@ -740,14 +740,14 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
740
740
|
confidence: z.ZodNumber;
|
|
741
741
|
}, "strip", z.ZodTypeAny, {
|
|
742
742
|
value: string;
|
|
743
|
-
fieldName: string;
|
|
744
743
|
id: number;
|
|
744
|
+
fieldName: string;
|
|
745
745
|
confidence: number;
|
|
746
746
|
originalFieldName?: string | undefined;
|
|
747
747
|
}, {
|
|
748
748
|
value: string;
|
|
749
|
-
fieldName: string;
|
|
750
749
|
id: number;
|
|
750
|
+
fieldName: string;
|
|
751
751
|
confidence: number;
|
|
752
752
|
originalFieldName?: string | undefined;
|
|
753
753
|
}>, "many">;
|
|
@@ -819,8 +819,8 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
819
819
|
};
|
|
820
820
|
extractedFields: {
|
|
821
821
|
value: string;
|
|
822
|
-
fieldName: string;
|
|
823
822
|
id: number;
|
|
823
|
+
fieldName: string;
|
|
824
824
|
confidence: number;
|
|
825
825
|
originalFieldName?: string | undefined;
|
|
826
826
|
}[];
|
|
@@ -851,8 +851,8 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
851
851
|
};
|
|
852
852
|
extractedFields: {
|
|
853
853
|
value: string;
|
|
854
|
-
fieldName: string;
|
|
855
854
|
id: number;
|
|
855
|
+
fieldName: string;
|
|
856
856
|
confidence: number;
|
|
857
857
|
originalFieldName?: string | undefined;
|
|
858
858
|
}[];
|
|
@@ -160,7 +160,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
160
160
|
text: string;
|
|
161
161
|
emoji?: boolean | undefined;
|
|
162
162
|
} | undefined;
|
|
163
|
-
optional?: boolean | undefined;
|
|
164
163
|
text?: {
|
|
165
164
|
type: "plain_text" | "mrkdwn";
|
|
166
165
|
text: string;
|
|
@@ -168,6 +167,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
168
167
|
verbatim?: boolean | undefined;
|
|
169
168
|
} | undefined;
|
|
170
169
|
image_url?: string | undefined;
|
|
170
|
+
optional?: boolean | undefined;
|
|
171
171
|
fields?: {
|
|
172
172
|
type: "plain_text" | "mrkdwn";
|
|
173
173
|
text: string;
|
|
@@ -193,7 +193,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
193
193
|
text: string;
|
|
194
194
|
emoji?: boolean | undefined;
|
|
195
195
|
} | undefined;
|
|
196
|
-
optional?: boolean | undefined;
|
|
197
196
|
text?: {
|
|
198
197
|
type: "plain_text" | "mrkdwn";
|
|
199
198
|
text: string;
|
|
@@ -201,6 +200,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
201
200
|
verbatim?: boolean | undefined;
|
|
202
201
|
} | undefined;
|
|
203
202
|
image_url?: string | undefined;
|
|
203
|
+
optional?: boolean | undefined;
|
|
204
204
|
fields?: {
|
|
205
205
|
type: "plain_text" | "mrkdwn";
|
|
206
206
|
text: string;
|
|
@@ -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
|
-
error: string;
|
|
257
|
-
success: boolean;
|
|
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,7 +275,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
275
275
|
text: string;
|
|
276
276
|
emoji?: boolean | undefined;
|
|
277
277
|
} | undefined;
|
|
278
|
-
optional?: boolean | undefined;
|
|
279
278
|
text?: {
|
|
280
279
|
type: "plain_text" | "mrkdwn";
|
|
281
280
|
text: string;
|
|
@@ -283,6 +282,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
283
282
|
verbatim?: boolean | undefined;
|
|
284
283
|
} | undefined;
|
|
285
284
|
image_url?: string | undefined;
|
|
285
|
+
optional?: boolean | undefined;
|
|
286
286
|
fields?: {
|
|
287
287
|
type: "plain_text" | "mrkdwn";
|
|
288
288
|
text: string;
|
|
@@ -303,10 +303,10 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
303
303
|
hint?: unknown;
|
|
304
304
|
}[] | undefined;
|
|
305
305
|
}, {
|
|
306
|
-
error: string;
|
|
307
|
-
success: boolean;
|
|
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,7 +325,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
325
325
|
text: string;
|
|
326
326
|
emoji?: boolean | undefined;
|
|
327
327
|
} | undefined;
|
|
328
|
-
optional?: boolean | undefined;
|
|
329
328
|
text?: {
|
|
330
329
|
type: "plain_text" | "mrkdwn";
|
|
331
330
|
text: string;
|
|
@@ -333,6 +332,7 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
|
|
|
333
332
|
verbatim?: boolean | undefined;
|
|
334
333
|
} | undefined;
|
|
335
334
|
image_url?: string | undefined;
|
|
335
|
+
optional?: boolean | undefined;
|
|
336
336
|
fields?: {
|
|
337
337
|
type: "plain_text" | "mrkdwn";
|
|
338
338
|
text: string;
|
|
@@ -518,7 +518,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
518
518
|
text: string;
|
|
519
519
|
emoji?: boolean | undefined;
|
|
520
520
|
} | undefined;
|
|
521
|
-
optional?: boolean | undefined;
|
|
522
521
|
text?: {
|
|
523
522
|
type: "plain_text" | "mrkdwn";
|
|
524
523
|
text: string;
|
|
@@ -526,6 +525,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
526
525
|
verbatim?: boolean | undefined;
|
|
527
526
|
} | undefined;
|
|
528
527
|
image_url?: string | undefined;
|
|
528
|
+
optional?: boolean | undefined;
|
|
529
529
|
fields?: {
|
|
530
530
|
type: "plain_text" | "mrkdwn";
|
|
531
531
|
text: string;
|
|
@@ -551,7 +551,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
551
551
|
text: string;
|
|
552
552
|
emoji?: boolean | undefined;
|
|
553
553
|
} | undefined;
|
|
554
|
-
optional?: boolean | undefined;
|
|
555
554
|
text?: {
|
|
556
555
|
type: "plain_text" | "mrkdwn";
|
|
557
556
|
text: string;
|
|
@@ -559,6 +558,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
559
558
|
verbatim?: boolean | undefined;
|
|
560
559
|
} | undefined;
|
|
561
560
|
image_url?: string | undefined;
|
|
561
|
+
optional?: boolean | undefined;
|
|
562
562
|
fields?: {
|
|
563
563
|
type: "plain_text" | "mrkdwn";
|
|
564
564
|
text: string;
|
|
@@ -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
|
-
error: string;
|
|
615
|
-
success: boolean;
|
|
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,7 +633,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
633
633
|
text: string;
|
|
634
634
|
emoji?: boolean | undefined;
|
|
635
635
|
} | undefined;
|
|
636
|
-
optional?: boolean | undefined;
|
|
637
636
|
text?: {
|
|
638
637
|
type: "plain_text" | "mrkdwn";
|
|
639
638
|
text: string;
|
|
@@ -641,6 +640,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
641
640
|
verbatim?: boolean | undefined;
|
|
642
641
|
} | undefined;
|
|
643
642
|
image_url?: string | undefined;
|
|
643
|
+
optional?: boolean | undefined;
|
|
644
644
|
fields?: {
|
|
645
645
|
type: "plain_text" | "mrkdwn";
|
|
646
646
|
text: string;
|
|
@@ -661,10 +661,10 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
661
661
|
hint?: unknown;
|
|
662
662
|
}[] | undefined;
|
|
663
663
|
}, {
|
|
664
|
-
error: string;
|
|
665
|
-
success: boolean;
|
|
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,7 +683,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
683
683
|
text: string;
|
|
684
684
|
emoji?: boolean | undefined;
|
|
685
685
|
} | undefined;
|
|
686
|
-
optional?: boolean | undefined;
|
|
687
686
|
text?: {
|
|
688
687
|
type: "plain_text" | "mrkdwn";
|
|
689
688
|
text: string;
|
|
@@ -691,6 +690,7 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
|
|
|
691
690
|
verbatim?: boolean | undefined;
|
|
692
691
|
} | undefined;
|
|
693
692
|
image_url?: string | undefined;
|
|
693
|
+
optional?: boolean | undefined;
|
|
694
694
|
fields?: {
|
|
695
695
|
type: "plain_text" | "mrkdwn";
|
|
696
696
|
text: string;
|
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.210",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"puppeteer-core": "^24.10.0",
|
|
42
42
|
"resend": "^4.8.0",
|
|
43
43
|
"zod": "^3.24.1",
|
|
44
|
-
"@bubblelab/shared-schemas": "0.1.
|
|
44
|
+
"@bubblelab/shared-schemas": "0.1.210"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^20.12.12",
|