@bubblelab/bubble-core 0.1.244 → 0.1.245
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 +84 -84
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +3 -2
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
- package/dist/bubbles/service-bubble/apify/actors/twitter-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +116 -116
- package/dist/bubbles/service-bubble/assembled/assembled.d.ts +5 -5
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/confluence/confluence.d.ts +14 -14
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +192 -192
- package/dist/bubbles/service-bubble/followupboss.d.ts +58 -58
- package/dist/bubbles/service-bubble/github.d.ts +110 -110
- package/dist/bubbles/service-bubble/gmail.d.ts +68 -68
- package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/hubspot/hubspot.d.ts +32 -32
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +47 -47
- package/dist/bubbles/service-bubble/linear/linear.d.ts +5 -5
- package/dist/bubbles/service-bubble/notion/notion.d.ts +368 -368
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +10 -10
- package/dist/bubbles/service-bubble/s3/s3.d.ts +2 -2
- package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
- package/dist/bubbles/service-bubble/slab/slab.d.ts +18 -18
- package/dist/bubbles/service-bubble/slack/slack.d.ts +174 -174
- package/dist/bubbles/service-bubble/storage.d.ts +4 -4
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +10 -10
- package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +24 -24
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/app-rankings-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +56 -56
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +54 -54
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -69,7 +69,7 @@ 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" | "
|
|
72
|
+
format: "minimal" | "metadata" | "full" | "raw";
|
|
73
73
|
operation: "get_email";
|
|
74
74
|
message_id: string;
|
|
75
75
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -77,7 +77,7 @@ declare const GmailParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
77
77
|
}, {
|
|
78
78
|
operation: "get_email";
|
|
79
79
|
message_id: string;
|
|
80
|
-
format?: "minimal" | "metadata" | "
|
|
80
|
+
format?: "minimal" | "metadata" | "full" | "raw" | undefined;
|
|
81
81
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
82
82
|
metadata_headers?: string[] | undefined;
|
|
83
83
|
}>, z.ZodObject<{
|
|
@@ -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;
|
|
@@ -405,6 +405,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
405
405
|
}>>;
|
|
406
406
|
}, "strip", z.ZodTypeAny, {
|
|
407
407
|
id: string;
|
|
408
|
+
raw?: string | undefined;
|
|
408
409
|
threadId?: string | undefined;
|
|
409
410
|
labelIds?: string[] | undefined;
|
|
410
411
|
snippet?: string | undefined;
|
|
@@ -412,7 +413,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
412
413
|
historyId?: string | undefined;
|
|
413
414
|
internalDate?: string | undefined;
|
|
414
415
|
sizeEstimate?: number | undefined;
|
|
415
|
-
raw?: string | undefined;
|
|
416
416
|
payload?: {
|
|
417
417
|
mimeType?: string | undefined;
|
|
418
418
|
headers?: {
|
|
@@ -428,6 +428,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
428
428
|
} | undefined;
|
|
429
429
|
}, {
|
|
430
430
|
id: string;
|
|
431
|
+
raw?: string | undefined;
|
|
431
432
|
threadId?: string | undefined;
|
|
432
433
|
labelIds?: string[] | undefined;
|
|
433
434
|
snippet?: string | undefined;
|
|
@@ -435,7 +436,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
435
436
|
historyId?: string | undefined;
|
|
436
437
|
internalDate?: string | undefined;
|
|
437
438
|
sizeEstimate?: number | undefined;
|
|
438
|
-
raw?: string | undefined;
|
|
439
439
|
payload?: {
|
|
440
440
|
mimeType?: string | undefined;
|
|
441
441
|
headers?: {
|
|
@@ -459,6 +459,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
459
459
|
operation: "list_emails";
|
|
460
460
|
messages?: {
|
|
461
461
|
id: string;
|
|
462
|
+
raw?: string | undefined;
|
|
462
463
|
threadId?: string | undefined;
|
|
463
464
|
labelIds?: string[] | undefined;
|
|
464
465
|
snippet?: string | undefined;
|
|
@@ -466,7 +467,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
466
467
|
historyId?: string | undefined;
|
|
467
468
|
internalDate?: string | undefined;
|
|
468
469
|
sizeEstimate?: number | undefined;
|
|
469
|
-
raw?: string | undefined;
|
|
470
470
|
payload?: {
|
|
471
471
|
mimeType?: string | undefined;
|
|
472
472
|
headers?: {
|
|
@@ -489,6 +489,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
489
489
|
operation: "list_emails";
|
|
490
490
|
messages?: {
|
|
491
491
|
id: string;
|
|
492
|
+
raw?: string | undefined;
|
|
492
493
|
threadId?: string | undefined;
|
|
493
494
|
labelIds?: string[] | undefined;
|
|
494
495
|
snippet?: string | undefined;
|
|
@@ -496,7 +497,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
496
497
|
historyId?: string | undefined;
|
|
497
498
|
internalDate?: string | undefined;
|
|
498
499
|
sizeEstimate?: number | undefined;
|
|
499
|
-
raw?: string | undefined;
|
|
500
500
|
payload?: {
|
|
501
501
|
mimeType?: string | undefined;
|
|
502
502
|
headers?: {
|
|
@@ -579,6 +579,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
579
579
|
}>>;
|
|
580
580
|
}, "strip", z.ZodTypeAny, {
|
|
581
581
|
id: string;
|
|
582
|
+
raw?: string | undefined;
|
|
582
583
|
threadId?: string | undefined;
|
|
583
584
|
labelIds?: string[] | undefined;
|
|
584
585
|
snippet?: string | undefined;
|
|
@@ -586,7 +587,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
586
587
|
historyId?: string | undefined;
|
|
587
588
|
internalDate?: string | undefined;
|
|
588
589
|
sizeEstimate?: number | undefined;
|
|
589
|
-
raw?: string | undefined;
|
|
590
590
|
payload?: {
|
|
591
591
|
mimeType?: string | undefined;
|
|
592
592
|
headers?: {
|
|
@@ -602,6 +602,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
602
602
|
} | undefined;
|
|
603
603
|
}, {
|
|
604
604
|
id: string;
|
|
605
|
+
raw?: string | undefined;
|
|
605
606
|
threadId?: string | undefined;
|
|
606
607
|
labelIds?: string[] | undefined;
|
|
607
608
|
snippet?: string | undefined;
|
|
@@ -609,7 +610,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
609
610
|
historyId?: string | undefined;
|
|
610
611
|
internalDate?: string | undefined;
|
|
611
612
|
sizeEstimate?: number | undefined;
|
|
612
|
-
raw?: string | undefined;
|
|
613
613
|
payload?: {
|
|
614
614
|
mimeType?: string | undefined;
|
|
615
615
|
headers?: {
|
|
@@ -631,6 +631,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
631
631
|
operation: "get_email";
|
|
632
632
|
message?: {
|
|
633
633
|
id: string;
|
|
634
|
+
raw?: string | undefined;
|
|
634
635
|
threadId?: string | undefined;
|
|
635
636
|
labelIds?: string[] | undefined;
|
|
636
637
|
snippet?: string | undefined;
|
|
@@ -638,7 +639,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
638
639
|
historyId?: string | undefined;
|
|
639
640
|
internalDate?: string | undefined;
|
|
640
641
|
sizeEstimate?: number | undefined;
|
|
641
|
-
raw?: string | undefined;
|
|
642
642
|
payload?: {
|
|
643
643
|
mimeType?: string | undefined;
|
|
644
644
|
headers?: {
|
|
@@ -659,6 +659,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
659
659
|
operation: "get_email";
|
|
660
660
|
message?: {
|
|
661
661
|
id: string;
|
|
662
|
+
raw?: string | undefined;
|
|
662
663
|
threadId?: string | undefined;
|
|
663
664
|
labelIds?: string[] | undefined;
|
|
664
665
|
snippet?: string | undefined;
|
|
@@ -666,7 +667,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
666
667
|
historyId?: string | undefined;
|
|
667
668
|
internalDate?: string | undefined;
|
|
668
669
|
sizeEstimate?: number | undefined;
|
|
669
|
-
raw?: string | undefined;
|
|
670
670
|
payload?: {
|
|
671
671
|
mimeType?: string | undefined;
|
|
672
672
|
headers?: {
|
|
@@ -747,6 +747,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
747
747
|
}>>;
|
|
748
748
|
}, "strip", z.ZodTypeAny, {
|
|
749
749
|
id: string;
|
|
750
|
+
raw?: string | undefined;
|
|
750
751
|
threadId?: string | undefined;
|
|
751
752
|
labelIds?: string[] | undefined;
|
|
752
753
|
snippet?: string | undefined;
|
|
@@ -754,7 +755,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
754
755
|
historyId?: string | undefined;
|
|
755
756
|
internalDate?: string | undefined;
|
|
756
757
|
sizeEstimate?: number | undefined;
|
|
757
|
-
raw?: string | undefined;
|
|
758
758
|
payload?: {
|
|
759
759
|
mimeType?: string | undefined;
|
|
760
760
|
headers?: {
|
|
@@ -770,6 +770,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
770
770
|
} | undefined;
|
|
771
771
|
}, {
|
|
772
772
|
id: string;
|
|
773
|
+
raw?: string | undefined;
|
|
773
774
|
threadId?: string | undefined;
|
|
774
775
|
labelIds?: string[] | undefined;
|
|
775
776
|
snippet?: string | undefined;
|
|
@@ -777,7 +778,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
777
778
|
historyId?: string | undefined;
|
|
778
779
|
internalDate?: string | undefined;
|
|
779
780
|
sizeEstimate?: number | undefined;
|
|
780
|
-
raw?: string | undefined;
|
|
781
781
|
payload?: {
|
|
782
782
|
mimeType?: string | undefined;
|
|
783
783
|
headers?: {
|
|
@@ -800,6 +800,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
800
800
|
operation: "search_emails";
|
|
801
801
|
messages?: {
|
|
802
802
|
id: string;
|
|
803
|
+
raw?: string | undefined;
|
|
803
804
|
threadId?: string | undefined;
|
|
804
805
|
labelIds?: string[] | undefined;
|
|
805
806
|
snippet?: string | undefined;
|
|
@@ -807,7 +808,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
807
808
|
historyId?: string | undefined;
|
|
808
809
|
internalDate?: string | undefined;
|
|
809
810
|
sizeEstimate?: number | undefined;
|
|
810
|
-
raw?: string | undefined;
|
|
811
811
|
payload?: {
|
|
812
812
|
mimeType?: string | undefined;
|
|
813
813
|
headers?: {
|
|
@@ -829,6 +829,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
829
829
|
operation: "search_emails";
|
|
830
830
|
messages?: {
|
|
831
831
|
id: string;
|
|
832
|
+
raw?: string | undefined;
|
|
832
833
|
threadId?: string | undefined;
|
|
833
834
|
labelIds?: string[] | undefined;
|
|
834
835
|
snippet?: string | undefined;
|
|
@@ -836,7 +837,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
836
837
|
historyId?: string | undefined;
|
|
837
838
|
internalDate?: string | undefined;
|
|
838
839
|
sizeEstimate?: number | undefined;
|
|
839
|
-
raw?: string | undefined;
|
|
840
840
|
payload?: {
|
|
841
841
|
mimeType?: string | undefined;
|
|
842
842
|
headers?: {
|
|
@@ -950,6 +950,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
950
950
|
}>>;
|
|
951
951
|
}, "strip", z.ZodTypeAny, {
|
|
952
952
|
id: string;
|
|
953
|
+
raw?: string | undefined;
|
|
953
954
|
threadId?: string | undefined;
|
|
954
955
|
labelIds?: string[] | undefined;
|
|
955
956
|
snippet?: string | undefined;
|
|
@@ -957,7 +958,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
957
958
|
historyId?: string | undefined;
|
|
958
959
|
internalDate?: string | undefined;
|
|
959
960
|
sizeEstimate?: number | undefined;
|
|
960
|
-
raw?: string | undefined;
|
|
961
961
|
payload?: {
|
|
962
962
|
mimeType?: string | undefined;
|
|
963
963
|
headers?: {
|
|
@@ -973,6 +973,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
973
973
|
} | undefined;
|
|
974
974
|
}, {
|
|
975
975
|
id: string;
|
|
976
|
+
raw?: string | undefined;
|
|
976
977
|
threadId?: string | undefined;
|
|
977
978
|
labelIds?: string[] | undefined;
|
|
978
979
|
snippet?: string | undefined;
|
|
@@ -980,7 +981,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
980
981
|
historyId?: string | undefined;
|
|
981
982
|
internalDate?: string | undefined;
|
|
982
983
|
sizeEstimate?: number | undefined;
|
|
983
|
-
raw?: string | undefined;
|
|
984
984
|
payload?: {
|
|
985
985
|
mimeType?: string | undefined;
|
|
986
986
|
headers?: {
|
|
@@ -998,6 +998,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
998
998
|
}, "strip", z.ZodTypeAny, {
|
|
999
999
|
message: {
|
|
1000
1000
|
id: string;
|
|
1001
|
+
raw?: string | undefined;
|
|
1001
1002
|
threadId?: string | undefined;
|
|
1002
1003
|
labelIds?: string[] | undefined;
|
|
1003
1004
|
snippet?: string | undefined;
|
|
@@ -1005,7 +1006,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1005
1006
|
historyId?: string | undefined;
|
|
1006
1007
|
internalDate?: string | undefined;
|
|
1007
1008
|
sizeEstimate?: number | undefined;
|
|
1008
|
-
raw?: string | undefined;
|
|
1009
1009
|
payload?: {
|
|
1010
1010
|
mimeType?: string | undefined;
|
|
1011
1011
|
headers?: {
|
|
@@ -1024,6 +1024,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1024
1024
|
}, {
|
|
1025
1025
|
message: {
|
|
1026
1026
|
id: string;
|
|
1027
|
+
raw?: string | undefined;
|
|
1027
1028
|
threadId?: string | undefined;
|
|
1028
1029
|
labelIds?: string[] | undefined;
|
|
1029
1030
|
snippet?: string | undefined;
|
|
@@ -1031,7 +1032,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1031
1032
|
historyId?: string | undefined;
|
|
1032
1033
|
internalDate?: string | undefined;
|
|
1033
1034
|
sizeEstimate?: number | undefined;
|
|
1034
|
-
raw?: string | undefined;
|
|
1035
1035
|
payload?: {
|
|
1036
1036
|
mimeType?: string | undefined;
|
|
1037
1037
|
headers?: {
|
|
@@ -1056,6 +1056,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1056
1056
|
draft?: {
|
|
1057
1057
|
message: {
|
|
1058
1058
|
id: string;
|
|
1059
|
+
raw?: string | undefined;
|
|
1059
1060
|
threadId?: string | undefined;
|
|
1060
1061
|
labelIds?: string[] | undefined;
|
|
1061
1062
|
snippet?: string | undefined;
|
|
@@ -1063,7 +1064,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1063
1064
|
historyId?: string | undefined;
|
|
1064
1065
|
internalDate?: string | undefined;
|
|
1065
1066
|
sizeEstimate?: number | undefined;
|
|
1066
|
-
raw?: string | undefined;
|
|
1067
1067
|
payload?: {
|
|
1068
1068
|
mimeType?: string | undefined;
|
|
1069
1069
|
headers?: {
|
|
@@ -1087,6 +1087,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1087
1087
|
draft?: {
|
|
1088
1088
|
message: {
|
|
1089
1089
|
id: string;
|
|
1090
|
+
raw?: string | undefined;
|
|
1090
1091
|
threadId?: string | undefined;
|
|
1091
1092
|
labelIds?: string[] | undefined;
|
|
1092
1093
|
snippet?: string | undefined;
|
|
@@ -1094,7 +1095,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1094
1095
|
historyId?: string | undefined;
|
|
1095
1096
|
internalDate?: string | undefined;
|
|
1096
1097
|
sizeEstimate?: number | undefined;
|
|
1097
|
-
raw?: string | undefined;
|
|
1098
1098
|
payload?: {
|
|
1099
1099
|
mimeType?: string | undefined;
|
|
1100
1100
|
headers?: {
|
|
@@ -1197,6 +1197,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1197
1197
|
}>>;
|
|
1198
1198
|
}, "strip", z.ZodTypeAny, {
|
|
1199
1199
|
id: string;
|
|
1200
|
+
raw?: string | undefined;
|
|
1200
1201
|
threadId?: string | undefined;
|
|
1201
1202
|
labelIds?: string[] | undefined;
|
|
1202
1203
|
snippet?: string | undefined;
|
|
@@ -1204,7 +1205,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1204
1205
|
historyId?: string | undefined;
|
|
1205
1206
|
internalDate?: string | undefined;
|
|
1206
1207
|
sizeEstimate?: number | undefined;
|
|
1207
|
-
raw?: string | undefined;
|
|
1208
1208
|
payload?: {
|
|
1209
1209
|
mimeType?: string | undefined;
|
|
1210
1210
|
headers?: {
|
|
@@ -1220,6 +1220,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1220
1220
|
} | undefined;
|
|
1221
1221
|
}, {
|
|
1222
1222
|
id: string;
|
|
1223
|
+
raw?: string | undefined;
|
|
1223
1224
|
threadId?: string | undefined;
|
|
1224
1225
|
labelIds?: string[] | undefined;
|
|
1225
1226
|
snippet?: string | undefined;
|
|
@@ -1227,7 +1228,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1227
1228
|
historyId?: string | undefined;
|
|
1228
1229
|
internalDate?: string | undefined;
|
|
1229
1230
|
sizeEstimate?: number | undefined;
|
|
1230
|
-
raw?: string | undefined;
|
|
1231
1231
|
payload?: {
|
|
1232
1232
|
mimeType?: string | undefined;
|
|
1233
1233
|
headers?: {
|
|
@@ -1245,6 +1245,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1245
1245
|
}, "strip", z.ZodTypeAny, {
|
|
1246
1246
|
message: {
|
|
1247
1247
|
id: string;
|
|
1248
|
+
raw?: string | undefined;
|
|
1248
1249
|
threadId?: string | undefined;
|
|
1249
1250
|
labelIds?: string[] | undefined;
|
|
1250
1251
|
snippet?: string | undefined;
|
|
@@ -1252,7 +1253,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1252
1253
|
historyId?: string | undefined;
|
|
1253
1254
|
internalDate?: string | undefined;
|
|
1254
1255
|
sizeEstimate?: number | undefined;
|
|
1255
|
-
raw?: string | undefined;
|
|
1256
1256
|
payload?: {
|
|
1257
1257
|
mimeType?: string | undefined;
|
|
1258
1258
|
headers?: {
|
|
@@ -1271,6 +1271,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1271
1271
|
}, {
|
|
1272
1272
|
message: {
|
|
1273
1273
|
id: string;
|
|
1274
|
+
raw?: string | undefined;
|
|
1274
1275
|
threadId?: string | undefined;
|
|
1275
1276
|
labelIds?: string[] | undefined;
|
|
1276
1277
|
snippet?: string | undefined;
|
|
@@ -1278,7 +1279,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1278
1279
|
historyId?: string | undefined;
|
|
1279
1280
|
internalDate?: string | undefined;
|
|
1280
1281
|
sizeEstimate?: number | undefined;
|
|
1281
|
-
raw?: string | undefined;
|
|
1282
1282
|
payload?: {
|
|
1283
1283
|
mimeType?: string | undefined;
|
|
1284
1284
|
headers?: {
|
|
@@ -1307,6 +1307,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1307
1307
|
drafts?: {
|
|
1308
1308
|
message: {
|
|
1309
1309
|
id: string;
|
|
1310
|
+
raw?: string | undefined;
|
|
1310
1311
|
threadId?: string | undefined;
|
|
1311
1312
|
labelIds?: string[] | undefined;
|
|
1312
1313
|
snippet?: string | undefined;
|
|
@@ -1314,7 +1315,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1314
1315
|
historyId?: string | undefined;
|
|
1315
1316
|
internalDate?: string | undefined;
|
|
1316
1317
|
sizeEstimate?: number | undefined;
|
|
1317
|
-
raw?: string | undefined;
|
|
1318
1318
|
payload?: {
|
|
1319
1319
|
mimeType?: string | undefined;
|
|
1320
1320
|
headers?: {
|
|
@@ -1340,6 +1340,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1340
1340
|
drafts?: {
|
|
1341
1341
|
message: {
|
|
1342
1342
|
id: string;
|
|
1343
|
+
raw?: string | undefined;
|
|
1343
1344
|
threadId?: string | undefined;
|
|
1344
1345
|
labelIds?: string[] | undefined;
|
|
1345
1346
|
snippet?: string | undefined;
|
|
@@ -1347,7 +1348,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1347
1348
|
historyId?: string | undefined;
|
|
1348
1349
|
internalDate?: string | undefined;
|
|
1349
1350
|
sizeEstimate?: number | undefined;
|
|
1350
|
-
raw?: string | undefined;
|
|
1351
1351
|
payload?: {
|
|
1352
1352
|
mimeType?: string | undefined;
|
|
1353
1353
|
headers?: {
|
|
@@ -1463,6 +1463,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1463
1463
|
}>>;
|
|
1464
1464
|
}, "strip", z.ZodTypeAny, {
|
|
1465
1465
|
id: string;
|
|
1466
|
+
raw?: string | undefined;
|
|
1466
1467
|
threadId?: string | undefined;
|
|
1467
1468
|
labelIds?: string[] | undefined;
|
|
1468
1469
|
snippet?: string | undefined;
|
|
@@ -1470,7 +1471,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1470
1471
|
historyId?: string | undefined;
|
|
1471
1472
|
internalDate?: string | undefined;
|
|
1472
1473
|
sizeEstimate?: number | undefined;
|
|
1473
|
-
raw?: string | undefined;
|
|
1474
1474
|
payload?: {
|
|
1475
1475
|
mimeType?: string | undefined;
|
|
1476
1476
|
headers?: {
|
|
@@ -1486,6 +1486,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1486
1486
|
} | undefined;
|
|
1487
1487
|
}, {
|
|
1488
1488
|
id: string;
|
|
1489
|
+
raw?: string | undefined;
|
|
1489
1490
|
threadId?: string | undefined;
|
|
1490
1491
|
labelIds?: string[] | undefined;
|
|
1491
1492
|
snippet?: string | undefined;
|
|
@@ -1493,7 +1494,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1493
1494
|
historyId?: string | undefined;
|
|
1494
1495
|
internalDate?: string | undefined;
|
|
1495
1496
|
sizeEstimate?: number | undefined;
|
|
1496
|
-
raw?: string | undefined;
|
|
1497
1497
|
payload?: {
|
|
1498
1498
|
mimeType?: string | undefined;
|
|
1499
1499
|
headers?: {
|
|
@@ -1513,6 +1513,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1513
1513
|
id: string;
|
|
1514
1514
|
messages?: {
|
|
1515
1515
|
id: string;
|
|
1516
|
+
raw?: string | undefined;
|
|
1516
1517
|
threadId?: string | undefined;
|
|
1517
1518
|
labelIds?: string[] | undefined;
|
|
1518
1519
|
snippet?: string | undefined;
|
|
@@ -1520,7 +1521,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1520
1521
|
historyId?: string | undefined;
|
|
1521
1522
|
internalDate?: string | undefined;
|
|
1522
1523
|
sizeEstimate?: number | undefined;
|
|
1523
|
-
raw?: string | undefined;
|
|
1524
1524
|
payload?: {
|
|
1525
1525
|
mimeType?: string | undefined;
|
|
1526
1526
|
headers?: {
|
|
@@ -1541,6 +1541,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1541
1541
|
id: string;
|
|
1542
1542
|
messages?: {
|
|
1543
1543
|
id: string;
|
|
1544
|
+
raw?: string | undefined;
|
|
1544
1545
|
threadId?: string | undefined;
|
|
1545
1546
|
labelIds?: string[] | undefined;
|
|
1546
1547
|
snippet?: string | undefined;
|
|
@@ -1548,7 +1549,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1548
1549
|
historyId?: string | undefined;
|
|
1549
1550
|
internalDate?: string | undefined;
|
|
1550
1551
|
sizeEstimate?: number | undefined;
|
|
1551
|
-
raw?: string | undefined;
|
|
1552
1552
|
payload?: {
|
|
1553
1553
|
mimeType?: string | undefined;
|
|
1554
1554
|
headers?: {
|
|
@@ -1579,6 +1579,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1579
1579
|
id: string;
|
|
1580
1580
|
messages?: {
|
|
1581
1581
|
id: string;
|
|
1582
|
+
raw?: string | undefined;
|
|
1582
1583
|
threadId?: string | undefined;
|
|
1583
1584
|
labelIds?: string[] | undefined;
|
|
1584
1585
|
snippet?: string | undefined;
|
|
@@ -1586,7 +1587,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1586
1587
|
historyId?: string | undefined;
|
|
1587
1588
|
internalDate?: string | undefined;
|
|
1588
1589
|
sizeEstimate?: number | undefined;
|
|
1589
|
-
raw?: string | undefined;
|
|
1590
1590
|
payload?: {
|
|
1591
1591
|
mimeType?: string | undefined;
|
|
1592
1592
|
headers?: {
|
|
@@ -1614,6 +1614,7 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1614
1614
|
id: string;
|
|
1615
1615
|
messages?: {
|
|
1616
1616
|
id: string;
|
|
1617
|
+
raw?: string | undefined;
|
|
1617
1618
|
threadId?: string | undefined;
|
|
1618
1619
|
labelIds?: string[] | undefined;
|
|
1619
1620
|
snippet?: string | undefined;
|
|
@@ -1621,7 +1622,6 @@ declare const GmailResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1621
1622
|
historyId?: string | undefined;
|
|
1622
1623
|
internalDate?: string | undefined;
|
|
1623
1624
|
sizeEstimate?: number | undefined;
|
|
1624
|
-
raw?: string | undefined;
|
|
1625
1625
|
payload?: {
|
|
1626
1626
|
mimeType?: string | undefined;
|
|
1627
1627
|
headers?: {
|
|
@@ -1861,7 +1861,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
1861
1861
|
metadata_headers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1862
1862
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1863
1863
|
}, "strip", z.ZodTypeAny, {
|
|
1864
|
-
format: "minimal" | "metadata" | "
|
|
1864
|
+
format: "minimal" | "metadata" | "full" | "raw";
|
|
1865
1865
|
operation: "get_email";
|
|
1866
1866
|
message_id: string;
|
|
1867
1867
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1869,7 +1869,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
1869
1869
|
}, {
|
|
1870
1870
|
operation: "get_email";
|
|
1871
1871
|
message_id: string;
|
|
1872
|
-
format?: "minimal" | "metadata" | "
|
|
1872
|
+
format?: "minimal" | "metadata" | "full" | "raw" | undefined;
|
|
1873
1873
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1874
1874
|
metadata_headers?: string[] | undefined;
|
|
1875
1875
|
}>, z.ZodObject<{
|
|
@@ -1879,14 +1879,14 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
1879
1879
|
include_spam_trash: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1880
1880
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1881
1881
|
}, "strip", z.ZodTypeAny, {
|
|
1882
|
-
operation: "search_emails";
|
|
1883
1882
|
query: string;
|
|
1883
|
+
operation: "search_emails";
|
|
1884
1884
|
max_results: number;
|
|
1885
1885
|
include_spam_trash: boolean;
|
|
1886
1886
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1887
1887
|
}, {
|
|
1888
|
-
operation: "search_emails";
|
|
1889
1888
|
query: string;
|
|
1889
|
+
operation: "search_emails";
|
|
1890
1890
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1891
1891
|
max_results?: number | undefined;
|
|
1892
1892
|
include_spam_trash?: boolean | undefined;
|
|
@@ -2197,6 +2197,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2197
2197
|
}>>;
|
|
2198
2198
|
}, "strip", z.ZodTypeAny, {
|
|
2199
2199
|
id: string;
|
|
2200
|
+
raw?: string | undefined;
|
|
2200
2201
|
threadId?: string | undefined;
|
|
2201
2202
|
labelIds?: string[] | undefined;
|
|
2202
2203
|
snippet?: string | undefined;
|
|
@@ -2204,7 +2205,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2204
2205
|
historyId?: string | undefined;
|
|
2205
2206
|
internalDate?: string | undefined;
|
|
2206
2207
|
sizeEstimate?: number | undefined;
|
|
2207
|
-
raw?: string | undefined;
|
|
2208
2208
|
payload?: {
|
|
2209
2209
|
mimeType?: string | undefined;
|
|
2210
2210
|
headers?: {
|
|
@@ -2220,6 +2220,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2220
2220
|
} | undefined;
|
|
2221
2221
|
}, {
|
|
2222
2222
|
id: string;
|
|
2223
|
+
raw?: string | undefined;
|
|
2223
2224
|
threadId?: string | undefined;
|
|
2224
2225
|
labelIds?: string[] | undefined;
|
|
2225
2226
|
snippet?: string | undefined;
|
|
@@ -2227,7 +2228,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2227
2228
|
historyId?: string | undefined;
|
|
2228
2229
|
internalDate?: string | undefined;
|
|
2229
2230
|
sizeEstimate?: number | undefined;
|
|
2230
|
-
raw?: string | undefined;
|
|
2231
2231
|
payload?: {
|
|
2232
2232
|
mimeType?: string | undefined;
|
|
2233
2233
|
headers?: {
|
|
@@ -2251,6 +2251,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2251
2251
|
operation: "list_emails";
|
|
2252
2252
|
messages?: {
|
|
2253
2253
|
id: string;
|
|
2254
|
+
raw?: string | undefined;
|
|
2254
2255
|
threadId?: string | undefined;
|
|
2255
2256
|
labelIds?: string[] | undefined;
|
|
2256
2257
|
snippet?: string | undefined;
|
|
@@ -2258,7 +2259,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2258
2259
|
historyId?: string | undefined;
|
|
2259
2260
|
internalDate?: string | undefined;
|
|
2260
2261
|
sizeEstimate?: number | undefined;
|
|
2261
|
-
raw?: string | undefined;
|
|
2262
2262
|
payload?: {
|
|
2263
2263
|
mimeType?: string | undefined;
|
|
2264
2264
|
headers?: {
|
|
@@ -2281,6 +2281,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2281
2281
|
operation: "list_emails";
|
|
2282
2282
|
messages?: {
|
|
2283
2283
|
id: string;
|
|
2284
|
+
raw?: string | undefined;
|
|
2284
2285
|
threadId?: string | undefined;
|
|
2285
2286
|
labelIds?: string[] | undefined;
|
|
2286
2287
|
snippet?: string | undefined;
|
|
@@ -2288,7 +2289,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2288
2289
|
historyId?: string | undefined;
|
|
2289
2290
|
internalDate?: string | undefined;
|
|
2290
2291
|
sizeEstimate?: number | undefined;
|
|
2291
|
-
raw?: string | undefined;
|
|
2292
2292
|
payload?: {
|
|
2293
2293
|
mimeType?: string | undefined;
|
|
2294
2294
|
headers?: {
|
|
@@ -2371,6 +2371,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2371
2371
|
}>>;
|
|
2372
2372
|
}, "strip", z.ZodTypeAny, {
|
|
2373
2373
|
id: string;
|
|
2374
|
+
raw?: string | undefined;
|
|
2374
2375
|
threadId?: string | undefined;
|
|
2375
2376
|
labelIds?: string[] | undefined;
|
|
2376
2377
|
snippet?: string | undefined;
|
|
@@ -2378,7 +2379,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2378
2379
|
historyId?: string | undefined;
|
|
2379
2380
|
internalDate?: string | undefined;
|
|
2380
2381
|
sizeEstimate?: number | undefined;
|
|
2381
|
-
raw?: string | undefined;
|
|
2382
2382
|
payload?: {
|
|
2383
2383
|
mimeType?: string | undefined;
|
|
2384
2384
|
headers?: {
|
|
@@ -2394,6 +2394,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2394
2394
|
} | undefined;
|
|
2395
2395
|
}, {
|
|
2396
2396
|
id: string;
|
|
2397
|
+
raw?: string | undefined;
|
|
2397
2398
|
threadId?: string | undefined;
|
|
2398
2399
|
labelIds?: string[] | undefined;
|
|
2399
2400
|
snippet?: string | undefined;
|
|
@@ -2401,7 +2402,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2401
2402
|
historyId?: string | undefined;
|
|
2402
2403
|
internalDate?: string | undefined;
|
|
2403
2404
|
sizeEstimate?: number | undefined;
|
|
2404
|
-
raw?: string | undefined;
|
|
2405
2405
|
payload?: {
|
|
2406
2406
|
mimeType?: string | undefined;
|
|
2407
2407
|
headers?: {
|
|
@@ -2423,6 +2423,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2423
2423
|
operation: "get_email";
|
|
2424
2424
|
message?: {
|
|
2425
2425
|
id: string;
|
|
2426
|
+
raw?: string | undefined;
|
|
2426
2427
|
threadId?: string | undefined;
|
|
2427
2428
|
labelIds?: string[] | undefined;
|
|
2428
2429
|
snippet?: string | undefined;
|
|
@@ -2430,7 +2431,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2430
2431
|
historyId?: string | undefined;
|
|
2431
2432
|
internalDate?: string | undefined;
|
|
2432
2433
|
sizeEstimate?: number | undefined;
|
|
2433
|
-
raw?: string | undefined;
|
|
2434
2434
|
payload?: {
|
|
2435
2435
|
mimeType?: string | undefined;
|
|
2436
2436
|
headers?: {
|
|
@@ -2451,6 +2451,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2451
2451
|
operation: "get_email";
|
|
2452
2452
|
message?: {
|
|
2453
2453
|
id: string;
|
|
2454
|
+
raw?: string | undefined;
|
|
2454
2455
|
threadId?: string | undefined;
|
|
2455
2456
|
labelIds?: string[] | undefined;
|
|
2456
2457
|
snippet?: string | undefined;
|
|
@@ -2458,7 +2459,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2458
2459
|
historyId?: string | undefined;
|
|
2459
2460
|
internalDate?: string | undefined;
|
|
2460
2461
|
sizeEstimate?: number | undefined;
|
|
2461
|
-
raw?: string | undefined;
|
|
2462
2462
|
payload?: {
|
|
2463
2463
|
mimeType?: string | undefined;
|
|
2464
2464
|
headers?: {
|
|
@@ -2539,6 +2539,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2539
2539
|
}>>;
|
|
2540
2540
|
}, "strip", z.ZodTypeAny, {
|
|
2541
2541
|
id: string;
|
|
2542
|
+
raw?: string | undefined;
|
|
2542
2543
|
threadId?: string | undefined;
|
|
2543
2544
|
labelIds?: string[] | undefined;
|
|
2544
2545
|
snippet?: string | undefined;
|
|
@@ -2546,7 +2547,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2546
2547
|
historyId?: string | undefined;
|
|
2547
2548
|
internalDate?: string | undefined;
|
|
2548
2549
|
sizeEstimate?: number | undefined;
|
|
2549
|
-
raw?: string | undefined;
|
|
2550
2550
|
payload?: {
|
|
2551
2551
|
mimeType?: string | undefined;
|
|
2552
2552
|
headers?: {
|
|
@@ -2562,6 +2562,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2562
2562
|
} | undefined;
|
|
2563
2563
|
}, {
|
|
2564
2564
|
id: string;
|
|
2565
|
+
raw?: string | undefined;
|
|
2565
2566
|
threadId?: string | undefined;
|
|
2566
2567
|
labelIds?: string[] | undefined;
|
|
2567
2568
|
snippet?: string | undefined;
|
|
@@ -2569,7 +2570,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2569
2570
|
historyId?: string | undefined;
|
|
2570
2571
|
internalDate?: string | undefined;
|
|
2571
2572
|
sizeEstimate?: number | undefined;
|
|
2572
|
-
raw?: string | undefined;
|
|
2573
2573
|
payload?: {
|
|
2574
2574
|
mimeType?: string | undefined;
|
|
2575
2575
|
headers?: {
|
|
@@ -2592,6 +2592,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2592
2592
|
operation: "search_emails";
|
|
2593
2593
|
messages?: {
|
|
2594
2594
|
id: string;
|
|
2595
|
+
raw?: string | undefined;
|
|
2595
2596
|
threadId?: string | undefined;
|
|
2596
2597
|
labelIds?: string[] | undefined;
|
|
2597
2598
|
snippet?: string | undefined;
|
|
@@ -2599,7 +2600,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2599
2600
|
historyId?: string | undefined;
|
|
2600
2601
|
internalDate?: string | undefined;
|
|
2601
2602
|
sizeEstimate?: number | undefined;
|
|
2602
|
-
raw?: string | undefined;
|
|
2603
2603
|
payload?: {
|
|
2604
2604
|
mimeType?: string | undefined;
|
|
2605
2605
|
headers?: {
|
|
@@ -2621,6 +2621,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2621
2621
|
operation: "search_emails";
|
|
2622
2622
|
messages?: {
|
|
2623
2623
|
id: string;
|
|
2624
|
+
raw?: string | undefined;
|
|
2624
2625
|
threadId?: string | undefined;
|
|
2625
2626
|
labelIds?: string[] | undefined;
|
|
2626
2627
|
snippet?: string | undefined;
|
|
@@ -2628,7 +2629,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2628
2629
|
historyId?: string | undefined;
|
|
2629
2630
|
internalDate?: string | undefined;
|
|
2630
2631
|
sizeEstimate?: number | undefined;
|
|
2631
|
-
raw?: string | undefined;
|
|
2632
2632
|
payload?: {
|
|
2633
2633
|
mimeType?: string | undefined;
|
|
2634
2634
|
headers?: {
|
|
@@ -2742,6 +2742,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2742
2742
|
}>>;
|
|
2743
2743
|
}, "strip", z.ZodTypeAny, {
|
|
2744
2744
|
id: string;
|
|
2745
|
+
raw?: string | undefined;
|
|
2745
2746
|
threadId?: string | undefined;
|
|
2746
2747
|
labelIds?: string[] | undefined;
|
|
2747
2748
|
snippet?: string | undefined;
|
|
@@ -2749,7 +2750,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2749
2750
|
historyId?: string | undefined;
|
|
2750
2751
|
internalDate?: string | undefined;
|
|
2751
2752
|
sizeEstimate?: number | undefined;
|
|
2752
|
-
raw?: string | undefined;
|
|
2753
2753
|
payload?: {
|
|
2754
2754
|
mimeType?: string | undefined;
|
|
2755
2755
|
headers?: {
|
|
@@ -2765,6 +2765,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2765
2765
|
} | undefined;
|
|
2766
2766
|
}, {
|
|
2767
2767
|
id: string;
|
|
2768
|
+
raw?: string | undefined;
|
|
2768
2769
|
threadId?: string | undefined;
|
|
2769
2770
|
labelIds?: string[] | undefined;
|
|
2770
2771
|
snippet?: string | undefined;
|
|
@@ -2772,7 +2773,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2772
2773
|
historyId?: string | undefined;
|
|
2773
2774
|
internalDate?: string | undefined;
|
|
2774
2775
|
sizeEstimate?: number | undefined;
|
|
2775
|
-
raw?: string | undefined;
|
|
2776
2776
|
payload?: {
|
|
2777
2777
|
mimeType?: string | undefined;
|
|
2778
2778
|
headers?: {
|
|
@@ -2790,6 +2790,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2790
2790
|
}, "strip", z.ZodTypeAny, {
|
|
2791
2791
|
message: {
|
|
2792
2792
|
id: string;
|
|
2793
|
+
raw?: string | undefined;
|
|
2793
2794
|
threadId?: string | undefined;
|
|
2794
2795
|
labelIds?: string[] | undefined;
|
|
2795
2796
|
snippet?: string | undefined;
|
|
@@ -2797,7 +2798,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2797
2798
|
historyId?: string | undefined;
|
|
2798
2799
|
internalDate?: string | undefined;
|
|
2799
2800
|
sizeEstimate?: number | undefined;
|
|
2800
|
-
raw?: string | undefined;
|
|
2801
2801
|
payload?: {
|
|
2802
2802
|
mimeType?: string | undefined;
|
|
2803
2803
|
headers?: {
|
|
@@ -2816,6 +2816,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2816
2816
|
}, {
|
|
2817
2817
|
message: {
|
|
2818
2818
|
id: string;
|
|
2819
|
+
raw?: string | undefined;
|
|
2819
2820
|
threadId?: string | undefined;
|
|
2820
2821
|
labelIds?: string[] | undefined;
|
|
2821
2822
|
snippet?: string | undefined;
|
|
@@ -2823,7 +2824,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2823
2824
|
historyId?: string | undefined;
|
|
2824
2825
|
internalDate?: string | undefined;
|
|
2825
2826
|
sizeEstimate?: number | undefined;
|
|
2826
|
-
raw?: string | undefined;
|
|
2827
2827
|
payload?: {
|
|
2828
2828
|
mimeType?: string | undefined;
|
|
2829
2829
|
headers?: {
|
|
@@ -2848,6 +2848,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2848
2848
|
draft?: {
|
|
2849
2849
|
message: {
|
|
2850
2850
|
id: string;
|
|
2851
|
+
raw?: string | undefined;
|
|
2851
2852
|
threadId?: string | undefined;
|
|
2852
2853
|
labelIds?: string[] | undefined;
|
|
2853
2854
|
snippet?: string | undefined;
|
|
@@ -2855,7 +2856,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2855
2856
|
historyId?: string | undefined;
|
|
2856
2857
|
internalDate?: string | undefined;
|
|
2857
2858
|
sizeEstimate?: number | undefined;
|
|
2858
|
-
raw?: string | undefined;
|
|
2859
2859
|
payload?: {
|
|
2860
2860
|
mimeType?: string | undefined;
|
|
2861
2861
|
headers?: {
|
|
@@ -2879,6 +2879,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2879
2879
|
draft?: {
|
|
2880
2880
|
message: {
|
|
2881
2881
|
id: string;
|
|
2882
|
+
raw?: string | undefined;
|
|
2882
2883
|
threadId?: string | undefined;
|
|
2883
2884
|
labelIds?: string[] | undefined;
|
|
2884
2885
|
snippet?: string | undefined;
|
|
@@ -2886,7 +2887,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2886
2887
|
historyId?: string | undefined;
|
|
2887
2888
|
internalDate?: string | undefined;
|
|
2888
2889
|
sizeEstimate?: number | undefined;
|
|
2889
|
-
raw?: string | undefined;
|
|
2890
2890
|
payload?: {
|
|
2891
2891
|
mimeType?: string | undefined;
|
|
2892
2892
|
headers?: {
|
|
@@ -2989,6 +2989,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2989
2989
|
}>>;
|
|
2990
2990
|
}, "strip", z.ZodTypeAny, {
|
|
2991
2991
|
id: string;
|
|
2992
|
+
raw?: string | undefined;
|
|
2992
2993
|
threadId?: string | undefined;
|
|
2993
2994
|
labelIds?: string[] | undefined;
|
|
2994
2995
|
snippet?: string | undefined;
|
|
@@ -2996,7 +2997,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
2996
2997
|
historyId?: string | undefined;
|
|
2997
2998
|
internalDate?: string | undefined;
|
|
2998
2999
|
sizeEstimate?: number | undefined;
|
|
2999
|
-
raw?: string | undefined;
|
|
3000
3000
|
payload?: {
|
|
3001
3001
|
mimeType?: string | undefined;
|
|
3002
3002
|
headers?: {
|
|
@@ -3012,6 +3012,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3012
3012
|
} | undefined;
|
|
3013
3013
|
}, {
|
|
3014
3014
|
id: string;
|
|
3015
|
+
raw?: string | undefined;
|
|
3015
3016
|
threadId?: string | undefined;
|
|
3016
3017
|
labelIds?: string[] | undefined;
|
|
3017
3018
|
snippet?: string | undefined;
|
|
@@ -3019,7 +3020,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3019
3020
|
historyId?: string | undefined;
|
|
3020
3021
|
internalDate?: string | undefined;
|
|
3021
3022
|
sizeEstimate?: number | undefined;
|
|
3022
|
-
raw?: string | undefined;
|
|
3023
3023
|
payload?: {
|
|
3024
3024
|
mimeType?: string | undefined;
|
|
3025
3025
|
headers?: {
|
|
@@ -3037,6 +3037,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3037
3037
|
}, "strip", z.ZodTypeAny, {
|
|
3038
3038
|
message: {
|
|
3039
3039
|
id: string;
|
|
3040
|
+
raw?: string | undefined;
|
|
3040
3041
|
threadId?: string | undefined;
|
|
3041
3042
|
labelIds?: string[] | undefined;
|
|
3042
3043
|
snippet?: string | undefined;
|
|
@@ -3044,7 +3045,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3044
3045
|
historyId?: string | undefined;
|
|
3045
3046
|
internalDate?: string | undefined;
|
|
3046
3047
|
sizeEstimate?: number | undefined;
|
|
3047
|
-
raw?: string | undefined;
|
|
3048
3048
|
payload?: {
|
|
3049
3049
|
mimeType?: string | undefined;
|
|
3050
3050
|
headers?: {
|
|
@@ -3063,6 +3063,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3063
3063
|
}, {
|
|
3064
3064
|
message: {
|
|
3065
3065
|
id: string;
|
|
3066
|
+
raw?: string | undefined;
|
|
3066
3067
|
threadId?: string | undefined;
|
|
3067
3068
|
labelIds?: string[] | undefined;
|
|
3068
3069
|
snippet?: string | undefined;
|
|
@@ -3070,7 +3071,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3070
3071
|
historyId?: string | undefined;
|
|
3071
3072
|
internalDate?: string | undefined;
|
|
3072
3073
|
sizeEstimate?: number | undefined;
|
|
3073
|
-
raw?: string | undefined;
|
|
3074
3074
|
payload?: {
|
|
3075
3075
|
mimeType?: string | undefined;
|
|
3076
3076
|
headers?: {
|
|
@@ -3099,6 +3099,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3099
3099
|
drafts?: {
|
|
3100
3100
|
message: {
|
|
3101
3101
|
id: string;
|
|
3102
|
+
raw?: string | undefined;
|
|
3102
3103
|
threadId?: string | undefined;
|
|
3103
3104
|
labelIds?: string[] | undefined;
|
|
3104
3105
|
snippet?: string | undefined;
|
|
@@ -3106,7 +3107,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3106
3107
|
historyId?: string | undefined;
|
|
3107
3108
|
internalDate?: string | undefined;
|
|
3108
3109
|
sizeEstimate?: number | undefined;
|
|
3109
|
-
raw?: string | undefined;
|
|
3110
3110
|
payload?: {
|
|
3111
3111
|
mimeType?: string | undefined;
|
|
3112
3112
|
headers?: {
|
|
@@ -3132,6 +3132,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3132
3132
|
drafts?: {
|
|
3133
3133
|
message: {
|
|
3134
3134
|
id: string;
|
|
3135
|
+
raw?: string | undefined;
|
|
3135
3136
|
threadId?: string | undefined;
|
|
3136
3137
|
labelIds?: string[] | undefined;
|
|
3137
3138
|
snippet?: string | undefined;
|
|
@@ -3139,7 +3140,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3139
3140
|
historyId?: string | undefined;
|
|
3140
3141
|
internalDate?: string | undefined;
|
|
3141
3142
|
sizeEstimate?: number | undefined;
|
|
3142
|
-
raw?: string | undefined;
|
|
3143
3143
|
payload?: {
|
|
3144
3144
|
mimeType?: string | undefined;
|
|
3145
3145
|
headers?: {
|
|
@@ -3255,6 +3255,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3255
3255
|
}>>;
|
|
3256
3256
|
}, "strip", z.ZodTypeAny, {
|
|
3257
3257
|
id: string;
|
|
3258
|
+
raw?: string | undefined;
|
|
3258
3259
|
threadId?: string | undefined;
|
|
3259
3260
|
labelIds?: string[] | undefined;
|
|
3260
3261
|
snippet?: string | undefined;
|
|
@@ -3262,7 +3263,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3262
3263
|
historyId?: string | undefined;
|
|
3263
3264
|
internalDate?: string | undefined;
|
|
3264
3265
|
sizeEstimate?: number | undefined;
|
|
3265
|
-
raw?: string | undefined;
|
|
3266
3266
|
payload?: {
|
|
3267
3267
|
mimeType?: string | undefined;
|
|
3268
3268
|
headers?: {
|
|
@@ -3278,6 +3278,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3278
3278
|
} | undefined;
|
|
3279
3279
|
}, {
|
|
3280
3280
|
id: string;
|
|
3281
|
+
raw?: string | undefined;
|
|
3281
3282
|
threadId?: string | undefined;
|
|
3282
3283
|
labelIds?: string[] | undefined;
|
|
3283
3284
|
snippet?: string | undefined;
|
|
@@ -3285,7 +3286,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3285
3286
|
historyId?: string | undefined;
|
|
3286
3287
|
internalDate?: string | undefined;
|
|
3287
3288
|
sizeEstimate?: number | undefined;
|
|
3288
|
-
raw?: string | undefined;
|
|
3289
3289
|
payload?: {
|
|
3290
3290
|
mimeType?: string | undefined;
|
|
3291
3291
|
headers?: {
|
|
@@ -3305,6 +3305,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3305
3305
|
id: string;
|
|
3306
3306
|
messages?: {
|
|
3307
3307
|
id: string;
|
|
3308
|
+
raw?: string | undefined;
|
|
3308
3309
|
threadId?: string | undefined;
|
|
3309
3310
|
labelIds?: string[] | undefined;
|
|
3310
3311
|
snippet?: string | undefined;
|
|
@@ -3312,7 +3313,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3312
3313
|
historyId?: string | undefined;
|
|
3313
3314
|
internalDate?: string | undefined;
|
|
3314
3315
|
sizeEstimate?: number | undefined;
|
|
3315
|
-
raw?: string | undefined;
|
|
3316
3316
|
payload?: {
|
|
3317
3317
|
mimeType?: string | undefined;
|
|
3318
3318
|
headers?: {
|
|
@@ -3333,6 +3333,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3333
3333
|
id: string;
|
|
3334
3334
|
messages?: {
|
|
3335
3335
|
id: string;
|
|
3336
|
+
raw?: string | undefined;
|
|
3336
3337
|
threadId?: string | undefined;
|
|
3337
3338
|
labelIds?: string[] | undefined;
|
|
3338
3339
|
snippet?: string | undefined;
|
|
@@ -3340,7 +3341,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3340
3341
|
historyId?: string | undefined;
|
|
3341
3342
|
internalDate?: string | undefined;
|
|
3342
3343
|
sizeEstimate?: number | undefined;
|
|
3343
|
-
raw?: string | undefined;
|
|
3344
3344
|
payload?: {
|
|
3345
3345
|
mimeType?: string | undefined;
|
|
3346
3346
|
headers?: {
|
|
@@ -3371,6 +3371,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3371
3371
|
id: string;
|
|
3372
3372
|
messages?: {
|
|
3373
3373
|
id: string;
|
|
3374
|
+
raw?: string | undefined;
|
|
3374
3375
|
threadId?: string | undefined;
|
|
3375
3376
|
labelIds?: string[] | undefined;
|
|
3376
3377
|
snippet?: string | undefined;
|
|
@@ -3378,7 +3379,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3378
3379
|
historyId?: string | undefined;
|
|
3379
3380
|
internalDate?: string | undefined;
|
|
3380
3381
|
sizeEstimate?: number | undefined;
|
|
3381
|
-
raw?: string | undefined;
|
|
3382
3382
|
payload?: {
|
|
3383
3383
|
mimeType?: string | undefined;
|
|
3384
3384
|
headers?: {
|
|
@@ -3406,6 +3406,7 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3406
3406
|
id: string;
|
|
3407
3407
|
messages?: {
|
|
3408
3408
|
id: string;
|
|
3409
|
+
raw?: string | undefined;
|
|
3409
3410
|
threadId?: string | undefined;
|
|
3410
3411
|
labelIds?: string[] | undefined;
|
|
3411
3412
|
snippet?: string | undefined;
|
|
@@ -3413,7 +3414,6 @@ export declare class GmailBubble<T extends GmailParams = GmailParams> extends Se
|
|
|
3413
3414
|
historyId?: string | undefined;
|
|
3414
3415
|
internalDate?: string | undefined;
|
|
3415
3416
|
sizeEstimate?: number | undefined;
|
|
3416
|
-
raw?: string | undefined;
|
|
3417
3417
|
payload?: {
|
|
3418
3418
|
mimeType?: string | undefined;
|
|
3419
3419
|
headers?: {
|