@bubblelab/bubble-core 0.1.38 → 0.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bubble-bundle.d.ts +73 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +88 -71
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.js +25 -6
- package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +18 -3
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js +9 -5
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +23 -23
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +63 -63
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +142 -92
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +104 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.js +2 -0
- package/dist/bubbles/service-bubble/crustdata/index.js.map +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +32 -32
- package/dist/bubbles/service-bubble/firecrawl.d.ts +156 -156
- package/dist/bubbles/service-bubble/followupboss.d.ts +230 -230
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +108 -108
- package/dist/bubbles/service-bubble/github.d.ts +124 -124
- package/dist/bubbles/service-bubble/gmail.d.ts +70 -70
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +58 -58
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +33 -33
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +112 -112
- package/dist/bubbles/service-bubble/storage.d.ts +30 -30
- package/dist/bubbles/service-bubble/telegram.d.ts +214 -214
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +138 -138
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +42 -6
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js +18 -7
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +346 -346
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +165 -165
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +28 -13
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts +19 -0
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts.map +1 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js +268 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js.map +1 -0
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +102 -102
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +34 -34
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +56 -77
- 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
|
-
format: "minimal" | "metadata" | "raw" | "full";
|
|
73
72
|
operation: "get_email";
|
|
73
|
+
format: "minimal" | "metadata" | "raw" | "full";
|
|
74
74
|
message_id: string;
|
|
75
75
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
76
76
|
metadata_headers?: string[] | 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
|
-
name: string;
|
|
258
257
|
operation: "create_label";
|
|
258
|
+
name: string;
|
|
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
|
-
name: string;
|
|
266
265
|
operation: "create_label";
|
|
266
|
+
name: string;
|
|
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";
|
|
316
317
|
success: boolean;
|
|
317
318
|
error: string;
|
|
318
|
-
operation: "send_email";
|
|
319
319
|
message_id?: string | undefined;
|
|
320
320
|
thread_id?: string | undefined;
|
|
321
321
|
}, {
|
|
322
|
+
operation: "send_email";
|
|
322
323
|
success: boolean;
|
|
323
324
|
error: string;
|
|
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";
|
|
442
443
|
success: boolean;
|
|
443
444
|
error: string;
|
|
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";
|
|
472
473
|
success: boolean;
|
|
473
474
|
error: string;
|
|
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";
|
|
614
615
|
success: boolean;
|
|
615
616
|
error: string;
|
|
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";
|
|
642
643
|
success: boolean;
|
|
643
644
|
error: string;
|
|
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";
|
|
783
784
|
success: boolean;
|
|
784
785
|
error: string;
|
|
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";
|
|
812
813
|
success: boolean;
|
|
813
814
|
error: string;
|
|
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";
|
|
846
847
|
success: boolean;
|
|
847
848
|
error: string;
|
|
848
|
-
operation: "mark_as_read";
|
|
849
849
|
modified_messages?: string[] | undefined;
|
|
850
850
|
}, {
|
|
851
|
+
operation: "mark_as_read";
|
|
851
852
|
success: boolean;
|
|
852
853
|
error: string;
|
|
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";
|
|
861
862
|
success: boolean;
|
|
862
863
|
error: string;
|
|
863
|
-
operation: "mark_as_unread";
|
|
864
864
|
modified_messages?: string[] | undefined;
|
|
865
865
|
}, {
|
|
866
|
+
operation: "mark_as_unread";
|
|
866
867
|
success: boolean;
|
|
867
868
|
error: string;
|
|
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";
|
|
1038
1039
|
success: boolean;
|
|
1039
1040
|
error: string;
|
|
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";
|
|
1069
1070
|
success: boolean;
|
|
1070
1071
|
error: string;
|
|
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";
|
|
1106
1107
|
success: boolean;
|
|
1107
1108
|
error: string;
|
|
1108
|
-
operation: "send_draft";
|
|
1109
1109
|
message_id?: string | undefined;
|
|
1110
1110
|
thread_id?: string | undefined;
|
|
1111
1111
|
}, {
|
|
1112
|
+
operation: "send_draft";
|
|
1112
1113
|
success: boolean;
|
|
1113
1114
|
error: string;
|
|
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";
|
|
1287
1288
|
success: boolean;
|
|
1288
1289
|
error: string;
|
|
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";
|
|
1320
1321
|
success: boolean;
|
|
1321
1322
|
error: string;
|
|
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";
|
|
1358
1359
|
success: boolean;
|
|
1359
1360
|
error: string;
|
|
1360
|
-
operation: "delete_email";
|
|
1361
1361
|
deleted_message_id?: string | undefined;
|
|
1362
1362
|
}, {
|
|
1363
|
+
operation: "delete_email";
|
|
1363
1364
|
success: boolean;
|
|
1364
1365
|
error: string;
|
|
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";
|
|
1373
1374
|
success: boolean;
|
|
1374
1375
|
error: string;
|
|
1375
|
-
operation: "trash_email";
|
|
1376
1376
|
trashed_message_id?: string | undefined;
|
|
1377
1377
|
}, {
|
|
1378
|
+
operation: "trash_email";
|
|
1378
1379
|
success: boolean;
|
|
1379
1380
|
error: string;
|
|
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";
|
|
1558
1559
|
success: boolean;
|
|
1559
1560
|
error: string;
|
|
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";
|
|
1593
1594
|
success: boolean;
|
|
1594
1595
|
error: string;
|
|
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";
|
|
1651
1652
|
success: boolean;
|
|
1652
1653
|
error: string;
|
|
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";
|
|
1662
1663
|
success: boolean;
|
|
1663
1664
|
error: string;
|
|
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";
|
|
1696
1697
|
success: boolean;
|
|
1697
1698
|
error: string;
|
|
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";
|
|
1707
1708
|
success: boolean;
|
|
1708
1709
|
error: string;
|
|
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";
|
|
1724
1725
|
success: boolean;
|
|
1725
1726
|
error: string;
|
|
1726
|
-
operation: "modify_message_labels";
|
|
1727
1727
|
message_id?: string | undefined;
|
|
1728
1728
|
label_ids?: string[] | undefined;
|
|
1729
1729
|
}, {
|
|
1730
|
+
operation: "modify_message_labels";
|
|
1730
1731
|
success: boolean;
|
|
1731
1732
|
error: string;
|
|
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";
|
|
1741
1742
|
success: boolean;
|
|
1742
1743
|
error: string;
|
|
1743
|
-
operation: "modify_thread_labels";
|
|
1744
1744
|
thread_id?: string | undefined;
|
|
1745
1745
|
}, {
|
|
1746
|
+
operation: "modify_thread_labels";
|
|
1746
1747
|
success: boolean;
|
|
1747
1748
|
error: string;
|
|
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
|
-
format: "minimal" | "metadata" | "raw" | "full";
|
|
1832
1831
|
operation: "get_email";
|
|
1832
|
+
format: "minimal" | "metadata" | "raw" | "full";
|
|
1833
1833
|
message_id: string;
|
|
1834
1834
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1835
1835
|
metadata_headers?: string[] | 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
|
-
name: string;
|
|
2017
2016
|
operation: "create_label";
|
|
2017
|
+
name: string;
|
|
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
|
-
name: string;
|
|
2025
2024
|
operation: "create_label";
|
|
2025
|
+
name: string;
|
|
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";
|
|
2075
2076
|
success: boolean;
|
|
2076
2077
|
error: string;
|
|
2077
|
-
operation: "send_email";
|
|
2078
2078
|
message_id?: string | undefined;
|
|
2079
2079
|
thread_id?: string | undefined;
|
|
2080
2080
|
}, {
|
|
2081
|
+
operation: "send_email";
|
|
2081
2082
|
success: boolean;
|
|
2082
2083
|
error: string;
|
|
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";
|
|
2201
2202
|
success: boolean;
|
|
2202
2203
|
error: string;
|
|
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";
|
|
2231
2232
|
success: boolean;
|
|
2232
2233
|
error: string;
|
|
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";
|
|
2373
2374
|
success: boolean;
|
|
2374
2375
|
error: string;
|
|
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";
|
|
2401
2402
|
success: boolean;
|
|
2402
2403
|
error: string;
|
|
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";
|
|
2542
2543
|
success: boolean;
|
|
2543
2544
|
error: string;
|
|
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";
|
|
2571
2572
|
success: boolean;
|
|
2572
2573
|
error: string;
|
|
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";
|
|
2605
2606
|
success: boolean;
|
|
2606
2607
|
error: string;
|
|
2607
|
-
operation: "mark_as_read";
|
|
2608
2608
|
modified_messages?: string[] | undefined;
|
|
2609
2609
|
}, {
|
|
2610
|
+
operation: "mark_as_read";
|
|
2610
2611
|
success: boolean;
|
|
2611
2612
|
error: string;
|
|
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";
|
|
2620
2621
|
success: boolean;
|
|
2621
2622
|
error: string;
|
|
2622
|
-
operation: "mark_as_unread";
|
|
2623
2623
|
modified_messages?: string[] | undefined;
|
|
2624
2624
|
}, {
|
|
2625
|
+
operation: "mark_as_unread";
|
|
2625
2626
|
success: boolean;
|
|
2626
2627
|
error: string;
|
|
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";
|
|
2797
2798
|
success: boolean;
|
|
2798
2799
|
error: string;
|
|
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";
|
|
2828
2829
|
success: boolean;
|
|
2829
2830
|
error: string;
|
|
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";
|
|
2865
2866
|
success: boolean;
|
|
2866
2867
|
error: string;
|
|
2867
|
-
operation: "send_draft";
|
|
2868
2868
|
message_id?: string | undefined;
|
|
2869
2869
|
thread_id?: string | undefined;
|
|
2870
2870
|
}, {
|
|
2871
|
+
operation: "send_draft";
|
|
2871
2872
|
success: boolean;
|
|
2872
2873
|
error: string;
|
|
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";
|
|
3046
3047
|
success: boolean;
|
|
3047
3048
|
error: string;
|
|
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";
|
|
3079
3080
|
success: boolean;
|
|
3080
3081
|
error: string;
|
|
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";
|
|
3117
3118
|
success: boolean;
|
|
3118
3119
|
error: string;
|
|
3119
|
-
operation: "delete_email";
|
|
3120
3120
|
deleted_message_id?: string | undefined;
|
|
3121
3121
|
}, {
|
|
3122
|
+
operation: "delete_email";
|
|
3122
3123
|
success: boolean;
|
|
3123
3124
|
error: string;
|
|
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";
|
|
3132
3133
|
success: boolean;
|
|
3133
3134
|
error: string;
|
|
3134
|
-
operation: "trash_email";
|
|
3135
3135
|
trashed_message_id?: string | undefined;
|
|
3136
3136
|
}, {
|
|
3137
|
+
operation: "trash_email";
|
|
3137
3138
|
success: boolean;
|
|
3138
3139
|
error: string;
|
|
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";
|
|
3317
3318
|
success: boolean;
|
|
3318
3319
|
error: string;
|
|
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";
|
|
3352
3353
|
success: boolean;
|
|
3353
3354
|
error: string;
|
|
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";
|
|
3410
3411
|
success: boolean;
|
|
3411
3412
|
error: string;
|
|
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";
|
|
3421
3422
|
success: boolean;
|
|
3422
3423
|
error: string;
|
|
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";
|
|
3455
3456
|
success: boolean;
|
|
3456
3457
|
error: string;
|
|
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";
|
|
3466
3467
|
success: boolean;
|
|
3467
3468
|
error: string;
|
|
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";
|
|
3483
3484
|
success: boolean;
|
|
3484
3485
|
error: string;
|
|
3485
|
-
operation: "modify_message_labels";
|
|
3486
3486
|
message_id?: string | undefined;
|
|
3487
3487
|
label_ids?: string[] | undefined;
|
|
3488
3488
|
}, {
|
|
3489
|
+
operation: "modify_message_labels";
|
|
3489
3490
|
success: boolean;
|
|
3490
3491
|
error: string;
|
|
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";
|
|
3500
3501
|
success: boolean;
|
|
3501
3502
|
error: string;
|
|
3502
|
-
operation: "modify_thread_labels";
|
|
3503
3503
|
thread_id?: string | undefined;
|
|
3504
3504
|
}, {
|
|
3505
|
+
operation: "modify_thread_labels";
|
|
3505
3506
|
success: boolean;
|
|
3506
3507
|
error: string;
|
|
3507
|
-
operation: "modify_thread_labels";
|
|
3508
3508
|
thread_id?: string | undefined;
|
|
3509
3509
|
}>]>;
|
|
3510
3510
|
static readonly shortDescription = "Gmail integration for email management";
|