@bubblelab/bubble-core 0.1.24 → 0.1.25
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 +73 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +138 -138
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +405 -405
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +332 -332
- package/dist/bubbles/service-bubble/followupboss.d.ts +277 -277
- package/dist/bubbles/service-bubble/github.d.ts +132 -132
- package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
- package/dist/bubbles/service-bubble/google-calendar.d.ts +112 -112
- package/dist/bubbles/service-bubble/google-drive.d.ts +38 -38
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1098 -1098
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +184 -184
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +1420 -1420
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +139 -139
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js +27 -6
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +142 -142
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +161 -161
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- 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/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +38 -38
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +64 -64
- package/dist/bubbles.json +7 -7
- 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
|
-
operation: "convert-to-images";
|
|
84
83
|
format: "png" | "jpeg";
|
|
84
|
+
operation: "convert-to-images";
|
|
85
85
|
quality: number;
|
|
86
86
|
pdfData: string;
|
|
87
87
|
dpi: number;
|
|
@@ -136,8 +136,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
136
136
|
label: z.ZodString;
|
|
137
137
|
potential_labels: z.ZodArray<z.ZodString, "many">;
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
|
-
type: string;
|
|
140
139
|
name: string;
|
|
140
|
+
type: string;
|
|
141
141
|
id: number;
|
|
142
142
|
width: number;
|
|
143
143
|
height: number;
|
|
@@ -152,8 +152,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
152
152
|
field_flags: number;
|
|
153
153
|
potential_labels: string[];
|
|
154
154
|
}, {
|
|
155
|
-
type: string;
|
|
156
155
|
name: string;
|
|
156
|
+
type: string;
|
|
157
157
|
id: number;
|
|
158
158
|
width: number;
|
|
159
159
|
height: number;
|
|
@@ -173,11 +173,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
173
173
|
error: z.ZodString;
|
|
174
174
|
}, "strip", z.ZodTypeAny, {
|
|
175
175
|
operation: "discover";
|
|
176
|
-
success: boolean;
|
|
177
|
-
error: string;
|
|
178
176
|
fields: {
|
|
179
|
-
type: string;
|
|
180
177
|
name: string;
|
|
178
|
+
type: string;
|
|
181
179
|
id: number;
|
|
182
180
|
width: number;
|
|
183
181
|
height: number;
|
|
@@ -192,14 +190,14 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
192
190
|
field_flags: number;
|
|
193
191
|
potential_labels: string[];
|
|
194
192
|
}[];
|
|
193
|
+
success: boolean;
|
|
194
|
+
error: string;
|
|
195
195
|
totalFields: number;
|
|
196
196
|
}, {
|
|
197
197
|
operation: "discover";
|
|
198
|
-
success: boolean;
|
|
199
|
-
error: string;
|
|
200
198
|
fields: {
|
|
201
|
-
type: string;
|
|
202
199
|
name: string;
|
|
200
|
+
type: string;
|
|
203
201
|
id: number;
|
|
204
202
|
width: number;
|
|
205
203
|
height: number;
|
|
@@ -214,6 +212,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
214
212
|
field_flags: number;
|
|
215
213
|
potential_labels: string[];
|
|
216
214
|
}[];
|
|
215
|
+
success: boolean;
|
|
216
|
+
error: string;
|
|
217
217
|
totalFields: number;
|
|
218
218
|
}>, z.ZodObject<{
|
|
219
219
|
operation: z.ZodLiteral<"fill">;
|
|
@@ -321,25 +321,25 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
321
321
|
error: z.ZodString;
|
|
322
322
|
}, "strip", z.ZodTypeAny, {
|
|
323
323
|
operation: "validate";
|
|
324
|
-
success: boolean;
|
|
325
|
-
error: string;
|
|
326
324
|
fields: Record<string, {
|
|
327
325
|
value: string;
|
|
328
326
|
type: string;
|
|
329
327
|
page: number;
|
|
330
328
|
}>;
|
|
329
|
+
success: boolean;
|
|
330
|
+
error: string;
|
|
331
331
|
totalFields: number;
|
|
332
332
|
filledFields: number;
|
|
333
333
|
emptyFields: number;
|
|
334
334
|
}, {
|
|
335
335
|
operation: "validate";
|
|
336
|
-
success: boolean;
|
|
337
|
-
error: string;
|
|
338
336
|
fields: Record<string, {
|
|
339
337
|
value: string;
|
|
340
338
|
type: string;
|
|
341
339
|
page: number;
|
|
342
340
|
}>;
|
|
341
|
+
success: boolean;
|
|
342
|
+
error: string;
|
|
343
343
|
totalFields: number;
|
|
344
344
|
filledFields: number;
|
|
345
345
|
emptyFields: number;
|
|
@@ -408,16 +408,16 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
408
408
|
x: z.ZodNumber;
|
|
409
409
|
y: z.ZodNumber;
|
|
410
410
|
}, "strip", z.ZodTypeAny, {
|
|
411
|
+
name: string;
|
|
411
412
|
value: string;
|
|
412
413
|
type: string;
|
|
413
|
-
name: string;
|
|
414
414
|
id: number;
|
|
415
415
|
x: number;
|
|
416
416
|
y: number;
|
|
417
417
|
}, {
|
|
418
|
+
name: string;
|
|
418
419
|
value: string;
|
|
419
420
|
type: string;
|
|
420
|
-
name: string;
|
|
421
421
|
id: number;
|
|
422
422
|
x: number;
|
|
423
423
|
y: number;
|
|
@@ -426,9 +426,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
426
426
|
pageNumber: number;
|
|
427
427
|
markdown: string;
|
|
428
428
|
formFields?: {
|
|
429
|
+
name: string;
|
|
429
430
|
value: string;
|
|
430
431
|
type: string;
|
|
431
|
-
name: string;
|
|
432
432
|
id: number;
|
|
433
433
|
x: number;
|
|
434
434
|
y: number;
|
|
@@ -437,9 +437,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
437
437
|
pageNumber: number;
|
|
438
438
|
markdown: string;
|
|
439
439
|
formFields?: {
|
|
440
|
+
name: string;
|
|
440
441
|
value: string;
|
|
441
442
|
type: string;
|
|
442
|
-
name: string;
|
|
443
443
|
id: number;
|
|
444
444
|
x: number;
|
|
445
445
|
y: number;
|
|
@@ -457,9 +457,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
457
457
|
pageNumber: number;
|
|
458
458
|
markdown: string;
|
|
459
459
|
formFields?: {
|
|
460
|
+
name: string;
|
|
460
461
|
value: string;
|
|
461
462
|
type: string;
|
|
462
|
-
name: string;
|
|
463
463
|
id: number;
|
|
464
464
|
x: number;
|
|
465
465
|
y: number;
|
|
@@ -476,9 +476,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
476
476
|
pageNumber: number;
|
|
477
477
|
markdown: string;
|
|
478
478
|
formFields?: {
|
|
479
|
+
name: string;
|
|
479
480
|
value: string;
|
|
480
481
|
type: string;
|
|
481
|
-
name: string;
|
|
482
482
|
id: number;
|
|
483
483
|
x: number;
|
|
484
484
|
y: number;
|
|
@@ -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
|
-
operation: "convert-to-images";
|
|
566
565
|
format: "png" | "jpeg";
|
|
566
|
+
operation: "convert-to-images";
|
|
567
567
|
quality: number;
|
|
568
568
|
pdfData: string;
|
|
569
569
|
dpi: number;
|
|
@@ -615,8 +615,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
615
615
|
label: z.ZodString;
|
|
616
616
|
potential_labels: z.ZodArray<z.ZodString, "many">;
|
|
617
617
|
}, "strip", z.ZodTypeAny, {
|
|
618
|
-
type: string;
|
|
619
618
|
name: string;
|
|
619
|
+
type: string;
|
|
620
620
|
id: number;
|
|
621
621
|
width: number;
|
|
622
622
|
height: number;
|
|
@@ -631,8 +631,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
631
631
|
field_flags: number;
|
|
632
632
|
potential_labels: string[];
|
|
633
633
|
}, {
|
|
634
|
-
type: string;
|
|
635
634
|
name: string;
|
|
635
|
+
type: string;
|
|
636
636
|
id: number;
|
|
637
637
|
width: number;
|
|
638
638
|
height: number;
|
|
@@ -652,11 +652,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
652
652
|
error: z.ZodString;
|
|
653
653
|
}, "strip", z.ZodTypeAny, {
|
|
654
654
|
operation: "discover";
|
|
655
|
-
success: boolean;
|
|
656
|
-
error: string;
|
|
657
655
|
fields: {
|
|
658
|
-
type: string;
|
|
659
656
|
name: string;
|
|
657
|
+
type: string;
|
|
660
658
|
id: number;
|
|
661
659
|
width: number;
|
|
662
660
|
height: number;
|
|
@@ -671,14 +669,14 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
671
669
|
field_flags: number;
|
|
672
670
|
potential_labels: string[];
|
|
673
671
|
}[];
|
|
672
|
+
success: boolean;
|
|
673
|
+
error: string;
|
|
674
674
|
totalFields: number;
|
|
675
675
|
}, {
|
|
676
676
|
operation: "discover";
|
|
677
|
-
success: boolean;
|
|
678
|
-
error: string;
|
|
679
677
|
fields: {
|
|
680
|
-
type: string;
|
|
681
678
|
name: string;
|
|
679
|
+
type: string;
|
|
682
680
|
id: number;
|
|
683
681
|
width: number;
|
|
684
682
|
height: number;
|
|
@@ -693,6 +691,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
693
691
|
field_flags: number;
|
|
694
692
|
potential_labels: string[];
|
|
695
693
|
}[];
|
|
694
|
+
success: boolean;
|
|
695
|
+
error: string;
|
|
696
696
|
totalFields: number;
|
|
697
697
|
}>, z.ZodObject<{
|
|
698
698
|
operation: z.ZodLiteral<"fill">;
|
|
@@ -800,25 +800,25 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
800
800
|
error: z.ZodString;
|
|
801
801
|
}, "strip", z.ZodTypeAny, {
|
|
802
802
|
operation: "validate";
|
|
803
|
-
success: boolean;
|
|
804
|
-
error: string;
|
|
805
803
|
fields: Record<string, {
|
|
806
804
|
value: string;
|
|
807
805
|
type: string;
|
|
808
806
|
page: number;
|
|
809
807
|
}>;
|
|
808
|
+
success: boolean;
|
|
809
|
+
error: string;
|
|
810
810
|
totalFields: number;
|
|
811
811
|
filledFields: number;
|
|
812
812
|
emptyFields: number;
|
|
813
813
|
}, {
|
|
814
814
|
operation: "validate";
|
|
815
|
-
success: boolean;
|
|
816
|
-
error: string;
|
|
817
815
|
fields: Record<string, {
|
|
818
816
|
value: string;
|
|
819
817
|
type: string;
|
|
820
818
|
page: number;
|
|
821
819
|
}>;
|
|
820
|
+
success: boolean;
|
|
821
|
+
error: string;
|
|
822
822
|
totalFields: number;
|
|
823
823
|
filledFields: number;
|
|
824
824
|
emptyFields: number;
|
|
@@ -887,16 +887,16 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
887
887
|
x: z.ZodNumber;
|
|
888
888
|
y: z.ZodNumber;
|
|
889
889
|
}, "strip", z.ZodTypeAny, {
|
|
890
|
+
name: string;
|
|
890
891
|
value: string;
|
|
891
892
|
type: string;
|
|
892
|
-
name: string;
|
|
893
893
|
id: number;
|
|
894
894
|
x: number;
|
|
895
895
|
y: number;
|
|
896
896
|
}, {
|
|
897
|
+
name: string;
|
|
897
898
|
value: string;
|
|
898
899
|
type: string;
|
|
899
|
-
name: string;
|
|
900
900
|
id: number;
|
|
901
901
|
x: number;
|
|
902
902
|
y: number;
|
|
@@ -905,9 +905,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
905
905
|
pageNumber: number;
|
|
906
906
|
markdown: string;
|
|
907
907
|
formFields?: {
|
|
908
|
+
name: string;
|
|
908
909
|
value: string;
|
|
909
910
|
type: string;
|
|
910
|
-
name: string;
|
|
911
911
|
id: number;
|
|
912
912
|
x: number;
|
|
913
913
|
y: number;
|
|
@@ -916,9 +916,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
916
916
|
pageNumber: number;
|
|
917
917
|
markdown: string;
|
|
918
918
|
formFields?: {
|
|
919
|
+
name: string;
|
|
919
920
|
value: string;
|
|
920
921
|
type: string;
|
|
921
|
-
name: string;
|
|
922
922
|
id: number;
|
|
923
923
|
x: number;
|
|
924
924
|
y: number;
|
|
@@ -936,9 +936,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
936
936
|
pageNumber: number;
|
|
937
937
|
markdown: string;
|
|
938
938
|
formFields?: {
|
|
939
|
+
name: string;
|
|
939
940
|
value: string;
|
|
940
941
|
type: string;
|
|
941
|
-
name: string;
|
|
942
942
|
id: number;
|
|
943
943
|
x: number;
|
|
944
944
|
y: number;
|
|
@@ -955,9 +955,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
955
955
|
pageNumber: number;
|
|
956
956
|
markdown: string;
|
|
957
957
|
formFields?: {
|
|
958
|
+
name: string;
|
|
958
959
|
value: string;
|
|
959
960
|
type: string;
|
|
960
|
-
name: string;
|
|
961
961
|
id: number;
|
|
962
962
|
x: number;
|
|
963
963
|
y: number;
|
|
@@ -248,9 +248,9 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
248
248
|
success: z.ZodBoolean;
|
|
249
249
|
error: z.ZodString;
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
|
-
mode: "identify";
|
|
252
251
|
success: boolean;
|
|
253
252
|
error: string;
|
|
253
|
+
mode: "identify";
|
|
254
254
|
imageData: {
|
|
255
255
|
format: string;
|
|
256
256
|
dpi: number;
|
|
@@ -273,9 +273,9 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
273
273
|
processingTime?: number | undefined;
|
|
274
274
|
};
|
|
275
275
|
}, {
|
|
276
|
-
mode: "identify";
|
|
277
276
|
success: boolean;
|
|
278
277
|
error: string;
|
|
278
|
+
mode: "identify";
|
|
279
279
|
imageData: {
|
|
280
280
|
format: string;
|
|
281
281
|
dpi: number;
|
|
@@ -374,9 +374,9 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
374
374
|
success: z.ZodBoolean;
|
|
375
375
|
error: z.ZodString;
|
|
376
376
|
}, "strip", z.ZodTypeAny, {
|
|
377
|
-
mode: "autofill";
|
|
378
377
|
success: boolean;
|
|
379
378
|
error: string;
|
|
379
|
+
mode: "autofill";
|
|
380
380
|
filledPdfData: string;
|
|
381
381
|
imageData: {
|
|
382
382
|
format: string;
|
|
@@ -406,9 +406,9 @@ declare const PDFOcrWorkflowResultSchema: z.ZodDiscriminatedUnion<"mode", [z.Zod
|
|
|
406
406
|
successfullyFilled: number;
|
|
407
407
|
};
|
|
408
408
|
}, {
|
|
409
|
-
mode: "autofill";
|
|
410
409
|
success: boolean;
|
|
411
410
|
error: string;
|
|
411
|
+
mode: "autofill";
|
|
412
412
|
filledPdfData: string;
|
|
413
413
|
imageData: {
|
|
414
414
|
format: string;
|
|
@@ -681,9 +681,9 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
681
681
|
success: z.ZodBoolean;
|
|
682
682
|
error: z.ZodString;
|
|
683
683
|
}, "strip", z.ZodTypeAny, {
|
|
684
|
-
mode: "identify";
|
|
685
684
|
success: boolean;
|
|
686
685
|
error: string;
|
|
686
|
+
mode: "identify";
|
|
687
687
|
imageData: {
|
|
688
688
|
format: string;
|
|
689
689
|
dpi: number;
|
|
@@ -706,9 +706,9 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
706
706
|
processingTime?: number | undefined;
|
|
707
707
|
};
|
|
708
708
|
}, {
|
|
709
|
-
mode: "identify";
|
|
710
709
|
success: boolean;
|
|
711
710
|
error: string;
|
|
711
|
+
mode: "identify";
|
|
712
712
|
imageData: {
|
|
713
713
|
format: string;
|
|
714
714
|
dpi: number;
|
|
@@ -807,9 +807,9 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
807
807
|
success: z.ZodBoolean;
|
|
808
808
|
error: z.ZodString;
|
|
809
809
|
}, "strip", z.ZodTypeAny, {
|
|
810
|
-
mode: "autofill";
|
|
811
810
|
success: boolean;
|
|
812
811
|
error: string;
|
|
812
|
+
mode: "autofill";
|
|
813
813
|
filledPdfData: string;
|
|
814
814
|
imageData: {
|
|
815
815
|
format: string;
|
|
@@ -839,9 +839,9 @@ export declare class PDFOcrWorkflow<T extends PDFOcrWorkflowParams = PDFOcrWorkf
|
|
|
839
839
|
successfullyFilled: number;
|
|
840
840
|
};
|
|
841
841
|
}, {
|
|
842
|
-
mode: "autofill";
|
|
843
842
|
success: boolean;
|
|
844
843
|
error: string;
|
|
844
|
+
mode: "autofill";
|
|
845
845
|
filledPdfData: string;
|
|
846
846
|
imageData: {
|
|
847
847
|
format: string;
|
|
@@ -106,12 +106,12 @@ declare const SlackDataAssistantResultSchema: z.ZodObject<{
|
|
|
106
106
|
}, "strip", z.ZodTypeAny, {
|
|
107
107
|
success: boolean;
|
|
108
108
|
error: string;
|
|
109
|
-
query?: string | undefined;
|
|
110
109
|
metadata?: {
|
|
111
110
|
executionTime: number;
|
|
112
111
|
rowCount?: number | undefined;
|
|
113
112
|
wordCount?: number | undefined;
|
|
114
113
|
} | undefined;
|
|
114
|
+
query?: string | undefined;
|
|
115
115
|
queryExplanation?: string | undefined;
|
|
116
116
|
queryResults?: Record<string, unknown>[] | undefined;
|
|
117
117
|
formattedResponse?: string | undefined;
|
|
@@ -121,12 +121,12 @@ declare const SlackDataAssistantResultSchema: z.ZodObject<{
|
|
|
121
121
|
}, {
|
|
122
122
|
success: boolean;
|
|
123
123
|
error: string;
|
|
124
|
-
query?: string | undefined;
|
|
125
124
|
metadata?: {
|
|
126
125
|
executionTime: number;
|
|
127
126
|
rowCount?: number | undefined;
|
|
128
127
|
wordCount?: number | undefined;
|
|
129
128
|
} | undefined;
|
|
129
|
+
query?: string | undefined;
|
|
130
130
|
queryExplanation?: string | undefined;
|
|
131
131
|
queryResults?: Record<string, unknown>[] | undefined;
|
|
132
132
|
formattedResponse?: string | undefined;
|
|
@@ -244,12 +244,12 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
245
|
success: boolean;
|
|
246
246
|
error: string;
|
|
247
|
-
query?: string | undefined;
|
|
248
247
|
metadata?: {
|
|
249
248
|
executionTime: number;
|
|
250
249
|
rowCount?: number | undefined;
|
|
251
250
|
wordCount?: number | undefined;
|
|
252
251
|
} | undefined;
|
|
252
|
+
query?: string | undefined;
|
|
253
253
|
queryExplanation?: string | undefined;
|
|
254
254
|
queryResults?: Record<string, unknown>[] | undefined;
|
|
255
255
|
formattedResponse?: string | undefined;
|
|
@@ -259,12 +259,12 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
259
259
|
}, {
|
|
260
260
|
success: boolean;
|
|
261
261
|
error: string;
|
|
262
|
-
query?: string | undefined;
|
|
263
262
|
metadata?: {
|
|
264
263
|
executionTime: number;
|
|
265
264
|
rowCount?: number | undefined;
|
|
266
265
|
wordCount?: number | undefined;
|
|
267
266
|
} | undefined;
|
|
267
|
+
query?: string | undefined;
|
|
268
268
|
queryExplanation?: string | undefined;
|
|
269
269
|
queryResults?: Record<string, unknown>[] | undefined;
|
|
270
270
|
formattedResponse?: string | undefined;
|