@bubblelab/bubble-core 0.1.75 → 0.1.76

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 (52) hide show
  1. package/dist/bubble-bundle.d.ts +92 -92
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/airtable.d.ts +222 -222
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +22 -22
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +22 -22
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +29 -29
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +29 -29
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +16 -16
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +20 -20
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +88 -88
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +232 -232
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +16 -16
  17. package/dist/bubbles/service-bubble/github.d.ts +60 -60
  18. package/dist/bubbles/service-bubble/gmail.d.ts +74 -74
  19. package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
  20. package/dist/bubbles/service-bubble/google-drive.d.ts +94 -94
  21. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
  22. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +46 -46
  23. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
  25. package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
  26. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +56 -56
  27. package/dist/bubbles/service-bubble/notion/notion.d.ts +208 -208
  28. package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
  29. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/slack/slack.d.ts +278 -278
  31. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  32. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +71 -71
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +77 -77
  34. package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
  36. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
  37. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
  38. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  40. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
  41. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +46 -46
  42. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  43. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +40 -40
  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/youtube-tool.d.ts +14 -14
  49. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +50 -50
  50. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +52 -52
  51. package/dist/bubbles.json +1 -1
  52. package/package.json +2 -2
@@ -69,8 +69,8 @@ declare const GmailParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
69
69
  metadata_headers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
70
70
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
71
71
  }, "strip", z.ZodTypeAny, {
72
- operation: "get_email";
73
72
  format: "metadata" | "minimal" | "raw" | "full";
73
+ operation: "get_email";
74
74
  message_id: string;
75
75
  credentials?: Partial<Record<CredentialType, string>> | undefined;
76
76
  metadata_headers?: string[] | undefined;
@@ -87,14 +87,14 @@ declare const GmailParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
87
87
  include_spam_trash: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
88
88
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
89
89
  }, "strip", z.ZodTypeAny, {
90
- operation: "search_emails";
91
90
  query: string;
91
+ operation: "search_emails";
92
92
  max_results: number;
93
93
  include_spam_trash: boolean;
94
94
  credentials?: Partial<Record<CredentialType, string>> | undefined;
95
95
  }, {
96
- operation: "search_emails";
97
96
  query: string;
97
+ operation: "search_emails";
98
98
  credentials?: Partial<Record<CredentialType, string>> | undefined;
99
99
  max_results?: number | undefined;
100
100
  include_spam_trash?: boolean | undefined;
@@ -254,16 +254,16 @@ declare const GmailParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
254
254
  text_color: z.ZodOptional<z.ZodString>;
255
255
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
256
256
  }, "strip", z.ZodTypeAny, {
257
- operation: "create_label";
258
257
  name: string;
258
+ operation: "create_label";
259
259
  label_list_visibility: "labelShow" | "labelShowIfUnread" | "labelHide";
260
260
  message_list_visibility: "show" | "hide";
261
261
  credentials?: Partial<Record<CredentialType, string>> | undefined;
262
262
  background_color?: string | undefined;
263
263
  text_color?: string | undefined;
264
264
  }, {
265
- operation: "create_label";
266
265
  name: string;
266
+ operation: "create_label";
267
267
  credentials?: Partial<Record<CredentialType, string>> | undefined;
268
268
  label_list_visibility?: "labelShow" | "labelShowIfUnread" | "labelHide" | undefined;
269
269
  message_list_visibility?: "show" | "hide" | undefined;
@@ -313,15 +313,15 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
313
313
  thread_id: z.ZodOptional<z.ZodString>;
314
314
  error: z.ZodString;
315
315
  }, "strip", z.ZodTypeAny, {
316
- operation: "send_email";
317
316
  error: string;
318
317
  success: boolean;
318
+ operation: "send_email";
319
319
  message_id?: string | undefined;
320
320
  thread_id?: string | undefined;
321
321
  }, {
322
- operation: "send_email";
323
322
  error: string;
324
323
  success: boolean;
324
+ operation: "send_email";
325
325
  message_id?: string | undefined;
326
326
  thread_id?: string | undefined;
327
327
  }>, z.ZodObject<{
@@ -439,9 +439,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
439
439
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
440
440
  error: z.ZodString;
441
441
  }, "strip", z.ZodTypeAny, {
442
- operation: "list_emails";
443
442
  error: string;
444
443
  success: boolean;
444
+ operation: "list_emails";
445
445
  messages?: {
446
446
  id: string;
447
447
  threadId?: string | undefined;
@@ -469,9 +469,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
469
469
  next_page_token?: string | undefined;
470
470
  result_size_estimate?: number | undefined;
471
471
  }, {
472
- operation: "list_emails";
473
472
  error: string;
474
473
  success: boolean;
474
+ operation: "list_emails";
475
475
  messages?: {
476
476
  id: string;
477
477
  threadId?: string | undefined;
@@ -611,9 +611,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
611
611
  }>>;
612
612
  error: z.ZodString;
613
613
  }, "strip", z.ZodTypeAny, {
614
- operation: "get_email";
615
614
  error: string;
616
615
  success: boolean;
616
+ operation: "get_email";
617
617
  message?: {
618
618
  id: string;
619
619
  threadId?: string | undefined;
@@ -639,9 +639,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
639
639
  } | undefined;
640
640
  } | undefined;
641
641
  }, {
642
- operation: "get_email";
643
642
  error: string;
644
643
  success: boolean;
644
+ operation: "get_email";
645
645
  message?: {
646
646
  id: string;
647
647
  threadId?: string | undefined;
@@ -780,9 +780,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
780
780
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
781
781
  error: z.ZodString;
782
782
  }, "strip", z.ZodTypeAny, {
783
- operation: "search_emails";
784
783
  error: string;
785
784
  success: boolean;
785
+ operation: "search_emails";
786
786
  messages?: {
787
787
  id: string;
788
788
  threadId?: string | undefined;
@@ -809,9 +809,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
809
809
  }[] | undefined;
810
810
  result_size_estimate?: number | undefined;
811
811
  }, {
812
- operation: "search_emails";
813
812
  error: string;
814
813
  success: boolean;
814
+ operation: "search_emails";
815
815
  messages?: {
816
816
  id: string;
817
817
  threadId?: string | undefined;
@@ -843,14 +843,14 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
843
843
  modified_messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
844
844
  error: z.ZodString;
845
845
  }, "strip", z.ZodTypeAny, {
846
- operation: "mark_as_read";
847
846
  error: string;
848
847
  success: boolean;
848
+ operation: "mark_as_read";
849
849
  modified_messages?: string[] | undefined;
850
850
  }, {
851
- operation: "mark_as_read";
852
851
  error: string;
853
852
  success: boolean;
853
+ operation: "mark_as_read";
854
854
  modified_messages?: string[] | undefined;
855
855
  }>, z.ZodObject<{
856
856
  operation: z.ZodLiteral<"mark_as_unread">;
@@ -858,14 +858,14 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
858
858
  modified_messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
859
859
  error: z.ZodString;
860
860
  }, "strip", z.ZodTypeAny, {
861
- operation: "mark_as_unread";
862
861
  error: string;
863
862
  success: boolean;
863
+ operation: "mark_as_unread";
864
864
  modified_messages?: string[] | undefined;
865
865
  }, {
866
- operation: "mark_as_unread";
867
866
  error: string;
868
867
  success: boolean;
868
+ operation: "mark_as_unread";
869
869
  modified_messages?: string[] | undefined;
870
870
  }>, z.ZodObject<{
871
871
  operation: z.ZodLiteral<"create_draft">;
@@ -1035,9 +1035,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1035
1035
  }>>;
1036
1036
  error: z.ZodString;
1037
1037
  }, "strip", z.ZodTypeAny, {
1038
- operation: "create_draft";
1039
1038
  error: string;
1040
1039
  success: boolean;
1040
+ operation: "create_draft";
1041
1041
  draft?: {
1042
1042
  message: {
1043
1043
  id: string;
@@ -1066,9 +1066,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1066
1066
  id: string;
1067
1067
  } | undefined;
1068
1068
  }, {
1069
- operation: "create_draft";
1070
1069
  error: string;
1071
1070
  success: boolean;
1071
+ operation: "create_draft";
1072
1072
  draft?: {
1073
1073
  message: {
1074
1074
  id: string;
@@ -1103,15 +1103,15 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1103
1103
  thread_id: z.ZodOptional<z.ZodString>;
1104
1104
  error: z.ZodString;
1105
1105
  }, "strip", z.ZodTypeAny, {
1106
- operation: "send_draft";
1107
1106
  error: string;
1108
1107
  success: boolean;
1108
+ operation: "send_draft";
1109
1109
  message_id?: string | undefined;
1110
1110
  thread_id?: string | undefined;
1111
1111
  }, {
1112
- operation: "send_draft";
1113
1112
  error: string;
1114
1113
  success: boolean;
1114
+ operation: "send_draft";
1115
1115
  message_id?: string | undefined;
1116
1116
  thread_id?: string | undefined;
1117
1117
  }>, z.ZodObject<{
@@ -1284,9 +1284,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1284
1284
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
1285
1285
  error: z.ZodString;
1286
1286
  }, "strip", z.ZodTypeAny, {
1287
- operation: "list_drafts";
1288
1287
  error: string;
1289
1288
  success: boolean;
1289
+ operation: "list_drafts";
1290
1290
  next_page_token?: string | undefined;
1291
1291
  result_size_estimate?: number | undefined;
1292
1292
  drafts?: {
@@ -1317,9 +1317,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1317
1317
  id: string;
1318
1318
  }[] | undefined;
1319
1319
  }, {
1320
- operation: "list_drafts";
1321
1320
  error: string;
1322
1321
  success: boolean;
1322
+ operation: "list_drafts";
1323
1323
  next_page_token?: string | undefined;
1324
1324
  result_size_estimate?: number | undefined;
1325
1325
  drafts?: {
@@ -1355,14 +1355,14 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1355
1355
  deleted_message_id: z.ZodOptional<z.ZodString>;
1356
1356
  error: z.ZodString;
1357
1357
  }, "strip", z.ZodTypeAny, {
1358
- operation: "delete_email";
1359
1358
  error: string;
1360
1359
  success: boolean;
1360
+ operation: "delete_email";
1361
1361
  deleted_message_id?: string | undefined;
1362
1362
  }, {
1363
- operation: "delete_email";
1364
1363
  error: string;
1365
1364
  success: boolean;
1365
+ operation: "delete_email";
1366
1366
  deleted_message_id?: string | undefined;
1367
1367
  }>, z.ZodObject<{
1368
1368
  operation: z.ZodLiteral<"trash_email">;
@@ -1370,14 +1370,14 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1370
1370
  trashed_message_id: z.ZodOptional<z.ZodString>;
1371
1371
  error: z.ZodString;
1372
1372
  }, "strip", z.ZodTypeAny, {
1373
- operation: "trash_email";
1374
1373
  error: string;
1375
1374
  success: boolean;
1375
+ operation: "trash_email";
1376
1376
  trashed_message_id?: string | undefined;
1377
1377
  }, {
1378
- operation: "trash_email";
1379
1378
  error: string;
1380
1379
  success: boolean;
1380
+ operation: "trash_email";
1381
1381
  trashed_message_id?: string | undefined;
1382
1382
  }>, z.ZodObject<{
1383
1383
  operation: z.ZodLiteral<"list_threads">;
@@ -1555,9 +1555,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1555
1555
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
1556
1556
  error: z.ZodString;
1557
1557
  }, "strip", z.ZodTypeAny, {
1558
- operation: "list_threads";
1559
1558
  error: string;
1560
1559
  success: boolean;
1560
+ operation: "list_threads";
1561
1561
  next_page_token?: string | undefined;
1562
1562
  result_size_estimate?: number | undefined;
1563
1563
  threads?: {
@@ -1590,9 +1590,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1590
1590
  historyId?: string | undefined;
1591
1591
  }[] | undefined;
1592
1592
  }, {
1593
- operation: "list_threads";
1594
1593
  error: string;
1595
1594
  success: boolean;
1595
+ operation: "list_threads";
1596
1596
  next_page_token?: string | undefined;
1597
1597
  result_size_estimate?: number | undefined;
1598
1598
  threads?: {
@@ -1648,9 +1648,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1648
1648
  }>, "many">>;
1649
1649
  error: z.ZodString;
1650
1650
  }, "strip", z.ZodTypeAny, {
1651
- operation: "list_labels";
1652
1651
  error: string;
1653
1652
  success: boolean;
1653
+ operation: "list_labels";
1654
1654
  labels?: {
1655
1655
  name: string;
1656
1656
  id: string;
@@ -1659,9 +1659,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1659
1659
  labelListVisibility?: "labelShow" | "labelShowIfUnread" | "labelHide" | undefined;
1660
1660
  }[] | undefined;
1661
1661
  }, {
1662
- operation: "list_labels";
1663
1662
  error: string;
1664
1663
  success: boolean;
1664
+ operation: "list_labels";
1665
1665
  labels?: {
1666
1666
  name: string;
1667
1667
  id: string;
@@ -1693,9 +1693,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1693
1693
  }>>;
1694
1694
  error: z.ZodString;
1695
1695
  }, "strip", z.ZodTypeAny, {
1696
- operation: "create_label";
1697
1696
  error: string;
1698
1697
  success: boolean;
1698
+ operation: "create_label";
1699
1699
  label?: {
1700
1700
  name: string;
1701
1701
  id: string;
@@ -1704,9 +1704,9 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1704
1704
  labelListVisibility?: "labelShow" | "labelShowIfUnread" | "labelHide" | undefined;
1705
1705
  } | undefined;
1706
1706
  }, {
1707
- operation: "create_label";
1708
1707
  error: string;
1709
1708
  success: boolean;
1709
+ operation: "create_label";
1710
1710
  label?: {
1711
1711
  name: string;
1712
1712
  id: string;
@@ -1721,15 +1721,15 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1721
1721
  label_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1722
1722
  error: z.ZodString;
1723
1723
  }, "strip", z.ZodTypeAny, {
1724
- operation: "modify_message_labels";
1725
1724
  error: string;
1726
1725
  success: boolean;
1726
+ operation: "modify_message_labels";
1727
1727
  message_id?: string | undefined;
1728
1728
  label_ids?: string[] | undefined;
1729
1729
  }, {
1730
- operation: "modify_message_labels";
1731
1730
  error: string;
1732
1731
  success: boolean;
1732
+ operation: "modify_message_labels";
1733
1733
  message_id?: string | undefined;
1734
1734
  label_ids?: string[] | undefined;
1735
1735
  }>, z.ZodObject<{
@@ -1738,14 +1738,14 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1738
1738
  thread_id: z.ZodOptional<z.ZodString>;
1739
1739
  error: z.ZodString;
1740
1740
  }, "strip", z.ZodTypeAny, {
1741
- operation: "modify_thread_labels";
1742
1741
  error: string;
1743
1742
  success: boolean;
1743
+ operation: "modify_thread_labels";
1744
1744
  thread_id?: string | undefined;
1745
1745
  }, {
1746
- operation: "modify_thread_labels";
1747
1746
  error: string;
1748
1747
  success: boolean;
1748
+ operation: "modify_thread_labels";
1749
1749
  thread_id?: string | undefined;
1750
1750
  }>]>;
1751
1751
  type GmailResult = z.output<typeof GmailResultSchema>;
@@ -1828,8 +1828,8 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
1828
1828
  metadata_headers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1829
1829
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1830
1830
  }, "strip", z.ZodTypeAny, {
1831
- operation: "get_email";
1832
1831
  format: "metadata" | "minimal" | "raw" | "full";
1832
+ operation: "get_email";
1833
1833
  message_id: string;
1834
1834
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1835
1835
  metadata_headers?: string[] | undefined;
@@ -1846,14 +1846,14 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
1846
1846
  include_spam_trash: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1847
1847
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1848
1848
  }, "strip", z.ZodTypeAny, {
1849
- operation: "search_emails";
1850
1849
  query: string;
1850
+ operation: "search_emails";
1851
1851
  max_results: number;
1852
1852
  include_spam_trash: boolean;
1853
1853
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1854
1854
  }, {
1855
- operation: "search_emails";
1856
1855
  query: string;
1856
+ operation: "search_emails";
1857
1857
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1858
1858
  max_results?: number | undefined;
1859
1859
  include_spam_trash?: boolean | undefined;
@@ -2013,16 +2013,16 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2013
2013
  text_color: z.ZodOptional<z.ZodString>;
2014
2014
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2015
2015
  }, "strip", z.ZodTypeAny, {
2016
- operation: "create_label";
2017
2016
  name: string;
2017
+ operation: "create_label";
2018
2018
  label_list_visibility: "labelShow" | "labelShowIfUnread" | "labelHide";
2019
2019
  message_list_visibility: "show" | "hide";
2020
2020
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2021
2021
  background_color?: string | undefined;
2022
2022
  text_color?: string | undefined;
2023
2023
  }, {
2024
- operation: "create_label";
2025
2024
  name: string;
2025
+ operation: "create_label";
2026
2026
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2027
2027
  label_list_visibility?: "labelShow" | "labelShowIfUnread" | "labelHide" | undefined;
2028
2028
  message_list_visibility?: "show" | "hide" | undefined;
@@ -2072,15 +2072,15 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2072
2072
  thread_id: z.ZodOptional<z.ZodString>;
2073
2073
  error: z.ZodString;
2074
2074
  }, "strip", z.ZodTypeAny, {
2075
- operation: "send_email";
2076
2075
  error: string;
2077
2076
  success: boolean;
2077
+ operation: "send_email";
2078
2078
  message_id?: string | undefined;
2079
2079
  thread_id?: string | undefined;
2080
2080
  }, {
2081
- operation: "send_email";
2082
2081
  error: string;
2083
2082
  success: boolean;
2083
+ operation: "send_email";
2084
2084
  message_id?: string | undefined;
2085
2085
  thread_id?: string | undefined;
2086
2086
  }>, z.ZodObject<{
@@ -2198,9 +2198,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2198
2198
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
2199
2199
  error: z.ZodString;
2200
2200
  }, "strip", z.ZodTypeAny, {
2201
- operation: "list_emails";
2202
2201
  error: string;
2203
2202
  success: boolean;
2203
+ operation: "list_emails";
2204
2204
  messages?: {
2205
2205
  id: string;
2206
2206
  threadId?: string | undefined;
@@ -2228,9 +2228,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2228
2228
  next_page_token?: string | undefined;
2229
2229
  result_size_estimate?: number | undefined;
2230
2230
  }, {
2231
- operation: "list_emails";
2232
2231
  error: string;
2233
2232
  success: boolean;
2233
+ operation: "list_emails";
2234
2234
  messages?: {
2235
2235
  id: string;
2236
2236
  threadId?: string | undefined;
@@ -2370,9 +2370,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2370
2370
  }>>;
2371
2371
  error: z.ZodString;
2372
2372
  }, "strip", z.ZodTypeAny, {
2373
- operation: "get_email";
2374
2373
  error: string;
2375
2374
  success: boolean;
2375
+ operation: "get_email";
2376
2376
  message?: {
2377
2377
  id: string;
2378
2378
  threadId?: string | undefined;
@@ -2398,9 +2398,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2398
2398
  } | undefined;
2399
2399
  } | undefined;
2400
2400
  }, {
2401
- operation: "get_email";
2402
2401
  error: string;
2403
2402
  success: boolean;
2403
+ operation: "get_email";
2404
2404
  message?: {
2405
2405
  id: string;
2406
2406
  threadId?: string | undefined;
@@ -2539,9 +2539,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2539
2539
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
2540
2540
  error: z.ZodString;
2541
2541
  }, "strip", z.ZodTypeAny, {
2542
- operation: "search_emails";
2543
2542
  error: string;
2544
2543
  success: boolean;
2544
+ operation: "search_emails";
2545
2545
  messages?: {
2546
2546
  id: string;
2547
2547
  threadId?: string | undefined;
@@ -2568,9 +2568,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2568
2568
  }[] | undefined;
2569
2569
  result_size_estimate?: number | undefined;
2570
2570
  }, {
2571
- operation: "search_emails";
2572
2571
  error: string;
2573
2572
  success: boolean;
2573
+ operation: "search_emails";
2574
2574
  messages?: {
2575
2575
  id: string;
2576
2576
  threadId?: string | undefined;
@@ -2602,14 +2602,14 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2602
2602
  modified_messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2603
2603
  error: z.ZodString;
2604
2604
  }, "strip", z.ZodTypeAny, {
2605
- operation: "mark_as_read";
2606
2605
  error: string;
2607
2606
  success: boolean;
2607
+ operation: "mark_as_read";
2608
2608
  modified_messages?: string[] | undefined;
2609
2609
  }, {
2610
- operation: "mark_as_read";
2611
2610
  error: string;
2612
2611
  success: boolean;
2612
+ operation: "mark_as_read";
2613
2613
  modified_messages?: string[] | undefined;
2614
2614
  }>, z.ZodObject<{
2615
2615
  operation: z.ZodLiteral<"mark_as_unread">;
@@ -2617,14 +2617,14 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2617
2617
  modified_messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2618
2618
  error: z.ZodString;
2619
2619
  }, "strip", z.ZodTypeAny, {
2620
- operation: "mark_as_unread";
2621
2620
  error: string;
2622
2621
  success: boolean;
2622
+ operation: "mark_as_unread";
2623
2623
  modified_messages?: string[] | undefined;
2624
2624
  }, {
2625
- operation: "mark_as_unread";
2626
2625
  error: string;
2627
2626
  success: boolean;
2627
+ operation: "mark_as_unread";
2628
2628
  modified_messages?: string[] | undefined;
2629
2629
  }>, z.ZodObject<{
2630
2630
  operation: z.ZodLiteral<"create_draft">;
@@ -2794,9 +2794,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2794
2794
  }>>;
2795
2795
  error: z.ZodString;
2796
2796
  }, "strip", z.ZodTypeAny, {
2797
- operation: "create_draft";
2798
2797
  error: string;
2799
2798
  success: boolean;
2799
+ operation: "create_draft";
2800
2800
  draft?: {
2801
2801
  message: {
2802
2802
  id: string;
@@ -2825,9 +2825,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2825
2825
  id: string;
2826
2826
  } | undefined;
2827
2827
  }, {
2828
- operation: "create_draft";
2829
2828
  error: string;
2830
2829
  success: boolean;
2830
+ operation: "create_draft";
2831
2831
  draft?: {
2832
2832
  message: {
2833
2833
  id: string;
@@ -2862,15 +2862,15 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
2862
2862
  thread_id: z.ZodOptional<z.ZodString>;
2863
2863
  error: z.ZodString;
2864
2864
  }, "strip", z.ZodTypeAny, {
2865
- operation: "send_draft";
2866
2865
  error: string;
2867
2866
  success: boolean;
2867
+ operation: "send_draft";
2868
2868
  message_id?: string | undefined;
2869
2869
  thread_id?: string | undefined;
2870
2870
  }, {
2871
- operation: "send_draft";
2872
2871
  error: string;
2873
2872
  success: boolean;
2873
+ operation: "send_draft";
2874
2874
  message_id?: string | undefined;
2875
2875
  thread_id?: string | undefined;
2876
2876
  }>, z.ZodObject<{
@@ -3043,9 +3043,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3043
3043
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
3044
3044
  error: z.ZodString;
3045
3045
  }, "strip", z.ZodTypeAny, {
3046
- operation: "list_drafts";
3047
3046
  error: string;
3048
3047
  success: boolean;
3048
+ operation: "list_drafts";
3049
3049
  next_page_token?: string | undefined;
3050
3050
  result_size_estimate?: number | undefined;
3051
3051
  drafts?: {
@@ -3076,9 +3076,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3076
3076
  id: string;
3077
3077
  }[] | undefined;
3078
3078
  }, {
3079
- operation: "list_drafts";
3080
3079
  error: string;
3081
3080
  success: boolean;
3081
+ operation: "list_drafts";
3082
3082
  next_page_token?: string | undefined;
3083
3083
  result_size_estimate?: number | undefined;
3084
3084
  drafts?: {
@@ -3114,14 +3114,14 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3114
3114
  deleted_message_id: z.ZodOptional<z.ZodString>;
3115
3115
  error: z.ZodString;
3116
3116
  }, "strip", z.ZodTypeAny, {
3117
- operation: "delete_email";
3118
3117
  error: string;
3119
3118
  success: boolean;
3119
+ operation: "delete_email";
3120
3120
  deleted_message_id?: string | undefined;
3121
3121
  }, {
3122
- operation: "delete_email";
3123
3122
  error: string;
3124
3123
  success: boolean;
3124
+ operation: "delete_email";
3125
3125
  deleted_message_id?: string | undefined;
3126
3126
  }>, z.ZodObject<{
3127
3127
  operation: z.ZodLiteral<"trash_email">;
@@ -3129,14 +3129,14 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3129
3129
  trashed_message_id: z.ZodOptional<z.ZodString>;
3130
3130
  error: z.ZodString;
3131
3131
  }, "strip", z.ZodTypeAny, {
3132
- operation: "trash_email";
3133
3132
  error: string;
3134
3133
  success: boolean;
3134
+ operation: "trash_email";
3135
3135
  trashed_message_id?: string | undefined;
3136
3136
  }, {
3137
- operation: "trash_email";
3138
3137
  error: string;
3139
3138
  success: boolean;
3139
+ operation: "trash_email";
3140
3140
  trashed_message_id?: string | undefined;
3141
3141
  }>, z.ZodObject<{
3142
3142
  operation: z.ZodLiteral<"list_threads">;
@@ -3314,9 +3314,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3314
3314
  result_size_estimate: z.ZodOptional<z.ZodNumber>;
3315
3315
  error: z.ZodString;
3316
3316
  }, "strip", z.ZodTypeAny, {
3317
- operation: "list_threads";
3318
3317
  error: string;
3319
3318
  success: boolean;
3319
+ operation: "list_threads";
3320
3320
  next_page_token?: string | undefined;
3321
3321
  result_size_estimate?: number | undefined;
3322
3322
  threads?: {
@@ -3349,9 +3349,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3349
3349
  historyId?: string | undefined;
3350
3350
  }[] | undefined;
3351
3351
  }, {
3352
- operation: "list_threads";
3353
3352
  error: string;
3354
3353
  success: boolean;
3354
+ operation: "list_threads";
3355
3355
  next_page_token?: string | undefined;
3356
3356
  result_size_estimate?: number | undefined;
3357
3357
  threads?: {
@@ -3407,9 +3407,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3407
3407
  }>, "many">>;
3408
3408
  error: z.ZodString;
3409
3409
  }, "strip", z.ZodTypeAny, {
3410
- operation: "list_labels";
3411
3410
  error: string;
3412
3411
  success: boolean;
3412
+ operation: "list_labels";
3413
3413
  labels?: {
3414
3414
  name: string;
3415
3415
  id: string;
@@ -3418,9 +3418,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3418
3418
  labelListVisibility?: "labelShow" | "labelShowIfUnread" | "labelHide" | undefined;
3419
3419
  }[] | undefined;
3420
3420
  }, {
3421
- operation: "list_labels";
3422
3421
  error: string;
3423
3422
  success: boolean;
3423
+ operation: "list_labels";
3424
3424
  labels?: {
3425
3425
  name: string;
3426
3426
  id: string;
@@ -3452,9 +3452,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3452
3452
  }>>;
3453
3453
  error: z.ZodString;
3454
3454
  }, "strip", z.ZodTypeAny, {
3455
- operation: "create_label";
3456
3455
  error: string;
3457
3456
  success: boolean;
3457
+ operation: "create_label";
3458
3458
  label?: {
3459
3459
  name: string;
3460
3460
  id: string;
@@ -3463,9 +3463,9 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3463
3463
  labelListVisibility?: "labelShow" | "labelShowIfUnread" | "labelHide" | undefined;
3464
3464
  } | undefined;
3465
3465
  }, {
3466
- operation: "create_label";
3467
3466
  error: string;
3468
3467
  success: boolean;
3468
+ operation: "create_label";
3469
3469
  label?: {
3470
3470
  name: string;
3471
3471
  id: string;
@@ -3480,15 +3480,15 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3480
3480
  label_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3481
3481
  error: z.ZodString;
3482
3482
  }, "strip", z.ZodTypeAny, {
3483
- operation: "modify_message_labels";
3484
3483
  error: string;
3485
3484
  success: boolean;
3485
+ operation: "modify_message_labels";
3486
3486
  message_id?: string | undefined;
3487
3487
  label_ids?: string[] | undefined;
3488
3488
  }, {
3489
- operation: "modify_message_labels";
3490
3489
  error: string;
3491
3490
  success: boolean;
3491
+ operation: "modify_message_labels";
3492
3492
  message_id?: string | undefined;
3493
3493
  label_ids?: string[] | undefined;
3494
3494
  }>, z.ZodObject<{
@@ -3497,14 +3497,14 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
3497
3497
  thread_id: z.ZodOptional<z.ZodString>;
3498
3498
  error: z.ZodString;
3499
3499
  }, "strip", z.ZodTypeAny, {
3500
- operation: "modify_thread_labels";
3501
3500
  error: string;
3502
3501
  success: boolean;
3502
+ operation: "modify_thread_labels";
3503
3503
  thread_id?: string | undefined;
3504
3504
  }, {
3505
- operation: "modify_thread_labels";
3506
3505
  error: string;
3507
3506
  success: boolean;
3507
+ operation: "modify_thread_labels";
3508
3508
  thread_id?: string | undefined;
3509
3509
  }>]>;
3510
3510
  static readonly shortDescription = "Gmail integration for email management";