@marcoappio/marco-config 2.0.447 → 2.0.449
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/zero/index.d.ts +359 -37
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.js +35 -17
- package/dist/zero/mutators/threadMutators/threadMutators.test.js +79 -12
- package/dist/zero/queries/getAccounts.d.ts +54 -6
- package/dist/zero/queries/getAccounts.d.ts.map +1 -1
- package/dist/zero/queries/getContacts.d.ts +54 -6
- package/dist/zero/queries/getContacts.d.ts.map +1 -1
- package/dist/zero/queries/getDrafts.d.ts +54 -6
- package/dist/zero/queries/getDrafts.d.ts.map +1 -1
- package/dist/zero/queries/getThreads.d.ts +57 -6
- package/dist/zero/queries/getThreads.d.ts.map +1 -1
- package/dist/zero/queries/getUser.d.ts +54 -6
- package/dist/zero/queries/getUser.d.ts.map +1 -1
- package/dist/zero/queries/index.d.ts +54 -6
- package/dist/zero/queries/index.d.ts.map +1 -1
- package/dist/zero/schema.d.ts +86 -7
- package/dist/zero/schema.d.ts.map +1 -1
- package/dist/zero/schema.js +20 -1
- package/package.json +1 -1
package/dist/zero/index.d.ts
CHANGED
|
@@ -820,6 +820,13 @@ export declare const marcoZero: {
|
|
|
820
820
|
readonly threadLabel: {
|
|
821
821
|
name: "threadLabel";
|
|
822
822
|
columns: {
|
|
823
|
+
readonly accountId: {
|
|
824
|
+
type: "string";
|
|
825
|
+
optional: false;
|
|
826
|
+
customType: string;
|
|
827
|
+
} & {
|
|
828
|
+
serverName: string;
|
|
829
|
+
};
|
|
823
830
|
readonly labelId: {
|
|
824
831
|
type: "string";
|
|
825
832
|
optional: false;
|
|
@@ -834,14 +841,28 @@ export declare const marcoZero: {
|
|
|
834
841
|
} & {
|
|
835
842
|
serverName: string;
|
|
836
843
|
};
|
|
844
|
+
readonly threadMessageId: {
|
|
845
|
+
type: "string";
|
|
846
|
+
optional: false;
|
|
847
|
+
customType: string;
|
|
848
|
+
} & {
|
|
849
|
+
serverName: string;
|
|
850
|
+
};
|
|
837
851
|
};
|
|
838
852
|
primaryKey: readonly [string, ...string[]];
|
|
839
853
|
} & {
|
|
840
|
-
primaryKey: ["
|
|
854
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
841
855
|
};
|
|
842
856
|
readonly threadMessage: {
|
|
843
857
|
name: "threadMessage";
|
|
844
858
|
columns: {
|
|
859
|
+
readonly accountId: {
|
|
860
|
+
type: "string";
|
|
861
|
+
optional: false;
|
|
862
|
+
customType: string;
|
|
863
|
+
} & {
|
|
864
|
+
serverName: string;
|
|
865
|
+
};
|
|
845
866
|
readonly envelopeDate: {
|
|
846
867
|
type: "number";
|
|
847
868
|
optional: false;
|
|
@@ -858,6 +879,11 @@ export declare const marcoZero: {
|
|
|
858
879
|
} & {
|
|
859
880
|
serverName: string;
|
|
860
881
|
};
|
|
882
|
+
readonly flagged: {
|
|
883
|
+
type: "boolean";
|
|
884
|
+
optional: false;
|
|
885
|
+
customType: boolean;
|
|
886
|
+
};
|
|
861
887
|
readonly id: {
|
|
862
888
|
type: "string";
|
|
863
889
|
optional: false;
|
|
@@ -870,6 +896,11 @@ export declare const marcoZero: {
|
|
|
870
896
|
} & {
|
|
871
897
|
serverName: string;
|
|
872
898
|
};
|
|
899
|
+
readonly seen: {
|
|
900
|
+
type: "boolean";
|
|
901
|
+
optional: false;
|
|
902
|
+
customType: boolean;
|
|
903
|
+
};
|
|
873
904
|
readonly senderEmail: {
|
|
874
905
|
type: "string";
|
|
875
906
|
optional: false;
|
|
@@ -1086,7 +1117,7 @@ export declare const marcoZero: {
|
|
|
1086
1117
|
}];
|
|
1087
1118
|
threads: [{
|
|
1088
1119
|
readonly sourceField: string[];
|
|
1089
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
1120
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
1090
1121
|
readonly destSchema: "threadLabel";
|
|
1091
1122
|
readonly cardinality: "many";
|
|
1092
1123
|
}, {
|
|
@@ -1147,7 +1178,7 @@ export declare const marcoZero: {
|
|
|
1147
1178
|
}];
|
|
1148
1179
|
labels: [{
|
|
1149
1180
|
readonly sourceField: string[];
|
|
1150
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
1181
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
1151
1182
|
readonly destSchema: "threadLabel";
|
|
1152
1183
|
readonly cardinality: "many";
|
|
1153
1184
|
}, {
|
|
@@ -1158,7 +1189,7 @@ export declare const marcoZero: {
|
|
|
1158
1189
|
}];
|
|
1159
1190
|
messages: [{
|
|
1160
1191
|
readonly sourceField: string[];
|
|
1161
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1192
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1162
1193
|
readonly destSchema: "threadMessage";
|
|
1163
1194
|
readonly cardinality: "many";
|
|
1164
1195
|
}];
|
|
@@ -1176,6 +1207,12 @@ export declare const marcoZero: {
|
|
|
1176
1207
|
readonly destSchema: "accountLabel";
|
|
1177
1208
|
readonly cardinality: "one";
|
|
1178
1209
|
}];
|
|
1210
|
+
message: [{
|
|
1211
|
+
readonly sourceField: string[];
|
|
1212
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1213
|
+
readonly destSchema: "threadMessage";
|
|
1214
|
+
readonly cardinality: "one";
|
|
1215
|
+
}];
|
|
1179
1216
|
thread: [{
|
|
1180
1217
|
readonly sourceField: string[];
|
|
1181
1218
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -1190,6 +1227,17 @@ export declare const marcoZero: {
|
|
|
1190
1227
|
readonly destSchema: "threadMessageAttachment";
|
|
1191
1228
|
readonly cardinality: "many";
|
|
1192
1229
|
}];
|
|
1230
|
+
labels: [{
|
|
1231
|
+
readonly sourceField: string[];
|
|
1232
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
1233
|
+
readonly destSchema: "threadLabel";
|
|
1234
|
+
readonly cardinality: "many";
|
|
1235
|
+
}, {
|
|
1236
|
+
readonly sourceField: string[];
|
|
1237
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
1238
|
+
readonly destSchema: "accountLabel";
|
|
1239
|
+
readonly cardinality: "many";
|
|
1240
|
+
}];
|
|
1193
1241
|
recipients: [{
|
|
1194
1242
|
readonly sourceField: string[];
|
|
1195
1243
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -1206,7 +1254,7 @@ export declare const marcoZero: {
|
|
|
1206
1254
|
readonly threadMessageRecipient: {
|
|
1207
1255
|
message: [{
|
|
1208
1256
|
readonly sourceField: string[];
|
|
1209
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1257
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1210
1258
|
readonly destSchema: "threadMessage";
|
|
1211
1259
|
readonly cardinality: "one";
|
|
1212
1260
|
}];
|
|
@@ -1214,7 +1262,7 @@ export declare const marcoZero: {
|
|
|
1214
1262
|
readonly threadMessageAttachment: {
|
|
1215
1263
|
message: [{
|
|
1216
1264
|
readonly sourceField: string[];
|
|
1217
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1265
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1218
1266
|
readonly destSchema: "threadMessage";
|
|
1219
1267
|
readonly cardinality: "one";
|
|
1220
1268
|
}];
|
|
@@ -1761,6 +1809,13 @@ export declare const marcoZero: {
|
|
|
1761
1809
|
readonly threadLabel: {
|
|
1762
1810
|
name: "threadLabel";
|
|
1763
1811
|
columns: {
|
|
1812
|
+
readonly accountId: {
|
|
1813
|
+
type: "string";
|
|
1814
|
+
optional: false;
|
|
1815
|
+
customType: string;
|
|
1816
|
+
} & {
|
|
1817
|
+
serverName: string;
|
|
1818
|
+
};
|
|
1764
1819
|
readonly labelId: {
|
|
1765
1820
|
type: "string";
|
|
1766
1821
|
optional: false;
|
|
@@ -1775,14 +1830,28 @@ export declare const marcoZero: {
|
|
|
1775
1830
|
} & {
|
|
1776
1831
|
serverName: string;
|
|
1777
1832
|
};
|
|
1833
|
+
readonly threadMessageId: {
|
|
1834
|
+
type: "string";
|
|
1835
|
+
optional: false;
|
|
1836
|
+
customType: string;
|
|
1837
|
+
} & {
|
|
1838
|
+
serverName: string;
|
|
1839
|
+
};
|
|
1778
1840
|
};
|
|
1779
1841
|
primaryKey: readonly [string, ...string[]];
|
|
1780
1842
|
} & {
|
|
1781
|
-
primaryKey: ["
|
|
1843
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
1782
1844
|
};
|
|
1783
1845
|
readonly threadMessage: {
|
|
1784
1846
|
name: "threadMessage";
|
|
1785
1847
|
columns: {
|
|
1848
|
+
readonly accountId: {
|
|
1849
|
+
type: "string";
|
|
1850
|
+
optional: false;
|
|
1851
|
+
customType: string;
|
|
1852
|
+
} & {
|
|
1853
|
+
serverName: string;
|
|
1854
|
+
};
|
|
1786
1855
|
readonly envelopeDate: {
|
|
1787
1856
|
type: "number";
|
|
1788
1857
|
optional: false;
|
|
@@ -1799,6 +1868,11 @@ export declare const marcoZero: {
|
|
|
1799
1868
|
} & {
|
|
1800
1869
|
serverName: string;
|
|
1801
1870
|
};
|
|
1871
|
+
readonly flagged: {
|
|
1872
|
+
type: "boolean";
|
|
1873
|
+
optional: false;
|
|
1874
|
+
customType: boolean;
|
|
1875
|
+
};
|
|
1802
1876
|
readonly id: {
|
|
1803
1877
|
type: "string";
|
|
1804
1878
|
optional: false;
|
|
@@ -1811,6 +1885,11 @@ export declare const marcoZero: {
|
|
|
1811
1885
|
} & {
|
|
1812
1886
|
serverName: string;
|
|
1813
1887
|
};
|
|
1888
|
+
readonly seen: {
|
|
1889
|
+
type: "boolean";
|
|
1890
|
+
optional: false;
|
|
1891
|
+
customType: boolean;
|
|
1892
|
+
};
|
|
1814
1893
|
readonly senderEmail: {
|
|
1815
1894
|
type: "string";
|
|
1816
1895
|
optional: false;
|
|
@@ -2027,7 +2106,7 @@ export declare const marcoZero: {
|
|
|
2027
2106
|
}];
|
|
2028
2107
|
threads: [{
|
|
2029
2108
|
readonly sourceField: string[];
|
|
2030
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
2109
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
2031
2110
|
readonly destSchema: "threadLabel";
|
|
2032
2111
|
readonly cardinality: "many";
|
|
2033
2112
|
}, {
|
|
@@ -2088,7 +2167,7 @@ export declare const marcoZero: {
|
|
|
2088
2167
|
}];
|
|
2089
2168
|
labels: [{
|
|
2090
2169
|
readonly sourceField: string[];
|
|
2091
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
2170
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
2092
2171
|
readonly destSchema: "threadLabel";
|
|
2093
2172
|
readonly cardinality: "many";
|
|
2094
2173
|
}, {
|
|
@@ -2099,7 +2178,7 @@ export declare const marcoZero: {
|
|
|
2099
2178
|
}];
|
|
2100
2179
|
messages: [{
|
|
2101
2180
|
readonly sourceField: string[];
|
|
2102
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2181
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2103
2182
|
readonly destSchema: "threadMessage";
|
|
2104
2183
|
readonly cardinality: "many";
|
|
2105
2184
|
}];
|
|
@@ -2117,6 +2196,12 @@ export declare const marcoZero: {
|
|
|
2117
2196
|
readonly destSchema: "accountLabel";
|
|
2118
2197
|
readonly cardinality: "one";
|
|
2119
2198
|
}];
|
|
2199
|
+
message: [{
|
|
2200
|
+
readonly sourceField: string[];
|
|
2201
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2202
|
+
readonly destSchema: "threadMessage";
|
|
2203
|
+
readonly cardinality: "one";
|
|
2204
|
+
}];
|
|
2120
2205
|
thread: [{
|
|
2121
2206
|
readonly sourceField: string[];
|
|
2122
2207
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -2131,6 +2216,17 @@ export declare const marcoZero: {
|
|
|
2131
2216
|
readonly destSchema: "threadMessageAttachment";
|
|
2132
2217
|
readonly cardinality: "many";
|
|
2133
2218
|
}];
|
|
2219
|
+
labels: [{
|
|
2220
|
+
readonly sourceField: string[];
|
|
2221
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
2222
|
+
readonly destSchema: "threadLabel";
|
|
2223
|
+
readonly cardinality: "many";
|
|
2224
|
+
}, {
|
|
2225
|
+
readonly sourceField: string[];
|
|
2226
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
2227
|
+
readonly destSchema: "accountLabel";
|
|
2228
|
+
readonly cardinality: "many";
|
|
2229
|
+
}];
|
|
2134
2230
|
recipients: [{
|
|
2135
2231
|
readonly sourceField: string[];
|
|
2136
2232
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -2147,7 +2243,7 @@ export declare const marcoZero: {
|
|
|
2147
2243
|
readonly threadMessageRecipient: {
|
|
2148
2244
|
message: [{
|
|
2149
2245
|
readonly sourceField: string[];
|
|
2150
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2246
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2151
2247
|
readonly destSchema: "threadMessage";
|
|
2152
2248
|
readonly cardinality: "one";
|
|
2153
2249
|
}];
|
|
@@ -2155,7 +2251,7 @@ export declare const marcoZero: {
|
|
|
2155
2251
|
readonly threadMessageAttachment: {
|
|
2156
2252
|
message: [{
|
|
2157
2253
|
readonly sourceField: string[];
|
|
2158
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2254
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2159
2255
|
readonly destSchema: "threadMessage";
|
|
2160
2256
|
readonly cardinality: "one";
|
|
2161
2257
|
}];
|
|
@@ -2671,6 +2767,13 @@ export declare const marcoZero: {
|
|
|
2671
2767
|
readonly threadLabel: {
|
|
2672
2768
|
name: "threadLabel";
|
|
2673
2769
|
columns: {
|
|
2770
|
+
readonly accountId: {
|
|
2771
|
+
type: "string";
|
|
2772
|
+
optional: false;
|
|
2773
|
+
customType: string;
|
|
2774
|
+
} & {
|
|
2775
|
+
serverName: string;
|
|
2776
|
+
};
|
|
2674
2777
|
readonly labelId: {
|
|
2675
2778
|
type: "string";
|
|
2676
2779
|
optional: false;
|
|
@@ -2685,14 +2788,28 @@ export declare const marcoZero: {
|
|
|
2685
2788
|
} & {
|
|
2686
2789
|
serverName: string;
|
|
2687
2790
|
};
|
|
2791
|
+
readonly threadMessageId: {
|
|
2792
|
+
type: "string";
|
|
2793
|
+
optional: false;
|
|
2794
|
+
customType: string;
|
|
2795
|
+
} & {
|
|
2796
|
+
serverName: string;
|
|
2797
|
+
};
|
|
2688
2798
|
};
|
|
2689
2799
|
primaryKey: readonly [string, ...string[]];
|
|
2690
2800
|
} & {
|
|
2691
|
-
primaryKey: ["
|
|
2801
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
2692
2802
|
};
|
|
2693
2803
|
readonly threadMessage: {
|
|
2694
2804
|
name: "threadMessage";
|
|
2695
2805
|
columns: {
|
|
2806
|
+
readonly accountId: {
|
|
2807
|
+
type: "string";
|
|
2808
|
+
optional: false;
|
|
2809
|
+
customType: string;
|
|
2810
|
+
} & {
|
|
2811
|
+
serverName: string;
|
|
2812
|
+
};
|
|
2696
2813
|
readonly envelopeDate: {
|
|
2697
2814
|
type: "number";
|
|
2698
2815
|
optional: false;
|
|
@@ -2709,6 +2826,11 @@ export declare const marcoZero: {
|
|
|
2709
2826
|
} & {
|
|
2710
2827
|
serverName: string;
|
|
2711
2828
|
};
|
|
2829
|
+
readonly flagged: {
|
|
2830
|
+
type: "boolean";
|
|
2831
|
+
optional: false;
|
|
2832
|
+
customType: boolean;
|
|
2833
|
+
};
|
|
2712
2834
|
readonly id: {
|
|
2713
2835
|
type: "string";
|
|
2714
2836
|
optional: false;
|
|
@@ -2721,6 +2843,11 @@ export declare const marcoZero: {
|
|
|
2721
2843
|
} & {
|
|
2722
2844
|
serverName: string;
|
|
2723
2845
|
};
|
|
2846
|
+
readonly seen: {
|
|
2847
|
+
type: "boolean";
|
|
2848
|
+
optional: false;
|
|
2849
|
+
customType: boolean;
|
|
2850
|
+
};
|
|
2724
2851
|
readonly senderEmail: {
|
|
2725
2852
|
type: "string";
|
|
2726
2853
|
optional: false;
|
|
@@ -2937,7 +3064,7 @@ export declare const marcoZero: {
|
|
|
2937
3064
|
}];
|
|
2938
3065
|
threads: [{
|
|
2939
3066
|
readonly sourceField: string[];
|
|
2940
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
3067
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
2941
3068
|
readonly destSchema: "threadLabel";
|
|
2942
3069
|
readonly cardinality: "many";
|
|
2943
3070
|
}, {
|
|
@@ -2998,7 +3125,7 @@ export declare const marcoZero: {
|
|
|
2998
3125
|
}];
|
|
2999
3126
|
labels: [{
|
|
3000
3127
|
readonly sourceField: string[];
|
|
3001
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
3128
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
3002
3129
|
readonly destSchema: "threadLabel";
|
|
3003
3130
|
readonly cardinality: "many";
|
|
3004
3131
|
}, {
|
|
@@ -3009,7 +3136,7 @@ export declare const marcoZero: {
|
|
|
3009
3136
|
}];
|
|
3010
3137
|
messages: [{
|
|
3011
3138
|
readonly sourceField: string[];
|
|
3012
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3139
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3013
3140
|
readonly destSchema: "threadMessage";
|
|
3014
3141
|
readonly cardinality: "many";
|
|
3015
3142
|
}];
|
|
@@ -3027,6 +3154,12 @@ export declare const marcoZero: {
|
|
|
3027
3154
|
readonly destSchema: "accountLabel";
|
|
3028
3155
|
readonly cardinality: "one";
|
|
3029
3156
|
}];
|
|
3157
|
+
message: [{
|
|
3158
|
+
readonly sourceField: string[];
|
|
3159
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3160
|
+
readonly destSchema: "threadMessage";
|
|
3161
|
+
readonly cardinality: "one";
|
|
3162
|
+
}];
|
|
3030
3163
|
thread: [{
|
|
3031
3164
|
readonly sourceField: string[];
|
|
3032
3165
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -3041,6 +3174,17 @@ export declare const marcoZero: {
|
|
|
3041
3174
|
readonly destSchema: "threadMessageAttachment";
|
|
3042
3175
|
readonly cardinality: "many";
|
|
3043
3176
|
}];
|
|
3177
|
+
labels: [{
|
|
3178
|
+
readonly sourceField: string[];
|
|
3179
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
3180
|
+
readonly destSchema: "threadLabel";
|
|
3181
|
+
readonly cardinality: "many";
|
|
3182
|
+
}, {
|
|
3183
|
+
readonly sourceField: string[];
|
|
3184
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
3185
|
+
readonly destSchema: "accountLabel";
|
|
3186
|
+
readonly cardinality: "many";
|
|
3187
|
+
}];
|
|
3044
3188
|
recipients: [{
|
|
3045
3189
|
readonly sourceField: string[];
|
|
3046
3190
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -3057,7 +3201,7 @@ export declare const marcoZero: {
|
|
|
3057
3201
|
readonly threadMessageRecipient: {
|
|
3058
3202
|
message: [{
|
|
3059
3203
|
readonly sourceField: string[];
|
|
3060
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3204
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3061
3205
|
readonly destSchema: "threadMessage";
|
|
3062
3206
|
readonly cardinality: "one";
|
|
3063
3207
|
}];
|
|
@@ -3065,7 +3209,7 @@ export declare const marcoZero: {
|
|
|
3065
3209
|
readonly threadMessageAttachment: {
|
|
3066
3210
|
message: [{
|
|
3067
3211
|
readonly sourceField: string[];
|
|
3068
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3212
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3069
3213
|
readonly destSchema: "threadMessage";
|
|
3070
3214
|
readonly cardinality: "one";
|
|
3071
3215
|
}];
|
|
@@ -3621,6 +3765,13 @@ export declare const marcoZero: {
|
|
|
3621
3765
|
readonly threadLabel: {
|
|
3622
3766
|
name: "threadLabel";
|
|
3623
3767
|
columns: {
|
|
3768
|
+
readonly accountId: {
|
|
3769
|
+
type: "string";
|
|
3770
|
+
optional: false;
|
|
3771
|
+
customType: string;
|
|
3772
|
+
} & {
|
|
3773
|
+
serverName: string;
|
|
3774
|
+
};
|
|
3624
3775
|
readonly labelId: {
|
|
3625
3776
|
type: "string";
|
|
3626
3777
|
optional: false;
|
|
@@ -3635,14 +3786,28 @@ export declare const marcoZero: {
|
|
|
3635
3786
|
} & {
|
|
3636
3787
|
serverName: string;
|
|
3637
3788
|
};
|
|
3789
|
+
readonly threadMessageId: {
|
|
3790
|
+
type: "string";
|
|
3791
|
+
optional: false;
|
|
3792
|
+
customType: string;
|
|
3793
|
+
} & {
|
|
3794
|
+
serverName: string;
|
|
3795
|
+
};
|
|
3638
3796
|
};
|
|
3639
3797
|
primaryKey: readonly [string, ...string[]];
|
|
3640
3798
|
} & {
|
|
3641
|
-
primaryKey: ["
|
|
3799
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
3642
3800
|
};
|
|
3643
3801
|
readonly threadMessage: {
|
|
3644
3802
|
name: "threadMessage";
|
|
3645
3803
|
columns: {
|
|
3804
|
+
readonly accountId: {
|
|
3805
|
+
type: "string";
|
|
3806
|
+
optional: false;
|
|
3807
|
+
customType: string;
|
|
3808
|
+
} & {
|
|
3809
|
+
serverName: string;
|
|
3810
|
+
};
|
|
3646
3811
|
readonly envelopeDate: {
|
|
3647
3812
|
type: "number";
|
|
3648
3813
|
optional: false;
|
|
@@ -3659,6 +3824,11 @@ export declare const marcoZero: {
|
|
|
3659
3824
|
} & {
|
|
3660
3825
|
serverName: string;
|
|
3661
3826
|
};
|
|
3827
|
+
readonly flagged: {
|
|
3828
|
+
type: "boolean";
|
|
3829
|
+
optional: false;
|
|
3830
|
+
customType: boolean;
|
|
3831
|
+
};
|
|
3662
3832
|
readonly id: {
|
|
3663
3833
|
type: "string";
|
|
3664
3834
|
optional: false;
|
|
@@ -3671,6 +3841,11 @@ export declare const marcoZero: {
|
|
|
3671
3841
|
} & {
|
|
3672
3842
|
serverName: string;
|
|
3673
3843
|
};
|
|
3844
|
+
readonly seen: {
|
|
3845
|
+
type: "boolean";
|
|
3846
|
+
optional: false;
|
|
3847
|
+
customType: boolean;
|
|
3848
|
+
};
|
|
3674
3849
|
readonly senderEmail: {
|
|
3675
3850
|
type: "string";
|
|
3676
3851
|
optional: false;
|
|
@@ -3887,7 +4062,7 @@ export declare const marcoZero: {
|
|
|
3887
4062
|
}];
|
|
3888
4063
|
threads: [{
|
|
3889
4064
|
readonly sourceField: string[];
|
|
3890
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
4065
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
3891
4066
|
readonly destSchema: "threadLabel";
|
|
3892
4067
|
readonly cardinality: "many";
|
|
3893
4068
|
}, {
|
|
@@ -3948,7 +4123,7 @@ export declare const marcoZero: {
|
|
|
3948
4123
|
}];
|
|
3949
4124
|
labels: [{
|
|
3950
4125
|
readonly sourceField: string[];
|
|
3951
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
4126
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
3952
4127
|
readonly destSchema: "threadLabel";
|
|
3953
4128
|
readonly cardinality: "many";
|
|
3954
4129
|
}, {
|
|
@@ -3959,7 +4134,7 @@ export declare const marcoZero: {
|
|
|
3959
4134
|
}];
|
|
3960
4135
|
messages: [{
|
|
3961
4136
|
readonly sourceField: string[];
|
|
3962
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4137
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3963
4138
|
readonly destSchema: "threadMessage";
|
|
3964
4139
|
readonly cardinality: "many";
|
|
3965
4140
|
}];
|
|
@@ -3977,6 +4152,12 @@ export declare const marcoZero: {
|
|
|
3977
4152
|
readonly destSchema: "accountLabel";
|
|
3978
4153
|
readonly cardinality: "one";
|
|
3979
4154
|
}];
|
|
4155
|
+
message: [{
|
|
4156
|
+
readonly sourceField: string[];
|
|
4157
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4158
|
+
readonly destSchema: "threadMessage";
|
|
4159
|
+
readonly cardinality: "one";
|
|
4160
|
+
}];
|
|
3980
4161
|
thread: [{
|
|
3981
4162
|
readonly sourceField: string[];
|
|
3982
4163
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -3991,6 +4172,17 @@ export declare const marcoZero: {
|
|
|
3991
4172
|
readonly destSchema: "threadMessageAttachment";
|
|
3992
4173
|
readonly cardinality: "many";
|
|
3993
4174
|
}];
|
|
4175
|
+
labels: [{
|
|
4176
|
+
readonly sourceField: string[];
|
|
4177
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
4178
|
+
readonly destSchema: "threadLabel";
|
|
4179
|
+
readonly cardinality: "many";
|
|
4180
|
+
}, {
|
|
4181
|
+
readonly sourceField: string[];
|
|
4182
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
4183
|
+
readonly destSchema: "accountLabel";
|
|
4184
|
+
readonly cardinality: "many";
|
|
4185
|
+
}];
|
|
3994
4186
|
recipients: [{
|
|
3995
4187
|
readonly sourceField: string[];
|
|
3996
4188
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -4007,7 +4199,7 @@ export declare const marcoZero: {
|
|
|
4007
4199
|
readonly threadMessageRecipient: {
|
|
4008
4200
|
message: [{
|
|
4009
4201
|
readonly sourceField: string[];
|
|
4010
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4202
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4011
4203
|
readonly destSchema: "threadMessage";
|
|
4012
4204
|
readonly cardinality: "one";
|
|
4013
4205
|
}];
|
|
@@ -4015,7 +4207,7 @@ export declare const marcoZero: {
|
|
|
4015
4207
|
readonly threadMessageAttachment: {
|
|
4016
4208
|
message: [{
|
|
4017
4209
|
readonly sourceField: string[];
|
|
4018
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4210
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4019
4211
|
readonly destSchema: "threadMessage";
|
|
4020
4212
|
readonly cardinality: "one";
|
|
4021
4213
|
}];
|
|
@@ -4033,10 +4225,13 @@ export declare const marcoZero: {
|
|
|
4033
4225
|
readonly words: string;
|
|
4034
4226
|
} & {
|
|
4035
4227
|
readonly messages: readonly ({
|
|
4228
|
+
readonly accountId: string;
|
|
4036
4229
|
readonly envelopeDate: number;
|
|
4037
4230
|
readonly envelopeSubject: string | null;
|
|
4231
|
+
readonly flagged: boolean;
|
|
4038
4232
|
readonly id: string;
|
|
4039
4233
|
readonly previewText: string;
|
|
4234
|
+
readonly seen: boolean;
|
|
4040
4235
|
readonly senderEmail: string;
|
|
4041
4236
|
readonly senderName: string | null;
|
|
4042
4237
|
readonly threadId: string;
|
|
@@ -4564,6 +4759,13 @@ export declare const marcoZero: {
|
|
|
4564
4759
|
readonly threadLabel: {
|
|
4565
4760
|
name: "threadLabel";
|
|
4566
4761
|
columns: {
|
|
4762
|
+
readonly accountId: {
|
|
4763
|
+
type: "string";
|
|
4764
|
+
optional: false;
|
|
4765
|
+
customType: string;
|
|
4766
|
+
} & {
|
|
4767
|
+
serverName: string;
|
|
4768
|
+
};
|
|
4567
4769
|
readonly labelId: {
|
|
4568
4770
|
type: "string";
|
|
4569
4771
|
optional: false;
|
|
@@ -4578,14 +4780,28 @@ export declare const marcoZero: {
|
|
|
4578
4780
|
} & {
|
|
4579
4781
|
serverName: string;
|
|
4580
4782
|
};
|
|
4783
|
+
readonly threadMessageId: {
|
|
4784
|
+
type: "string";
|
|
4785
|
+
optional: false;
|
|
4786
|
+
customType: string;
|
|
4787
|
+
} & {
|
|
4788
|
+
serverName: string;
|
|
4789
|
+
};
|
|
4581
4790
|
};
|
|
4582
4791
|
primaryKey: readonly [string, ...string[]];
|
|
4583
4792
|
} & {
|
|
4584
|
-
primaryKey: ["
|
|
4793
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
4585
4794
|
};
|
|
4586
4795
|
readonly threadMessage: {
|
|
4587
4796
|
name: "threadMessage";
|
|
4588
4797
|
columns: {
|
|
4798
|
+
readonly accountId: {
|
|
4799
|
+
type: "string";
|
|
4800
|
+
optional: false;
|
|
4801
|
+
customType: string;
|
|
4802
|
+
} & {
|
|
4803
|
+
serverName: string;
|
|
4804
|
+
};
|
|
4589
4805
|
readonly envelopeDate: {
|
|
4590
4806
|
type: "number";
|
|
4591
4807
|
optional: false;
|
|
@@ -4602,6 +4818,11 @@ export declare const marcoZero: {
|
|
|
4602
4818
|
} & {
|
|
4603
4819
|
serverName: string;
|
|
4604
4820
|
};
|
|
4821
|
+
readonly flagged: {
|
|
4822
|
+
type: "boolean";
|
|
4823
|
+
optional: false;
|
|
4824
|
+
customType: boolean;
|
|
4825
|
+
};
|
|
4605
4826
|
readonly id: {
|
|
4606
4827
|
type: "string";
|
|
4607
4828
|
optional: false;
|
|
@@ -4614,6 +4835,11 @@ export declare const marcoZero: {
|
|
|
4614
4835
|
} & {
|
|
4615
4836
|
serverName: string;
|
|
4616
4837
|
};
|
|
4838
|
+
readonly seen: {
|
|
4839
|
+
type: "boolean";
|
|
4840
|
+
optional: false;
|
|
4841
|
+
customType: boolean;
|
|
4842
|
+
};
|
|
4617
4843
|
readonly senderEmail: {
|
|
4618
4844
|
type: "string";
|
|
4619
4845
|
optional: false;
|
|
@@ -4830,7 +5056,7 @@ export declare const marcoZero: {
|
|
|
4830
5056
|
}];
|
|
4831
5057
|
threads: [{
|
|
4832
5058
|
readonly sourceField: string[];
|
|
4833
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
5059
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
4834
5060
|
readonly destSchema: "threadLabel";
|
|
4835
5061
|
readonly cardinality: "many";
|
|
4836
5062
|
}, {
|
|
@@ -4891,7 +5117,7 @@ export declare const marcoZero: {
|
|
|
4891
5117
|
}];
|
|
4892
5118
|
labels: [{
|
|
4893
5119
|
readonly sourceField: string[];
|
|
4894
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
5120
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
4895
5121
|
readonly destSchema: "threadLabel";
|
|
4896
5122
|
readonly cardinality: "many";
|
|
4897
5123
|
}, {
|
|
@@ -4902,7 +5128,7 @@ export declare const marcoZero: {
|
|
|
4902
5128
|
}];
|
|
4903
5129
|
messages: [{
|
|
4904
5130
|
readonly sourceField: string[];
|
|
4905
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5131
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4906
5132
|
readonly destSchema: "threadMessage";
|
|
4907
5133
|
readonly cardinality: "many";
|
|
4908
5134
|
}];
|
|
@@ -4920,6 +5146,12 @@ export declare const marcoZero: {
|
|
|
4920
5146
|
readonly destSchema: "accountLabel";
|
|
4921
5147
|
readonly cardinality: "one";
|
|
4922
5148
|
}];
|
|
5149
|
+
message: [{
|
|
5150
|
+
readonly sourceField: string[];
|
|
5151
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5152
|
+
readonly destSchema: "threadMessage";
|
|
5153
|
+
readonly cardinality: "one";
|
|
5154
|
+
}];
|
|
4923
5155
|
thread: [{
|
|
4924
5156
|
readonly sourceField: string[];
|
|
4925
5157
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -4934,6 +5166,17 @@ export declare const marcoZero: {
|
|
|
4934
5166
|
readonly destSchema: "threadMessageAttachment";
|
|
4935
5167
|
readonly cardinality: "many";
|
|
4936
5168
|
}];
|
|
5169
|
+
labels: [{
|
|
5170
|
+
readonly sourceField: string[];
|
|
5171
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
5172
|
+
readonly destSchema: "threadLabel";
|
|
5173
|
+
readonly cardinality: "many";
|
|
5174
|
+
}, {
|
|
5175
|
+
readonly sourceField: string[];
|
|
5176
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
5177
|
+
readonly destSchema: "accountLabel";
|
|
5178
|
+
readonly cardinality: "many";
|
|
5179
|
+
}];
|
|
4937
5180
|
recipients: [{
|
|
4938
5181
|
readonly sourceField: string[];
|
|
4939
5182
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -4950,7 +5193,7 @@ export declare const marcoZero: {
|
|
|
4950
5193
|
readonly threadMessageRecipient: {
|
|
4951
5194
|
message: [{
|
|
4952
5195
|
readonly sourceField: string[];
|
|
4953
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5196
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4954
5197
|
readonly destSchema: "threadMessage";
|
|
4955
5198
|
readonly cardinality: "one";
|
|
4956
5199
|
}];
|
|
@@ -4958,7 +5201,7 @@ export declare const marcoZero: {
|
|
|
4958
5201
|
readonly threadMessageAttachment: {
|
|
4959
5202
|
message: [{
|
|
4960
5203
|
readonly sourceField: string[];
|
|
4961
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5204
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4962
5205
|
readonly destSchema: "threadMessage";
|
|
4963
5206
|
readonly cardinality: "one";
|
|
4964
5207
|
}];
|
|
@@ -5512,6 +5755,13 @@ export declare const marcoZero: {
|
|
|
5512
5755
|
readonly threadLabel: {
|
|
5513
5756
|
name: "threadLabel";
|
|
5514
5757
|
columns: {
|
|
5758
|
+
readonly accountId: {
|
|
5759
|
+
type: "string";
|
|
5760
|
+
optional: false;
|
|
5761
|
+
customType: string;
|
|
5762
|
+
} & {
|
|
5763
|
+
serverName: string;
|
|
5764
|
+
};
|
|
5515
5765
|
readonly labelId: {
|
|
5516
5766
|
type: "string";
|
|
5517
5767
|
optional: false;
|
|
@@ -5526,14 +5776,28 @@ export declare const marcoZero: {
|
|
|
5526
5776
|
} & {
|
|
5527
5777
|
serverName: string;
|
|
5528
5778
|
};
|
|
5779
|
+
readonly threadMessageId: {
|
|
5780
|
+
type: "string";
|
|
5781
|
+
optional: false;
|
|
5782
|
+
customType: string;
|
|
5783
|
+
} & {
|
|
5784
|
+
serverName: string;
|
|
5785
|
+
};
|
|
5529
5786
|
};
|
|
5530
5787
|
primaryKey: readonly [string, ...string[]];
|
|
5531
5788
|
} & {
|
|
5532
|
-
primaryKey: ["
|
|
5789
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
5533
5790
|
};
|
|
5534
5791
|
readonly threadMessage: {
|
|
5535
5792
|
name: "threadMessage";
|
|
5536
5793
|
columns: {
|
|
5794
|
+
readonly accountId: {
|
|
5795
|
+
type: "string";
|
|
5796
|
+
optional: false;
|
|
5797
|
+
customType: string;
|
|
5798
|
+
} & {
|
|
5799
|
+
serverName: string;
|
|
5800
|
+
};
|
|
5537
5801
|
readonly envelopeDate: {
|
|
5538
5802
|
type: "number";
|
|
5539
5803
|
optional: false;
|
|
@@ -5550,6 +5814,11 @@ export declare const marcoZero: {
|
|
|
5550
5814
|
} & {
|
|
5551
5815
|
serverName: string;
|
|
5552
5816
|
};
|
|
5817
|
+
readonly flagged: {
|
|
5818
|
+
type: "boolean";
|
|
5819
|
+
optional: false;
|
|
5820
|
+
customType: boolean;
|
|
5821
|
+
};
|
|
5553
5822
|
readonly id: {
|
|
5554
5823
|
type: "string";
|
|
5555
5824
|
optional: false;
|
|
@@ -5562,6 +5831,11 @@ export declare const marcoZero: {
|
|
|
5562
5831
|
} & {
|
|
5563
5832
|
serverName: string;
|
|
5564
5833
|
};
|
|
5834
|
+
readonly seen: {
|
|
5835
|
+
type: "boolean";
|
|
5836
|
+
optional: false;
|
|
5837
|
+
customType: boolean;
|
|
5838
|
+
};
|
|
5565
5839
|
readonly senderEmail: {
|
|
5566
5840
|
type: "string";
|
|
5567
5841
|
optional: false;
|
|
@@ -5778,7 +6052,7 @@ export declare const marcoZero: {
|
|
|
5778
6052
|
}];
|
|
5779
6053
|
threads: [{
|
|
5780
6054
|
readonly sourceField: string[];
|
|
5781
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
6055
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
5782
6056
|
readonly destSchema: "threadLabel";
|
|
5783
6057
|
readonly cardinality: "many";
|
|
5784
6058
|
}, {
|
|
@@ -5839,7 +6113,7 @@ export declare const marcoZero: {
|
|
|
5839
6113
|
}];
|
|
5840
6114
|
labels: [{
|
|
5841
6115
|
readonly sourceField: string[];
|
|
5842
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
6116
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
5843
6117
|
readonly destSchema: "threadLabel";
|
|
5844
6118
|
readonly cardinality: "many";
|
|
5845
6119
|
}, {
|
|
@@ -5850,7 +6124,7 @@ export declare const marcoZero: {
|
|
|
5850
6124
|
}];
|
|
5851
6125
|
messages: [{
|
|
5852
6126
|
readonly sourceField: string[];
|
|
5853
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
6127
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5854
6128
|
readonly destSchema: "threadMessage";
|
|
5855
6129
|
readonly cardinality: "many";
|
|
5856
6130
|
}];
|
|
@@ -5868,6 +6142,12 @@ export declare const marcoZero: {
|
|
|
5868
6142
|
readonly destSchema: "accountLabel";
|
|
5869
6143
|
readonly cardinality: "one";
|
|
5870
6144
|
}];
|
|
6145
|
+
message: [{
|
|
6146
|
+
readonly sourceField: string[];
|
|
6147
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
6148
|
+
readonly destSchema: "threadMessage";
|
|
6149
|
+
readonly cardinality: "one";
|
|
6150
|
+
}];
|
|
5871
6151
|
thread: [{
|
|
5872
6152
|
readonly sourceField: string[];
|
|
5873
6153
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -5882,6 +6162,17 @@ export declare const marcoZero: {
|
|
|
5882
6162
|
readonly destSchema: "threadMessageAttachment";
|
|
5883
6163
|
readonly cardinality: "many";
|
|
5884
6164
|
}];
|
|
6165
|
+
labels: [{
|
|
6166
|
+
readonly sourceField: string[];
|
|
6167
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
6168
|
+
readonly destSchema: "threadLabel";
|
|
6169
|
+
readonly cardinality: "many";
|
|
6170
|
+
}, {
|
|
6171
|
+
readonly sourceField: string[];
|
|
6172
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
6173
|
+
readonly destSchema: "accountLabel";
|
|
6174
|
+
readonly cardinality: "many";
|
|
6175
|
+
}];
|
|
5885
6176
|
recipients: [{
|
|
5886
6177
|
readonly sourceField: string[];
|
|
5887
6178
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -5898,7 +6189,7 @@ export declare const marcoZero: {
|
|
|
5898
6189
|
readonly threadMessageRecipient: {
|
|
5899
6190
|
message: [{
|
|
5900
6191
|
readonly sourceField: string[];
|
|
5901
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
6192
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5902
6193
|
readonly destSchema: "threadMessage";
|
|
5903
6194
|
readonly cardinality: "one";
|
|
5904
6195
|
}];
|
|
@@ -5906,7 +6197,7 @@ export declare const marcoZero: {
|
|
|
5906
6197
|
readonly threadMessageAttachment: {
|
|
5907
6198
|
message: [{
|
|
5908
6199
|
readonly sourceField: string[];
|
|
5909
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
6200
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5910
6201
|
readonly destSchema: "threadMessage";
|
|
5911
6202
|
readonly cardinality: "one";
|
|
5912
6203
|
}];
|
|
@@ -6344,6 +6635,13 @@ export declare const marcoZero: {
|
|
|
6344
6635
|
readonly threadLabel: import("@rocicorp/zero").TableBuilderWithColumns<{
|
|
6345
6636
|
name: "threadLabel";
|
|
6346
6637
|
columns: {
|
|
6638
|
+
readonly accountId: {
|
|
6639
|
+
type: "string";
|
|
6640
|
+
optional: false;
|
|
6641
|
+
customType: string;
|
|
6642
|
+
} & {
|
|
6643
|
+
serverName: string;
|
|
6644
|
+
};
|
|
6347
6645
|
readonly labelId: {
|
|
6348
6646
|
type: "string";
|
|
6349
6647
|
optional: false;
|
|
@@ -6358,14 +6656,28 @@ export declare const marcoZero: {
|
|
|
6358
6656
|
} & {
|
|
6359
6657
|
serverName: string;
|
|
6360
6658
|
};
|
|
6659
|
+
readonly threadMessageId: {
|
|
6660
|
+
type: "string";
|
|
6661
|
+
optional: false;
|
|
6662
|
+
customType: string;
|
|
6663
|
+
} & {
|
|
6664
|
+
serverName: string;
|
|
6665
|
+
};
|
|
6361
6666
|
};
|
|
6362
6667
|
primaryKey: readonly [string, ...string[]];
|
|
6363
6668
|
} & {
|
|
6364
|
-
primaryKey: ["
|
|
6669
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
6365
6670
|
}>;
|
|
6366
6671
|
readonly threadMessage: import("@rocicorp/zero").TableBuilderWithColumns<{
|
|
6367
6672
|
name: "threadMessage";
|
|
6368
6673
|
columns: {
|
|
6674
|
+
readonly accountId: {
|
|
6675
|
+
type: "string";
|
|
6676
|
+
optional: false;
|
|
6677
|
+
customType: string;
|
|
6678
|
+
} & {
|
|
6679
|
+
serverName: string;
|
|
6680
|
+
};
|
|
6369
6681
|
readonly envelopeDate: {
|
|
6370
6682
|
type: "number";
|
|
6371
6683
|
optional: false;
|
|
@@ -6382,6 +6694,11 @@ export declare const marcoZero: {
|
|
|
6382
6694
|
} & {
|
|
6383
6695
|
serverName: string;
|
|
6384
6696
|
};
|
|
6697
|
+
readonly flagged: {
|
|
6698
|
+
type: "boolean";
|
|
6699
|
+
optional: false;
|
|
6700
|
+
customType: boolean;
|
|
6701
|
+
};
|
|
6385
6702
|
readonly id: {
|
|
6386
6703
|
type: "string";
|
|
6387
6704
|
optional: false;
|
|
@@ -6394,6 +6711,11 @@ export declare const marcoZero: {
|
|
|
6394
6711
|
} & {
|
|
6395
6712
|
serverName: string;
|
|
6396
6713
|
};
|
|
6714
|
+
readonly seen: {
|
|
6715
|
+
type: "boolean";
|
|
6716
|
+
optional: false;
|
|
6717
|
+
customType: boolean;
|
|
6718
|
+
};
|
|
6397
6719
|
readonly senderEmail: {
|
|
6398
6720
|
type: "string";
|
|
6399
6721
|
optional: false;
|