@bubblelab/bubble-core 0.1.69 → 0.1.71

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 (46) hide show
  1. package/dist/bubble-bundle.d.ts +78 -78
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +38 -38
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +78 -78
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +92 -92
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +346 -346
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +320 -320
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +58 -58
  17. package/dist/bubbles/service-bubble/github.d.ts +36 -36
  18. package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +63 -2
  20. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  21. package/dist/bubbles/service-bubble/google-drive.js +74 -4
  22. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  23. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +74 -74
  24. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  25. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/jira/jira.d.ts +9 -9
  27. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
  28. package/dist/bubbles/service-bubble/notion/notion.d.ts +20 -20
  29. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  31. package/dist/bubbles/service-bubble/slack/slack.d.ts +114 -114
  32. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +11 -11
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
  34. package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
  36. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
  37. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
  38. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +305 -305
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +28 -28
  40. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
  42. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
  43. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
  44. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +32 -32
  45. package/dist/bubbles.json +69 -4
  46. package/package.json +2 -2
@@ -70,14 +70,14 @@ declare const GmailParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
70
70
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
71
71
  }, "strip", z.ZodTypeAny, {
72
72
  operation: "get_email";
73
- format: "minimal" | "metadata" | "raw" | "full";
73
+ format: "metadata" | "minimal" | "raw" | "full";
74
74
  message_id: string;
75
75
  credentials?: Partial<Record<CredentialType, string>> | undefined;
76
76
  metadata_headers?: string[] | undefined;
77
77
  }, {
78
78
  operation: "get_email";
79
79
  message_id: string;
80
- format?: "minimal" | "metadata" | "raw" | "full" | undefined;
80
+ format?: "metadata" | "minimal" | "raw" | "full" | undefined;
81
81
  credentials?: Partial<Record<CredentialType, string>> | undefined;
82
82
  metadata_headers?: string[] | undefined;
83
83
  }>, z.ZodObject<{
@@ -370,11 +370,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
370
370
  data?: string | undefined;
371
371
  attachmentId?: string | undefined;
372
372
  } | undefined;
373
+ parts?: any[] | undefined;
373
374
  headers?: {
374
375
  value: string;
375
376
  name: string;
376
377
  }[] | undefined;
377
- parts?: any[] | undefined;
378
378
  }, {
379
379
  mimeType?: string | undefined;
380
380
  body?: {
@@ -382,11 +382,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
382
382
  data?: string | undefined;
383
383
  attachmentId?: string | undefined;
384
384
  } | undefined;
385
+ parts?: any[] | undefined;
385
386
  headers?: {
386
387
  value: string;
387
388
  name: string;
388
389
  }[] | undefined;
389
- parts?: any[] | undefined;
390
390
  }>>;
391
391
  }, "strip", z.ZodTypeAny, {
392
392
  id: string;
@@ -405,11 +405,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
405
405
  data?: string | undefined;
406
406
  attachmentId?: string | undefined;
407
407
  } | undefined;
408
+ parts?: any[] | undefined;
408
409
  headers?: {
409
410
  value: string;
410
411
  name: string;
411
412
  }[] | undefined;
412
- parts?: any[] | undefined;
413
413
  } | undefined;
414
414
  }, {
415
415
  id: string;
@@ -428,11 +428,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
428
428
  data?: string | undefined;
429
429
  attachmentId?: string | undefined;
430
430
  } | undefined;
431
+ parts?: any[] | undefined;
431
432
  headers?: {
432
433
  value: string;
433
434
  name: string;
434
435
  }[] | undefined;
435
- parts?: any[] | undefined;
436
436
  } | undefined;
437
437
  }>, "many">>;
438
438
  next_page_token: z.ZodOptional<z.ZodString>;
@@ -460,11 +460,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
460
460
  data?: string | undefined;
461
461
  attachmentId?: string | undefined;
462
462
  } | undefined;
463
+ parts?: any[] | undefined;
463
464
  headers?: {
464
465
  value: string;
465
466
  name: string;
466
467
  }[] | undefined;
467
- parts?: any[] | undefined;
468
468
  } | undefined;
469
469
  }[] | undefined;
470
470
  result_size_estimate?: number | undefined;
@@ -490,11 +490,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
490
490
  data?: string | undefined;
491
491
  attachmentId?: string | undefined;
492
492
  } | undefined;
493
+ parts?: any[] | undefined;
493
494
  headers?: {
494
495
  value: string;
495
496
  name: string;
496
497
  }[] | undefined;
497
- parts?: any[] | undefined;
498
498
  } | undefined;
499
499
  }[] | undefined;
500
500
  result_size_estimate?: number | undefined;
@@ -544,11 +544,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
544
544
  data?: string | undefined;
545
545
  attachmentId?: string | undefined;
546
546
  } | undefined;
547
+ parts?: any[] | undefined;
547
548
  headers?: {
548
549
  value: string;
549
550
  name: string;
550
551
  }[] | undefined;
551
- parts?: any[] | undefined;
552
552
  }, {
553
553
  mimeType?: string | undefined;
554
554
  body?: {
@@ -556,11 +556,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
556
556
  data?: string | undefined;
557
557
  attachmentId?: string | undefined;
558
558
  } | undefined;
559
+ parts?: any[] | undefined;
559
560
  headers?: {
560
561
  value: string;
561
562
  name: string;
562
563
  }[] | undefined;
563
- parts?: any[] | undefined;
564
564
  }>>;
565
565
  }, "strip", z.ZodTypeAny, {
566
566
  id: string;
@@ -579,11 +579,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
579
579
  data?: string | undefined;
580
580
  attachmentId?: string | undefined;
581
581
  } | undefined;
582
+ parts?: any[] | undefined;
582
583
  headers?: {
583
584
  value: string;
584
585
  name: string;
585
586
  }[] | undefined;
586
- parts?: any[] | undefined;
587
587
  } | undefined;
588
588
  }, {
589
589
  id: string;
@@ -602,11 +602,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
602
602
  data?: string | undefined;
603
603
  attachmentId?: string | undefined;
604
604
  } | undefined;
605
+ parts?: any[] | undefined;
605
606
  headers?: {
606
607
  value: string;
607
608
  name: string;
608
609
  }[] | undefined;
609
- parts?: any[] | undefined;
610
610
  } | undefined;
611
611
  }>>;
612
612
  error: z.ZodString;
@@ -631,11 +631,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
631
631
  data?: string | undefined;
632
632
  attachmentId?: string | undefined;
633
633
  } | undefined;
634
+ parts?: any[] | undefined;
634
635
  headers?: {
635
636
  value: string;
636
637
  name: string;
637
638
  }[] | undefined;
638
- parts?: any[] | undefined;
639
639
  } | undefined;
640
640
  } | undefined;
641
641
  }, {
@@ -659,11 +659,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
659
659
  data?: string | undefined;
660
660
  attachmentId?: string | undefined;
661
661
  } | undefined;
662
+ parts?: any[] | undefined;
662
663
  headers?: {
663
664
  value: string;
664
665
  name: string;
665
666
  }[] | undefined;
666
- parts?: any[] | undefined;
667
667
  } | undefined;
668
668
  } | undefined;
669
669
  }>, z.ZodObject<{
@@ -712,11 +712,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
712
712
  data?: string | undefined;
713
713
  attachmentId?: string | undefined;
714
714
  } | undefined;
715
+ parts?: any[] | undefined;
715
716
  headers?: {
716
717
  value: string;
717
718
  name: string;
718
719
  }[] | undefined;
719
- parts?: any[] | undefined;
720
720
  }, {
721
721
  mimeType?: string | undefined;
722
722
  body?: {
@@ -724,11 +724,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
724
724
  data?: string | undefined;
725
725
  attachmentId?: string | undefined;
726
726
  } | undefined;
727
+ parts?: any[] | undefined;
727
728
  headers?: {
728
729
  value: string;
729
730
  name: string;
730
731
  }[] | undefined;
731
- parts?: any[] | undefined;
732
732
  }>>;
733
733
  }, "strip", z.ZodTypeAny, {
734
734
  id: string;
@@ -747,11 +747,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
747
747
  data?: string | undefined;
748
748
  attachmentId?: string | undefined;
749
749
  } | undefined;
750
+ parts?: any[] | undefined;
750
751
  headers?: {
751
752
  value: string;
752
753
  name: string;
753
754
  }[] | undefined;
754
- parts?: any[] | undefined;
755
755
  } | undefined;
756
756
  }, {
757
757
  id: string;
@@ -770,11 +770,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
770
770
  data?: string | undefined;
771
771
  attachmentId?: string | undefined;
772
772
  } | undefined;
773
+ parts?: any[] | undefined;
773
774
  headers?: {
774
775
  value: string;
775
776
  name: string;
776
777
  }[] | undefined;
777
- parts?: any[] | undefined;
778
778
  } | undefined;
779
779
  }>, "many">>;
780
780
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
@@ -800,11 +800,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
800
800
  data?: string | undefined;
801
801
  attachmentId?: string | undefined;
802
802
  } | undefined;
803
+ parts?: any[] | undefined;
803
804
  headers?: {
804
805
  value: string;
805
806
  name: string;
806
807
  }[] | undefined;
807
- parts?: any[] | undefined;
808
808
  } | undefined;
809
809
  }[] | undefined;
810
810
  result_size_estimate?: number | undefined;
@@ -829,11 +829,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
829
829
  data?: string | undefined;
830
830
  attachmentId?: string | undefined;
831
831
  } | undefined;
832
+ parts?: any[] | undefined;
832
833
  headers?: {
833
834
  value: string;
834
835
  name: string;
835
836
  }[] | undefined;
836
- parts?: any[] | undefined;
837
837
  } | undefined;
838
838
  }[] | undefined;
839
839
  result_size_estimate?: number | undefined;
@@ -915,11 +915,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
915
915
  data?: string | undefined;
916
916
  attachmentId?: string | undefined;
917
917
  } | undefined;
918
+ parts?: any[] | undefined;
918
919
  headers?: {
919
920
  value: string;
920
921
  name: string;
921
922
  }[] | undefined;
922
- parts?: any[] | undefined;
923
923
  }, {
924
924
  mimeType?: string | undefined;
925
925
  body?: {
@@ -927,11 +927,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
927
927
  data?: string | undefined;
928
928
  attachmentId?: string | undefined;
929
929
  } | undefined;
930
+ parts?: any[] | undefined;
930
931
  headers?: {
931
932
  value: string;
932
933
  name: string;
933
934
  }[] | undefined;
934
- parts?: any[] | undefined;
935
935
  }>>;
936
936
  }, "strip", z.ZodTypeAny, {
937
937
  id: string;
@@ -950,11 +950,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
950
950
  data?: string | undefined;
951
951
  attachmentId?: string | undefined;
952
952
  } | undefined;
953
+ parts?: any[] | undefined;
953
954
  headers?: {
954
955
  value: string;
955
956
  name: string;
956
957
  }[] | undefined;
957
- parts?: any[] | undefined;
958
958
  } | undefined;
959
959
  }, {
960
960
  id: string;
@@ -973,11 +973,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
973
973
  data?: string | undefined;
974
974
  attachmentId?: string | undefined;
975
975
  } | undefined;
976
+ parts?: any[] | undefined;
976
977
  headers?: {
977
978
  value: string;
978
979
  name: string;
979
980
  }[] | undefined;
980
- parts?: any[] | undefined;
981
981
  } | undefined;
982
982
  }>;
983
983
  }, "strip", z.ZodTypeAny, {
@@ -998,11 +998,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
998
998
  data?: string | undefined;
999
999
  attachmentId?: string | undefined;
1000
1000
  } | undefined;
1001
+ parts?: any[] | undefined;
1001
1002
  headers?: {
1002
1003
  value: string;
1003
1004
  name: string;
1004
1005
  }[] | undefined;
1005
- parts?: any[] | undefined;
1006
1006
  } | undefined;
1007
1007
  };
1008
1008
  id: string;
@@ -1024,11 +1024,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1024
1024
  data?: string | undefined;
1025
1025
  attachmentId?: string | undefined;
1026
1026
  } | undefined;
1027
+ parts?: any[] | undefined;
1027
1028
  headers?: {
1028
1029
  value: string;
1029
1030
  name: string;
1030
1031
  }[] | undefined;
1031
- parts?: any[] | undefined;
1032
1032
  } | undefined;
1033
1033
  };
1034
1034
  id: string;
@@ -1056,11 +1056,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1056
1056
  data?: string | undefined;
1057
1057
  attachmentId?: string | undefined;
1058
1058
  } | undefined;
1059
+ parts?: any[] | undefined;
1059
1060
  headers?: {
1060
1061
  value: string;
1061
1062
  name: string;
1062
1063
  }[] | undefined;
1063
- parts?: any[] | undefined;
1064
1064
  } | undefined;
1065
1065
  };
1066
1066
  id: string;
@@ -1087,11 +1087,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1087
1087
  data?: string | undefined;
1088
1088
  attachmentId?: string | undefined;
1089
1089
  } | undefined;
1090
+ parts?: any[] | undefined;
1090
1091
  headers?: {
1091
1092
  value: string;
1092
1093
  name: string;
1093
1094
  }[] | undefined;
1094
- parts?: any[] | undefined;
1095
1095
  } | undefined;
1096
1096
  };
1097
1097
  id: string;
@@ -1162,11 +1162,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1162
1162
  data?: string | undefined;
1163
1163
  attachmentId?: string | undefined;
1164
1164
  } | undefined;
1165
+ parts?: any[] | undefined;
1165
1166
  headers?: {
1166
1167
  value: string;
1167
1168
  name: string;
1168
1169
  }[] | undefined;
1169
- parts?: any[] | undefined;
1170
1170
  }, {
1171
1171
  mimeType?: string | undefined;
1172
1172
  body?: {
@@ -1174,11 +1174,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1174
1174
  data?: string | undefined;
1175
1175
  attachmentId?: string | undefined;
1176
1176
  } | undefined;
1177
+ parts?: any[] | undefined;
1177
1178
  headers?: {
1178
1179
  value: string;
1179
1180
  name: string;
1180
1181
  }[] | undefined;
1181
- parts?: any[] | undefined;
1182
1182
  }>>;
1183
1183
  }, "strip", z.ZodTypeAny, {
1184
1184
  id: string;
@@ -1197,11 +1197,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1197
1197
  data?: string | undefined;
1198
1198
  attachmentId?: string | undefined;
1199
1199
  } | undefined;
1200
+ parts?: any[] | undefined;
1200
1201
  headers?: {
1201
1202
  value: string;
1202
1203
  name: string;
1203
1204
  }[] | undefined;
1204
- parts?: any[] | undefined;
1205
1205
  } | undefined;
1206
1206
  }, {
1207
1207
  id: string;
@@ -1220,11 +1220,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1220
1220
  data?: string | undefined;
1221
1221
  attachmentId?: string | undefined;
1222
1222
  } | undefined;
1223
+ parts?: any[] | undefined;
1223
1224
  headers?: {
1224
1225
  value: string;
1225
1226
  name: string;
1226
1227
  }[] | undefined;
1227
- parts?: any[] | undefined;
1228
1228
  } | undefined;
1229
1229
  }>;
1230
1230
  }, "strip", z.ZodTypeAny, {
@@ -1245,11 +1245,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1245
1245
  data?: string | undefined;
1246
1246
  attachmentId?: string | undefined;
1247
1247
  } | undefined;
1248
+ parts?: any[] | undefined;
1248
1249
  headers?: {
1249
1250
  value: string;
1250
1251
  name: string;
1251
1252
  }[] | undefined;
1252
- parts?: any[] | undefined;
1253
1253
  } | undefined;
1254
1254
  };
1255
1255
  id: string;
@@ -1271,11 +1271,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1271
1271
  data?: string | undefined;
1272
1272
  attachmentId?: string | undefined;
1273
1273
  } | undefined;
1274
+ parts?: any[] | undefined;
1274
1275
  headers?: {
1275
1276
  value: string;
1276
1277
  name: string;
1277
1278
  }[] | undefined;
1278
- parts?: any[] | undefined;
1279
1279
  } | undefined;
1280
1280
  };
1281
1281
  id: string;
@@ -1307,11 +1307,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1307
1307
  data?: string | undefined;
1308
1308
  attachmentId?: string | undefined;
1309
1309
  } | undefined;
1310
+ parts?: any[] | undefined;
1310
1311
  headers?: {
1311
1312
  value: string;
1312
1313
  name: string;
1313
1314
  }[] | undefined;
1314
- parts?: any[] | undefined;
1315
1315
  } | undefined;
1316
1316
  };
1317
1317
  id: string;
@@ -1340,11 +1340,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1340
1340
  data?: string | undefined;
1341
1341
  attachmentId?: string | undefined;
1342
1342
  } | undefined;
1343
+ parts?: any[] | undefined;
1343
1344
  headers?: {
1344
1345
  value: string;
1345
1346
  name: string;
1346
1347
  }[] | undefined;
1347
- parts?: any[] | undefined;
1348
1348
  } | undefined;
1349
1349
  };
1350
1350
  id: string;
@@ -1428,11 +1428,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1428
1428
  data?: string | undefined;
1429
1429
  attachmentId?: string | undefined;
1430
1430
  } | undefined;
1431
+ parts?: any[] | undefined;
1431
1432
  headers?: {
1432
1433
  value: string;
1433
1434
  name: string;
1434
1435
  }[] | undefined;
1435
- parts?: any[] | undefined;
1436
1436
  }, {
1437
1437
  mimeType?: string | undefined;
1438
1438
  body?: {
@@ -1440,11 +1440,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1440
1440
  data?: string | undefined;
1441
1441
  attachmentId?: string | undefined;
1442
1442
  } | undefined;
1443
+ parts?: any[] | undefined;
1443
1444
  headers?: {
1444
1445
  value: string;
1445
1446
  name: string;
1446
1447
  }[] | undefined;
1447
- parts?: any[] | undefined;
1448
1448
  }>>;
1449
1449
  }, "strip", z.ZodTypeAny, {
1450
1450
  id: string;
@@ -1463,11 +1463,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1463
1463
  data?: string | undefined;
1464
1464
  attachmentId?: string | undefined;
1465
1465
  } | undefined;
1466
+ parts?: any[] | undefined;
1466
1467
  headers?: {
1467
1468
  value: string;
1468
1469
  name: string;
1469
1470
  }[] | undefined;
1470
- parts?: any[] | undefined;
1471
1471
  } | undefined;
1472
1472
  }, {
1473
1473
  id: string;
@@ -1486,11 +1486,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1486
1486
  data?: string | undefined;
1487
1487
  attachmentId?: string | undefined;
1488
1488
  } | undefined;
1489
+ parts?: any[] | undefined;
1489
1490
  headers?: {
1490
1491
  value: string;
1491
1492
  name: string;
1492
1493
  }[] | undefined;
1493
- parts?: any[] | undefined;
1494
1494
  } | undefined;
1495
1495
  }>, "many">>;
1496
1496
  snippet: z.ZodOptional<z.ZodString>;
@@ -1513,11 +1513,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1513
1513
  data?: string | undefined;
1514
1514
  attachmentId?: string | undefined;
1515
1515
  } | undefined;
1516
+ parts?: any[] | undefined;
1516
1517
  headers?: {
1517
1518
  value: string;
1518
1519
  name: string;
1519
1520
  }[] | undefined;
1520
- parts?: any[] | undefined;
1521
1521
  } | undefined;
1522
1522
  }[] | undefined;
1523
1523
  snippet?: string | undefined;
@@ -1541,11 +1541,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1541
1541
  data?: string | undefined;
1542
1542
  attachmentId?: string | undefined;
1543
1543
  } | undefined;
1544
+ parts?: any[] | undefined;
1544
1545
  headers?: {
1545
1546
  value: string;
1546
1547
  name: string;
1547
1548
  }[] | undefined;
1548
- parts?: any[] | undefined;
1549
1549
  } | undefined;
1550
1550
  }[] | undefined;
1551
1551
  snippet?: string | undefined;
@@ -1579,11 +1579,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1579
1579
  data?: string | undefined;
1580
1580
  attachmentId?: string | undefined;
1581
1581
  } | undefined;
1582
+ parts?: any[] | undefined;
1582
1583
  headers?: {
1583
1584
  value: string;
1584
1585
  name: string;
1585
1586
  }[] | undefined;
1586
- parts?: any[] | undefined;
1587
1587
  } | undefined;
1588
1588
  }[] | undefined;
1589
1589
  snippet?: string | undefined;
@@ -1614,11 +1614,11 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1614
1614
  data?: string | undefined;
1615
1615
  attachmentId?: string | undefined;
1616
1616
  } | undefined;
1617
+ parts?: any[] | undefined;
1617
1618
  headers?: {
1618
1619
  value: string;
1619
1620
  name: string;
1620
1621
  }[] | undefined;
1621
- parts?: any[] | undefined;
1622
1622
  } | undefined;
1623
1623
  }[] | undefined;
1624
1624
  snippet?: string | undefined;
@@ -1829,14 +1829,14 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
1829
1829
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1830
1830
  }, "strip", z.ZodTypeAny, {
1831
1831
  operation: "get_email";
1832
- format: "minimal" | "metadata" | "raw" | "full";
1832
+ format: "metadata" | "minimal" | "raw" | "full";
1833
1833
  message_id: string;
1834
1834
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1835
1835
  metadata_headers?: string[] | undefined;
1836
1836
  }, {
1837
1837
  operation: "get_email";
1838
1838
  message_id: string;
1839
- format?: "minimal" | "metadata" | "raw" | "full" | undefined;
1839
+ format?: "metadata" | "minimal" | "raw" | "full" | undefined;
1840
1840
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1841
1841
  metadata_headers?: string[] | undefined;
1842
1842
  }>, z.ZodObject<{
@@ -2129,11 +2129,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2129
2129
  data?: string | undefined;
2130
2130
  attachmentId?: string | undefined;
2131
2131
  } | undefined;
2132
+ parts?: any[] | undefined;
2132
2133
  headers?: {
2133
2134
  value: string;
2134
2135
  name: string;
2135
2136
  }[] | undefined;
2136
- parts?: any[] | undefined;
2137
2137
  }, {
2138
2138
  mimeType?: string | undefined;
2139
2139
  body?: {
@@ -2141,11 +2141,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2141
2141
  data?: string | undefined;
2142
2142
  attachmentId?: string | undefined;
2143
2143
  } | undefined;
2144
+ parts?: any[] | undefined;
2144
2145
  headers?: {
2145
2146
  value: string;
2146
2147
  name: string;
2147
2148
  }[] | undefined;
2148
- parts?: any[] | undefined;
2149
2149
  }>>;
2150
2150
  }, "strip", z.ZodTypeAny, {
2151
2151
  id: string;
@@ -2164,11 +2164,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2164
2164
  data?: string | undefined;
2165
2165
  attachmentId?: string | undefined;
2166
2166
  } | undefined;
2167
+ parts?: any[] | undefined;
2167
2168
  headers?: {
2168
2169
  value: string;
2169
2170
  name: string;
2170
2171
  }[] | undefined;
2171
- parts?: any[] | undefined;
2172
2172
  } | undefined;
2173
2173
  }, {
2174
2174
  id: string;
@@ -2187,11 +2187,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2187
2187
  data?: string | undefined;
2188
2188
  attachmentId?: string | undefined;
2189
2189
  } | undefined;
2190
+ parts?: any[] | undefined;
2190
2191
  headers?: {
2191
2192
  value: string;
2192
2193
  name: string;
2193
2194
  }[] | undefined;
2194
- parts?: any[] | undefined;
2195
2195
  } | undefined;
2196
2196
  }>, "many">>;
2197
2197
  next_page_token: z.ZodOptional<z.ZodString>;
@@ -2219,11 +2219,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2219
2219
  data?: string | undefined;
2220
2220
  attachmentId?: string | undefined;
2221
2221
  } | undefined;
2222
+ parts?: any[] | undefined;
2222
2223
  headers?: {
2223
2224
  value: string;
2224
2225
  name: string;
2225
2226
  }[] | undefined;
2226
- parts?: any[] | undefined;
2227
2227
  } | undefined;
2228
2228
  }[] | undefined;
2229
2229
  result_size_estimate?: number | undefined;
@@ -2249,11 +2249,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2249
2249
  data?: string | undefined;
2250
2250
  attachmentId?: string | undefined;
2251
2251
  } | undefined;
2252
+ parts?: any[] | undefined;
2252
2253
  headers?: {
2253
2254
  value: string;
2254
2255
  name: string;
2255
2256
  }[] | undefined;
2256
- parts?: any[] | undefined;
2257
2257
  } | undefined;
2258
2258
  }[] | undefined;
2259
2259
  result_size_estimate?: number | undefined;
@@ -2303,11 +2303,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2303
2303
  data?: string | undefined;
2304
2304
  attachmentId?: string | undefined;
2305
2305
  } | undefined;
2306
+ parts?: any[] | undefined;
2306
2307
  headers?: {
2307
2308
  value: string;
2308
2309
  name: string;
2309
2310
  }[] | undefined;
2310
- parts?: any[] | undefined;
2311
2311
  }, {
2312
2312
  mimeType?: string | undefined;
2313
2313
  body?: {
@@ -2315,11 +2315,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2315
2315
  data?: string | undefined;
2316
2316
  attachmentId?: string | undefined;
2317
2317
  } | undefined;
2318
+ parts?: any[] | undefined;
2318
2319
  headers?: {
2319
2320
  value: string;
2320
2321
  name: string;
2321
2322
  }[] | undefined;
2322
- parts?: any[] | undefined;
2323
2323
  }>>;
2324
2324
  }, "strip", z.ZodTypeAny, {
2325
2325
  id: string;
@@ -2338,11 +2338,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2338
2338
  data?: string | undefined;
2339
2339
  attachmentId?: string | undefined;
2340
2340
  } | undefined;
2341
+ parts?: any[] | undefined;
2341
2342
  headers?: {
2342
2343
  value: string;
2343
2344
  name: string;
2344
2345
  }[] | undefined;
2345
- parts?: any[] | undefined;
2346
2346
  } | undefined;
2347
2347
  }, {
2348
2348
  id: string;
@@ -2361,11 +2361,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2361
2361
  data?: string | undefined;
2362
2362
  attachmentId?: string | undefined;
2363
2363
  } | undefined;
2364
+ parts?: any[] | undefined;
2364
2365
  headers?: {
2365
2366
  value: string;
2366
2367
  name: string;
2367
2368
  }[] | undefined;
2368
- parts?: any[] | undefined;
2369
2369
  } | undefined;
2370
2370
  }>>;
2371
2371
  error: z.ZodString;
@@ -2390,11 +2390,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2390
2390
  data?: string | undefined;
2391
2391
  attachmentId?: string | undefined;
2392
2392
  } | undefined;
2393
+ parts?: any[] | undefined;
2393
2394
  headers?: {
2394
2395
  value: string;
2395
2396
  name: string;
2396
2397
  }[] | undefined;
2397
- parts?: any[] | undefined;
2398
2398
  } | undefined;
2399
2399
  } | undefined;
2400
2400
  }, {
@@ -2418,11 +2418,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2418
2418
  data?: string | undefined;
2419
2419
  attachmentId?: string | undefined;
2420
2420
  } | undefined;
2421
+ parts?: any[] | undefined;
2421
2422
  headers?: {
2422
2423
  value: string;
2423
2424
  name: string;
2424
2425
  }[] | undefined;
2425
- parts?: any[] | undefined;
2426
2426
  } | undefined;
2427
2427
  } | undefined;
2428
2428
  }>, z.ZodObject<{
@@ -2471,11 +2471,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2471
2471
  data?: string | undefined;
2472
2472
  attachmentId?: string | undefined;
2473
2473
  } | undefined;
2474
+ parts?: any[] | undefined;
2474
2475
  headers?: {
2475
2476
  value: string;
2476
2477
  name: string;
2477
2478
  }[] | undefined;
2478
- parts?: any[] | undefined;
2479
2479
  }, {
2480
2480
  mimeType?: string | undefined;
2481
2481
  body?: {
@@ -2483,11 +2483,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2483
2483
  data?: string | undefined;
2484
2484
  attachmentId?: string | undefined;
2485
2485
  } | undefined;
2486
+ parts?: any[] | undefined;
2486
2487
  headers?: {
2487
2488
  value: string;
2488
2489
  name: string;
2489
2490
  }[] | undefined;
2490
- parts?: any[] | undefined;
2491
2491
  }>>;
2492
2492
  }, "strip", z.ZodTypeAny, {
2493
2493
  id: string;
@@ -2506,11 +2506,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2506
2506
  data?: string | undefined;
2507
2507
  attachmentId?: string | undefined;
2508
2508
  } | undefined;
2509
+ parts?: any[] | undefined;
2509
2510
  headers?: {
2510
2511
  value: string;
2511
2512
  name: string;
2512
2513
  }[] | undefined;
2513
- parts?: any[] | undefined;
2514
2514
  } | undefined;
2515
2515
  }, {
2516
2516
  id: string;
@@ -2529,11 +2529,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2529
2529
  data?: string | undefined;
2530
2530
  attachmentId?: string | undefined;
2531
2531
  } | undefined;
2532
+ parts?: any[] | undefined;
2532
2533
  headers?: {
2533
2534
  value: string;
2534
2535
  name: string;
2535
2536
  }[] | undefined;
2536
- parts?: any[] | undefined;
2537
2537
  } | undefined;
2538
2538
  }>, "many">>;
2539
2539
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
@@ -2559,11 +2559,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2559
2559
  data?: string | undefined;
2560
2560
  attachmentId?: string | undefined;
2561
2561
  } | undefined;
2562
+ parts?: any[] | undefined;
2562
2563
  headers?: {
2563
2564
  value: string;
2564
2565
  name: string;
2565
2566
  }[] | undefined;
2566
- parts?: any[] | undefined;
2567
2567
  } | undefined;
2568
2568
  }[] | undefined;
2569
2569
  result_size_estimate?: number | undefined;
@@ -2588,11 +2588,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2588
2588
  data?: string | undefined;
2589
2589
  attachmentId?: string | undefined;
2590
2590
  } | undefined;
2591
+ parts?: any[] | undefined;
2591
2592
  headers?: {
2592
2593
  value: string;
2593
2594
  name: string;
2594
2595
  }[] | undefined;
2595
- parts?: any[] | undefined;
2596
2596
  } | undefined;
2597
2597
  }[] | undefined;
2598
2598
  result_size_estimate?: number | undefined;
@@ -2674,11 +2674,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2674
2674
  data?: string | undefined;
2675
2675
  attachmentId?: string | undefined;
2676
2676
  } | undefined;
2677
+ parts?: any[] | undefined;
2677
2678
  headers?: {
2678
2679
  value: string;
2679
2680
  name: string;
2680
2681
  }[] | undefined;
2681
- parts?: any[] | undefined;
2682
2682
  }, {
2683
2683
  mimeType?: string | undefined;
2684
2684
  body?: {
@@ -2686,11 +2686,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2686
2686
  data?: string | undefined;
2687
2687
  attachmentId?: string | undefined;
2688
2688
  } | undefined;
2689
+ parts?: any[] | undefined;
2689
2690
  headers?: {
2690
2691
  value: string;
2691
2692
  name: string;
2692
2693
  }[] | undefined;
2693
- parts?: any[] | undefined;
2694
2694
  }>>;
2695
2695
  }, "strip", z.ZodTypeAny, {
2696
2696
  id: string;
@@ -2709,11 +2709,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2709
2709
  data?: string | undefined;
2710
2710
  attachmentId?: string | undefined;
2711
2711
  } | undefined;
2712
+ parts?: any[] | undefined;
2712
2713
  headers?: {
2713
2714
  value: string;
2714
2715
  name: string;
2715
2716
  }[] | undefined;
2716
- parts?: any[] | undefined;
2717
2717
  } | undefined;
2718
2718
  }, {
2719
2719
  id: string;
@@ -2732,11 +2732,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2732
2732
  data?: string | undefined;
2733
2733
  attachmentId?: string | undefined;
2734
2734
  } | undefined;
2735
+ parts?: any[] | undefined;
2735
2736
  headers?: {
2736
2737
  value: string;
2737
2738
  name: string;
2738
2739
  }[] | undefined;
2739
- parts?: any[] | undefined;
2740
2740
  } | undefined;
2741
2741
  }>;
2742
2742
  }, "strip", z.ZodTypeAny, {
@@ -2757,11 +2757,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2757
2757
  data?: string | undefined;
2758
2758
  attachmentId?: string | undefined;
2759
2759
  } | undefined;
2760
+ parts?: any[] | undefined;
2760
2761
  headers?: {
2761
2762
  value: string;
2762
2763
  name: string;
2763
2764
  }[] | undefined;
2764
- parts?: any[] | undefined;
2765
2765
  } | undefined;
2766
2766
  };
2767
2767
  id: string;
@@ -2783,11 +2783,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2783
2783
  data?: string | undefined;
2784
2784
  attachmentId?: string | undefined;
2785
2785
  } | undefined;
2786
+ parts?: any[] | undefined;
2786
2787
  headers?: {
2787
2788
  value: string;
2788
2789
  name: string;
2789
2790
  }[] | undefined;
2790
- parts?: any[] | undefined;
2791
2791
  } | undefined;
2792
2792
  };
2793
2793
  id: string;
@@ -2815,11 +2815,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2815
2815
  data?: string | undefined;
2816
2816
  attachmentId?: string | undefined;
2817
2817
  } | undefined;
2818
+ parts?: any[] | undefined;
2818
2819
  headers?: {
2819
2820
  value: string;
2820
2821
  name: string;
2821
2822
  }[] | undefined;
2822
- parts?: any[] | undefined;
2823
2823
  } | undefined;
2824
2824
  };
2825
2825
  id: string;
@@ -2846,11 +2846,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2846
2846
  data?: string | undefined;
2847
2847
  attachmentId?: string | undefined;
2848
2848
  } | undefined;
2849
+ parts?: any[] | undefined;
2849
2850
  headers?: {
2850
2851
  value: string;
2851
2852
  name: string;
2852
2853
  }[] | undefined;
2853
- parts?: any[] | undefined;
2854
2854
  } | undefined;
2855
2855
  };
2856
2856
  id: string;
@@ -2921,11 +2921,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2921
2921
  data?: string | undefined;
2922
2922
  attachmentId?: string | undefined;
2923
2923
  } | undefined;
2924
+ parts?: any[] | undefined;
2924
2925
  headers?: {
2925
2926
  value: string;
2926
2927
  name: string;
2927
2928
  }[] | undefined;
2928
- parts?: any[] | undefined;
2929
2929
  }, {
2930
2930
  mimeType?: string | undefined;
2931
2931
  body?: {
@@ -2933,11 +2933,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2933
2933
  data?: string | undefined;
2934
2934
  attachmentId?: string | undefined;
2935
2935
  } | undefined;
2936
+ parts?: any[] | undefined;
2936
2937
  headers?: {
2937
2938
  value: string;
2938
2939
  name: string;
2939
2940
  }[] | undefined;
2940
- parts?: any[] | undefined;
2941
2941
  }>>;
2942
2942
  }, "strip", z.ZodTypeAny, {
2943
2943
  id: string;
@@ -2956,11 +2956,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2956
2956
  data?: string | undefined;
2957
2957
  attachmentId?: string | undefined;
2958
2958
  } | undefined;
2959
+ parts?: any[] | undefined;
2959
2960
  headers?: {
2960
2961
  value: string;
2961
2962
  name: string;
2962
2963
  }[] | undefined;
2963
- parts?: any[] | undefined;
2964
2964
  } | undefined;
2965
2965
  }, {
2966
2966
  id: string;
@@ -2979,11 +2979,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2979
2979
  data?: string | undefined;
2980
2980
  attachmentId?: string | undefined;
2981
2981
  } | undefined;
2982
+ parts?: any[] | undefined;
2982
2983
  headers?: {
2983
2984
  value: string;
2984
2985
  name: string;
2985
2986
  }[] | undefined;
2986
- parts?: any[] | undefined;
2987
2987
  } | undefined;
2988
2988
  }>;
2989
2989
  }, "strip", z.ZodTypeAny, {
@@ -3004,11 +3004,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3004
3004
  data?: string | undefined;
3005
3005
  attachmentId?: string | undefined;
3006
3006
  } | undefined;
3007
+ parts?: any[] | undefined;
3007
3008
  headers?: {
3008
3009
  value: string;
3009
3010
  name: string;
3010
3011
  }[] | undefined;
3011
- parts?: any[] | undefined;
3012
3012
  } | undefined;
3013
3013
  };
3014
3014
  id: string;
@@ -3030,11 +3030,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3030
3030
  data?: string | undefined;
3031
3031
  attachmentId?: string | undefined;
3032
3032
  } | undefined;
3033
+ parts?: any[] | undefined;
3033
3034
  headers?: {
3034
3035
  value: string;
3035
3036
  name: string;
3036
3037
  }[] | undefined;
3037
- parts?: any[] | undefined;
3038
3038
  } | undefined;
3039
3039
  };
3040
3040
  id: string;
@@ -3066,11 +3066,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3066
3066
  data?: string | undefined;
3067
3067
  attachmentId?: string | undefined;
3068
3068
  } | undefined;
3069
+ parts?: any[] | undefined;
3069
3070
  headers?: {
3070
3071
  value: string;
3071
3072
  name: string;
3072
3073
  }[] | undefined;
3073
- parts?: any[] | undefined;
3074
3074
  } | undefined;
3075
3075
  };
3076
3076
  id: string;
@@ -3099,11 +3099,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3099
3099
  data?: string | undefined;
3100
3100
  attachmentId?: string | undefined;
3101
3101
  } | undefined;
3102
+ parts?: any[] | undefined;
3102
3103
  headers?: {
3103
3104
  value: string;
3104
3105
  name: string;
3105
3106
  }[] | undefined;
3106
- parts?: any[] | undefined;
3107
3107
  } | undefined;
3108
3108
  };
3109
3109
  id: string;
@@ -3187,11 +3187,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3187
3187
  data?: string | undefined;
3188
3188
  attachmentId?: string | undefined;
3189
3189
  } | undefined;
3190
+ parts?: any[] | undefined;
3190
3191
  headers?: {
3191
3192
  value: string;
3192
3193
  name: string;
3193
3194
  }[] | undefined;
3194
- parts?: any[] | undefined;
3195
3195
  }, {
3196
3196
  mimeType?: string | undefined;
3197
3197
  body?: {
@@ -3199,11 +3199,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3199
3199
  data?: string | undefined;
3200
3200
  attachmentId?: string | undefined;
3201
3201
  } | undefined;
3202
+ parts?: any[] | undefined;
3202
3203
  headers?: {
3203
3204
  value: string;
3204
3205
  name: string;
3205
3206
  }[] | undefined;
3206
- parts?: any[] | undefined;
3207
3207
  }>>;
3208
3208
  }, "strip", z.ZodTypeAny, {
3209
3209
  id: string;
@@ -3222,11 +3222,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3222
3222
  data?: string | undefined;
3223
3223
  attachmentId?: string | undefined;
3224
3224
  } | undefined;
3225
+ parts?: any[] | undefined;
3225
3226
  headers?: {
3226
3227
  value: string;
3227
3228
  name: string;
3228
3229
  }[] | undefined;
3229
- parts?: any[] | undefined;
3230
3230
  } | undefined;
3231
3231
  }, {
3232
3232
  id: string;
@@ -3245,11 +3245,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3245
3245
  data?: string | undefined;
3246
3246
  attachmentId?: string | undefined;
3247
3247
  } | undefined;
3248
+ parts?: any[] | undefined;
3248
3249
  headers?: {
3249
3250
  value: string;
3250
3251
  name: string;
3251
3252
  }[] | undefined;
3252
- parts?: any[] | undefined;
3253
3253
  } | undefined;
3254
3254
  }>, "many">>;
3255
3255
  snippet: z.ZodOptional<z.ZodString>;
@@ -3272,11 +3272,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3272
3272
  data?: string | undefined;
3273
3273
  attachmentId?: string | undefined;
3274
3274
  } | undefined;
3275
+ parts?: any[] | undefined;
3275
3276
  headers?: {
3276
3277
  value: string;
3277
3278
  name: string;
3278
3279
  }[] | undefined;
3279
- parts?: any[] | undefined;
3280
3280
  } | undefined;
3281
3281
  }[] | undefined;
3282
3282
  snippet?: string | undefined;
@@ -3300,11 +3300,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3300
3300
  data?: string | undefined;
3301
3301
  attachmentId?: string | undefined;
3302
3302
  } | undefined;
3303
+ parts?: any[] | undefined;
3303
3304
  headers?: {
3304
3305
  value: string;
3305
3306
  name: string;
3306
3307
  }[] | undefined;
3307
- parts?: any[] | undefined;
3308
3308
  } | undefined;
3309
3309
  }[] | undefined;
3310
3310
  snippet?: string | undefined;
@@ -3338,11 +3338,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3338
3338
  data?: string | undefined;
3339
3339
  attachmentId?: string | undefined;
3340
3340
  } | undefined;
3341
+ parts?: any[] | undefined;
3341
3342
  headers?: {
3342
3343
  value: string;
3343
3344
  name: string;
3344
3345
  }[] | undefined;
3345
- parts?: any[] | undefined;
3346
3346
  } | undefined;
3347
3347
  }[] | undefined;
3348
3348
  snippet?: string | undefined;
@@ -3373,11 +3373,11 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3373
3373
  data?: string | undefined;
3374
3374
  attachmentId?: string | undefined;
3375
3375
  } | undefined;
3376
+ parts?: any[] | undefined;
3376
3377
  headers?: {
3377
3378
  value: string;
3378
3379
  name: string;
3379
3380
  }[] | undefined;
3380
- parts?: any[] | undefined;
3381
3381
  } | undefined;
3382
3382
  }[] | undefined;
3383
3383
  snippet?: string | undefined;