@marcoappio/marco-config 2.0.451 → 2.0.452
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 +157 -84
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts +3 -1
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.js +31 -24
- package/dist/zero/mutators/threadMutators/threadMutators.test.js +12 -12
- package/dist/zero/queries/getAccounts.d.ts +24 -13
- package/dist/zero/queries/getAccounts.d.ts.map +1 -1
- package/dist/zero/queries/getContacts.d.ts +23 -13
- package/dist/zero/queries/getContacts.d.ts.map +1 -1
- package/dist/zero/queries/getDrafts.d.ts +23 -13
- package/dist/zero/queries/getDrafts.d.ts.map +1 -1
- package/dist/zero/queries/getThreads.d.ts +24 -13
- package/dist/zero/queries/getThreads.d.ts.map +1 -1
- package/dist/zero/queries/getUser.d.ts +24 -13
- package/dist/zero/queries/getUser.d.ts.map +1 -1
- package/dist/zero/queries/index.d.ts +23 -13
- package/dist/zero/queries/index.d.ts.map +1 -1
- package/dist/zero/schema.d.ts +39 -19
- package/dist/zero/schema.d.ts.map +1 -1
- package/dist/zero/schema.js +4 -2
- package/package.json +1 -1
package/dist/zero/index.d.ts
CHANGED
|
@@ -596,6 +596,13 @@ export declare const marcoZero: {
|
|
|
596
596
|
} & {
|
|
597
597
|
serverName: string;
|
|
598
598
|
};
|
|
599
|
+
readonly uidValidity: {
|
|
600
|
+
type: "number";
|
|
601
|
+
optional: false;
|
|
602
|
+
customType: number;
|
|
603
|
+
} & {
|
|
604
|
+
serverName: string;
|
|
605
|
+
};
|
|
599
606
|
};
|
|
600
607
|
primaryKey: readonly [string, ...string[]];
|
|
601
608
|
} & {
|
|
@@ -870,6 +877,13 @@ export declare const marcoZero: {
|
|
|
870
877
|
} & {
|
|
871
878
|
serverName: string;
|
|
872
879
|
};
|
|
880
|
+
readonly lastSyncedAt: {
|
|
881
|
+
type: "number";
|
|
882
|
+
optional: false;
|
|
883
|
+
customType: number;
|
|
884
|
+
} & {
|
|
885
|
+
serverName: string;
|
|
886
|
+
};
|
|
873
887
|
readonly threadId: {
|
|
874
888
|
type: "string";
|
|
875
889
|
optional: false;
|
|
@@ -884,19 +898,15 @@ export declare const marcoZero: {
|
|
|
884
898
|
} & {
|
|
885
899
|
serverName: string;
|
|
886
900
|
};
|
|
887
|
-
readonly uid:
|
|
901
|
+
readonly uid: {
|
|
888
902
|
type: "number";
|
|
889
903
|
optional: false;
|
|
890
904
|
customType: number;
|
|
891
|
-
}, "optional"> & {
|
|
892
|
-
optional: true;
|
|
893
905
|
};
|
|
894
|
-
readonly uidValidity:
|
|
906
|
+
readonly uidValidity: {
|
|
895
907
|
type: "number";
|
|
896
908
|
optional: false;
|
|
897
909
|
customType: number;
|
|
898
|
-
}, "optional"> & {
|
|
899
|
-
optional: true;
|
|
900
910
|
} & {
|
|
901
911
|
serverName: string;
|
|
902
912
|
};
|
|
@@ -1119,7 +1129,7 @@ export declare const marcoZero: {
|
|
|
1119
1129
|
}];
|
|
1120
1130
|
labels: [{
|
|
1121
1131
|
readonly sourceField: string[];
|
|
1122
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
1132
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
1123
1133
|
readonly destSchema: "accountLabel";
|
|
1124
1134
|
readonly cardinality: "many";
|
|
1125
1135
|
}];
|
|
@@ -1159,7 +1169,7 @@ export declare const marcoZero: {
|
|
|
1159
1169
|
}];
|
|
1160
1170
|
threads: [{
|
|
1161
1171
|
readonly sourceField: string[];
|
|
1162
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
1172
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1163
1173
|
readonly destSchema: "threadLabel";
|
|
1164
1174
|
readonly cardinality: "many";
|
|
1165
1175
|
}, {
|
|
@@ -1220,12 +1230,12 @@ export declare const marcoZero: {
|
|
|
1220
1230
|
}];
|
|
1221
1231
|
labels: [{
|
|
1222
1232
|
readonly sourceField: string[];
|
|
1223
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
1233
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1224
1234
|
readonly destSchema: "threadLabel";
|
|
1225
1235
|
readonly cardinality: "many";
|
|
1226
1236
|
}, {
|
|
1227
1237
|
readonly sourceField: string[];
|
|
1228
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
1238
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
1229
1239
|
readonly destSchema: "accountLabel";
|
|
1230
1240
|
readonly cardinality: "many";
|
|
1231
1241
|
}];
|
|
@@ -1245,7 +1255,7 @@ export declare const marcoZero: {
|
|
|
1245
1255
|
readonly threadLabel: {
|
|
1246
1256
|
label: [{
|
|
1247
1257
|
readonly sourceField: string[];
|
|
1248
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
1258
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
1249
1259
|
readonly destSchema: "accountLabel";
|
|
1250
1260
|
readonly cardinality: "one";
|
|
1251
1261
|
}];
|
|
@@ -1271,12 +1281,12 @@ export declare const marcoZero: {
|
|
|
1271
1281
|
}];
|
|
1272
1282
|
labels: [{
|
|
1273
1283
|
readonly sourceField: string[];
|
|
1274
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
1284
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1275
1285
|
readonly destSchema: "threadLabel";
|
|
1276
1286
|
readonly cardinality: "many";
|
|
1277
1287
|
}, {
|
|
1278
1288
|
readonly sourceField: string[];
|
|
1279
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
1289
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
1280
1290
|
readonly destSchema: "accountLabel";
|
|
1281
1291
|
readonly cardinality: "many";
|
|
1282
1292
|
}];
|
|
@@ -1343,6 +1353,7 @@ export declare const marcoZero: {
|
|
|
1343
1353
|
readonly id: string;
|
|
1344
1354
|
readonly path: string;
|
|
1345
1355
|
readonly specialUse: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH" | null;
|
|
1356
|
+
readonly uidValidity: number;
|
|
1346
1357
|
}[];
|
|
1347
1358
|
}>>;
|
|
1348
1359
|
readonly getContacts: import("@rocicorp/zero").SyncedQuery<"getContacts", import("..").MarcoSyncedQueryContext, true, [{
|
|
@@ -1591,6 +1602,13 @@ export declare const marcoZero: {
|
|
|
1591
1602
|
} & {
|
|
1592
1603
|
serverName: string;
|
|
1593
1604
|
};
|
|
1605
|
+
readonly uidValidity: {
|
|
1606
|
+
type: "number";
|
|
1607
|
+
optional: false;
|
|
1608
|
+
customType: number;
|
|
1609
|
+
} & {
|
|
1610
|
+
serverName: string;
|
|
1611
|
+
};
|
|
1594
1612
|
};
|
|
1595
1613
|
primaryKey: readonly [string, ...string[]];
|
|
1596
1614
|
} & {
|
|
@@ -1865,6 +1883,13 @@ export declare const marcoZero: {
|
|
|
1865
1883
|
} & {
|
|
1866
1884
|
serverName: string;
|
|
1867
1885
|
};
|
|
1886
|
+
readonly lastSyncedAt: {
|
|
1887
|
+
type: "number";
|
|
1888
|
+
optional: false;
|
|
1889
|
+
customType: number;
|
|
1890
|
+
} & {
|
|
1891
|
+
serverName: string;
|
|
1892
|
+
};
|
|
1868
1893
|
readonly threadId: {
|
|
1869
1894
|
type: "string";
|
|
1870
1895
|
optional: false;
|
|
@@ -1879,19 +1904,15 @@ export declare const marcoZero: {
|
|
|
1879
1904
|
} & {
|
|
1880
1905
|
serverName: string;
|
|
1881
1906
|
};
|
|
1882
|
-
readonly uid:
|
|
1907
|
+
readonly uid: {
|
|
1883
1908
|
type: "number";
|
|
1884
1909
|
optional: false;
|
|
1885
1910
|
customType: number;
|
|
1886
|
-
}, "optional"> & {
|
|
1887
|
-
optional: true;
|
|
1888
1911
|
};
|
|
1889
|
-
readonly uidValidity:
|
|
1912
|
+
readonly uidValidity: {
|
|
1890
1913
|
type: "number";
|
|
1891
1914
|
optional: false;
|
|
1892
1915
|
customType: number;
|
|
1893
|
-
}, "optional"> & {
|
|
1894
|
-
optional: true;
|
|
1895
1916
|
} & {
|
|
1896
1917
|
serverName: string;
|
|
1897
1918
|
};
|
|
@@ -2114,7 +2135,7 @@ export declare const marcoZero: {
|
|
|
2114
2135
|
}];
|
|
2115
2136
|
labels: [{
|
|
2116
2137
|
readonly sourceField: string[];
|
|
2117
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
2138
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
2118
2139
|
readonly destSchema: "accountLabel";
|
|
2119
2140
|
readonly cardinality: "many";
|
|
2120
2141
|
}];
|
|
@@ -2154,7 +2175,7 @@ export declare const marcoZero: {
|
|
|
2154
2175
|
}];
|
|
2155
2176
|
threads: [{
|
|
2156
2177
|
readonly sourceField: string[];
|
|
2157
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
2178
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
2158
2179
|
readonly destSchema: "threadLabel";
|
|
2159
2180
|
readonly cardinality: "many";
|
|
2160
2181
|
}, {
|
|
@@ -2215,12 +2236,12 @@ export declare const marcoZero: {
|
|
|
2215
2236
|
}];
|
|
2216
2237
|
labels: [{
|
|
2217
2238
|
readonly sourceField: string[];
|
|
2218
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
2239
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
2219
2240
|
readonly destSchema: "threadLabel";
|
|
2220
2241
|
readonly cardinality: "many";
|
|
2221
2242
|
}, {
|
|
2222
2243
|
readonly sourceField: string[];
|
|
2223
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
2244
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
2224
2245
|
readonly destSchema: "accountLabel";
|
|
2225
2246
|
readonly cardinality: "many";
|
|
2226
2247
|
}];
|
|
@@ -2240,7 +2261,7 @@ export declare const marcoZero: {
|
|
|
2240
2261
|
readonly threadLabel: {
|
|
2241
2262
|
label: [{
|
|
2242
2263
|
readonly sourceField: string[];
|
|
2243
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
2264
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
2244
2265
|
readonly destSchema: "accountLabel";
|
|
2245
2266
|
readonly cardinality: "one";
|
|
2246
2267
|
}];
|
|
@@ -2266,12 +2287,12 @@ export declare const marcoZero: {
|
|
|
2266
2287
|
}];
|
|
2267
2288
|
labels: [{
|
|
2268
2289
|
readonly sourceField: string[];
|
|
2269
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
2290
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
2270
2291
|
readonly destSchema: "threadLabel";
|
|
2271
2292
|
readonly cardinality: "many";
|
|
2272
2293
|
}, {
|
|
2273
2294
|
readonly sourceField: string[];
|
|
2274
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
2295
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
2275
2296
|
readonly destSchema: "accountLabel";
|
|
2276
2297
|
readonly cardinality: "many";
|
|
2277
2298
|
}];
|
|
@@ -2555,6 +2576,13 @@ export declare const marcoZero: {
|
|
|
2555
2576
|
} & {
|
|
2556
2577
|
serverName: string;
|
|
2557
2578
|
};
|
|
2579
|
+
readonly uidValidity: {
|
|
2580
|
+
type: "number";
|
|
2581
|
+
optional: false;
|
|
2582
|
+
customType: number;
|
|
2583
|
+
} & {
|
|
2584
|
+
serverName: string;
|
|
2585
|
+
};
|
|
2558
2586
|
};
|
|
2559
2587
|
primaryKey: readonly [string, ...string[]];
|
|
2560
2588
|
} & {
|
|
@@ -2829,6 +2857,13 @@ export declare const marcoZero: {
|
|
|
2829
2857
|
} & {
|
|
2830
2858
|
serverName: string;
|
|
2831
2859
|
};
|
|
2860
|
+
readonly lastSyncedAt: {
|
|
2861
|
+
type: "number";
|
|
2862
|
+
optional: false;
|
|
2863
|
+
customType: number;
|
|
2864
|
+
} & {
|
|
2865
|
+
serverName: string;
|
|
2866
|
+
};
|
|
2832
2867
|
readonly threadId: {
|
|
2833
2868
|
type: "string";
|
|
2834
2869
|
optional: false;
|
|
@@ -2843,19 +2878,15 @@ export declare const marcoZero: {
|
|
|
2843
2878
|
} & {
|
|
2844
2879
|
serverName: string;
|
|
2845
2880
|
};
|
|
2846
|
-
readonly uid:
|
|
2881
|
+
readonly uid: {
|
|
2847
2882
|
type: "number";
|
|
2848
2883
|
optional: false;
|
|
2849
2884
|
customType: number;
|
|
2850
|
-
}, "optional"> & {
|
|
2851
|
-
optional: true;
|
|
2852
2885
|
};
|
|
2853
|
-
readonly uidValidity:
|
|
2886
|
+
readonly uidValidity: {
|
|
2854
2887
|
type: "number";
|
|
2855
2888
|
optional: false;
|
|
2856
2889
|
customType: number;
|
|
2857
|
-
}, "optional"> & {
|
|
2858
|
-
optional: true;
|
|
2859
2890
|
} & {
|
|
2860
2891
|
serverName: string;
|
|
2861
2892
|
};
|
|
@@ -3078,7 +3109,7 @@ export declare const marcoZero: {
|
|
|
3078
3109
|
}];
|
|
3079
3110
|
labels: [{
|
|
3080
3111
|
readonly sourceField: string[];
|
|
3081
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
3112
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
3082
3113
|
readonly destSchema: "accountLabel";
|
|
3083
3114
|
readonly cardinality: "many";
|
|
3084
3115
|
}];
|
|
@@ -3118,7 +3149,7 @@ export declare const marcoZero: {
|
|
|
3118
3149
|
}];
|
|
3119
3150
|
threads: [{
|
|
3120
3151
|
readonly sourceField: string[];
|
|
3121
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
3152
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
3122
3153
|
readonly destSchema: "threadLabel";
|
|
3123
3154
|
readonly cardinality: "many";
|
|
3124
3155
|
}, {
|
|
@@ -3179,12 +3210,12 @@ export declare const marcoZero: {
|
|
|
3179
3210
|
}];
|
|
3180
3211
|
labels: [{
|
|
3181
3212
|
readonly sourceField: string[];
|
|
3182
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
3213
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
3183
3214
|
readonly destSchema: "threadLabel";
|
|
3184
3215
|
readonly cardinality: "many";
|
|
3185
3216
|
}, {
|
|
3186
3217
|
readonly sourceField: string[];
|
|
3187
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
3218
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
3188
3219
|
readonly destSchema: "accountLabel";
|
|
3189
3220
|
readonly cardinality: "many";
|
|
3190
3221
|
}];
|
|
@@ -3204,7 +3235,7 @@ export declare const marcoZero: {
|
|
|
3204
3235
|
readonly threadLabel: {
|
|
3205
3236
|
label: [{
|
|
3206
3237
|
readonly sourceField: string[];
|
|
3207
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
3238
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
3208
3239
|
readonly destSchema: "accountLabel";
|
|
3209
3240
|
readonly cardinality: "one";
|
|
3210
3241
|
}];
|
|
@@ -3230,12 +3261,12 @@ export declare const marcoZero: {
|
|
|
3230
3261
|
}];
|
|
3231
3262
|
labels: [{
|
|
3232
3263
|
readonly sourceField: string[];
|
|
3233
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
3264
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
3234
3265
|
readonly destSchema: "threadLabel";
|
|
3235
3266
|
readonly cardinality: "many";
|
|
3236
3267
|
}, {
|
|
3237
3268
|
readonly sourceField: string[];
|
|
3238
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
3269
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
3239
3270
|
readonly destSchema: "accountLabel";
|
|
3240
3271
|
readonly cardinality: "many";
|
|
3241
3272
|
}];
|
|
@@ -3559,6 +3590,13 @@ export declare const marcoZero: {
|
|
|
3559
3590
|
} & {
|
|
3560
3591
|
serverName: string;
|
|
3561
3592
|
};
|
|
3593
|
+
readonly uidValidity: {
|
|
3594
|
+
type: "number";
|
|
3595
|
+
optional: false;
|
|
3596
|
+
customType: number;
|
|
3597
|
+
} & {
|
|
3598
|
+
serverName: string;
|
|
3599
|
+
};
|
|
3562
3600
|
};
|
|
3563
3601
|
primaryKey: readonly [string, ...string[]];
|
|
3564
3602
|
} & {
|
|
@@ -3833,6 +3871,13 @@ export declare const marcoZero: {
|
|
|
3833
3871
|
} & {
|
|
3834
3872
|
serverName: string;
|
|
3835
3873
|
};
|
|
3874
|
+
readonly lastSyncedAt: {
|
|
3875
|
+
type: "number";
|
|
3876
|
+
optional: false;
|
|
3877
|
+
customType: number;
|
|
3878
|
+
} & {
|
|
3879
|
+
serverName: string;
|
|
3880
|
+
};
|
|
3836
3881
|
readonly threadId: {
|
|
3837
3882
|
type: "string";
|
|
3838
3883
|
optional: false;
|
|
@@ -3847,19 +3892,15 @@ export declare const marcoZero: {
|
|
|
3847
3892
|
} & {
|
|
3848
3893
|
serverName: string;
|
|
3849
3894
|
};
|
|
3850
|
-
readonly uid:
|
|
3895
|
+
readonly uid: {
|
|
3851
3896
|
type: "number";
|
|
3852
3897
|
optional: false;
|
|
3853
3898
|
customType: number;
|
|
3854
|
-
}, "optional"> & {
|
|
3855
|
-
optional: true;
|
|
3856
3899
|
};
|
|
3857
|
-
readonly uidValidity:
|
|
3900
|
+
readonly uidValidity: {
|
|
3858
3901
|
type: "number";
|
|
3859
3902
|
optional: false;
|
|
3860
3903
|
customType: number;
|
|
3861
|
-
}, "optional"> & {
|
|
3862
|
-
optional: true;
|
|
3863
3904
|
} & {
|
|
3864
3905
|
serverName: string;
|
|
3865
3906
|
};
|
|
@@ -4082,7 +4123,7 @@ export declare const marcoZero: {
|
|
|
4082
4123
|
}];
|
|
4083
4124
|
labels: [{
|
|
4084
4125
|
readonly sourceField: string[];
|
|
4085
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
4126
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
4086
4127
|
readonly destSchema: "accountLabel";
|
|
4087
4128
|
readonly cardinality: "many";
|
|
4088
4129
|
}];
|
|
@@ -4122,7 +4163,7 @@ export declare const marcoZero: {
|
|
|
4122
4163
|
}];
|
|
4123
4164
|
threads: [{
|
|
4124
4165
|
readonly sourceField: string[];
|
|
4125
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
4166
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
4126
4167
|
readonly destSchema: "threadLabel";
|
|
4127
4168
|
readonly cardinality: "many";
|
|
4128
4169
|
}, {
|
|
@@ -4183,12 +4224,12 @@ export declare const marcoZero: {
|
|
|
4183
4224
|
}];
|
|
4184
4225
|
labels: [{
|
|
4185
4226
|
readonly sourceField: string[];
|
|
4186
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
4227
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
4187
4228
|
readonly destSchema: "threadLabel";
|
|
4188
4229
|
readonly cardinality: "many";
|
|
4189
4230
|
}, {
|
|
4190
4231
|
readonly sourceField: string[];
|
|
4191
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
4232
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
4192
4233
|
readonly destSchema: "accountLabel";
|
|
4193
4234
|
readonly cardinality: "many";
|
|
4194
4235
|
}];
|
|
@@ -4208,7 +4249,7 @@ export declare const marcoZero: {
|
|
|
4208
4249
|
readonly threadLabel: {
|
|
4209
4250
|
label: [{
|
|
4210
4251
|
readonly sourceField: string[];
|
|
4211
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
4252
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
4212
4253
|
readonly destSchema: "accountLabel";
|
|
4213
4254
|
readonly cardinality: "one";
|
|
4214
4255
|
}];
|
|
@@ -4234,12 +4275,12 @@ export declare const marcoZero: {
|
|
|
4234
4275
|
}];
|
|
4235
4276
|
labels: [{
|
|
4236
4277
|
readonly sourceField: string[];
|
|
4237
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
4278
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
4238
4279
|
readonly destSchema: "threadLabel";
|
|
4239
4280
|
readonly cardinality: "many";
|
|
4240
4281
|
}, {
|
|
4241
4282
|
readonly sourceField: string[];
|
|
4242
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
4283
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
4243
4284
|
readonly destSchema: "accountLabel";
|
|
4244
4285
|
readonly cardinality: "many";
|
|
4245
4286
|
}];
|
|
@@ -4317,6 +4358,7 @@ export declare const marcoZero: {
|
|
|
4317
4358
|
readonly id: string;
|
|
4318
4359
|
readonly path: string;
|
|
4319
4360
|
readonly specialUse: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH" | null;
|
|
4361
|
+
readonly uidValidity: number;
|
|
4320
4362
|
}[];
|
|
4321
4363
|
}>>;
|
|
4322
4364
|
readonly getUser: import("@rocicorp/zero").SyncedQuery<"getUser", import("..").MarcoSyncedQueryContext, true, [], import("@rocicorp/zero").Query<{
|
|
@@ -4557,6 +4599,13 @@ export declare const marcoZero: {
|
|
|
4557
4599
|
} & {
|
|
4558
4600
|
serverName: string;
|
|
4559
4601
|
};
|
|
4602
|
+
readonly uidValidity: {
|
|
4603
|
+
type: "number";
|
|
4604
|
+
optional: false;
|
|
4605
|
+
customType: number;
|
|
4606
|
+
} & {
|
|
4607
|
+
serverName: string;
|
|
4608
|
+
};
|
|
4560
4609
|
};
|
|
4561
4610
|
primaryKey: readonly [string, ...string[]];
|
|
4562
4611
|
} & {
|
|
@@ -4831,6 +4880,13 @@ export declare const marcoZero: {
|
|
|
4831
4880
|
} & {
|
|
4832
4881
|
serverName: string;
|
|
4833
4882
|
};
|
|
4883
|
+
readonly lastSyncedAt: {
|
|
4884
|
+
type: "number";
|
|
4885
|
+
optional: false;
|
|
4886
|
+
customType: number;
|
|
4887
|
+
} & {
|
|
4888
|
+
serverName: string;
|
|
4889
|
+
};
|
|
4834
4890
|
readonly threadId: {
|
|
4835
4891
|
type: "string";
|
|
4836
4892
|
optional: false;
|
|
@@ -4845,19 +4901,15 @@ export declare const marcoZero: {
|
|
|
4845
4901
|
} & {
|
|
4846
4902
|
serverName: string;
|
|
4847
4903
|
};
|
|
4848
|
-
readonly uid:
|
|
4904
|
+
readonly uid: {
|
|
4849
4905
|
type: "number";
|
|
4850
4906
|
optional: false;
|
|
4851
4907
|
customType: number;
|
|
4852
|
-
}, "optional"> & {
|
|
4853
|
-
optional: true;
|
|
4854
4908
|
};
|
|
4855
|
-
readonly uidValidity:
|
|
4909
|
+
readonly uidValidity: {
|
|
4856
4910
|
type: "number";
|
|
4857
4911
|
optional: false;
|
|
4858
4912
|
customType: number;
|
|
4859
|
-
}, "optional"> & {
|
|
4860
|
-
optional: true;
|
|
4861
4913
|
} & {
|
|
4862
4914
|
serverName: string;
|
|
4863
4915
|
};
|
|
@@ -5080,7 +5132,7 @@ export declare const marcoZero: {
|
|
|
5080
5132
|
}];
|
|
5081
5133
|
labels: [{
|
|
5082
5134
|
readonly sourceField: string[];
|
|
5083
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
5135
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
5084
5136
|
readonly destSchema: "accountLabel";
|
|
5085
5137
|
readonly cardinality: "many";
|
|
5086
5138
|
}];
|
|
@@ -5120,7 +5172,7 @@ export declare const marcoZero: {
|
|
|
5120
5172
|
}];
|
|
5121
5173
|
threads: [{
|
|
5122
5174
|
readonly sourceField: string[];
|
|
5123
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
5175
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
5124
5176
|
readonly destSchema: "threadLabel";
|
|
5125
5177
|
readonly cardinality: "many";
|
|
5126
5178
|
}, {
|
|
@@ -5181,12 +5233,12 @@ export declare const marcoZero: {
|
|
|
5181
5233
|
}];
|
|
5182
5234
|
labels: [{
|
|
5183
5235
|
readonly sourceField: string[];
|
|
5184
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
5236
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
5185
5237
|
readonly destSchema: "threadLabel";
|
|
5186
5238
|
readonly cardinality: "many";
|
|
5187
5239
|
}, {
|
|
5188
5240
|
readonly sourceField: string[];
|
|
5189
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
5241
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
5190
5242
|
readonly destSchema: "accountLabel";
|
|
5191
5243
|
readonly cardinality: "many";
|
|
5192
5244
|
}];
|
|
@@ -5206,7 +5258,7 @@ export declare const marcoZero: {
|
|
|
5206
5258
|
readonly threadLabel: {
|
|
5207
5259
|
label: [{
|
|
5208
5260
|
readonly sourceField: string[];
|
|
5209
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
5261
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
5210
5262
|
readonly destSchema: "accountLabel";
|
|
5211
5263
|
readonly cardinality: "one";
|
|
5212
5264
|
}];
|
|
@@ -5232,12 +5284,12 @@ export declare const marcoZero: {
|
|
|
5232
5284
|
}];
|
|
5233
5285
|
labels: [{
|
|
5234
5286
|
readonly sourceField: string[];
|
|
5235
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
5287
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
5236
5288
|
readonly destSchema: "threadLabel";
|
|
5237
5289
|
readonly cardinality: "many";
|
|
5238
5290
|
}, {
|
|
5239
5291
|
readonly sourceField: string[];
|
|
5240
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
5292
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
5241
5293
|
readonly destSchema: "accountLabel";
|
|
5242
5294
|
readonly cardinality: "many";
|
|
5243
5295
|
}];
|
|
@@ -5310,6 +5362,7 @@ export declare const marcoZero: {
|
|
|
5310
5362
|
readonly id: string;
|
|
5311
5363
|
readonly path: string;
|
|
5312
5364
|
readonly specialUse: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH" | null;
|
|
5365
|
+
readonly uidValidity: number;
|
|
5313
5366
|
}[];
|
|
5314
5367
|
})[];
|
|
5315
5368
|
} & {
|
|
@@ -5559,6 +5612,13 @@ export declare const marcoZero: {
|
|
|
5559
5612
|
} & {
|
|
5560
5613
|
serverName: string;
|
|
5561
5614
|
};
|
|
5615
|
+
readonly uidValidity: {
|
|
5616
|
+
type: "number";
|
|
5617
|
+
optional: false;
|
|
5618
|
+
customType: number;
|
|
5619
|
+
} & {
|
|
5620
|
+
serverName: string;
|
|
5621
|
+
};
|
|
5562
5622
|
};
|
|
5563
5623
|
primaryKey: readonly [string, ...string[]];
|
|
5564
5624
|
} & {
|
|
@@ -5833,6 +5893,13 @@ export declare const marcoZero: {
|
|
|
5833
5893
|
} & {
|
|
5834
5894
|
serverName: string;
|
|
5835
5895
|
};
|
|
5896
|
+
readonly lastSyncedAt: {
|
|
5897
|
+
type: "number";
|
|
5898
|
+
optional: false;
|
|
5899
|
+
customType: number;
|
|
5900
|
+
} & {
|
|
5901
|
+
serverName: string;
|
|
5902
|
+
};
|
|
5836
5903
|
readonly threadId: {
|
|
5837
5904
|
type: "string";
|
|
5838
5905
|
optional: false;
|
|
@@ -5847,19 +5914,15 @@ export declare const marcoZero: {
|
|
|
5847
5914
|
} & {
|
|
5848
5915
|
serverName: string;
|
|
5849
5916
|
};
|
|
5850
|
-
readonly uid:
|
|
5917
|
+
readonly uid: {
|
|
5851
5918
|
type: "number";
|
|
5852
5919
|
optional: false;
|
|
5853
5920
|
customType: number;
|
|
5854
|
-
}, "optional"> & {
|
|
5855
|
-
optional: true;
|
|
5856
5921
|
};
|
|
5857
|
-
readonly uidValidity:
|
|
5922
|
+
readonly uidValidity: {
|
|
5858
5923
|
type: "number";
|
|
5859
5924
|
optional: false;
|
|
5860
5925
|
customType: number;
|
|
5861
|
-
}, "optional"> & {
|
|
5862
|
-
optional: true;
|
|
5863
5926
|
} & {
|
|
5864
5927
|
serverName: string;
|
|
5865
5928
|
};
|
|
@@ -6082,7 +6145,7 @@ export declare const marcoZero: {
|
|
|
6082
6145
|
}];
|
|
6083
6146
|
labels: [{
|
|
6084
6147
|
readonly sourceField: string[];
|
|
6085
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
6148
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
6086
6149
|
readonly destSchema: "accountLabel";
|
|
6087
6150
|
readonly cardinality: "many";
|
|
6088
6151
|
}];
|
|
@@ -6122,7 +6185,7 @@ export declare const marcoZero: {
|
|
|
6122
6185
|
}];
|
|
6123
6186
|
threads: [{
|
|
6124
6187
|
readonly sourceField: string[];
|
|
6125
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
6188
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
6126
6189
|
readonly destSchema: "threadLabel";
|
|
6127
6190
|
readonly cardinality: "many";
|
|
6128
6191
|
}, {
|
|
@@ -6183,12 +6246,12 @@ export declare const marcoZero: {
|
|
|
6183
6246
|
}];
|
|
6184
6247
|
labels: [{
|
|
6185
6248
|
readonly sourceField: string[];
|
|
6186
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
6249
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
6187
6250
|
readonly destSchema: "threadLabel";
|
|
6188
6251
|
readonly cardinality: "many";
|
|
6189
6252
|
}, {
|
|
6190
6253
|
readonly sourceField: string[];
|
|
6191
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
6254
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
6192
6255
|
readonly destSchema: "accountLabel";
|
|
6193
6256
|
readonly cardinality: "many";
|
|
6194
6257
|
}];
|
|
@@ -6208,7 +6271,7 @@ export declare const marcoZero: {
|
|
|
6208
6271
|
readonly threadLabel: {
|
|
6209
6272
|
label: [{
|
|
6210
6273
|
readonly sourceField: string[];
|
|
6211
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
6274
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
6212
6275
|
readonly destSchema: "accountLabel";
|
|
6213
6276
|
readonly cardinality: "one";
|
|
6214
6277
|
}];
|
|
@@ -6234,12 +6297,12 @@ export declare const marcoZero: {
|
|
|
6234
6297
|
}];
|
|
6235
6298
|
labels: [{
|
|
6236
6299
|
readonly sourceField: string[];
|
|
6237
|
-
readonly destField: ("accountId" | "labelId" | "
|
|
6300
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
6238
6301
|
readonly destSchema: "threadLabel";
|
|
6239
6302
|
readonly cardinality: "many";
|
|
6240
6303
|
}, {
|
|
6241
6304
|
readonly sourceField: string[];
|
|
6242
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
6305
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
6243
6306
|
readonly destSchema: "accountLabel";
|
|
6244
6307
|
readonly cardinality: "many";
|
|
6245
6308
|
}];
|
|
@@ -6411,6 +6474,13 @@ export declare const marcoZero: {
|
|
|
6411
6474
|
} & {
|
|
6412
6475
|
serverName: string;
|
|
6413
6476
|
};
|
|
6477
|
+
readonly uidValidity: {
|
|
6478
|
+
type: "number";
|
|
6479
|
+
optional: false;
|
|
6480
|
+
customType: number;
|
|
6481
|
+
} & {
|
|
6482
|
+
serverName: string;
|
|
6483
|
+
};
|
|
6414
6484
|
};
|
|
6415
6485
|
primaryKey: readonly [string, ...string[]];
|
|
6416
6486
|
} & {
|
|
@@ -6719,6 +6789,13 @@ export declare const marcoZero: {
|
|
|
6719
6789
|
} & {
|
|
6720
6790
|
serverName: string;
|
|
6721
6791
|
};
|
|
6792
|
+
readonly lastSyncedAt: {
|
|
6793
|
+
type: "number";
|
|
6794
|
+
optional: false;
|
|
6795
|
+
customType: number;
|
|
6796
|
+
} & {
|
|
6797
|
+
serverName: string;
|
|
6798
|
+
};
|
|
6722
6799
|
readonly threadId: {
|
|
6723
6800
|
type: "string";
|
|
6724
6801
|
optional: false;
|
|
@@ -6733,19 +6810,15 @@ export declare const marcoZero: {
|
|
|
6733
6810
|
} & {
|
|
6734
6811
|
serverName: string;
|
|
6735
6812
|
};
|
|
6736
|
-
readonly uid:
|
|
6813
|
+
readonly uid: {
|
|
6737
6814
|
type: "number";
|
|
6738
6815
|
optional: false;
|
|
6739
6816
|
customType: number;
|
|
6740
|
-
}, "optional"> & {
|
|
6741
|
-
optional: true;
|
|
6742
6817
|
};
|
|
6743
|
-
readonly uidValidity:
|
|
6818
|
+
readonly uidValidity: {
|
|
6744
6819
|
type: "number";
|
|
6745
6820
|
optional: false;
|
|
6746
6821
|
customType: number;
|
|
6747
|
-
}, "optional"> & {
|
|
6748
|
-
optional: true;
|
|
6749
6822
|
} & {
|
|
6750
6823
|
serverName: string;
|
|
6751
6824
|
};
|