@bubblelab/bubble-core 0.1.34 → 0.1.36

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 (27) hide show
  1. package/dist/bubble-bundle.d.ts +50 -50
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +12 -12
  3. package/dist/bubbles/service-bubble/airtable.d.ts +156 -156
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
  6. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  7. package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
  8. package/dist/bubbles/service-bubble/followupboss.d.ts +78 -78
  9. package/dist/bubbles/service-bubble/github.d.ts +98 -98
  10. package/dist/bubbles/service-bubble/gmail.d.ts +30 -30
  11. package/dist/bubbles/service-bubble/google-calendar.d.ts +88 -88
  12. package/dist/bubbles/service-bubble/google-drive.d.ts +50 -50
  13. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  15. package/dist/bubbles/service-bubble/jira/jira.d.ts +77 -77
  16. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +112 -112
  17. package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
  18. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  19. package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
  20. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  21. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +36 -36
  22. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  23. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  24. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  25. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  26. package/dist/bubbles.json +1 -1
  27. 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;
@@ -137,8 +137,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
137
137
  potential_labels: z.ZodArray<z.ZodString, "many">;
138
138
  }, "strip", z.ZodTypeAny, {
139
139
  type: string;
140
- name: string;
141
140
  id: number;
141
+ name: string;
142
142
  width: number;
143
143
  height: number;
144
144
  label: string;
@@ -153,8 +153,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
153
153
  potential_labels: string[];
154
154
  }, {
155
155
  type: string;
156
- name: string;
157
156
  id: number;
157
+ name: string;
158
158
  width: number;
159
159
  height: number;
160
160
  label: string;
@@ -172,11 +172,10 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
172
172
  success: z.ZodBoolean;
173
173
  error: z.ZodString;
174
174
  }, "strip", z.ZodTypeAny, {
175
- operation: "discover";
176
175
  fields: {
177
176
  type: string;
178
- name: string;
179
177
  id: number;
178
+ name: string;
180
179
  width: number;
181
180
  height: number;
182
181
  label: string;
@@ -190,15 +189,15 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
190
189
  field_flags: number;
191
190
  potential_labels: string[];
192
191
  }[];
192
+ operation: "discover";
193
193
  success: boolean;
194
194
  error: string;
195
195
  totalFields: number;
196
196
  }, {
197
- operation: "discover";
198
197
  fields: {
199
198
  type: string;
200
- name: string;
201
199
  id: number;
200
+ name: string;
202
201
  width: number;
203
202
  height: number;
204
203
  label: string;
@@ -212,6 +211,7 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
212
211
  field_flags: number;
213
212
  potential_labels: string[];
214
213
  }[];
214
+ operation: "discover";
215
215
  success: boolean;
216
216
  error: string;
217
217
  totalFields: number;
@@ -320,24 +320,24 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
320
320
  success: z.ZodBoolean;
321
321
  error: z.ZodString;
322
322
  }, "strip", z.ZodTypeAny, {
323
- operation: "validate";
324
323
  fields: Record<string, {
325
324
  value: string;
326
325
  type: string;
327
326
  page: number;
328
327
  }>;
328
+ operation: "validate";
329
329
  success: boolean;
330
330
  error: string;
331
331
  totalFields: number;
332
332
  filledFields: number;
333
333
  emptyFields: number;
334
334
  }, {
335
- operation: "validate";
336
335
  fields: Record<string, {
337
336
  value: string;
338
337
  type: string;
339
338
  page: number;
340
339
  }>;
340
+ operation: "validate";
341
341
  success: boolean;
342
342
  error: string;
343
343
  totalFields: number;
@@ -410,15 +410,15 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
410
410
  }, "strip", z.ZodTypeAny, {
411
411
  value: string;
412
412
  type: string;
413
- name: string;
414
413
  id: number;
414
+ name: string;
415
415
  x: number;
416
416
  y: number;
417
417
  }, {
418
418
  value: string;
419
419
  type: string;
420
- name: string;
421
420
  id: number;
421
+ name: string;
422
422
  x: number;
423
423
  y: number;
424
424
  }>, "many">>;
@@ -428,8 +428,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
428
428
  formFields?: {
429
429
  value: string;
430
430
  type: string;
431
- name: string;
432
431
  id: number;
432
+ name: string;
433
433
  x: number;
434
434
  y: number;
435
435
  }[] | undefined;
@@ -439,8 +439,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
439
439
  formFields?: {
440
440
  value: string;
441
441
  type: string;
442
- name: string;
443
442
  id: number;
443
+ name: string;
444
444
  x: number;
445
445
  y: number;
446
446
  }[] | undefined;
@@ -459,8 +459,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
459
459
  formFields?: {
460
460
  value: string;
461
461
  type: string;
462
- name: string;
463
462
  id: number;
463
+ name: string;
464
464
  x: number;
465
465
  y: number;
466
466
  }[] | undefined;
@@ -478,8 +478,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
478
478
  formFields?: {
479
479
  value: string;
480
480
  type: string;
481
- name: string;
482
481
  id: number;
482
+ name: string;
483
483
  x: number;
484
484
  y: number;
485
485
  }[] | undefined;
@@ -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;
@@ -616,8 +616,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
616
616
  potential_labels: z.ZodArray<z.ZodString, "many">;
617
617
  }, "strip", z.ZodTypeAny, {
618
618
  type: string;
619
- name: string;
620
619
  id: number;
620
+ name: string;
621
621
  width: number;
622
622
  height: number;
623
623
  label: string;
@@ -632,8 +632,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
632
632
  potential_labels: string[];
633
633
  }, {
634
634
  type: string;
635
- name: string;
636
635
  id: number;
636
+ name: string;
637
637
  width: number;
638
638
  height: number;
639
639
  label: string;
@@ -651,11 +651,10 @@ 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";
655
654
  fields: {
656
655
  type: string;
657
- name: string;
658
656
  id: number;
657
+ name: string;
659
658
  width: number;
660
659
  height: number;
661
660
  label: string;
@@ -669,15 +668,15 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
669
668
  field_flags: number;
670
669
  potential_labels: string[];
671
670
  }[];
671
+ operation: "discover";
672
672
  success: boolean;
673
673
  error: string;
674
674
  totalFields: number;
675
675
  }, {
676
- operation: "discover";
677
676
  fields: {
678
677
  type: string;
679
- name: string;
680
678
  id: number;
679
+ name: string;
681
680
  width: number;
682
681
  height: number;
683
682
  label: string;
@@ -691,6 +690,7 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
691
690
  field_flags: number;
692
691
  potential_labels: string[];
693
692
  }[];
693
+ operation: "discover";
694
694
  success: boolean;
695
695
  error: string;
696
696
  totalFields: number;
@@ -799,24 +799,24 @@ 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";
803
802
  fields: Record<string, {
804
803
  value: string;
805
804
  type: string;
806
805
  page: number;
807
806
  }>;
807
+ operation: "validate";
808
808
  success: boolean;
809
809
  error: string;
810
810
  totalFields: number;
811
811
  filledFields: number;
812
812
  emptyFields: number;
813
813
  }, {
814
- operation: "validate";
815
814
  fields: Record<string, {
816
815
  value: string;
817
816
  type: string;
818
817
  page: number;
819
818
  }>;
819
+ operation: "validate";
820
820
  success: boolean;
821
821
  error: string;
822
822
  totalFields: number;
@@ -889,15 +889,15 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
889
889
  }, "strip", z.ZodTypeAny, {
890
890
  value: string;
891
891
  type: string;
892
- name: string;
893
892
  id: number;
893
+ name: string;
894
894
  x: number;
895
895
  y: number;
896
896
  }, {
897
897
  value: string;
898
898
  type: string;
899
- name: string;
900
899
  id: number;
900
+ name: string;
901
901
  x: number;
902
902
  y: number;
903
903
  }>, "many">>;
@@ -907,8 +907,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
907
907
  formFields?: {
908
908
  value: string;
909
909
  type: string;
910
- name: string;
911
910
  id: number;
911
+ name: string;
912
912
  x: number;
913
913
  y: number;
914
914
  }[] | undefined;
@@ -918,8 +918,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
918
918
  formFields?: {
919
919
  value: string;
920
920
  type: string;
921
- name: string;
922
921
  id: number;
922
+ name: string;
923
923
  x: number;
924
924
  y: number;
925
925
  }[] | undefined;
@@ -938,8 +938,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
938
938
  formFields?: {
939
939
  value: string;
940
940
  type: string;
941
- name: string;
942
941
  id: number;
942
+ name: string;
943
943
  x: number;
944
944
  y: number;
945
945
  }[] | undefined;
@@ -957,8 +957,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
957
957
  formFields?: {
958
958
  value: string;
959
959
  type: string;
960
- name: string;
961
960
  id: number;
961
+ name: string;
962
962
  x: number;
963
963
  y: number;
964
964
  }[] | undefined;
package/dist/bubbles.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "2.0.0",
3
- "generatedAt": "2026-01-22T23:58:12.420Z",
3
+ "generatedAt": "2026-01-25T03:49:44.427Z",
4
4
  "totalCount": 54,
5
5
  "bubbles": [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bubblelab/bubble-core",
3
- "version": "0.1.34",
3
+ "version": "0.1.36",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./dist/index.js",
@@ -40,7 +40,7 @@
40
40
  "puppeteer-core": "^24.10.0",
41
41
  "resend": "^4.8.0",
42
42
  "zod": "^3.24.1",
43
- "@bubblelab/shared-schemas": "0.1.35"
43
+ "@bubblelab/shared-schemas": "0.1.37"
44
44
  },
45
45
  "devDependencies": {
46
46
  "zod-to-json-schema": "^3.24.6",