@bubblelab/bubble-core 0.1.204 → 0.1.205

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.
Files changed (58) hide show
  1. package/dist/bubble-bundle.d.ts +172 -172
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent-slack-tools.d.ts +11 -0
  4. package/dist/bubbles/service-bubble/ai-agent-slack-tools.d.ts.map +1 -0
  5. package/dist/bubbles/service-bubble/ai-agent-slack-tools.js +61 -0
  6. package/dist/bubbles/service-bubble/ai-agent-slack-tools.js.map +1 -0
  7. package/dist/bubbles/service-bubble/ai-agent.d.ts +13 -13
  8. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  9. package/dist/bubbles/service-bubble/ai-agent.js +12 -2
  10. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  11. package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
  12. package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
  13. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
  14. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +100 -100
  15. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  16. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
  17. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  18. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/firecrawl.d.ts +212 -212
  20. package/dist/bubbles/service-bubble/github.d.ts +72 -72
  21. package/dist/bubbles/service-bubble/gmail.d.ts +148 -148
  22. package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
  23. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  24. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  25. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
  27. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +46 -46
  28. package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
  29. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
  31. package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +2 -2
  32. package/dist/bubbles/service-bubble/slack/slack.d.ts +210 -210
  33. package/dist/bubbles/service-bubble/slack/slack.d.ts.map +1 -1
  34. package/dist/bubbles/service-bubble/slack/slack.js +17 -6
  35. package/dist/bubbles/service-bubble/slack/slack.js.map +1 -1
  36. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  38. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +266 -266
  39. package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
  40. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
  41. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  42. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
  45. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  46. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  47. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  48. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
  49. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  50. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  51. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  52. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
  53. package/dist/bubbles.json +1 -1
  54. package/dist/types/base-bubble-class.d.ts +6 -0
  55. package/dist/types/base-bubble-class.d.ts.map +1 -1
  56. package/dist/types/base-bubble-class.js +11 -0
  57. package/dist/types/base-bubble-class.js.map +1 -1
  58. package/package.json +2 -2
@@ -121,7 +121,7 @@ declare const GenerateDocumentWorkflowParamsSchema: z.ZodObject<{
121
121
  } | undefined;
122
122
  }[];
123
123
  outputDescription: string;
124
- outputFormat: "html" | "json" | "csv";
124
+ outputFormat: "json" | "csv" | "html";
125
125
  credentials?: Partial<Record<CredentialType, string>> | undefined;
126
126
  }, {
127
127
  documents: {
@@ -145,7 +145,7 @@ declare const GenerateDocumentWorkflowParamsSchema: z.ZodObject<{
145
145
  maxTokens?: number | undefined;
146
146
  jsonMode?: boolean | undefined;
147
147
  } | undefined;
148
- outputFormat?: "html" | "json" | "csv" | undefined;
148
+ outputFormat?: "json" | "csv" | "html" | undefined;
149
149
  }>;
150
150
  /**
151
151
  * Result schema for Generate Document workflow
@@ -189,13 +189,13 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
189
189
  csv: z.ZodOptional<z.ZodString>;
190
190
  json: z.ZodOptional<z.ZodString>;
191
191
  }, "strip", z.ZodTypeAny, {
192
- html?: string | undefined;
193
192
  json?: string | undefined;
194
193
  csv?: string | undefined;
195
- }, {
196
194
  html?: string | undefined;
195
+ }, {
197
196
  json?: string | undefined;
198
197
  csv?: string | undefined;
198
+ html?: string | undefined;
199
199
  }>;
200
200
  aiAnalysis: z.ZodObject<{
201
201
  model: z.ZodString;
@@ -234,9 +234,9 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
234
234
  processingTime?: number | undefined;
235
235
  };
236
236
  generatedFiles: {
237
- html?: string | undefined;
238
237
  json?: string | undefined;
239
238
  csv?: string | undefined;
239
+ html?: string | undefined;
240
240
  };
241
241
  }, {
242
242
  error: string;
@@ -260,9 +260,9 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
260
260
  processingTime?: number | undefined;
261
261
  };
262
262
  generatedFiles: {
263
- html?: string | undefined;
264
263
  json?: string | undefined;
265
264
  csv?: string | undefined;
265
+ html?: string | undefined;
266
266
  };
267
267
  }>;
268
268
  type GenerateDocumentWorkflowParams = z.input<typeof GenerateDocumentWorkflowParamsSchema>;
@@ -376,7 +376,7 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
376
376
  } | undefined;
377
377
  }[];
378
378
  outputDescription: string;
379
- outputFormat: "html" | "json" | "csv";
379
+ outputFormat: "json" | "csv" | "html";
380
380
  credentials?: Partial<Record<CredentialType, string>> | undefined;
381
381
  }, {
382
382
  documents: {
@@ -400,7 +400,7 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
400
400
  maxTokens?: number | undefined;
401
401
  jsonMode?: boolean | undefined;
402
402
  } | undefined;
403
- outputFormat?: "html" | "json" | "csv" | undefined;
403
+ outputFormat?: "json" | "csv" | "html" | undefined;
404
404
  }>;
405
405
  static readonly resultSchema: z.ZodObject<{
406
406
  columns: z.ZodArray<z.ZodObject<{
@@ -441,13 +441,13 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
441
441
  csv: z.ZodOptional<z.ZodString>;
442
442
  json: z.ZodOptional<z.ZodString>;
443
443
  }, "strip", z.ZodTypeAny, {
444
- html?: string | undefined;
445
444
  json?: string | undefined;
446
445
  csv?: string | undefined;
447
- }, {
448
446
  html?: string | undefined;
447
+ }, {
449
448
  json?: string | undefined;
450
449
  csv?: string | undefined;
450
+ html?: string | undefined;
451
451
  }>;
452
452
  aiAnalysis: z.ZodObject<{
453
453
  model: z.ZodString;
@@ -486,9 +486,9 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
486
486
  processingTime?: number | undefined;
487
487
  };
488
488
  generatedFiles: {
489
- html?: string | undefined;
490
489
  json?: string | undefined;
491
490
  csv?: string | undefined;
491
+ html?: string | undefined;
492
492
  };
493
493
  }, {
494
494
  error: string;
@@ -512,9 +512,9 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
512
512
  processingTime?: number | undefined;
513
513
  };
514
514
  generatedFiles: {
515
- html?: string | undefined;
516
515
  json?: string | undefined;
517
516
  csv?: string | undefined;
517
+ html?: string | undefined;
518
518
  };
519
519
  }>;
520
520
  static readonly shortDescription = "Generate Document workflow: convert markdown to structured formats using AI";
@@ -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
  }[];