@marcoappio/marco-config 2.0.420 → 2.0.422
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 +853 -201
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/index.js +3 -0
- package/dist/zero/permissions.d.ts +23 -0
- package/dist/zero/permissions.d.ts.map +1 -0
- package/dist/zero/permissions.js +81 -0
- package/dist/zero/queries/getAccounts.d.ts +121 -26
- package/dist/zero/queries/getAccounts.d.ts.map +1 -1
- package/dist/zero/queries/getAccounts.js +1 -1
- package/dist/zero/queries/getContacts.d.ts +121 -26
- package/dist/zero/queries/getContacts.d.ts.map +1 -1
- package/dist/zero/queries/getContacts.js +6 -7
- package/dist/zero/queries/getDrafts.d.ts +122 -27
- package/dist/zero/queries/getDrafts.d.ts.map +1 -1
- package/dist/zero/queries/getDrafts.js +6 -8
- package/dist/zero/queries/getThreads.d.ts +122 -20
- package/dist/zero/queries/getThreads.d.ts.map +1 -1
- package/dist/zero/queries/getThreads.js +10 -11
- package/dist/zero/queries/getUser.d.ts +121 -83
- package/dist/zero/queries/getUser.d.ts.map +1 -1
- package/dist/zero/queries/getUser.js +2 -5
- package/dist/zero/queries/index.d.ts +121 -19
- package/dist/zero/queries/index.d.ts.map +1 -1
- package/dist/zero/schema.d.ts +223 -19
- package/dist/zero/schema.d.ts.map +1 -1
- package/dist/zero/schema.js +61 -51
- package/package.json +1 -1
package/dist/zero/index.d.ts
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
export declare const marcoZero: {
|
|
2
2
|
readonly createMutators: (handlers: import("./mutators").MarcoZeroMutatorHandlers) => import("./mutators").MarcoZeroMutators;
|
|
3
|
+
readonly permissions: Promise<{
|
|
4
|
+
tables: Record<string, {
|
|
5
|
+
row?: {
|
|
6
|
+
select?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
7
|
+
insert?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
8
|
+
update?: {
|
|
9
|
+
preMutation?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
10
|
+
postMutation?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
11
|
+
} | undefined;
|
|
12
|
+
delete?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
13
|
+
} | undefined;
|
|
14
|
+
cell?: Record<string, {
|
|
15
|
+
select?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
16
|
+
insert?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
17
|
+
update?: {
|
|
18
|
+
preMutation?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
19
|
+
postMutation?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
20
|
+
} | undefined;
|
|
21
|
+
delete?: ["allow", import("@rocicorp/zero").Condition][] | undefined;
|
|
22
|
+
}> | undefined;
|
|
23
|
+
}>;
|
|
24
|
+
} | undefined>;
|
|
3
25
|
readonly queries: {
|
|
4
26
|
readonly getAccounts: import("@rocicorp/zero").SyncedQuery<"getAccounts", import("..").MarcoSyncedQueryContext, true, [], import("@rocicorp/zero").Query<{
|
|
5
27
|
tables: {
|
|
@@ -24,11 +46,15 @@ export declare const marcoZero: {
|
|
|
24
46
|
customType: string;
|
|
25
47
|
}, "optional"> & {
|
|
26
48
|
optional: true;
|
|
49
|
+
} & {
|
|
50
|
+
serverName: string;
|
|
27
51
|
};
|
|
28
52
|
readonly undoSendEnabled: {
|
|
29
53
|
type: "boolean";
|
|
30
54
|
optional: false;
|
|
31
55
|
customType: boolean;
|
|
56
|
+
} & {
|
|
57
|
+
serverName: string;
|
|
32
58
|
};
|
|
33
59
|
};
|
|
34
60
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -42,6 +68,8 @@ export declare const marcoZero: {
|
|
|
42
68
|
type: "number";
|
|
43
69
|
optional: false;
|
|
44
70
|
customType: number;
|
|
71
|
+
} & {
|
|
72
|
+
serverName: string;
|
|
45
73
|
};
|
|
46
74
|
readonly id: {
|
|
47
75
|
type: "string";
|
|
@@ -57,6 +85,8 @@ export declare const marcoZero: {
|
|
|
57
85
|
type: "string";
|
|
58
86
|
optional: false;
|
|
59
87
|
customType: string;
|
|
88
|
+
} & {
|
|
89
|
+
serverName: string;
|
|
60
90
|
};
|
|
61
91
|
};
|
|
62
92
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -70,6 +100,8 @@ export declare const marcoZero: {
|
|
|
70
100
|
type: "string";
|
|
71
101
|
optional: false;
|
|
72
102
|
customType: string;
|
|
103
|
+
} & {
|
|
104
|
+
serverName: string;
|
|
73
105
|
};
|
|
74
106
|
readonly id: {
|
|
75
107
|
type: "string";
|
|
@@ -87,6 +119,8 @@ export declare const marcoZero: {
|
|
|
87
119
|
type: "string";
|
|
88
120
|
optional: false;
|
|
89
121
|
customType: string;
|
|
122
|
+
} & {
|
|
123
|
+
serverName: string;
|
|
90
124
|
};
|
|
91
125
|
};
|
|
92
126
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -107,6 +141,8 @@ export declare const marcoZero: {
|
|
|
107
141
|
customType: string;
|
|
108
142
|
}, "optional"> & {
|
|
109
143
|
optional: true;
|
|
144
|
+
} & {
|
|
145
|
+
serverName: string;
|
|
110
146
|
};
|
|
111
147
|
readonly id: {
|
|
112
148
|
type: "string";
|
|
@@ -117,16 +153,22 @@ export declare const marcoZero: {
|
|
|
117
153
|
type: "string";
|
|
118
154
|
optional: false;
|
|
119
155
|
customType: "AWAITING_CONNECTION" | "CONNECTED" | "CONNECTION_FAILED_AUTHENTICATION_ERROR" | "CONNECTION_FAILED_CONNECTION_ERROR" | "CONNECTION_FAILED_OAUTH_EXCHANGE_ERROR" | "CONNECTION_FAILED_QUOTA_ERROR" | "CONNECTION_FAILED_UNKNOWN_ERROR";
|
|
156
|
+
} & {
|
|
157
|
+
serverName: string;
|
|
120
158
|
};
|
|
121
159
|
readonly mailProcessedCount: {
|
|
122
160
|
type: "number";
|
|
123
161
|
optional: false;
|
|
124
162
|
customType: number;
|
|
163
|
+
} & {
|
|
164
|
+
serverName: string;
|
|
125
165
|
};
|
|
126
166
|
readonly mailTotalCount: {
|
|
127
167
|
type: "number";
|
|
128
168
|
optional: false;
|
|
129
169
|
customType: number;
|
|
170
|
+
} & {
|
|
171
|
+
serverName: string;
|
|
130
172
|
};
|
|
131
173
|
readonly primaryAliasId: Omit<{
|
|
132
174
|
type: "string";
|
|
@@ -134,11 +176,15 @@ export declare const marcoZero: {
|
|
|
134
176
|
customType: string;
|
|
135
177
|
}, "optional"> & {
|
|
136
178
|
optional: true;
|
|
179
|
+
} & {
|
|
180
|
+
serverName: string;
|
|
137
181
|
};
|
|
138
182
|
readonly userId: {
|
|
139
183
|
type: "string";
|
|
140
184
|
optional: false;
|
|
141
185
|
customType: string;
|
|
186
|
+
} & {
|
|
187
|
+
serverName: string;
|
|
142
188
|
};
|
|
143
189
|
};
|
|
144
190
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -152,11 +198,15 @@ export declare const marcoZero: {
|
|
|
152
198
|
type: "string";
|
|
153
199
|
optional: false;
|
|
154
200
|
customType: string;
|
|
201
|
+
} & {
|
|
202
|
+
serverName: string;
|
|
155
203
|
};
|
|
156
204
|
readonly emailAddress: {
|
|
157
205
|
type: "string";
|
|
158
206
|
optional: false;
|
|
159
207
|
customType: string;
|
|
208
|
+
} & {
|
|
209
|
+
serverName: string;
|
|
160
210
|
};
|
|
161
211
|
readonly id: {
|
|
162
212
|
type: "string";
|
|
@@ -167,6 +217,8 @@ export declare const marcoZero: {
|
|
|
167
217
|
type: "boolean";
|
|
168
218
|
optional: false;
|
|
169
219
|
customType: boolean;
|
|
220
|
+
} & {
|
|
221
|
+
serverName: string;
|
|
170
222
|
};
|
|
171
223
|
readonly name: Omit<{
|
|
172
224
|
type: "string";
|
|
@@ -187,6 +239,8 @@ export declare const marcoZero: {
|
|
|
187
239
|
type: "string";
|
|
188
240
|
optional: false;
|
|
189
241
|
customType: string;
|
|
242
|
+
} & {
|
|
243
|
+
serverName: string;
|
|
190
244
|
};
|
|
191
245
|
readonly id: {
|
|
192
246
|
type: "string";
|
|
@@ -204,6 +258,8 @@ export declare const marcoZero: {
|
|
|
204
258
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
205
259
|
}, "optional"> & {
|
|
206
260
|
optional: true;
|
|
261
|
+
} & {
|
|
262
|
+
serverName: string;
|
|
207
263
|
};
|
|
208
264
|
};
|
|
209
265
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -217,6 +273,8 @@ export declare const marcoZero: {
|
|
|
217
273
|
type: "string";
|
|
218
274
|
optional: false;
|
|
219
275
|
customType: string;
|
|
276
|
+
} & {
|
|
277
|
+
serverName: string;
|
|
220
278
|
};
|
|
221
279
|
readonly body: {
|
|
222
280
|
type: "json";
|
|
@@ -241,11 +299,15 @@ export declare const marcoZero: {
|
|
|
241
299
|
customType: string;
|
|
242
300
|
}, "optional"> & {
|
|
243
301
|
optional: true;
|
|
302
|
+
} & {
|
|
303
|
+
serverName: string;
|
|
244
304
|
};
|
|
245
305
|
readonly fromEmail: {
|
|
246
306
|
type: "string";
|
|
247
307
|
optional: false;
|
|
248
308
|
customType: string;
|
|
309
|
+
} & {
|
|
310
|
+
serverName: string;
|
|
249
311
|
};
|
|
250
312
|
readonly fromName: Omit<{
|
|
251
313
|
type: "string";
|
|
@@ -253,6 +315,8 @@ export declare const marcoZero: {
|
|
|
253
315
|
customType: string;
|
|
254
316
|
}, "optional"> & {
|
|
255
317
|
optional: true;
|
|
318
|
+
} & {
|
|
319
|
+
serverName: string;
|
|
256
320
|
};
|
|
257
321
|
readonly id: {
|
|
258
322
|
type: "string";
|
|
@@ -265,6 +329,8 @@ export declare const marcoZero: {
|
|
|
265
329
|
customType: string;
|
|
266
330
|
}, "optional"> & {
|
|
267
331
|
optional: true;
|
|
332
|
+
} & {
|
|
333
|
+
serverName: string;
|
|
268
334
|
};
|
|
269
335
|
readonly scheduledFor: Omit<{
|
|
270
336
|
type: "number";
|
|
@@ -272,6 +338,8 @@ export declare const marcoZero: {
|
|
|
272
338
|
customType: number;
|
|
273
339
|
}, "optional"> & {
|
|
274
340
|
optional: true;
|
|
341
|
+
} & {
|
|
342
|
+
serverName: string;
|
|
275
343
|
};
|
|
276
344
|
readonly status: {
|
|
277
345
|
type: "string";
|
|
@@ -294,11 +362,15 @@ export declare const marcoZero: {
|
|
|
294
362
|
type: "number";
|
|
295
363
|
optional: false;
|
|
296
364
|
customType: number;
|
|
365
|
+
} & {
|
|
366
|
+
serverName: string;
|
|
297
367
|
};
|
|
298
368
|
readonly userId: {
|
|
299
369
|
type: "string";
|
|
300
370
|
optional: false;
|
|
301
371
|
customType: string;
|
|
372
|
+
} & {
|
|
373
|
+
serverName: string;
|
|
302
374
|
};
|
|
303
375
|
};
|
|
304
376
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -312,11 +384,15 @@ export declare const marcoZero: {
|
|
|
312
384
|
type: "string";
|
|
313
385
|
optional: false;
|
|
314
386
|
customType: string;
|
|
387
|
+
} & {
|
|
388
|
+
serverName: string;
|
|
315
389
|
};
|
|
316
390
|
readonly emailAddress: {
|
|
317
391
|
type: "string";
|
|
318
392
|
optional: false;
|
|
319
393
|
customType: string;
|
|
394
|
+
} & {
|
|
395
|
+
serverName: string;
|
|
320
396
|
};
|
|
321
397
|
readonly id: {
|
|
322
398
|
type: "string";
|
|
@@ -340,6 +416,8 @@ export declare const marcoZero: {
|
|
|
340
416
|
type: "string";
|
|
341
417
|
optional: false;
|
|
342
418
|
customType: string;
|
|
419
|
+
} & {
|
|
420
|
+
serverName: string;
|
|
343
421
|
};
|
|
344
422
|
readonly failed: {
|
|
345
423
|
type: "boolean";
|
|
@@ -350,6 +428,8 @@ export declare const marcoZero: {
|
|
|
350
428
|
type: "string";
|
|
351
429
|
optional: false;
|
|
352
430
|
customType: string;
|
|
431
|
+
} & {
|
|
432
|
+
serverName: string;
|
|
353
433
|
};
|
|
354
434
|
readonly id: {
|
|
355
435
|
type: "string";
|
|
@@ -360,21 +440,29 @@ export declare const marcoZero: {
|
|
|
360
440
|
type: "string";
|
|
361
441
|
optional: false;
|
|
362
442
|
customType: string;
|
|
443
|
+
} & {
|
|
444
|
+
serverName: string;
|
|
363
445
|
};
|
|
364
446
|
readonly totalChunks: {
|
|
365
447
|
type: "number";
|
|
366
448
|
optional: false;
|
|
367
449
|
customType: number;
|
|
450
|
+
} & {
|
|
451
|
+
serverName: string;
|
|
368
452
|
};
|
|
369
453
|
readonly totalSize: {
|
|
370
454
|
type: "number";
|
|
371
455
|
optional: false;
|
|
372
456
|
customType: number;
|
|
457
|
+
} & {
|
|
458
|
+
serverName: string;
|
|
373
459
|
};
|
|
374
460
|
readonly uploadedChunks: {
|
|
375
461
|
type: "number";
|
|
376
462
|
optional: false;
|
|
377
463
|
customType: number;
|
|
464
|
+
} & {
|
|
465
|
+
serverName: string;
|
|
378
466
|
};
|
|
379
467
|
};
|
|
380
468
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -388,6 +476,8 @@ export declare const marcoZero: {
|
|
|
388
476
|
type: "string";
|
|
389
477
|
optional: false;
|
|
390
478
|
customType: string;
|
|
479
|
+
} & {
|
|
480
|
+
serverName: string;
|
|
391
481
|
};
|
|
392
482
|
readonly flagged: {
|
|
393
483
|
type: "boolean";
|
|
@@ -403,6 +493,8 @@ export declare const marcoZero: {
|
|
|
403
493
|
type: "number";
|
|
404
494
|
optional: false;
|
|
405
495
|
customType: number;
|
|
496
|
+
} & {
|
|
497
|
+
serverName: string;
|
|
406
498
|
};
|
|
407
499
|
readonly seen: {
|
|
408
500
|
type: "boolean";
|
|
@@ -413,6 +505,8 @@ export declare const marcoZero: {
|
|
|
413
505
|
type: "string";
|
|
414
506
|
optional: false;
|
|
415
507
|
customType: string;
|
|
508
|
+
} & {
|
|
509
|
+
serverName: string;
|
|
416
510
|
};
|
|
417
511
|
readonly words: {
|
|
418
512
|
type: "string";
|
|
@@ -431,11 +525,15 @@ export declare const marcoZero: {
|
|
|
431
525
|
type: "string";
|
|
432
526
|
optional: false;
|
|
433
527
|
customType: string;
|
|
528
|
+
} & {
|
|
529
|
+
serverName: string;
|
|
434
530
|
};
|
|
435
531
|
readonly threadId: {
|
|
436
532
|
type: "string";
|
|
437
533
|
optional: false;
|
|
438
534
|
customType: string;
|
|
535
|
+
} & {
|
|
536
|
+
serverName: string;
|
|
439
537
|
};
|
|
440
538
|
};
|
|
441
539
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -449,6 +547,8 @@ export declare const marcoZero: {
|
|
|
449
547
|
type: "number";
|
|
450
548
|
optional: false;
|
|
451
549
|
customType: number;
|
|
550
|
+
} & {
|
|
551
|
+
serverName: string;
|
|
452
552
|
};
|
|
453
553
|
readonly envelopeSubject: Omit<{
|
|
454
554
|
type: "string";
|
|
@@ -456,6 +556,8 @@ export declare const marcoZero: {
|
|
|
456
556
|
customType: string;
|
|
457
557
|
}, "optional"> & {
|
|
458
558
|
optional: true;
|
|
559
|
+
} & {
|
|
560
|
+
serverName: string;
|
|
459
561
|
};
|
|
460
562
|
readonly id: {
|
|
461
563
|
type: "string";
|
|
@@ -466,11 +568,15 @@ export declare const marcoZero: {
|
|
|
466
568
|
type: "string";
|
|
467
569
|
optional: false;
|
|
468
570
|
customType: string;
|
|
571
|
+
} & {
|
|
572
|
+
serverName: string;
|
|
469
573
|
};
|
|
470
574
|
readonly senderEmail: {
|
|
471
575
|
type: "string";
|
|
472
576
|
optional: false;
|
|
473
577
|
customType: string;
|
|
578
|
+
} & {
|
|
579
|
+
serverName: string;
|
|
474
580
|
};
|
|
475
581
|
readonly senderName: Omit<{
|
|
476
582
|
type: "string";
|
|
@@ -478,11 +584,15 @@ export declare const marcoZero: {
|
|
|
478
584
|
customType: string;
|
|
479
585
|
}, "optional"> & {
|
|
480
586
|
optional: true;
|
|
587
|
+
} & {
|
|
588
|
+
serverName: string;
|
|
481
589
|
};
|
|
482
590
|
readonly threadId: {
|
|
483
591
|
type: "string";
|
|
484
592
|
optional: false;
|
|
485
593
|
customType: string;
|
|
594
|
+
} & {
|
|
595
|
+
serverName: string;
|
|
486
596
|
};
|
|
487
597
|
};
|
|
488
598
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -496,6 +606,8 @@ export declare const marcoZero: {
|
|
|
496
606
|
type: "string";
|
|
497
607
|
optional: false;
|
|
498
608
|
customType: string;
|
|
609
|
+
} & {
|
|
610
|
+
serverName: string;
|
|
499
611
|
};
|
|
500
612
|
readonly id: {
|
|
501
613
|
type: "string";
|
|
@@ -513,6 +625,8 @@ export declare const marcoZero: {
|
|
|
513
625
|
type: "string";
|
|
514
626
|
optional: false;
|
|
515
627
|
customType: string;
|
|
628
|
+
} & {
|
|
629
|
+
serverName: string;
|
|
516
630
|
};
|
|
517
631
|
readonly type: {
|
|
518
632
|
type: "string";
|
|
@@ -531,6 +645,8 @@ export declare const marcoZero: {
|
|
|
531
645
|
type: "string";
|
|
532
646
|
optional: false;
|
|
533
647
|
customType: string;
|
|
648
|
+
} & {
|
|
649
|
+
serverName: string;
|
|
534
650
|
};
|
|
535
651
|
readonly id: {
|
|
536
652
|
type: "string";
|
|
@@ -541,6 +657,8 @@ export declare const marcoZero: {
|
|
|
541
657
|
type: "string";
|
|
542
658
|
optional: false;
|
|
543
659
|
customType: string;
|
|
660
|
+
} & {
|
|
661
|
+
serverName: string;
|
|
544
662
|
};
|
|
545
663
|
readonly size: {
|
|
546
664
|
type: "number";
|
|
@@ -556,6 +674,8 @@ export declare const marcoZero: {
|
|
|
556
674
|
type: "string";
|
|
557
675
|
optional: false;
|
|
558
676
|
customType: string;
|
|
677
|
+
} & {
|
|
678
|
+
serverName: string;
|
|
559
679
|
};
|
|
560
680
|
};
|
|
561
681
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -569,11 +689,15 @@ export declare const marcoZero: {
|
|
|
569
689
|
type: "string";
|
|
570
690
|
optional: false;
|
|
571
691
|
customType: string;
|
|
692
|
+
} & {
|
|
693
|
+
serverName: string;
|
|
572
694
|
};
|
|
573
695
|
readonly threadMessageId: {
|
|
574
696
|
type: "string";
|
|
575
697
|
optional: false;
|
|
576
698
|
customType: string;
|
|
699
|
+
} & {
|
|
700
|
+
serverName: string;
|
|
577
701
|
};
|
|
578
702
|
};
|
|
579
703
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -585,7 +709,7 @@ export declare const marcoZero: {
|
|
|
585
709
|
readonly user: {
|
|
586
710
|
accounts: [{
|
|
587
711
|
readonly sourceField: string[];
|
|
588
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
712
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
589
713
|
readonly destSchema: "account";
|
|
590
714
|
readonly cardinality: "many";
|
|
591
715
|
}];
|
|
@@ -597,7 +721,7 @@ export declare const marcoZero: {
|
|
|
597
721
|
}];
|
|
598
722
|
drafts: [{
|
|
599
723
|
readonly sourceField: string[];
|
|
600
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
724
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
601
725
|
readonly destSchema: "draft";
|
|
602
726
|
readonly cardinality: "many";
|
|
603
727
|
}];
|
|
@@ -617,7 +741,7 @@ export declare const marcoZero: {
|
|
|
617
741
|
readonly userPushNotificationToken: {
|
|
618
742
|
user: [{
|
|
619
743
|
readonly sourceField: string[];
|
|
620
|
-
readonly destField: ("id" | "name" | "
|
|
744
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
621
745
|
readonly destSchema: "user";
|
|
622
746
|
readonly cardinality: "one";
|
|
623
747
|
}];
|
|
@@ -625,7 +749,7 @@ export declare const marcoZero: {
|
|
|
625
749
|
readonly contact: {
|
|
626
750
|
user: [{
|
|
627
751
|
readonly sourceField: string[];
|
|
628
|
-
readonly destField: ("id" | "name" | "
|
|
752
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
629
753
|
readonly destSchema: "user";
|
|
630
754
|
readonly cardinality: "one";
|
|
631
755
|
}];
|
|
@@ -639,7 +763,7 @@ export declare const marcoZero: {
|
|
|
639
763
|
}];
|
|
640
764
|
drafts: [{
|
|
641
765
|
readonly sourceField: string[];
|
|
642
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
766
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
643
767
|
readonly destSchema: "draft";
|
|
644
768
|
readonly cardinality: "many";
|
|
645
769
|
}];
|
|
@@ -663,7 +787,7 @@ export declare const marcoZero: {
|
|
|
663
787
|
}];
|
|
664
788
|
user: [{
|
|
665
789
|
readonly sourceField: string[];
|
|
666
|
-
readonly destField: ("id" | "name" | "
|
|
790
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
667
791
|
readonly destSchema: "user";
|
|
668
792
|
readonly cardinality: "one";
|
|
669
793
|
}];
|
|
@@ -671,7 +795,7 @@ export declare const marcoZero: {
|
|
|
671
795
|
readonly accountAlias: {
|
|
672
796
|
account: [{
|
|
673
797
|
readonly sourceField: string[];
|
|
674
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
798
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
675
799
|
readonly destSchema: "account";
|
|
676
800
|
readonly cardinality: "one";
|
|
677
801
|
}];
|
|
@@ -679,7 +803,7 @@ export declare const marcoZero: {
|
|
|
679
803
|
readonly accountLabel: {
|
|
680
804
|
account: [{
|
|
681
805
|
readonly sourceField: string[];
|
|
682
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
806
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
683
807
|
readonly destSchema: "account";
|
|
684
808
|
readonly cardinality: "one";
|
|
685
809
|
}];
|
|
@@ -690,7 +814,7 @@ export declare const marcoZero: {
|
|
|
690
814
|
readonly cardinality: "many";
|
|
691
815
|
}, {
|
|
692
816
|
readonly sourceField: string[];
|
|
693
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
817
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
694
818
|
readonly destSchema: "threadMessage";
|
|
695
819
|
readonly cardinality: "many";
|
|
696
820
|
}];
|
|
@@ -709,7 +833,7 @@ export declare const marcoZero: {
|
|
|
709
833
|
readonly draft: {
|
|
710
834
|
account: [{
|
|
711
835
|
readonly sourceField: string[];
|
|
712
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
836
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
713
837
|
readonly destSchema: "account";
|
|
714
838
|
readonly cardinality: "one";
|
|
715
839
|
}];
|
|
@@ -727,7 +851,7 @@ export declare const marcoZero: {
|
|
|
727
851
|
}];
|
|
728
852
|
user: [{
|
|
729
853
|
readonly sourceField: string[];
|
|
730
|
-
readonly destField: ("id" | "name" | "
|
|
854
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
731
855
|
readonly destSchema: "user";
|
|
732
856
|
readonly cardinality: "one";
|
|
733
857
|
}];
|
|
@@ -735,7 +859,7 @@ export declare const marcoZero: {
|
|
|
735
859
|
readonly draftRecipient: {
|
|
736
860
|
draft: [{
|
|
737
861
|
readonly sourceField: string[];
|
|
738
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
862
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
739
863
|
readonly destSchema: "draft";
|
|
740
864
|
readonly cardinality: "one";
|
|
741
865
|
}];
|
|
@@ -743,7 +867,7 @@ export declare const marcoZero: {
|
|
|
743
867
|
readonly draftAttachment: {
|
|
744
868
|
draft: [{
|
|
745
869
|
readonly sourceField: string[];
|
|
746
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
870
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
747
871
|
readonly destSchema: "draft";
|
|
748
872
|
readonly cardinality: "one";
|
|
749
873
|
}];
|
|
@@ -751,7 +875,7 @@ export declare const marcoZero: {
|
|
|
751
875
|
readonly thread: {
|
|
752
876
|
account: [{
|
|
753
877
|
readonly sourceField: string[];
|
|
754
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
878
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
755
879
|
readonly destSchema: "account";
|
|
756
880
|
readonly cardinality: "one";
|
|
757
881
|
}];
|
|
@@ -768,13 +892,13 @@ export declare const marcoZero: {
|
|
|
768
892
|
}];
|
|
769
893
|
messages: [{
|
|
770
894
|
readonly sourceField: string[];
|
|
771
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
895
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
772
896
|
readonly destSchema: "threadMessage";
|
|
773
897
|
readonly cardinality: "many";
|
|
774
898
|
}];
|
|
775
899
|
user: [{
|
|
776
900
|
readonly sourceField: string[];
|
|
777
|
-
readonly destField: ("id" | "name" | "
|
|
901
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
778
902
|
readonly destSchema: "user";
|
|
779
903
|
readonly cardinality: "one";
|
|
780
904
|
}];
|
|
@@ -827,7 +951,7 @@ export declare const marcoZero: {
|
|
|
827
951
|
readonly threadMessageRecipient: {
|
|
828
952
|
message: [{
|
|
829
953
|
readonly sourceField: string[];
|
|
830
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
954
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
831
955
|
readonly destSchema: "threadMessage";
|
|
832
956
|
readonly cardinality: "one";
|
|
833
957
|
}];
|
|
@@ -835,7 +959,7 @@ export declare const marcoZero: {
|
|
|
835
959
|
readonly threadMessageAttachment: {
|
|
836
960
|
message: [{
|
|
837
961
|
readonly sourceField: string[];
|
|
838
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
962
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
839
963
|
readonly destSchema: "threadMessage";
|
|
840
964
|
readonly cardinality: "one";
|
|
841
965
|
}];
|
|
@@ -849,7 +973,7 @@ export declare const marcoZero: {
|
|
|
849
973
|
}];
|
|
850
974
|
message: [{
|
|
851
975
|
readonly sourceField: string[];
|
|
852
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
976
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
853
977
|
readonly destSchema: "threadMessage";
|
|
854
978
|
readonly cardinality: "one";
|
|
855
979
|
}];
|
|
@@ -889,13 +1013,6 @@ export declare const marcoZero: {
|
|
|
889
1013
|
readonly path: string;
|
|
890
1014
|
readonly specialUse: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH" | null;
|
|
891
1015
|
}[];
|
|
892
|
-
} & {
|
|
893
|
-
readonly user: {
|
|
894
|
-
readonly id: string;
|
|
895
|
-
readonly name: string | null;
|
|
896
|
-
readonly profilePicture: string | null;
|
|
897
|
-
readonly undoSendEnabled: boolean;
|
|
898
|
-
} | undefined;
|
|
899
1016
|
}>>;
|
|
900
1017
|
readonly getContacts: import("@rocicorp/zero").SyncedQuery<"getContacts", import("..").MarcoSyncedQueryContext, true, [{
|
|
901
1018
|
limit: number;
|
|
@@ -927,11 +1044,15 @@ export declare const marcoZero: {
|
|
|
927
1044
|
customType: string;
|
|
928
1045
|
}, "optional"> & {
|
|
929
1046
|
optional: true;
|
|
1047
|
+
} & {
|
|
1048
|
+
serverName: string;
|
|
930
1049
|
};
|
|
931
1050
|
readonly undoSendEnabled: {
|
|
932
1051
|
type: "boolean";
|
|
933
1052
|
optional: false;
|
|
934
1053
|
customType: boolean;
|
|
1054
|
+
} & {
|
|
1055
|
+
serverName: string;
|
|
935
1056
|
};
|
|
936
1057
|
};
|
|
937
1058
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -945,6 +1066,8 @@ export declare const marcoZero: {
|
|
|
945
1066
|
type: "number";
|
|
946
1067
|
optional: false;
|
|
947
1068
|
customType: number;
|
|
1069
|
+
} & {
|
|
1070
|
+
serverName: string;
|
|
948
1071
|
};
|
|
949
1072
|
readonly id: {
|
|
950
1073
|
type: "string";
|
|
@@ -960,6 +1083,8 @@ export declare const marcoZero: {
|
|
|
960
1083
|
type: "string";
|
|
961
1084
|
optional: false;
|
|
962
1085
|
customType: string;
|
|
1086
|
+
} & {
|
|
1087
|
+
serverName: string;
|
|
963
1088
|
};
|
|
964
1089
|
};
|
|
965
1090
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -973,6 +1098,8 @@ export declare const marcoZero: {
|
|
|
973
1098
|
type: "string";
|
|
974
1099
|
optional: false;
|
|
975
1100
|
customType: string;
|
|
1101
|
+
} & {
|
|
1102
|
+
serverName: string;
|
|
976
1103
|
};
|
|
977
1104
|
readonly id: {
|
|
978
1105
|
type: "string";
|
|
@@ -990,6 +1117,8 @@ export declare const marcoZero: {
|
|
|
990
1117
|
type: "string";
|
|
991
1118
|
optional: false;
|
|
992
1119
|
customType: string;
|
|
1120
|
+
} & {
|
|
1121
|
+
serverName: string;
|
|
993
1122
|
};
|
|
994
1123
|
};
|
|
995
1124
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1010,6 +1139,8 @@ export declare const marcoZero: {
|
|
|
1010
1139
|
customType: string;
|
|
1011
1140
|
}, "optional"> & {
|
|
1012
1141
|
optional: true;
|
|
1142
|
+
} & {
|
|
1143
|
+
serverName: string;
|
|
1013
1144
|
};
|
|
1014
1145
|
readonly id: {
|
|
1015
1146
|
type: "string";
|
|
@@ -1020,16 +1151,22 @@ export declare const marcoZero: {
|
|
|
1020
1151
|
type: "string";
|
|
1021
1152
|
optional: false;
|
|
1022
1153
|
customType: "AWAITING_CONNECTION" | "CONNECTED" | "CONNECTION_FAILED_AUTHENTICATION_ERROR" | "CONNECTION_FAILED_CONNECTION_ERROR" | "CONNECTION_FAILED_OAUTH_EXCHANGE_ERROR" | "CONNECTION_FAILED_QUOTA_ERROR" | "CONNECTION_FAILED_UNKNOWN_ERROR";
|
|
1154
|
+
} & {
|
|
1155
|
+
serverName: string;
|
|
1023
1156
|
};
|
|
1024
1157
|
readonly mailProcessedCount: {
|
|
1025
1158
|
type: "number";
|
|
1026
1159
|
optional: false;
|
|
1027
1160
|
customType: number;
|
|
1161
|
+
} & {
|
|
1162
|
+
serverName: string;
|
|
1028
1163
|
};
|
|
1029
1164
|
readonly mailTotalCount: {
|
|
1030
1165
|
type: "number";
|
|
1031
1166
|
optional: false;
|
|
1032
1167
|
customType: number;
|
|
1168
|
+
} & {
|
|
1169
|
+
serverName: string;
|
|
1033
1170
|
};
|
|
1034
1171
|
readonly primaryAliasId: Omit<{
|
|
1035
1172
|
type: "string";
|
|
@@ -1037,11 +1174,15 @@ export declare const marcoZero: {
|
|
|
1037
1174
|
customType: string;
|
|
1038
1175
|
}, "optional"> & {
|
|
1039
1176
|
optional: true;
|
|
1177
|
+
} & {
|
|
1178
|
+
serverName: string;
|
|
1040
1179
|
};
|
|
1041
1180
|
readonly userId: {
|
|
1042
1181
|
type: "string";
|
|
1043
1182
|
optional: false;
|
|
1044
1183
|
customType: string;
|
|
1184
|
+
} & {
|
|
1185
|
+
serverName: string;
|
|
1045
1186
|
};
|
|
1046
1187
|
};
|
|
1047
1188
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1055,11 +1196,15 @@ export declare const marcoZero: {
|
|
|
1055
1196
|
type: "string";
|
|
1056
1197
|
optional: false;
|
|
1057
1198
|
customType: string;
|
|
1199
|
+
} & {
|
|
1200
|
+
serverName: string;
|
|
1058
1201
|
};
|
|
1059
1202
|
readonly emailAddress: {
|
|
1060
1203
|
type: "string";
|
|
1061
1204
|
optional: false;
|
|
1062
1205
|
customType: string;
|
|
1206
|
+
} & {
|
|
1207
|
+
serverName: string;
|
|
1063
1208
|
};
|
|
1064
1209
|
readonly id: {
|
|
1065
1210
|
type: "string";
|
|
@@ -1070,6 +1215,8 @@ export declare const marcoZero: {
|
|
|
1070
1215
|
type: "boolean";
|
|
1071
1216
|
optional: false;
|
|
1072
1217
|
customType: boolean;
|
|
1218
|
+
} & {
|
|
1219
|
+
serverName: string;
|
|
1073
1220
|
};
|
|
1074
1221
|
readonly name: Omit<{
|
|
1075
1222
|
type: "string";
|
|
@@ -1090,6 +1237,8 @@ export declare const marcoZero: {
|
|
|
1090
1237
|
type: "string";
|
|
1091
1238
|
optional: false;
|
|
1092
1239
|
customType: string;
|
|
1240
|
+
} & {
|
|
1241
|
+
serverName: string;
|
|
1093
1242
|
};
|
|
1094
1243
|
readonly id: {
|
|
1095
1244
|
type: "string";
|
|
@@ -1107,6 +1256,8 @@ export declare const marcoZero: {
|
|
|
1107
1256
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
1108
1257
|
}, "optional"> & {
|
|
1109
1258
|
optional: true;
|
|
1259
|
+
} & {
|
|
1260
|
+
serverName: string;
|
|
1110
1261
|
};
|
|
1111
1262
|
};
|
|
1112
1263
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1120,6 +1271,8 @@ export declare const marcoZero: {
|
|
|
1120
1271
|
type: "string";
|
|
1121
1272
|
optional: false;
|
|
1122
1273
|
customType: string;
|
|
1274
|
+
} & {
|
|
1275
|
+
serverName: string;
|
|
1123
1276
|
};
|
|
1124
1277
|
readonly body: {
|
|
1125
1278
|
type: "json";
|
|
@@ -1144,11 +1297,15 @@ export declare const marcoZero: {
|
|
|
1144
1297
|
customType: string;
|
|
1145
1298
|
}, "optional"> & {
|
|
1146
1299
|
optional: true;
|
|
1300
|
+
} & {
|
|
1301
|
+
serverName: string;
|
|
1147
1302
|
};
|
|
1148
1303
|
readonly fromEmail: {
|
|
1149
1304
|
type: "string";
|
|
1150
1305
|
optional: false;
|
|
1151
1306
|
customType: string;
|
|
1307
|
+
} & {
|
|
1308
|
+
serverName: string;
|
|
1152
1309
|
};
|
|
1153
1310
|
readonly fromName: Omit<{
|
|
1154
1311
|
type: "string";
|
|
@@ -1156,6 +1313,8 @@ export declare const marcoZero: {
|
|
|
1156
1313
|
customType: string;
|
|
1157
1314
|
}, "optional"> & {
|
|
1158
1315
|
optional: true;
|
|
1316
|
+
} & {
|
|
1317
|
+
serverName: string;
|
|
1159
1318
|
};
|
|
1160
1319
|
readonly id: {
|
|
1161
1320
|
type: "string";
|
|
@@ -1168,6 +1327,8 @@ export declare const marcoZero: {
|
|
|
1168
1327
|
customType: string;
|
|
1169
1328
|
}, "optional"> & {
|
|
1170
1329
|
optional: true;
|
|
1330
|
+
} & {
|
|
1331
|
+
serverName: string;
|
|
1171
1332
|
};
|
|
1172
1333
|
readonly scheduledFor: Omit<{
|
|
1173
1334
|
type: "number";
|
|
@@ -1175,6 +1336,8 @@ export declare const marcoZero: {
|
|
|
1175
1336
|
customType: number;
|
|
1176
1337
|
}, "optional"> & {
|
|
1177
1338
|
optional: true;
|
|
1339
|
+
} & {
|
|
1340
|
+
serverName: string;
|
|
1178
1341
|
};
|
|
1179
1342
|
readonly status: {
|
|
1180
1343
|
type: "string";
|
|
@@ -1197,11 +1360,15 @@ export declare const marcoZero: {
|
|
|
1197
1360
|
type: "number";
|
|
1198
1361
|
optional: false;
|
|
1199
1362
|
customType: number;
|
|
1363
|
+
} & {
|
|
1364
|
+
serverName: string;
|
|
1200
1365
|
};
|
|
1201
1366
|
readonly userId: {
|
|
1202
1367
|
type: "string";
|
|
1203
1368
|
optional: false;
|
|
1204
1369
|
customType: string;
|
|
1370
|
+
} & {
|
|
1371
|
+
serverName: string;
|
|
1205
1372
|
};
|
|
1206
1373
|
};
|
|
1207
1374
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1215,11 +1382,15 @@ export declare const marcoZero: {
|
|
|
1215
1382
|
type: "string";
|
|
1216
1383
|
optional: false;
|
|
1217
1384
|
customType: string;
|
|
1385
|
+
} & {
|
|
1386
|
+
serverName: string;
|
|
1218
1387
|
};
|
|
1219
1388
|
readonly emailAddress: {
|
|
1220
1389
|
type: "string";
|
|
1221
1390
|
optional: false;
|
|
1222
1391
|
customType: string;
|
|
1392
|
+
} & {
|
|
1393
|
+
serverName: string;
|
|
1223
1394
|
};
|
|
1224
1395
|
readonly id: {
|
|
1225
1396
|
type: "string";
|
|
@@ -1243,6 +1414,8 @@ export declare const marcoZero: {
|
|
|
1243
1414
|
type: "string";
|
|
1244
1415
|
optional: false;
|
|
1245
1416
|
customType: string;
|
|
1417
|
+
} & {
|
|
1418
|
+
serverName: string;
|
|
1246
1419
|
};
|
|
1247
1420
|
readonly failed: {
|
|
1248
1421
|
type: "boolean";
|
|
@@ -1253,6 +1426,8 @@ export declare const marcoZero: {
|
|
|
1253
1426
|
type: "string";
|
|
1254
1427
|
optional: false;
|
|
1255
1428
|
customType: string;
|
|
1429
|
+
} & {
|
|
1430
|
+
serverName: string;
|
|
1256
1431
|
};
|
|
1257
1432
|
readonly id: {
|
|
1258
1433
|
type: "string";
|
|
@@ -1263,21 +1438,29 @@ export declare const marcoZero: {
|
|
|
1263
1438
|
type: "string";
|
|
1264
1439
|
optional: false;
|
|
1265
1440
|
customType: string;
|
|
1441
|
+
} & {
|
|
1442
|
+
serverName: string;
|
|
1266
1443
|
};
|
|
1267
1444
|
readonly totalChunks: {
|
|
1268
1445
|
type: "number";
|
|
1269
1446
|
optional: false;
|
|
1270
1447
|
customType: number;
|
|
1448
|
+
} & {
|
|
1449
|
+
serverName: string;
|
|
1271
1450
|
};
|
|
1272
1451
|
readonly totalSize: {
|
|
1273
1452
|
type: "number";
|
|
1274
1453
|
optional: false;
|
|
1275
1454
|
customType: number;
|
|
1455
|
+
} & {
|
|
1456
|
+
serverName: string;
|
|
1276
1457
|
};
|
|
1277
1458
|
readonly uploadedChunks: {
|
|
1278
1459
|
type: "number";
|
|
1279
1460
|
optional: false;
|
|
1280
1461
|
customType: number;
|
|
1462
|
+
} & {
|
|
1463
|
+
serverName: string;
|
|
1281
1464
|
};
|
|
1282
1465
|
};
|
|
1283
1466
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1291,6 +1474,8 @@ export declare const marcoZero: {
|
|
|
1291
1474
|
type: "string";
|
|
1292
1475
|
optional: false;
|
|
1293
1476
|
customType: string;
|
|
1477
|
+
} & {
|
|
1478
|
+
serverName: string;
|
|
1294
1479
|
};
|
|
1295
1480
|
readonly flagged: {
|
|
1296
1481
|
type: "boolean";
|
|
@@ -1306,6 +1491,8 @@ export declare const marcoZero: {
|
|
|
1306
1491
|
type: "number";
|
|
1307
1492
|
optional: false;
|
|
1308
1493
|
customType: number;
|
|
1494
|
+
} & {
|
|
1495
|
+
serverName: string;
|
|
1309
1496
|
};
|
|
1310
1497
|
readonly seen: {
|
|
1311
1498
|
type: "boolean";
|
|
@@ -1316,6 +1503,8 @@ export declare const marcoZero: {
|
|
|
1316
1503
|
type: "string";
|
|
1317
1504
|
optional: false;
|
|
1318
1505
|
customType: string;
|
|
1506
|
+
} & {
|
|
1507
|
+
serverName: string;
|
|
1319
1508
|
};
|
|
1320
1509
|
readonly words: {
|
|
1321
1510
|
type: "string";
|
|
@@ -1334,11 +1523,15 @@ export declare const marcoZero: {
|
|
|
1334
1523
|
type: "string";
|
|
1335
1524
|
optional: false;
|
|
1336
1525
|
customType: string;
|
|
1526
|
+
} & {
|
|
1527
|
+
serverName: string;
|
|
1337
1528
|
};
|
|
1338
1529
|
readonly threadId: {
|
|
1339
1530
|
type: "string";
|
|
1340
1531
|
optional: false;
|
|
1341
1532
|
customType: string;
|
|
1533
|
+
} & {
|
|
1534
|
+
serverName: string;
|
|
1342
1535
|
};
|
|
1343
1536
|
};
|
|
1344
1537
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1352,6 +1545,8 @@ export declare const marcoZero: {
|
|
|
1352
1545
|
type: "number";
|
|
1353
1546
|
optional: false;
|
|
1354
1547
|
customType: number;
|
|
1548
|
+
} & {
|
|
1549
|
+
serverName: string;
|
|
1355
1550
|
};
|
|
1356
1551
|
readonly envelopeSubject: Omit<{
|
|
1357
1552
|
type: "string";
|
|
@@ -1359,6 +1554,8 @@ export declare const marcoZero: {
|
|
|
1359
1554
|
customType: string;
|
|
1360
1555
|
}, "optional"> & {
|
|
1361
1556
|
optional: true;
|
|
1557
|
+
} & {
|
|
1558
|
+
serverName: string;
|
|
1362
1559
|
};
|
|
1363
1560
|
readonly id: {
|
|
1364
1561
|
type: "string";
|
|
@@ -1369,11 +1566,15 @@ export declare const marcoZero: {
|
|
|
1369
1566
|
type: "string";
|
|
1370
1567
|
optional: false;
|
|
1371
1568
|
customType: string;
|
|
1569
|
+
} & {
|
|
1570
|
+
serverName: string;
|
|
1372
1571
|
};
|
|
1373
1572
|
readonly senderEmail: {
|
|
1374
1573
|
type: "string";
|
|
1375
1574
|
optional: false;
|
|
1376
1575
|
customType: string;
|
|
1576
|
+
} & {
|
|
1577
|
+
serverName: string;
|
|
1377
1578
|
};
|
|
1378
1579
|
readonly senderName: Omit<{
|
|
1379
1580
|
type: "string";
|
|
@@ -1381,11 +1582,15 @@ export declare const marcoZero: {
|
|
|
1381
1582
|
customType: string;
|
|
1382
1583
|
}, "optional"> & {
|
|
1383
1584
|
optional: true;
|
|
1585
|
+
} & {
|
|
1586
|
+
serverName: string;
|
|
1384
1587
|
};
|
|
1385
1588
|
readonly threadId: {
|
|
1386
1589
|
type: "string";
|
|
1387
1590
|
optional: false;
|
|
1388
1591
|
customType: string;
|
|
1592
|
+
} & {
|
|
1593
|
+
serverName: string;
|
|
1389
1594
|
};
|
|
1390
1595
|
};
|
|
1391
1596
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1399,6 +1604,8 @@ export declare const marcoZero: {
|
|
|
1399
1604
|
type: "string";
|
|
1400
1605
|
optional: false;
|
|
1401
1606
|
customType: string;
|
|
1607
|
+
} & {
|
|
1608
|
+
serverName: string;
|
|
1402
1609
|
};
|
|
1403
1610
|
readonly id: {
|
|
1404
1611
|
type: "string";
|
|
@@ -1416,6 +1623,8 @@ export declare const marcoZero: {
|
|
|
1416
1623
|
type: "string";
|
|
1417
1624
|
optional: false;
|
|
1418
1625
|
customType: string;
|
|
1626
|
+
} & {
|
|
1627
|
+
serverName: string;
|
|
1419
1628
|
};
|
|
1420
1629
|
readonly type: {
|
|
1421
1630
|
type: "string";
|
|
@@ -1434,6 +1643,8 @@ export declare const marcoZero: {
|
|
|
1434
1643
|
type: "string";
|
|
1435
1644
|
optional: false;
|
|
1436
1645
|
customType: string;
|
|
1646
|
+
} & {
|
|
1647
|
+
serverName: string;
|
|
1437
1648
|
};
|
|
1438
1649
|
readonly id: {
|
|
1439
1650
|
type: "string";
|
|
@@ -1444,6 +1655,8 @@ export declare const marcoZero: {
|
|
|
1444
1655
|
type: "string";
|
|
1445
1656
|
optional: false;
|
|
1446
1657
|
customType: string;
|
|
1658
|
+
} & {
|
|
1659
|
+
serverName: string;
|
|
1447
1660
|
};
|
|
1448
1661
|
readonly size: {
|
|
1449
1662
|
type: "number";
|
|
@@ -1459,6 +1672,8 @@ export declare const marcoZero: {
|
|
|
1459
1672
|
type: "string";
|
|
1460
1673
|
optional: false;
|
|
1461
1674
|
customType: string;
|
|
1675
|
+
} & {
|
|
1676
|
+
serverName: string;
|
|
1462
1677
|
};
|
|
1463
1678
|
};
|
|
1464
1679
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1472,11 +1687,15 @@ export declare const marcoZero: {
|
|
|
1472
1687
|
type: "string";
|
|
1473
1688
|
optional: false;
|
|
1474
1689
|
customType: string;
|
|
1690
|
+
} & {
|
|
1691
|
+
serverName: string;
|
|
1475
1692
|
};
|
|
1476
1693
|
readonly threadMessageId: {
|
|
1477
1694
|
type: "string";
|
|
1478
1695
|
optional: false;
|
|
1479
1696
|
customType: string;
|
|
1697
|
+
} & {
|
|
1698
|
+
serverName: string;
|
|
1480
1699
|
};
|
|
1481
1700
|
};
|
|
1482
1701
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1488,7 +1707,7 @@ export declare const marcoZero: {
|
|
|
1488
1707
|
readonly user: {
|
|
1489
1708
|
accounts: [{
|
|
1490
1709
|
readonly sourceField: string[];
|
|
1491
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1710
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1492
1711
|
readonly destSchema: "account";
|
|
1493
1712
|
readonly cardinality: "many";
|
|
1494
1713
|
}];
|
|
@@ -1500,7 +1719,7 @@ export declare const marcoZero: {
|
|
|
1500
1719
|
}];
|
|
1501
1720
|
drafts: [{
|
|
1502
1721
|
readonly sourceField: string[];
|
|
1503
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
1722
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
1504
1723
|
readonly destSchema: "draft";
|
|
1505
1724
|
readonly cardinality: "many";
|
|
1506
1725
|
}];
|
|
@@ -1520,7 +1739,7 @@ export declare const marcoZero: {
|
|
|
1520
1739
|
readonly userPushNotificationToken: {
|
|
1521
1740
|
user: [{
|
|
1522
1741
|
readonly sourceField: string[];
|
|
1523
|
-
readonly destField: ("id" | "name" | "
|
|
1742
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1524
1743
|
readonly destSchema: "user";
|
|
1525
1744
|
readonly cardinality: "one";
|
|
1526
1745
|
}];
|
|
@@ -1528,7 +1747,7 @@ export declare const marcoZero: {
|
|
|
1528
1747
|
readonly contact: {
|
|
1529
1748
|
user: [{
|
|
1530
1749
|
readonly sourceField: string[];
|
|
1531
|
-
readonly destField: ("id" | "name" | "
|
|
1750
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1532
1751
|
readonly destSchema: "user";
|
|
1533
1752
|
readonly cardinality: "one";
|
|
1534
1753
|
}];
|
|
@@ -1542,7 +1761,7 @@ export declare const marcoZero: {
|
|
|
1542
1761
|
}];
|
|
1543
1762
|
drafts: [{
|
|
1544
1763
|
readonly sourceField: string[];
|
|
1545
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
1764
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
1546
1765
|
readonly destSchema: "draft";
|
|
1547
1766
|
readonly cardinality: "many";
|
|
1548
1767
|
}];
|
|
@@ -1566,7 +1785,7 @@ export declare const marcoZero: {
|
|
|
1566
1785
|
}];
|
|
1567
1786
|
user: [{
|
|
1568
1787
|
readonly sourceField: string[];
|
|
1569
|
-
readonly destField: ("id" | "name" | "
|
|
1788
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1570
1789
|
readonly destSchema: "user";
|
|
1571
1790
|
readonly cardinality: "one";
|
|
1572
1791
|
}];
|
|
@@ -1574,7 +1793,7 @@ export declare const marcoZero: {
|
|
|
1574
1793
|
readonly accountAlias: {
|
|
1575
1794
|
account: [{
|
|
1576
1795
|
readonly sourceField: string[];
|
|
1577
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1796
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1578
1797
|
readonly destSchema: "account";
|
|
1579
1798
|
readonly cardinality: "one";
|
|
1580
1799
|
}];
|
|
@@ -1582,7 +1801,7 @@ export declare const marcoZero: {
|
|
|
1582
1801
|
readonly accountLabel: {
|
|
1583
1802
|
account: [{
|
|
1584
1803
|
readonly sourceField: string[];
|
|
1585
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1804
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1586
1805
|
readonly destSchema: "account";
|
|
1587
1806
|
readonly cardinality: "one";
|
|
1588
1807
|
}];
|
|
@@ -1593,7 +1812,7 @@ export declare const marcoZero: {
|
|
|
1593
1812
|
readonly cardinality: "many";
|
|
1594
1813
|
}, {
|
|
1595
1814
|
readonly sourceField: string[];
|
|
1596
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1815
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1597
1816
|
readonly destSchema: "threadMessage";
|
|
1598
1817
|
readonly cardinality: "many";
|
|
1599
1818
|
}];
|
|
@@ -1612,7 +1831,7 @@ export declare const marcoZero: {
|
|
|
1612
1831
|
readonly draft: {
|
|
1613
1832
|
account: [{
|
|
1614
1833
|
readonly sourceField: string[];
|
|
1615
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1834
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1616
1835
|
readonly destSchema: "account";
|
|
1617
1836
|
readonly cardinality: "one";
|
|
1618
1837
|
}];
|
|
@@ -1630,7 +1849,7 @@ export declare const marcoZero: {
|
|
|
1630
1849
|
}];
|
|
1631
1850
|
user: [{
|
|
1632
1851
|
readonly sourceField: string[];
|
|
1633
|
-
readonly destField: ("id" | "name" | "
|
|
1852
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1634
1853
|
readonly destSchema: "user";
|
|
1635
1854
|
readonly cardinality: "one";
|
|
1636
1855
|
}];
|
|
@@ -1638,7 +1857,7 @@ export declare const marcoZero: {
|
|
|
1638
1857
|
readonly draftRecipient: {
|
|
1639
1858
|
draft: [{
|
|
1640
1859
|
readonly sourceField: string[];
|
|
1641
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
1860
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
1642
1861
|
readonly destSchema: "draft";
|
|
1643
1862
|
readonly cardinality: "one";
|
|
1644
1863
|
}];
|
|
@@ -1646,7 +1865,7 @@ export declare const marcoZero: {
|
|
|
1646
1865
|
readonly draftAttachment: {
|
|
1647
1866
|
draft: [{
|
|
1648
1867
|
readonly sourceField: string[];
|
|
1649
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
1868
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
1650
1869
|
readonly destSchema: "draft";
|
|
1651
1870
|
readonly cardinality: "one";
|
|
1652
1871
|
}];
|
|
@@ -1654,7 +1873,7 @@ export declare const marcoZero: {
|
|
|
1654
1873
|
readonly thread: {
|
|
1655
1874
|
account: [{
|
|
1656
1875
|
readonly sourceField: string[];
|
|
1657
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1876
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1658
1877
|
readonly destSchema: "account";
|
|
1659
1878
|
readonly cardinality: "one";
|
|
1660
1879
|
}];
|
|
@@ -1671,13 +1890,13 @@ export declare const marcoZero: {
|
|
|
1671
1890
|
}];
|
|
1672
1891
|
messages: [{
|
|
1673
1892
|
readonly sourceField: string[];
|
|
1674
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1893
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1675
1894
|
readonly destSchema: "threadMessage";
|
|
1676
1895
|
readonly cardinality: "many";
|
|
1677
1896
|
}];
|
|
1678
1897
|
user: [{
|
|
1679
1898
|
readonly sourceField: string[];
|
|
1680
|
-
readonly destField: ("id" | "name" | "
|
|
1899
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1681
1900
|
readonly destSchema: "user";
|
|
1682
1901
|
readonly cardinality: "one";
|
|
1683
1902
|
}];
|
|
@@ -1730,7 +1949,7 @@ export declare const marcoZero: {
|
|
|
1730
1949
|
readonly threadMessageRecipient: {
|
|
1731
1950
|
message: [{
|
|
1732
1951
|
readonly sourceField: string[];
|
|
1733
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1952
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1734
1953
|
readonly destSchema: "threadMessage";
|
|
1735
1954
|
readonly cardinality: "one";
|
|
1736
1955
|
}];
|
|
@@ -1738,7 +1957,7 @@ export declare const marcoZero: {
|
|
|
1738
1957
|
readonly threadMessageAttachment: {
|
|
1739
1958
|
message: [{
|
|
1740
1959
|
readonly sourceField: string[];
|
|
1741
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1960
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1742
1961
|
readonly destSchema: "threadMessage";
|
|
1743
1962
|
readonly cardinality: "one";
|
|
1744
1963
|
}];
|
|
@@ -1752,7 +1971,7 @@ export declare const marcoZero: {
|
|
|
1752
1971
|
}];
|
|
1753
1972
|
message: [{
|
|
1754
1973
|
readonly sourceField: string[];
|
|
1755
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1974
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1756
1975
|
readonly destSchema: "threadMessage";
|
|
1757
1976
|
readonly cardinality: "one";
|
|
1758
1977
|
}];
|
|
@@ -1765,17 +1984,10 @@ export declare const marcoZero: {
|
|
|
1765
1984
|
readonly id: string;
|
|
1766
1985
|
readonly name: string | null;
|
|
1767
1986
|
readonly userId: string;
|
|
1768
|
-
} & {
|
|
1769
|
-
readonly user: {
|
|
1770
|
-
readonly id: string;
|
|
1771
|
-
readonly name: string | null;
|
|
1772
|
-
readonly profilePicture: string | null;
|
|
1773
|
-
readonly undoSendEnabled: boolean;
|
|
1774
|
-
} | undefined;
|
|
1775
1987
|
}>>;
|
|
1776
1988
|
readonly getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts", import("..").MarcoSyncedQueryContext, true, [{
|
|
1777
1989
|
accountId?: string;
|
|
1778
|
-
limit
|
|
1990
|
+
limit: number;
|
|
1779
1991
|
status?: typeof import("..").DRAFT_STATUSES[number];
|
|
1780
1992
|
}], import("@rocicorp/zero").Query<{
|
|
1781
1993
|
tables: {
|
|
@@ -1800,11 +2012,15 @@ export declare const marcoZero: {
|
|
|
1800
2012
|
customType: string;
|
|
1801
2013
|
}, "optional"> & {
|
|
1802
2014
|
optional: true;
|
|
2015
|
+
} & {
|
|
2016
|
+
serverName: string;
|
|
1803
2017
|
};
|
|
1804
2018
|
readonly undoSendEnabled: {
|
|
1805
2019
|
type: "boolean";
|
|
1806
2020
|
optional: false;
|
|
1807
2021
|
customType: boolean;
|
|
2022
|
+
} & {
|
|
2023
|
+
serverName: string;
|
|
1808
2024
|
};
|
|
1809
2025
|
};
|
|
1810
2026
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1818,6 +2034,8 @@ export declare const marcoZero: {
|
|
|
1818
2034
|
type: "number";
|
|
1819
2035
|
optional: false;
|
|
1820
2036
|
customType: number;
|
|
2037
|
+
} & {
|
|
2038
|
+
serverName: string;
|
|
1821
2039
|
};
|
|
1822
2040
|
readonly id: {
|
|
1823
2041
|
type: "string";
|
|
@@ -1833,6 +2051,8 @@ export declare const marcoZero: {
|
|
|
1833
2051
|
type: "string";
|
|
1834
2052
|
optional: false;
|
|
1835
2053
|
customType: string;
|
|
2054
|
+
} & {
|
|
2055
|
+
serverName: string;
|
|
1836
2056
|
};
|
|
1837
2057
|
};
|
|
1838
2058
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1846,6 +2066,8 @@ export declare const marcoZero: {
|
|
|
1846
2066
|
type: "string";
|
|
1847
2067
|
optional: false;
|
|
1848
2068
|
customType: string;
|
|
2069
|
+
} & {
|
|
2070
|
+
serverName: string;
|
|
1849
2071
|
};
|
|
1850
2072
|
readonly id: {
|
|
1851
2073
|
type: "string";
|
|
@@ -1863,6 +2085,8 @@ export declare const marcoZero: {
|
|
|
1863
2085
|
type: "string";
|
|
1864
2086
|
optional: false;
|
|
1865
2087
|
customType: string;
|
|
2088
|
+
} & {
|
|
2089
|
+
serverName: string;
|
|
1866
2090
|
};
|
|
1867
2091
|
};
|
|
1868
2092
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1883,6 +2107,8 @@ export declare const marcoZero: {
|
|
|
1883
2107
|
customType: string;
|
|
1884
2108
|
}, "optional"> & {
|
|
1885
2109
|
optional: true;
|
|
2110
|
+
} & {
|
|
2111
|
+
serverName: string;
|
|
1886
2112
|
};
|
|
1887
2113
|
readonly id: {
|
|
1888
2114
|
type: "string";
|
|
@@ -1893,16 +2119,22 @@ export declare const marcoZero: {
|
|
|
1893
2119
|
type: "string";
|
|
1894
2120
|
optional: false;
|
|
1895
2121
|
customType: "AWAITING_CONNECTION" | "CONNECTED" | "CONNECTION_FAILED_AUTHENTICATION_ERROR" | "CONNECTION_FAILED_CONNECTION_ERROR" | "CONNECTION_FAILED_OAUTH_EXCHANGE_ERROR" | "CONNECTION_FAILED_QUOTA_ERROR" | "CONNECTION_FAILED_UNKNOWN_ERROR";
|
|
2122
|
+
} & {
|
|
2123
|
+
serverName: string;
|
|
1896
2124
|
};
|
|
1897
2125
|
readonly mailProcessedCount: {
|
|
1898
2126
|
type: "number";
|
|
1899
2127
|
optional: false;
|
|
1900
2128
|
customType: number;
|
|
2129
|
+
} & {
|
|
2130
|
+
serverName: string;
|
|
1901
2131
|
};
|
|
1902
2132
|
readonly mailTotalCount: {
|
|
1903
2133
|
type: "number";
|
|
1904
2134
|
optional: false;
|
|
1905
2135
|
customType: number;
|
|
2136
|
+
} & {
|
|
2137
|
+
serverName: string;
|
|
1906
2138
|
};
|
|
1907
2139
|
readonly primaryAliasId: Omit<{
|
|
1908
2140
|
type: "string";
|
|
@@ -1910,11 +2142,15 @@ export declare const marcoZero: {
|
|
|
1910
2142
|
customType: string;
|
|
1911
2143
|
}, "optional"> & {
|
|
1912
2144
|
optional: true;
|
|
2145
|
+
} & {
|
|
2146
|
+
serverName: string;
|
|
1913
2147
|
};
|
|
1914
2148
|
readonly userId: {
|
|
1915
2149
|
type: "string";
|
|
1916
2150
|
optional: false;
|
|
1917
2151
|
customType: string;
|
|
2152
|
+
} & {
|
|
2153
|
+
serverName: string;
|
|
1918
2154
|
};
|
|
1919
2155
|
};
|
|
1920
2156
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1928,11 +2164,15 @@ export declare const marcoZero: {
|
|
|
1928
2164
|
type: "string";
|
|
1929
2165
|
optional: false;
|
|
1930
2166
|
customType: string;
|
|
2167
|
+
} & {
|
|
2168
|
+
serverName: string;
|
|
1931
2169
|
};
|
|
1932
2170
|
readonly emailAddress: {
|
|
1933
2171
|
type: "string";
|
|
1934
2172
|
optional: false;
|
|
1935
2173
|
customType: string;
|
|
2174
|
+
} & {
|
|
2175
|
+
serverName: string;
|
|
1936
2176
|
};
|
|
1937
2177
|
readonly id: {
|
|
1938
2178
|
type: "string";
|
|
@@ -1943,6 +2183,8 @@ export declare const marcoZero: {
|
|
|
1943
2183
|
type: "boolean";
|
|
1944
2184
|
optional: false;
|
|
1945
2185
|
customType: boolean;
|
|
2186
|
+
} & {
|
|
2187
|
+
serverName: string;
|
|
1946
2188
|
};
|
|
1947
2189
|
readonly name: Omit<{
|
|
1948
2190
|
type: "string";
|
|
@@ -1963,6 +2205,8 @@ export declare const marcoZero: {
|
|
|
1963
2205
|
type: "string";
|
|
1964
2206
|
optional: false;
|
|
1965
2207
|
customType: string;
|
|
2208
|
+
} & {
|
|
2209
|
+
serverName: string;
|
|
1966
2210
|
};
|
|
1967
2211
|
readonly id: {
|
|
1968
2212
|
type: "string";
|
|
@@ -1980,6 +2224,8 @@ export declare const marcoZero: {
|
|
|
1980
2224
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
1981
2225
|
}, "optional"> & {
|
|
1982
2226
|
optional: true;
|
|
2227
|
+
} & {
|
|
2228
|
+
serverName: string;
|
|
1983
2229
|
};
|
|
1984
2230
|
};
|
|
1985
2231
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1993,6 +2239,8 @@ export declare const marcoZero: {
|
|
|
1993
2239
|
type: "string";
|
|
1994
2240
|
optional: false;
|
|
1995
2241
|
customType: string;
|
|
2242
|
+
} & {
|
|
2243
|
+
serverName: string;
|
|
1996
2244
|
};
|
|
1997
2245
|
readonly body: {
|
|
1998
2246
|
type: "json";
|
|
@@ -2017,11 +2265,15 @@ export declare const marcoZero: {
|
|
|
2017
2265
|
customType: string;
|
|
2018
2266
|
}, "optional"> & {
|
|
2019
2267
|
optional: true;
|
|
2268
|
+
} & {
|
|
2269
|
+
serverName: string;
|
|
2020
2270
|
};
|
|
2021
2271
|
readonly fromEmail: {
|
|
2022
2272
|
type: "string";
|
|
2023
2273
|
optional: false;
|
|
2024
2274
|
customType: string;
|
|
2275
|
+
} & {
|
|
2276
|
+
serverName: string;
|
|
2025
2277
|
};
|
|
2026
2278
|
readonly fromName: Omit<{
|
|
2027
2279
|
type: "string";
|
|
@@ -2029,6 +2281,8 @@ export declare const marcoZero: {
|
|
|
2029
2281
|
customType: string;
|
|
2030
2282
|
}, "optional"> & {
|
|
2031
2283
|
optional: true;
|
|
2284
|
+
} & {
|
|
2285
|
+
serverName: string;
|
|
2032
2286
|
};
|
|
2033
2287
|
readonly id: {
|
|
2034
2288
|
type: "string";
|
|
@@ -2041,6 +2295,8 @@ export declare const marcoZero: {
|
|
|
2041
2295
|
customType: string;
|
|
2042
2296
|
}, "optional"> & {
|
|
2043
2297
|
optional: true;
|
|
2298
|
+
} & {
|
|
2299
|
+
serverName: string;
|
|
2044
2300
|
};
|
|
2045
2301
|
readonly scheduledFor: Omit<{
|
|
2046
2302
|
type: "number";
|
|
@@ -2048,6 +2304,8 @@ export declare const marcoZero: {
|
|
|
2048
2304
|
customType: number;
|
|
2049
2305
|
}, "optional"> & {
|
|
2050
2306
|
optional: true;
|
|
2307
|
+
} & {
|
|
2308
|
+
serverName: string;
|
|
2051
2309
|
};
|
|
2052
2310
|
readonly status: {
|
|
2053
2311
|
type: "string";
|
|
@@ -2070,11 +2328,15 @@ export declare const marcoZero: {
|
|
|
2070
2328
|
type: "number";
|
|
2071
2329
|
optional: false;
|
|
2072
2330
|
customType: number;
|
|
2331
|
+
} & {
|
|
2332
|
+
serverName: string;
|
|
2073
2333
|
};
|
|
2074
2334
|
readonly userId: {
|
|
2075
2335
|
type: "string";
|
|
2076
2336
|
optional: false;
|
|
2077
2337
|
customType: string;
|
|
2338
|
+
} & {
|
|
2339
|
+
serverName: string;
|
|
2078
2340
|
};
|
|
2079
2341
|
};
|
|
2080
2342
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2088,11 +2350,15 @@ export declare const marcoZero: {
|
|
|
2088
2350
|
type: "string";
|
|
2089
2351
|
optional: false;
|
|
2090
2352
|
customType: string;
|
|
2353
|
+
} & {
|
|
2354
|
+
serverName: string;
|
|
2091
2355
|
};
|
|
2092
2356
|
readonly emailAddress: {
|
|
2093
2357
|
type: "string";
|
|
2094
2358
|
optional: false;
|
|
2095
2359
|
customType: string;
|
|
2360
|
+
} & {
|
|
2361
|
+
serverName: string;
|
|
2096
2362
|
};
|
|
2097
2363
|
readonly id: {
|
|
2098
2364
|
type: "string";
|
|
@@ -2116,6 +2382,8 @@ export declare const marcoZero: {
|
|
|
2116
2382
|
type: "string";
|
|
2117
2383
|
optional: false;
|
|
2118
2384
|
customType: string;
|
|
2385
|
+
} & {
|
|
2386
|
+
serverName: string;
|
|
2119
2387
|
};
|
|
2120
2388
|
readonly failed: {
|
|
2121
2389
|
type: "boolean";
|
|
@@ -2126,6 +2394,8 @@ export declare const marcoZero: {
|
|
|
2126
2394
|
type: "string";
|
|
2127
2395
|
optional: false;
|
|
2128
2396
|
customType: string;
|
|
2397
|
+
} & {
|
|
2398
|
+
serverName: string;
|
|
2129
2399
|
};
|
|
2130
2400
|
readonly id: {
|
|
2131
2401
|
type: "string";
|
|
@@ -2136,21 +2406,29 @@ export declare const marcoZero: {
|
|
|
2136
2406
|
type: "string";
|
|
2137
2407
|
optional: false;
|
|
2138
2408
|
customType: string;
|
|
2409
|
+
} & {
|
|
2410
|
+
serverName: string;
|
|
2139
2411
|
};
|
|
2140
2412
|
readonly totalChunks: {
|
|
2141
2413
|
type: "number";
|
|
2142
2414
|
optional: false;
|
|
2143
2415
|
customType: number;
|
|
2416
|
+
} & {
|
|
2417
|
+
serverName: string;
|
|
2144
2418
|
};
|
|
2145
2419
|
readonly totalSize: {
|
|
2146
2420
|
type: "number";
|
|
2147
2421
|
optional: false;
|
|
2148
2422
|
customType: number;
|
|
2423
|
+
} & {
|
|
2424
|
+
serverName: string;
|
|
2149
2425
|
};
|
|
2150
2426
|
readonly uploadedChunks: {
|
|
2151
2427
|
type: "number";
|
|
2152
2428
|
optional: false;
|
|
2153
2429
|
customType: number;
|
|
2430
|
+
} & {
|
|
2431
|
+
serverName: string;
|
|
2154
2432
|
};
|
|
2155
2433
|
};
|
|
2156
2434
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2164,6 +2442,8 @@ export declare const marcoZero: {
|
|
|
2164
2442
|
type: "string";
|
|
2165
2443
|
optional: false;
|
|
2166
2444
|
customType: string;
|
|
2445
|
+
} & {
|
|
2446
|
+
serverName: string;
|
|
2167
2447
|
};
|
|
2168
2448
|
readonly flagged: {
|
|
2169
2449
|
type: "boolean";
|
|
@@ -2179,6 +2459,8 @@ export declare const marcoZero: {
|
|
|
2179
2459
|
type: "number";
|
|
2180
2460
|
optional: false;
|
|
2181
2461
|
customType: number;
|
|
2462
|
+
} & {
|
|
2463
|
+
serverName: string;
|
|
2182
2464
|
};
|
|
2183
2465
|
readonly seen: {
|
|
2184
2466
|
type: "boolean";
|
|
@@ -2189,6 +2471,8 @@ export declare const marcoZero: {
|
|
|
2189
2471
|
type: "string";
|
|
2190
2472
|
optional: false;
|
|
2191
2473
|
customType: string;
|
|
2474
|
+
} & {
|
|
2475
|
+
serverName: string;
|
|
2192
2476
|
};
|
|
2193
2477
|
readonly words: {
|
|
2194
2478
|
type: "string";
|
|
@@ -2207,11 +2491,15 @@ export declare const marcoZero: {
|
|
|
2207
2491
|
type: "string";
|
|
2208
2492
|
optional: false;
|
|
2209
2493
|
customType: string;
|
|
2494
|
+
} & {
|
|
2495
|
+
serverName: string;
|
|
2210
2496
|
};
|
|
2211
2497
|
readonly threadId: {
|
|
2212
2498
|
type: "string";
|
|
2213
2499
|
optional: false;
|
|
2214
2500
|
customType: string;
|
|
2501
|
+
} & {
|
|
2502
|
+
serverName: string;
|
|
2215
2503
|
};
|
|
2216
2504
|
};
|
|
2217
2505
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2225,6 +2513,8 @@ export declare const marcoZero: {
|
|
|
2225
2513
|
type: "number";
|
|
2226
2514
|
optional: false;
|
|
2227
2515
|
customType: number;
|
|
2516
|
+
} & {
|
|
2517
|
+
serverName: string;
|
|
2228
2518
|
};
|
|
2229
2519
|
readonly envelopeSubject: Omit<{
|
|
2230
2520
|
type: "string";
|
|
@@ -2232,6 +2522,8 @@ export declare const marcoZero: {
|
|
|
2232
2522
|
customType: string;
|
|
2233
2523
|
}, "optional"> & {
|
|
2234
2524
|
optional: true;
|
|
2525
|
+
} & {
|
|
2526
|
+
serverName: string;
|
|
2235
2527
|
};
|
|
2236
2528
|
readonly id: {
|
|
2237
2529
|
type: "string";
|
|
@@ -2242,11 +2534,15 @@ export declare const marcoZero: {
|
|
|
2242
2534
|
type: "string";
|
|
2243
2535
|
optional: false;
|
|
2244
2536
|
customType: string;
|
|
2537
|
+
} & {
|
|
2538
|
+
serverName: string;
|
|
2245
2539
|
};
|
|
2246
2540
|
readonly senderEmail: {
|
|
2247
2541
|
type: "string";
|
|
2248
2542
|
optional: false;
|
|
2249
2543
|
customType: string;
|
|
2544
|
+
} & {
|
|
2545
|
+
serverName: string;
|
|
2250
2546
|
};
|
|
2251
2547
|
readonly senderName: Omit<{
|
|
2252
2548
|
type: "string";
|
|
@@ -2254,11 +2550,15 @@ export declare const marcoZero: {
|
|
|
2254
2550
|
customType: string;
|
|
2255
2551
|
}, "optional"> & {
|
|
2256
2552
|
optional: true;
|
|
2553
|
+
} & {
|
|
2554
|
+
serverName: string;
|
|
2257
2555
|
};
|
|
2258
2556
|
readonly threadId: {
|
|
2259
2557
|
type: "string";
|
|
2260
2558
|
optional: false;
|
|
2261
2559
|
customType: string;
|
|
2560
|
+
} & {
|
|
2561
|
+
serverName: string;
|
|
2262
2562
|
};
|
|
2263
2563
|
};
|
|
2264
2564
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2272,6 +2572,8 @@ export declare const marcoZero: {
|
|
|
2272
2572
|
type: "string";
|
|
2273
2573
|
optional: false;
|
|
2274
2574
|
customType: string;
|
|
2575
|
+
} & {
|
|
2576
|
+
serverName: string;
|
|
2275
2577
|
};
|
|
2276
2578
|
readonly id: {
|
|
2277
2579
|
type: "string";
|
|
@@ -2289,6 +2591,8 @@ export declare const marcoZero: {
|
|
|
2289
2591
|
type: "string";
|
|
2290
2592
|
optional: false;
|
|
2291
2593
|
customType: string;
|
|
2594
|
+
} & {
|
|
2595
|
+
serverName: string;
|
|
2292
2596
|
};
|
|
2293
2597
|
readonly type: {
|
|
2294
2598
|
type: "string";
|
|
@@ -2307,6 +2611,8 @@ export declare const marcoZero: {
|
|
|
2307
2611
|
type: "string";
|
|
2308
2612
|
optional: false;
|
|
2309
2613
|
customType: string;
|
|
2614
|
+
} & {
|
|
2615
|
+
serverName: string;
|
|
2310
2616
|
};
|
|
2311
2617
|
readonly id: {
|
|
2312
2618
|
type: "string";
|
|
@@ -2317,6 +2623,8 @@ export declare const marcoZero: {
|
|
|
2317
2623
|
type: "string";
|
|
2318
2624
|
optional: false;
|
|
2319
2625
|
customType: string;
|
|
2626
|
+
} & {
|
|
2627
|
+
serverName: string;
|
|
2320
2628
|
};
|
|
2321
2629
|
readonly size: {
|
|
2322
2630
|
type: "number";
|
|
@@ -2332,6 +2640,8 @@ export declare const marcoZero: {
|
|
|
2332
2640
|
type: "string";
|
|
2333
2641
|
optional: false;
|
|
2334
2642
|
customType: string;
|
|
2643
|
+
} & {
|
|
2644
|
+
serverName: string;
|
|
2335
2645
|
};
|
|
2336
2646
|
};
|
|
2337
2647
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2345,11 +2655,15 @@ export declare const marcoZero: {
|
|
|
2345
2655
|
type: "string";
|
|
2346
2656
|
optional: false;
|
|
2347
2657
|
customType: string;
|
|
2658
|
+
} & {
|
|
2659
|
+
serverName: string;
|
|
2348
2660
|
};
|
|
2349
2661
|
readonly threadMessageId: {
|
|
2350
2662
|
type: "string";
|
|
2351
2663
|
optional: false;
|
|
2352
2664
|
customType: string;
|
|
2665
|
+
} & {
|
|
2666
|
+
serverName: string;
|
|
2353
2667
|
};
|
|
2354
2668
|
};
|
|
2355
2669
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2361,7 +2675,7 @@ export declare const marcoZero: {
|
|
|
2361
2675
|
readonly user: {
|
|
2362
2676
|
accounts: [{
|
|
2363
2677
|
readonly sourceField: string[];
|
|
2364
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2678
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2365
2679
|
readonly destSchema: "account";
|
|
2366
2680
|
readonly cardinality: "many";
|
|
2367
2681
|
}];
|
|
@@ -2373,7 +2687,7 @@ export declare const marcoZero: {
|
|
|
2373
2687
|
}];
|
|
2374
2688
|
drafts: [{
|
|
2375
2689
|
readonly sourceField: string[];
|
|
2376
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
2690
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
2377
2691
|
readonly destSchema: "draft";
|
|
2378
2692
|
readonly cardinality: "many";
|
|
2379
2693
|
}];
|
|
@@ -2393,7 +2707,7 @@ export declare const marcoZero: {
|
|
|
2393
2707
|
readonly userPushNotificationToken: {
|
|
2394
2708
|
user: [{
|
|
2395
2709
|
readonly sourceField: string[];
|
|
2396
|
-
readonly destField: ("id" | "name" | "
|
|
2710
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2397
2711
|
readonly destSchema: "user";
|
|
2398
2712
|
readonly cardinality: "one";
|
|
2399
2713
|
}];
|
|
@@ -2401,7 +2715,7 @@ export declare const marcoZero: {
|
|
|
2401
2715
|
readonly contact: {
|
|
2402
2716
|
user: [{
|
|
2403
2717
|
readonly sourceField: string[];
|
|
2404
|
-
readonly destField: ("id" | "name" | "
|
|
2718
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2405
2719
|
readonly destSchema: "user";
|
|
2406
2720
|
readonly cardinality: "one";
|
|
2407
2721
|
}];
|
|
@@ -2415,7 +2729,7 @@ export declare const marcoZero: {
|
|
|
2415
2729
|
}];
|
|
2416
2730
|
drafts: [{
|
|
2417
2731
|
readonly sourceField: string[];
|
|
2418
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
2732
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
2419
2733
|
readonly destSchema: "draft";
|
|
2420
2734
|
readonly cardinality: "many";
|
|
2421
2735
|
}];
|
|
@@ -2439,7 +2753,7 @@ export declare const marcoZero: {
|
|
|
2439
2753
|
}];
|
|
2440
2754
|
user: [{
|
|
2441
2755
|
readonly sourceField: string[];
|
|
2442
|
-
readonly destField: ("id" | "name" | "
|
|
2756
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2443
2757
|
readonly destSchema: "user";
|
|
2444
2758
|
readonly cardinality: "one";
|
|
2445
2759
|
}];
|
|
@@ -2447,7 +2761,7 @@ export declare const marcoZero: {
|
|
|
2447
2761
|
readonly accountAlias: {
|
|
2448
2762
|
account: [{
|
|
2449
2763
|
readonly sourceField: string[];
|
|
2450
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2764
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2451
2765
|
readonly destSchema: "account";
|
|
2452
2766
|
readonly cardinality: "one";
|
|
2453
2767
|
}];
|
|
@@ -2455,7 +2769,7 @@ export declare const marcoZero: {
|
|
|
2455
2769
|
readonly accountLabel: {
|
|
2456
2770
|
account: [{
|
|
2457
2771
|
readonly sourceField: string[];
|
|
2458
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2772
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2459
2773
|
readonly destSchema: "account";
|
|
2460
2774
|
readonly cardinality: "one";
|
|
2461
2775
|
}];
|
|
@@ -2466,7 +2780,7 @@ export declare const marcoZero: {
|
|
|
2466
2780
|
readonly cardinality: "many";
|
|
2467
2781
|
}, {
|
|
2468
2782
|
readonly sourceField: string[];
|
|
2469
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2783
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2470
2784
|
readonly destSchema: "threadMessage";
|
|
2471
2785
|
readonly cardinality: "many";
|
|
2472
2786
|
}];
|
|
@@ -2485,7 +2799,7 @@ export declare const marcoZero: {
|
|
|
2485
2799
|
readonly draft: {
|
|
2486
2800
|
account: [{
|
|
2487
2801
|
readonly sourceField: string[];
|
|
2488
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2802
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2489
2803
|
readonly destSchema: "account";
|
|
2490
2804
|
readonly cardinality: "one";
|
|
2491
2805
|
}];
|
|
@@ -2503,7 +2817,7 @@ export declare const marcoZero: {
|
|
|
2503
2817
|
}];
|
|
2504
2818
|
user: [{
|
|
2505
2819
|
readonly sourceField: string[];
|
|
2506
|
-
readonly destField: ("id" | "name" | "
|
|
2820
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2507
2821
|
readonly destSchema: "user";
|
|
2508
2822
|
readonly cardinality: "one";
|
|
2509
2823
|
}];
|
|
@@ -2511,7 +2825,7 @@ export declare const marcoZero: {
|
|
|
2511
2825
|
readonly draftRecipient: {
|
|
2512
2826
|
draft: [{
|
|
2513
2827
|
readonly sourceField: string[];
|
|
2514
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
2828
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
2515
2829
|
readonly destSchema: "draft";
|
|
2516
2830
|
readonly cardinality: "one";
|
|
2517
2831
|
}];
|
|
@@ -2519,7 +2833,7 @@ export declare const marcoZero: {
|
|
|
2519
2833
|
readonly draftAttachment: {
|
|
2520
2834
|
draft: [{
|
|
2521
2835
|
readonly sourceField: string[];
|
|
2522
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
2836
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
2523
2837
|
readonly destSchema: "draft";
|
|
2524
2838
|
readonly cardinality: "one";
|
|
2525
2839
|
}];
|
|
@@ -2527,7 +2841,7 @@ export declare const marcoZero: {
|
|
|
2527
2841
|
readonly thread: {
|
|
2528
2842
|
account: [{
|
|
2529
2843
|
readonly sourceField: string[];
|
|
2530
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2844
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2531
2845
|
readonly destSchema: "account";
|
|
2532
2846
|
readonly cardinality: "one";
|
|
2533
2847
|
}];
|
|
@@ -2544,13 +2858,13 @@ export declare const marcoZero: {
|
|
|
2544
2858
|
}];
|
|
2545
2859
|
messages: [{
|
|
2546
2860
|
readonly sourceField: string[];
|
|
2547
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2861
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2548
2862
|
readonly destSchema: "threadMessage";
|
|
2549
2863
|
readonly cardinality: "many";
|
|
2550
2864
|
}];
|
|
2551
2865
|
user: [{
|
|
2552
2866
|
readonly sourceField: string[];
|
|
2553
|
-
readonly destField: ("id" | "name" | "
|
|
2867
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2554
2868
|
readonly destSchema: "user";
|
|
2555
2869
|
readonly cardinality: "one";
|
|
2556
2870
|
}];
|
|
@@ -2603,7 +2917,7 @@ export declare const marcoZero: {
|
|
|
2603
2917
|
readonly threadMessageRecipient: {
|
|
2604
2918
|
message: [{
|
|
2605
2919
|
readonly sourceField: string[];
|
|
2606
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2920
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2607
2921
|
readonly destSchema: "threadMessage";
|
|
2608
2922
|
readonly cardinality: "one";
|
|
2609
2923
|
}];
|
|
@@ -2611,7 +2925,7 @@ export declare const marcoZero: {
|
|
|
2611
2925
|
readonly threadMessageAttachment: {
|
|
2612
2926
|
message: [{
|
|
2613
2927
|
readonly sourceField: string[];
|
|
2614
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2928
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2615
2929
|
readonly destSchema: "threadMessage";
|
|
2616
2930
|
readonly cardinality: "one";
|
|
2617
2931
|
}];
|
|
@@ -2625,7 +2939,7 @@ export declare const marcoZero: {
|
|
|
2625
2939
|
}];
|
|
2626
2940
|
message: [{
|
|
2627
2941
|
readonly sourceField: string[];
|
|
2628
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2942
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2629
2943
|
readonly destSchema: "threadMessage";
|
|
2630
2944
|
readonly cardinality: "one";
|
|
2631
2945
|
}];
|
|
@@ -2690,16 +3004,9 @@ export declare const marcoZero: {
|
|
|
2690
3004
|
readonly totalSize: number;
|
|
2691
3005
|
readonly uploadedChunks: number;
|
|
2692
3006
|
}[];
|
|
2693
|
-
} & {
|
|
2694
|
-
readonly user: {
|
|
2695
|
-
readonly id: string;
|
|
2696
|
-
readonly name: string | null;
|
|
2697
|
-
readonly profilePicture: string | null;
|
|
2698
|
-
readonly undoSendEnabled: boolean;
|
|
2699
|
-
} | undefined;
|
|
2700
3007
|
}>>;
|
|
2701
3008
|
readonly getThreads: import("@rocicorp/zero").SyncedQuery<"getThreads", import("..").MarcoSyncedQueryContext, true, [{
|
|
2702
|
-
limit
|
|
3009
|
+
limit: number;
|
|
2703
3010
|
search?: string;
|
|
2704
3011
|
where?: {
|
|
2705
3012
|
flagged?: boolean;
|
|
@@ -2731,11 +3038,15 @@ export declare const marcoZero: {
|
|
|
2731
3038
|
customType: string;
|
|
2732
3039
|
}, "optional"> & {
|
|
2733
3040
|
optional: true;
|
|
3041
|
+
} & {
|
|
3042
|
+
serverName: string;
|
|
2734
3043
|
};
|
|
2735
3044
|
readonly undoSendEnabled: {
|
|
2736
3045
|
type: "boolean";
|
|
2737
3046
|
optional: false;
|
|
2738
3047
|
customType: boolean;
|
|
3048
|
+
} & {
|
|
3049
|
+
serverName: string;
|
|
2739
3050
|
};
|
|
2740
3051
|
};
|
|
2741
3052
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2749,6 +3060,8 @@ export declare const marcoZero: {
|
|
|
2749
3060
|
type: "number";
|
|
2750
3061
|
optional: false;
|
|
2751
3062
|
customType: number;
|
|
3063
|
+
} & {
|
|
3064
|
+
serverName: string;
|
|
2752
3065
|
};
|
|
2753
3066
|
readonly id: {
|
|
2754
3067
|
type: "string";
|
|
@@ -2764,6 +3077,8 @@ export declare const marcoZero: {
|
|
|
2764
3077
|
type: "string";
|
|
2765
3078
|
optional: false;
|
|
2766
3079
|
customType: string;
|
|
3080
|
+
} & {
|
|
3081
|
+
serverName: string;
|
|
2767
3082
|
};
|
|
2768
3083
|
};
|
|
2769
3084
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2777,6 +3092,8 @@ export declare const marcoZero: {
|
|
|
2777
3092
|
type: "string";
|
|
2778
3093
|
optional: false;
|
|
2779
3094
|
customType: string;
|
|
3095
|
+
} & {
|
|
3096
|
+
serverName: string;
|
|
2780
3097
|
};
|
|
2781
3098
|
readonly id: {
|
|
2782
3099
|
type: "string";
|
|
@@ -2794,6 +3111,8 @@ export declare const marcoZero: {
|
|
|
2794
3111
|
type: "string";
|
|
2795
3112
|
optional: false;
|
|
2796
3113
|
customType: string;
|
|
3114
|
+
} & {
|
|
3115
|
+
serverName: string;
|
|
2797
3116
|
};
|
|
2798
3117
|
};
|
|
2799
3118
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2814,6 +3133,8 @@ export declare const marcoZero: {
|
|
|
2814
3133
|
customType: string;
|
|
2815
3134
|
}, "optional"> & {
|
|
2816
3135
|
optional: true;
|
|
3136
|
+
} & {
|
|
3137
|
+
serverName: string;
|
|
2817
3138
|
};
|
|
2818
3139
|
readonly id: {
|
|
2819
3140
|
type: "string";
|
|
@@ -2824,16 +3145,22 @@ export declare const marcoZero: {
|
|
|
2824
3145
|
type: "string";
|
|
2825
3146
|
optional: false;
|
|
2826
3147
|
customType: "AWAITING_CONNECTION" | "CONNECTED" | "CONNECTION_FAILED_AUTHENTICATION_ERROR" | "CONNECTION_FAILED_CONNECTION_ERROR" | "CONNECTION_FAILED_OAUTH_EXCHANGE_ERROR" | "CONNECTION_FAILED_QUOTA_ERROR" | "CONNECTION_FAILED_UNKNOWN_ERROR";
|
|
3148
|
+
} & {
|
|
3149
|
+
serverName: string;
|
|
2827
3150
|
};
|
|
2828
3151
|
readonly mailProcessedCount: {
|
|
2829
3152
|
type: "number";
|
|
2830
3153
|
optional: false;
|
|
2831
3154
|
customType: number;
|
|
3155
|
+
} & {
|
|
3156
|
+
serverName: string;
|
|
2832
3157
|
};
|
|
2833
3158
|
readonly mailTotalCount: {
|
|
2834
3159
|
type: "number";
|
|
2835
3160
|
optional: false;
|
|
2836
3161
|
customType: number;
|
|
3162
|
+
} & {
|
|
3163
|
+
serverName: string;
|
|
2837
3164
|
};
|
|
2838
3165
|
readonly primaryAliasId: Omit<{
|
|
2839
3166
|
type: "string";
|
|
@@ -2841,11 +3168,15 @@ export declare const marcoZero: {
|
|
|
2841
3168
|
customType: string;
|
|
2842
3169
|
}, "optional"> & {
|
|
2843
3170
|
optional: true;
|
|
3171
|
+
} & {
|
|
3172
|
+
serverName: string;
|
|
2844
3173
|
};
|
|
2845
3174
|
readonly userId: {
|
|
2846
3175
|
type: "string";
|
|
2847
3176
|
optional: false;
|
|
2848
3177
|
customType: string;
|
|
3178
|
+
} & {
|
|
3179
|
+
serverName: string;
|
|
2849
3180
|
};
|
|
2850
3181
|
};
|
|
2851
3182
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2859,11 +3190,15 @@ export declare const marcoZero: {
|
|
|
2859
3190
|
type: "string";
|
|
2860
3191
|
optional: false;
|
|
2861
3192
|
customType: string;
|
|
3193
|
+
} & {
|
|
3194
|
+
serverName: string;
|
|
2862
3195
|
};
|
|
2863
3196
|
readonly emailAddress: {
|
|
2864
3197
|
type: "string";
|
|
2865
3198
|
optional: false;
|
|
2866
3199
|
customType: string;
|
|
3200
|
+
} & {
|
|
3201
|
+
serverName: string;
|
|
2867
3202
|
};
|
|
2868
3203
|
readonly id: {
|
|
2869
3204
|
type: "string";
|
|
@@ -2874,6 +3209,8 @@ export declare const marcoZero: {
|
|
|
2874
3209
|
type: "boolean";
|
|
2875
3210
|
optional: false;
|
|
2876
3211
|
customType: boolean;
|
|
3212
|
+
} & {
|
|
3213
|
+
serverName: string;
|
|
2877
3214
|
};
|
|
2878
3215
|
readonly name: Omit<{
|
|
2879
3216
|
type: "string";
|
|
@@ -2894,6 +3231,8 @@ export declare const marcoZero: {
|
|
|
2894
3231
|
type: "string";
|
|
2895
3232
|
optional: false;
|
|
2896
3233
|
customType: string;
|
|
3234
|
+
} & {
|
|
3235
|
+
serverName: string;
|
|
2897
3236
|
};
|
|
2898
3237
|
readonly id: {
|
|
2899
3238
|
type: "string";
|
|
@@ -2911,6 +3250,8 @@ export declare const marcoZero: {
|
|
|
2911
3250
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
2912
3251
|
}, "optional"> & {
|
|
2913
3252
|
optional: true;
|
|
3253
|
+
} & {
|
|
3254
|
+
serverName: string;
|
|
2914
3255
|
};
|
|
2915
3256
|
};
|
|
2916
3257
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2924,6 +3265,8 @@ export declare const marcoZero: {
|
|
|
2924
3265
|
type: "string";
|
|
2925
3266
|
optional: false;
|
|
2926
3267
|
customType: string;
|
|
3268
|
+
} & {
|
|
3269
|
+
serverName: string;
|
|
2927
3270
|
};
|
|
2928
3271
|
readonly body: {
|
|
2929
3272
|
type: "json";
|
|
@@ -2948,11 +3291,15 @@ export declare const marcoZero: {
|
|
|
2948
3291
|
customType: string;
|
|
2949
3292
|
}, "optional"> & {
|
|
2950
3293
|
optional: true;
|
|
3294
|
+
} & {
|
|
3295
|
+
serverName: string;
|
|
2951
3296
|
};
|
|
2952
3297
|
readonly fromEmail: {
|
|
2953
3298
|
type: "string";
|
|
2954
3299
|
optional: false;
|
|
2955
3300
|
customType: string;
|
|
3301
|
+
} & {
|
|
3302
|
+
serverName: string;
|
|
2956
3303
|
};
|
|
2957
3304
|
readonly fromName: Omit<{
|
|
2958
3305
|
type: "string";
|
|
@@ -2960,6 +3307,8 @@ export declare const marcoZero: {
|
|
|
2960
3307
|
customType: string;
|
|
2961
3308
|
}, "optional"> & {
|
|
2962
3309
|
optional: true;
|
|
3310
|
+
} & {
|
|
3311
|
+
serverName: string;
|
|
2963
3312
|
};
|
|
2964
3313
|
readonly id: {
|
|
2965
3314
|
type: "string";
|
|
@@ -2972,6 +3321,8 @@ export declare const marcoZero: {
|
|
|
2972
3321
|
customType: string;
|
|
2973
3322
|
}, "optional"> & {
|
|
2974
3323
|
optional: true;
|
|
3324
|
+
} & {
|
|
3325
|
+
serverName: string;
|
|
2975
3326
|
};
|
|
2976
3327
|
readonly scheduledFor: Omit<{
|
|
2977
3328
|
type: "number";
|
|
@@ -2979,6 +3330,8 @@ export declare const marcoZero: {
|
|
|
2979
3330
|
customType: number;
|
|
2980
3331
|
}, "optional"> & {
|
|
2981
3332
|
optional: true;
|
|
3333
|
+
} & {
|
|
3334
|
+
serverName: string;
|
|
2982
3335
|
};
|
|
2983
3336
|
readonly status: {
|
|
2984
3337
|
type: "string";
|
|
@@ -3001,11 +3354,15 @@ export declare const marcoZero: {
|
|
|
3001
3354
|
type: "number";
|
|
3002
3355
|
optional: false;
|
|
3003
3356
|
customType: number;
|
|
3357
|
+
} & {
|
|
3358
|
+
serverName: string;
|
|
3004
3359
|
};
|
|
3005
3360
|
readonly userId: {
|
|
3006
3361
|
type: "string";
|
|
3007
3362
|
optional: false;
|
|
3008
3363
|
customType: string;
|
|
3364
|
+
} & {
|
|
3365
|
+
serverName: string;
|
|
3009
3366
|
};
|
|
3010
3367
|
};
|
|
3011
3368
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3019,11 +3376,15 @@ export declare const marcoZero: {
|
|
|
3019
3376
|
type: "string";
|
|
3020
3377
|
optional: false;
|
|
3021
3378
|
customType: string;
|
|
3379
|
+
} & {
|
|
3380
|
+
serverName: string;
|
|
3022
3381
|
};
|
|
3023
3382
|
readonly emailAddress: {
|
|
3024
3383
|
type: "string";
|
|
3025
3384
|
optional: false;
|
|
3026
3385
|
customType: string;
|
|
3386
|
+
} & {
|
|
3387
|
+
serverName: string;
|
|
3027
3388
|
};
|
|
3028
3389
|
readonly id: {
|
|
3029
3390
|
type: "string";
|
|
@@ -3047,6 +3408,8 @@ export declare const marcoZero: {
|
|
|
3047
3408
|
type: "string";
|
|
3048
3409
|
optional: false;
|
|
3049
3410
|
customType: string;
|
|
3411
|
+
} & {
|
|
3412
|
+
serverName: string;
|
|
3050
3413
|
};
|
|
3051
3414
|
readonly failed: {
|
|
3052
3415
|
type: "boolean";
|
|
@@ -3057,6 +3420,8 @@ export declare const marcoZero: {
|
|
|
3057
3420
|
type: "string";
|
|
3058
3421
|
optional: false;
|
|
3059
3422
|
customType: string;
|
|
3423
|
+
} & {
|
|
3424
|
+
serverName: string;
|
|
3060
3425
|
};
|
|
3061
3426
|
readonly id: {
|
|
3062
3427
|
type: "string";
|
|
@@ -3067,21 +3432,29 @@ export declare const marcoZero: {
|
|
|
3067
3432
|
type: "string";
|
|
3068
3433
|
optional: false;
|
|
3069
3434
|
customType: string;
|
|
3435
|
+
} & {
|
|
3436
|
+
serverName: string;
|
|
3070
3437
|
};
|
|
3071
3438
|
readonly totalChunks: {
|
|
3072
3439
|
type: "number";
|
|
3073
3440
|
optional: false;
|
|
3074
3441
|
customType: number;
|
|
3442
|
+
} & {
|
|
3443
|
+
serverName: string;
|
|
3075
3444
|
};
|
|
3076
3445
|
readonly totalSize: {
|
|
3077
3446
|
type: "number";
|
|
3078
3447
|
optional: false;
|
|
3079
3448
|
customType: number;
|
|
3449
|
+
} & {
|
|
3450
|
+
serverName: string;
|
|
3080
3451
|
};
|
|
3081
3452
|
readonly uploadedChunks: {
|
|
3082
3453
|
type: "number";
|
|
3083
3454
|
optional: false;
|
|
3084
3455
|
customType: number;
|
|
3456
|
+
} & {
|
|
3457
|
+
serverName: string;
|
|
3085
3458
|
};
|
|
3086
3459
|
};
|
|
3087
3460
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3095,6 +3468,8 @@ export declare const marcoZero: {
|
|
|
3095
3468
|
type: "string";
|
|
3096
3469
|
optional: false;
|
|
3097
3470
|
customType: string;
|
|
3471
|
+
} & {
|
|
3472
|
+
serverName: string;
|
|
3098
3473
|
};
|
|
3099
3474
|
readonly flagged: {
|
|
3100
3475
|
type: "boolean";
|
|
@@ -3110,6 +3485,8 @@ export declare const marcoZero: {
|
|
|
3110
3485
|
type: "number";
|
|
3111
3486
|
optional: false;
|
|
3112
3487
|
customType: number;
|
|
3488
|
+
} & {
|
|
3489
|
+
serverName: string;
|
|
3113
3490
|
};
|
|
3114
3491
|
readonly seen: {
|
|
3115
3492
|
type: "boolean";
|
|
@@ -3120,6 +3497,8 @@ export declare const marcoZero: {
|
|
|
3120
3497
|
type: "string";
|
|
3121
3498
|
optional: false;
|
|
3122
3499
|
customType: string;
|
|
3500
|
+
} & {
|
|
3501
|
+
serverName: string;
|
|
3123
3502
|
};
|
|
3124
3503
|
readonly words: {
|
|
3125
3504
|
type: "string";
|
|
@@ -3138,11 +3517,15 @@ export declare const marcoZero: {
|
|
|
3138
3517
|
type: "string";
|
|
3139
3518
|
optional: false;
|
|
3140
3519
|
customType: string;
|
|
3520
|
+
} & {
|
|
3521
|
+
serverName: string;
|
|
3141
3522
|
};
|
|
3142
3523
|
readonly threadId: {
|
|
3143
3524
|
type: "string";
|
|
3144
3525
|
optional: false;
|
|
3145
3526
|
customType: string;
|
|
3527
|
+
} & {
|
|
3528
|
+
serverName: string;
|
|
3146
3529
|
};
|
|
3147
3530
|
};
|
|
3148
3531
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3156,6 +3539,8 @@ export declare const marcoZero: {
|
|
|
3156
3539
|
type: "number";
|
|
3157
3540
|
optional: false;
|
|
3158
3541
|
customType: number;
|
|
3542
|
+
} & {
|
|
3543
|
+
serverName: string;
|
|
3159
3544
|
};
|
|
3160
3545
|
readonly envelopeSubject: Omit<{
|
|
3161
3546
|
type: "string";
|
|
@@ -3163,6 +3548,8 @@ export declare const marcoZero: {
|
|
|
3163
3548
|
customType: string;
|
|
3164
3549
|
}, "optional"> & {
|
|
3165
3550
|
optional: true;
|
|
3551
|
+
} & {
|
|
3552
|
+
serverName: string;
|
|
3166
3553
|
};
|
|
3167
3554
|
readonly id: {
|
|
3168
3555
|
type: "string";
|
|
@@ -3173,11 +3560,15 @@ export declare const marcoZero: {
|
|
|
3173
3560
|
type: "string";
|
|
3174
3561
|
optional: false;
|
|
3175
3562
|
customType: string;
|
|
3563
|
+
} & {
|
|
3564
|
+
serverName: string;
|
|
3176
3565
|
};
|
|
3177
3566
|
readonly senderEmail: {
|
|
3178
3567
|
type: "string";
|
|
3179
3568
|
optional: false;
|
|
3180
3569
|
customType: string;
|
|
3570
|
+
} & {
|
|
3571
|
+
serverName: string;
|
|
3181
3572
|
};
|
|
3182
3573
|
readonly senderName: Omit<{
|
|
3183
3574
|
type: "string";
|
|
@@ -3185,11 +3576,15 @@ export declare const marcoZero: {
|
|
|
3185
3576
|
customType: string;
|
|
3186
3577
|
}, "optional"> & {
|
|
3187
3578
|
optional: true;
|
|
3579
|
+
} & {
|
|
3580
|
+
serverName: string;
|
|
3188
3581
|
};
|
|
3189
3582
|
readonly threadId: {
|
|
3190
3583
|
type: "string";
|
|
3191
3584
|
optional: false;
|
|
3192
3585
|
customType: string;
|
|
3586
|
+
} & {
|
|
3587
|
+
serverName: string;
|
|
3193
3588
|
};
|
|
3194
3589
|
};
|
|
3195
3590
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3203,6 +3598,8 @@ export declare const marcoZero: {
|
|
|
3203
3598
|
type: "string";
|
|
3204
3599
|
optional: false;
|
|
3205
3600
|
customType: string;
|
|
3601
|
+
} & {
|
|
3602
|
+
serverName: string;
|
|
3206
3603
|
};
|
|
3207
3604
|
readonly id: {
|
|
3208
3605
|
type: "string";
|
|
@@ -3220,6 +3617,8 @@ export declare const marcoZero: {
|
|
|
3220
3617
|
type: "string";
|
|
3221
3618
|
optional: false;
|
|
3222
3619
|
customType: string;
|
|
3620
|
+
} & {
|
|
3621
|
+
serverName: string;
|
|
3223
3622
|
};
|
|
3224
3623
|
readonly type: {
|
|
3225
3624
|
type: "string";
|
|
@@ -3238,6 +3637,8 @@ export declare const marcoZero: {
|
|
|
3238
3637
|
type: "string";
|
|
3239
3638
|
optional: false;
|
|
3240
3639
|
customType: string;
|
|
3640
|
+
} & {
|
|
3641
|
+
serverName: string;
|
|
3241
3642
|
};
|
|
3242
3643
|
readonly id: {
|
|
3243
3644
|
type: "string";
|
|
@@ -3248,6 +3649,8 @@ export declare const marcoZero: {
|
|
|
3248
3649
|
type: "string";
|
|
3249
3650
|
optional: false;
|
|
3250
3651
|
customType: string;
|
|
3652
|
+
} & {
|
|
3653
|
+
serverName: string;
|
|
3251
3654
|
};
|
|
3252
3655
|
readonly size: {
|
|
3253
3656
|
type: "number";
|
|
@@ -3263,6 +3666,8 @@ export declare const marcoZero: {
|
|
|
3263
3666
|
type: "string";
|
|
3264
3667
|
optional: false;
|
|
3265
3668
|
customType: string;
|
|
3669
|
+
} & {
|
|
3670
|
+
serverName: string;
|
|
3266
3671
|
};
|
|
3267
3672
|
};
|
|
3268
3673
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3276,11 +3681,15 @@ export declare const marcoZero: {
|
|
|
3276
3681
|
type: "string";
|
|
3277
3682
|
optional: false;
|
|
3278
3683
|
customType: string;
|
|
3684
|
+
} & {
|
|
3685
|
+
serverName: string;
|
|
3279
3686
|
};
|
|
3280
3687
|
readonly threadMessageId: {
|
|
3281
3688
|
type: "string";
|
|
3282
3689
|
optional: false;
|
|
3283
3690
|
customType: string;
|
|
3691
|
+
} & {
|
|
3692
|
+
serverName: string;
|
|
3284
3693
|
};
|
|
3285
3694
|
};
|
|
3286
3695
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3292,7 +3701,7 @@ export declare const marcoZero: {
|
|
|
3292
3701
|
readonly user: {
|
|
3293
3702
|
accounts: [{
|
|
3294
3703
|
readonly sourceField: string[];
|
|
3295
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3704
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3296
3705
|
readonly destSchema: "account";
|
|
3297
3706
|
readonly cardinality: "many";
|
|
3298
3707
|
}];
|
|
@@ -3304,7 +3713,7 @@ export declare const marcoZero: {
|
|
|
3304
3713
|
}];
|
|
3305
3714
|
drafts: [{
|
|
3306
3715
|
readonly sourceField: string[];
|
|
3307
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
3716
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
3308
3717
|
readonly destSchema: "draft";
|
|
3309
3718
|
readonly cardinality: "many";
|
|
3310
3719
|
}];
|
|
@@ -3324,7 +3733,7 @@ export declare const marcoZero: {
|
|
|
3324
3733
|
readonly userPushNotificationToken: {
|
|
3325
3734
|
user: [{
|
|
3326
3735
|
readonly sourceField: string[];
|
|
3327
|
-
readonly destField: ("id" | "name" | "
|
|
3736
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3328
3737
|
readonly destSchema: "user";
|
|
3329
3738
|
readonly cardinality: "one";
|
|
3330
3739
|
}];
|
|
@@ -3332,7 +3741,7 @@ export declare const marcoZero: {
|
|
|
3332
3741
|
readonly contact: {
|
|
3333
3742
|
user: [{
|
|
3334
3743
|
readonly sourceField: string[];
|
|
3335
|
-
readonly destField: ("id" | "name" | "
|
|
3744
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3336
3745
|
readonly destSchema: "user";
|
|
3337
3746
|
readonly cardinality: "one";
|
|
3338
3747
|
}];
|
|
@@ -3346,7 +3755,7 @@ export declare const marcoZero: {
|
|
|
3346
3755
|
}];
|
|
3347
3756
|
drafts: [{
|
|
3348
3757
|
readonly sourceField: string[];
|
|
3349
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
3758
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
3350
3759
|
readonly destSchema: "draft";
|
|
3351
3760
|
readonly cardinality: "many";
|
|
3352
3761
|
}];
|
|
@@ -3370,7 +3779,7 @@ export declare const marcoZero: {
|
|
|
3370
3779
|
}];
|
|
3371
3780
|
user: [{
|
|
3372
3781
|
readonly sourceField: string[];
|
|
3373
|
-
readonly destField: ("id" | "name" | "
|
|
3782
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3374
3783
|
readonly destSchema: "user";
|
|
3375
3784
|
readonly cardinality: "one";
|
|
3376
3785
|
}];
|
|
@@ -3378,7 +3787,7 @@ export declare const marcoZero: {
|
|
|
3378
3787
|
readonly accountAlias: {
|
|
3379
3788
|
account: [{
|
|
3380
3789
|
readonly sourceField: string[];
|
|
3381
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3790
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3382
3791
|
readonly destSchema: "account";
|
|
3383
3792
|
readonly cardinality: "one";
|
|
3384
3793
|
}];
|
|
@@ -3386,7 +3795,7 @@ export declare const marcoZero: {
|
|
|
3386
3795
|
readonly accountLabel: {
|
|
3387
3796
|
account: [{
|
|
3388
3797
|
readonly sourceField: string[];
|
|
3389
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3798
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3390
3799
|
readonly destSchema: "account";
|
|
3391
3800
|
readonly cardinality: "one";
|
|
3392
3801
|
}];
|
|
@@ -3397,7 +3806,7 @@ export declare const marcoZero: {
|
|
|
3397
3806
|
readonly cardinality: "many";
|
|
3398
3807
|
}, {
|
|
3399
3808
|
readonly sourceField: string[];
|
|
3400
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3809
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3401
3810
|
readonly destSchema: "threadMessage";
|
|
3402
3811
|
readonly cardinality: "many";
|
|
3403
3812
|
}];
|
|
@@ -3416,7 +3825,7 @@ export declare const marcoZero: {
|
|
|
3416
3825
|
readonly draft: {
|
|
3417
3826
|
account: [{
|
|
3418
3827
|
readonly sourceField: string[];
|
|
3419
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3828
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3420
3829
|
readonly destSchema: "account";
|
|
3421
3830
|
readonly cardinality: "one";
|
|
3422
3831
|
}];
|
|
@@ -3434,7 +3843,7 @@ export declare const marcoZero: {
|
|
|
3434
3843
|
}];
|
|
3435
3844
|
user: [{
|
|
3436
3845
|
readonly sourceField: string[];
|
|
3437
|
-
readonly destField: ("id" | "name" | "
|
|
3846
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3438
3847
|
readonly destSchema: "user";
|
|
3439
3848
|
readonly cardinality: "one";
|
|
3440
3849
|
}];
|
|
@@ -3442,7 +3851,7 @@ export declare const marcoZero: {
|
|
|
3442
3851
|
readonly draftRecipient: {
|
|
3443
3852
|
draft: [{
|
|
3444
3853
|
readonly sourceField: string[];
|
|
3445
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
3854
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
3446
3855
|
readonly destSchema: "draft";
|
|
3447
3856
|
readonly cardinality: "one";
|
|
3448
3857
|
}];
|
|
@@ -3450,7 +3859,7 @@ export declare const marcoZero: {
|
|
|
3450
3859
|
readonly draftAttachment: {
|
|
3451
3860
|
draft: [{
|
|
3452
3861
|
readonly sourceField: string[];
|
|
3453
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
3862
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
3454
3863
|
readonly destSchema: "draft";
|
|
3455
3864
|
readonly cardinality: "one";
|
|
3456
3865
|
}];
|
|
@@ -3458,7 +3867,7 @@ export declare const marcoZero: {
|
|
|
3458
3867
|
readonly thread: {
|
|
3459
3868
|
account: [{
|
|
3460
3869
|
readonly sourceField: string[];
|
|
3461
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3870
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3462
3871
|
readonly destSchema: "account";
|
|
3463
3872
|
readonly cardinality: "one";
|
|
3464
3873
|
}];
|
|
@@ -3475,13 +3884,13 @@ export declare const marcoZero: {
|
|
|
3475
3884
|
}];
|
|
3476
3885
|
messages: [{
|
|
3477
3886
|
readonly sourceField: string[];
|
|
3478
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3887
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3479
3888
|
readonly destSchema: "threadMessage";
|
|
3480
3889
|
readonly cardinality: "many";
|
|
3481
3890
|
}];
|
|
3482
3891
|
user: [{
|
|
3483
3892
|
readonly sourceField: string[];
|
|
3484
|
-
readonly destField: ("id" | "name" | "
|
|
3893
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3485
3894
|
readonly destSchema: "user";
|
|
3486
3895
|
readonly cardinality: "one";
|
|
3487
3896
|
}];
|
|
@@ -3534,7 +3943,7 @@ export declare const marcoZero: {
|
|
|
3534
3943
|
readonly threadMessageRecipient: {
|
|
3535
3944
|
message: [{
|
|
3536
3945
|
readonly sourceField: string[];
|
|
3537
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3946
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3538
3947
|
readonly destSchema: "threadMessage";
|
|
3539
3948
|
readonly cardinality: "one";
|
|
3540
3949
|
}];
|
|
@@ -3542,7 +3951,7 @@ export declare const marcoZero: {
|
|
|
3542
3951
|
readonly threadMessageAttachment: {
|
|
3543
3952
|
message: [{
|
|
3544
3953
|
readonly sourceField: string[];
|
|
3545
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3954
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3546
3955
|
readonly destSchema: "threadMessage";
|
|
3547
3956
|
readonly cardinality: "one";
|
|
3548
3957
|
}];
|
|
@@ -3556,7 +3965,7 @@ export declare const marcoZero: {
|
|
|
3556
3965
|
}];
|
|
3557
3966
|
message: [{
|
|
3558
3967
|
readonly sourceField: string[];
|
|
3559
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3968
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3560
3969
|
readonly destSchema: "threadMessage";
|
|
3561
3970
|
readonly cardinality: "one";
|
|
3562
3971
|
}];
|
|
@@ -3648,11 +4057,15 @@ export declare const marcoZero: {
|
|
|
3648
4057
|
customType: string;
|
|
3649
4058
|
}, "optional"> & {
|
|
3650
4059
|
optional: true;
|
|
4060
|
+
} & {
|
|
4061
|
+
serverName: string;
|
|
3651
4062
|
};
|
|
3652
4063
|
readonly undoSendEnabled: {
|
|
3653
4064
|
type: "boolean";
|
|
3654
4065
|
optional: false;
|
|
3655
4066
|
customType: boolean;
|
|
4067
|
+
} & {
|
|
4068
|
+
serverName: string;
|
|
3656
4069
|
};
|
|
3657
4070
|
};
|
|
3658
4071
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3666,6 +4079,8 @@ export declare const marcoZero: {
|
|
|
3666
4079
|
type: "number";
|
|
3667
4080
|
optional: false;
|
|
3668
4081
|
customType: number;
|
|
4082
|
+
} & {
|
|
4083
|
+
serverName: string;
|
|
3669
4084
|
};
|
|
3670
4085
|
readonly id: {
|
|
3671
4086
|
type: "string";
|
|
@@ -3681,6 +4096,8 @@ export declare const marcoZero: {
|
|
|
3681
4096
|
type: "string";
|
|
3682
4097
|
optional: false;
|
|
3683
4098
|
customType: string;
|
|
4099
|
+
} & {
|
|
4100
|
+
serverName: string;
|
|
3684
4101
|
};
|
|
3685
4102
|
};
|
|
3686
4103
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3694,6 +4111,8 @@ export declare const marcoZero: {
|
|
|
3694
4111
|
type: "string";
|
|
3695
4112
|
optional: false;
|
|
3696
4113
|
customType: string;
|
|
4114
|
+
} & {
|
|
4115
|
+
serverName: string;
|
|
3697
4116
|
};
|
|
3698
4117
|
readonly id: {
|
|
3699
4118
|
type: "string";
|
|
@@ -3711,6 +4130,8 @@ export declare const marcoZero: {
|
|
|
3711
4130
|
type: "string";
|
|
3712
4131
|
optional: false;
|
|
3713
4132
|
customType: string;
|
|
4133
|
+
} & {
|
|
4134
|
+
serverName: string;
|
|
3714
4135
|
};
|
|
3715
4136
|
};
|
|
3716
4137
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3731,6 +4152,8 @@ export declare const marcoZero: {
|
|
|
3731
4152
|
customType: string;
|
|
3732
4153
|
}, "optional"> & {
|
|
3733
4154
|
optional: true;
|
|
4155
|
+
} & {
|
|
4156
|
+
serverName: string;
|
|
3734
4157
|
};
|
|
3735
4158
|
readonly id: {
|
|
3736
4159
|
type: "string";
|
|
@@ -3741,16 +4164,22 @@ export declare const marcoZero: {
|
|
|
3741
4164
|
type: "string";
|
|
3742
4165
|
optional: false;
|
|
3743
4166
|
customType: "AWAITING_CONNECTION" | "CONNECTED" | "CONNECTION_FAILED_AUTHENTICATION_ERROR" | "CONNECTION_FAILED_CONNECTION_ERROR" | "CONNECTION_FAILED_OAUTH_EXCHANGE_ERROR" | "CONNECTION_FAILED_QUOTA_ERROR" | "CONNECTION_FAILED_UNKNOWN_ERROR";
|
|
4167
|
+
} & {
|
|
4168
|
+
serverName: string;
|
|
3744
4169
|
};
|
|
3745
4170
|
readonly mailProcessedCount: {
|
|
3746
4171
|
type: "number";
|
|
3747
4172
|
optional: false;
|
|
3748
4173
|
customType: number;
|
|
4174
|
+
} & {
|
|
4175
|
+
serverName: string;
|
|
3749
4176
|
};
|
|
3750
4177
|
readonly mailTotalCount: {
|
|
3751
4178
|
type: "number";
|
|
3752
4179
|
optional: false;
|
|
3753
4180
|
customType: number;
|
|
4181
|
+
} & {
|
|
4182
|
+
serverName: string;
|
|
3754
4183
|
};
|
|
3755
4184
|
readonly primaryAliasId: Omit<{
|
|
3756
4185
|
type: "string";
|
|
@@ -3758,11 +4187,15 @@ export declare const marcoZero: {
|
|
|
3758
4187
|
customType: string;
|
|
3759
4188
|
}, "optional"> & {
|
|
3760
4189
|
optional: true;
|
|
4190
|
+
} & {
|
|
4191
|
+
serverName: string;
|
|
3761
4192
|
};
|
|
3762
4193
|
readonly userId: {
|
|
3763
4194
|
type: "string";
|
|
3764
4195
|
optional: false;
|
|
3765
4196
|
customType: string;
|
|
4197
|
+
} & {
|
|
4198
|
+
serverName: string;
|
|
3766
4199
|
};
|
|
3767
4200
|
};
|
|
3768
4201
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3776,11 +4209,15 @@ export declare const marcoZero: {
|
|
|
3776
4209
|
type: "string";
|
|
3777
4210
|
optional: false;
|
|
3778
4211
|
customType: string;
|
|
4212
|
+
} & {
|
|
4213
|
+
serverName: string;
|
|
3779
4214
|
};
|
|
3780
4215
|
readonly emailAddress: {
|
|
3781
4216
|
type: "string";
|
|
3782
4217
|
optional: false;
|
|
3783
4218
|
customType: string;
|
|
4219
|
+
} & {
|
|
4220
|
+
serverName: string;
|
|
3784
4221
|
};
|
|
3785
4222
|
readonly id: {
|
|
3786
4223
|
type: "string";
|
|
@@ -3791,6 +4228,8 @@ export declare const marcoZero: {
|
|
|
3791
4228
|
type: "boolean";
|
|
3792
4229
|
optional: false;
|
|
3793
4230
|
customType: boolean;
|
|
4231
|
+
} & {
|
|
4232
|
+
serverName: string;
|
|
3794
4233
|
};
|
|
3795
4234
|
readonly name: Omit<{
|
|
3796
4235
|
type: "string";
|
|
@@ -3811,6 +4250,8 @@ export declare const marcoZero: {
|
|
|
3811
4250
|
type: "string";
|
|
3812
4251
|
optional: false;
|
|
3813
4252
|
customType: string;
|
|
4253
|
+
} & {
|
|
4254
|
+
serverName: string;
|
|
3814
4255
|
};
|
|
3815
4256
|
readonly id: {
|
|
3816
4257
|
type: "string";
|
|
@@ -3828,6 +4269,8 @@ export declare const marcoZero: {
|
|
|
3828
4269
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
3829
4270
|
}, "optional"> & {
|
|
3830
4271
|
optional: true;
|
|
4272
|
+
} & {
|
|
4273
|
+
serverName: string;
|
|
3831
4274
|
};
|
|
3832
4275
|
};
|
|
3833
4276
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3841,6 +4284,8 @@ export declare const marcoZero: {
|
|
|
3841
4284
|
type: "string";
|
|
3842
4285
|
optional: false;
|
|
3843
4286
|
customType: string;
|
|
4287
|
+
} & {
|
|
4288
|
+
serverName: string;
|
|
3844
4289
|
};
|
|
3845
4290
|
readonly body: {
|
|
3846
4291
|
type: "json";
|
|
@@ -3865,11 +4310,15 @@ export declare const marcoZero: {
|
|
|
3865
4310
|
customType: string;
|
|
3866
4311
|
}, "optional"> & {
|
|
3867
4312
|
optional: true;
|
|
4313
|
+
} & {
|
|
4314
|
+
serverName: string;
|
|
3868
4315
|
};
|
|
3869
4316
|
readonly fromEmail: {
|
|
3870
4317
|
type: "string";
|
|
3871
4318
|
optional: false;
|
|
3872
4319
|
customType: string;
|
|
4320
|
+
} & {
|
|
4321
|
+
serverName: string;
|
|
3873
4322
|
};
|
|
3874
4323
|
readonly fromName: Omit<{
|
|
3875
4324
|
type: "string";
|
|
@@ -3877,6 +4326,8 @@ export declare const marcoZero: {
|
|
|
3877
4326
|
customType: string;
|
|
3878
4327
|
}, "optional"> & {
|
|
3879
4328
|
optional: true;
|
|
4329
|
+
} & {
|
|
4330
|
+
serverName: string;
|
|
3880
4331
|
};
|
|
3881
4332
|
readonly id: {
|
|
3882
4333
|
type: "string";
|
|
@@ -3889,6 +4340,8 @@ export declare const marcoZero: {
|
|
|
3889
4340
|
customType: string;
|
|
3890
4341
|
}, "optional"> & {
|
|
3891
4342
|
optional: true;
|
|
4343
|
+
} & {
|
|
4344
|
+
serverName: string;
|
|
3892
4345
|
};
|
|
3893
4346
|
readonly scheduledFor: Omit<{
|
|
3894
4347
|
type: "number";
|
|
@@ -3896,6 +4349,8 @@ export declare const marcoZero: {
|
|
|
3896
4349
|
customType: number;
|
|
3897
4350
|
}, "optional"> & {
|
|
3898
4351
|
optional: true;
|
|
4352
|
+
} & {
|
|
4353
|
+
serverName: string;
|
|
3899
4354
|
};
|
|
3900
4355
|
readonly status: {
|
|
3901
4356
|
type: "string";
|
|
@@ -3918,11 +4373,15 @@ export declare const marcoZero: {
|
|
|
3918
4373
|
type: "number";
|
|
3919
4374
|
optional: false;
|
|
3920
4375
|
customType: number;
|
|
4376
|
+
} & {
|
|
4377
|
+
serverName: string;
|
|
3921
4378
|
};
|
|
3922
4379
|
readonly userId: {
|
|
3923
4380
|
type: "string";
|
|
3924
4381
|
optional: false;
|
|
3925
4382
|
customType: string;
|
|
4383
|
+
} & {
|
|
4384
|
+
serverName: string;
|
|
3926
4385
|
};
|
|
3927
4386
|
};
|
|
3928
4387
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3936,11 +4395,15 @@ export declare const marcoZero: {
|
|
|
3936
4395
|
type: "string";
|
|
3937
4396
|
optional: false;
|
|
3938
4397
|
customType: string;
|
|
4398
|
+
} & {
|
|
4399
|
+
serverName: string;
|
|
3939
4400
|
};
|
|
3940
4401
|
readonly emailAddress: {
|
|
3941
4402
|
type: "string";
|
|
3942
4403
|
optional: false;
|
|
3943
4404
|
customType: string;
|
|
4405
|
+
} & {
|
|
4406
|
+
serverName: string;
|
|
3944
4407
|
};
|
|
3945
4408
|
readonly id: {
|
|
3946
4409
|
type: "string";
|
|
@@ -3964,6 +4427,8 @@ export declare const marcoZero: {
|
|
|
3964
4427
|
type: "string";
|
|
3965
4428
|
optional: false;
|
|
3966
4429
|
customType: string;
|
|
4430
|
+
} & {
|
|
4431
|
+
serverName: string;
|
|
3967
4432
|
};
|
|
3968
4433
|
readonly failed: {
|
|
3969
4434
|
type: "boolean";
|
|
@@ -3974,6 +4439,8 @@ export declare const marcoZero: {
|
|
|
3974
4439
|
type: "string";
|
|
3975
4440
|
optional: false;
|
|
3976
4441
|
customType: string;
|
|
4442
|
+
} & {
|
|
4443
|
+
serverName: string;
|
|
3977
4444
|
};
|
|
3978
4445
|
readonly id: {
|
|
3979
4446
|
type: "string";
|
|
@@ -3984,21 +4451,29 @@ export declare const marcoZero: {
|
|
|
3984
4451
|
type: "string";
|
|
3985
4452
|
optional: false;
|
|
3986
4453
|
customType: string;
|
|
4454
|
+
} & {
|
|
4455
|
+
serverName: string;
|
|
3987
4456
|
};
|
|
3988
4457
|
readonly totalChunks: {
|
|
3989
4458
|
type: "number";
|
|
3990
4459
|
optional: false;
|
|
3991
4460
|
customType: number;
|
|
4461
|
+
} & {
|
|
4462
|
+
serverName: string;
|
|
3992
4463
|
};
|
|
3993
4464
|
readonly totalSize: {
|
|
3994
4465
|
type: "number";
|
|
3995
4466
|
optional: false;
|
|
3996
4467
|
customType: number;
|
|
4468
|
+
} & {
|
|
4469
|
+
serverName: string;
|
|
3997
4470
|
};
|
|
3998
4471
|
readonly uploadedChunks: {
|
|
3999
4472
|
type: "number";
|
|
4000
4473
|
optional: false;
|
|
4001
4474
|
customType: number;
|
|
4475
|
+
} & {
|
|
4476
|
+
serverName: string;
|
|
4002
4477
|
};
|
|
4003
4478
|
};
|
|
4004
4479
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4012,6 +4487,8 @@ export declare const marcoZero: {
|
|
|
4012
4487
|
type: "string";
|
|
4013
4488
|
optional: false;
|
|
4014
4489
|
customType: string;
|
|
4490
|
+
} & {
|
|
4491
|
+
serverName: string;
|
|
4015
4492
|
};
|
|
4016
4493
|
readonly flagged: {
|
|
4017
4494
|
type: "boolean";
|
|
@@ -4027,6 +4504,8 @@ export declare const marcoZero: {
|
|
|
4027
4504
|
type: "number";
|
|
4028
4505
|
optional: false;
|
|
4029
4506
|
customType: number;
|
|
4507
|
+
} & {
|
|
4508
|
+
serverName: string;
|
|
4030
4509
|
};
|
|
4031
4510
|
readonly seen: {
|
|
4032
4511
|
type: "boolean";
|
|
@@ -4037,6 +4516,8 @@ export declare const marcoZero: {
|
|
|
4037
4516
|
type: "string";
|
|
4038
4517
|
optional: false;
|
|
4039
4518
|
customType: string;
|
|
4519
|
+
} & {
|
|
4520
|
+
serverName: string;
|
|
4040
4521
|
};
|
|
4041
4522
|
readonly words: {
|
|
4042
4523
|
type: "string";
|
|
@@ -4055,11 +4536,15 @@ export declare const marcoZero: {
|
|
|
4055
4536
|
type: "string";
|
|
4056
4537
|
optional: false;
|
|
4057
4538
|
customType: string;
|
|
4539
|
+
} & {
|
|
4540
|
+
serverName: string;
|
|
4058
4541
|
};
|
|
4059
4542
|
readonly threadId: {
|
|
4060
4543
|
type: "string";
|
|
4061
4544
|
optional: false;
|
|
4062
4545
|
customType: string;
|
|
4546
|
+
} & {
|
|
4547
|
+
serverName: string;
|
|
4063
4548
|
};
|
|
4064
4549
|
};
|
|
4065
4550
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4073,6 +4558,8 @@ export declare const marcoZero: {
|
|
|
4073
4558
|
type: "number";
|
|
4074
4559
|
optional: false;
|
|
4075
4560
|
customType: number;
|
|
4561
|
+
} & {
|
|
4562
|
+
serverName: string;
|
|
4076
4563
|
};
|
|
4077
4564
|
readonly envelopeSubject: Omit<{
|
|
4078
4565
|
type: "string";
|
|
@@ -4080,6 +4567,8 @@ export declare const marcoZero: {
|
|
|
4080
4567
|
customType: string;
|
|
4081
4568
|
}, "optional"> & {
|
|
4082
4569
|
optional: true;
|
|
4570
|
+
} & {
|
|
4571
|
+
serverName: string;
|
|
4083
4572
|
};
|
|
4084
4573
|
readonly id: {
|
|
4085
4574
|
type: "string";
|
|
@@ -4090,11 +4579,15 @@ export declare const marcoZero: {
|
|
|
4090
4579
|
type: "string";
|
|
4091
4580
|
optional: false;
|
|
4092
4581
|
customType: string;
|
|
4582
|
+
} & {
|
|
4583
|
+
serverName: string;
|
|
4093
4584
|
};
|
|
4094
4585
|
readonly senderEmail: {
|
|
4095
4586
|
type: "string";
|
|
4096
4587
|
optional: false;
|
|
4097
4588
|
customType: string;
|
|
4589
|
+
} & {
|
|
4590
|
+
serverName: string;
|
|
4098
4591
|
};
|
|
4099
4592
|
readonly senderName: Omit<{
|
|
4100
4593
|
type: "string";
|
|
@@ -4102,11 +4595,15 @@ export declare const marcoZero: {
|
|
|
4102
4595
|
customType: string;
|
|
4103
4596
|
}, "optional"> & {
|
|
4104
4597
|
optional: true;
|
|
4598
|
+
} & {
|
|
4599
|
+
serverName: string;
|
|
4105
4600
|
};
|
|
4106
4601
|
readonly threadId: {
|
|
4107
4602
|
type: "string";
|
|
4108
4603
|
optional: false;
|
|
4109
4604
|
customType: string;
|
|
4605
|
+
} & {
|
|
4606
|
+
serverName: string;
|
|
4110
4607
|
};
|
|
4111
4608
|
};
|
|
4112
4609
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4120,6 +4617,8 @@ export declare const marcoZero: {
|
|
|
4120
4617
|
type: "string";
|
|
4121
4618
|
optional: false;
|
|
4122
4619
|
customType: string;
|
|
4620
|
+
} & {
|
|
4621
|
+
serverName: string;
|
|
4123
4622
|
};
|
|
4124
4623
|
readonly id: {
|
|
4125
4624
|
type: "string";
|
|
@@ -4137,6 +4636,8 @@ export declare const marcoZero: {
|
|
|
4137
4636
|
type: "string";
|
|
4138
4637
|
optional: false;
|
|
4139
4638
|
customType: string;
|
|
4639
|
+
} & {
|
|
4640
|
+
serverName: string;
|
|
4140
4641
|
};
|
|
4141
4642
|
readonly type: {
|
|
4142
4643
|
type: "string";
|
|
@@ -4155,6 +4656,8 @@ export declare const marcoZero: {
|
|
|
4155
4656
|
type: "string";
|
|
4156
4657
|
optional: false;
|
|
4157
4658
|
customType: string;
|
|
4659
|
+
} & {
|
|
4660
|
+
serverName: string;
|
|
4158
4661
|
};
|
|
4159
4662
|
readonly id: {
|
|
4160
4663
|
type: "string";
|
|
@@ -4165,6 +4668,8 @@ export declare const marcoZero: {
|
|
|
4165
4668
|
type: "string";
|
|
4166
4669
|
optional: false;
|
|
4167
4670
|
customType: string;
|
|
4671
|
+
} & {
|
|
4672
|
+
serverName: string;
|
|
4168
4673
|
};
|
|
4169
4674
|
readonly size: {
|
|
4170
4675
|
type: "number";
|
|
@@ -4180,6 +4685,8 @@ export declare const marcoZero: {
|
|
|
4180
4685
|
type: "string";
|
|
4181
4686
|
optional: false;
|
|
4182
4687
|
customType: string;
|
|
4688
|
+
} & {
|
|
4689
|
+
serverName: string;
|
|
4183
4690
|
};
|
|
4184
4691
|
};
|
|
4185
4692
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4193,11 +4700,15 @@ export declare const marcoZero: {
|
|
|
4193
4700
|
type: "string";
|
|
4194
4701
|
optional: false;
|
|
4195
4702
|
customType: string;
|
|
4703
|
+
} & {
|
|
4704
|
+
serverName: string;
|
|
4196
4705
|
};
|
|
4197
4706
|
readonly threadMessageId: {
|
|
4198
4707
|
type: "string";
|
|
4199
4708
|
optional: false;
|
|
4200
4709
|
customType: string;
|
|
4710
|
+
} & {
|
|
4711
|
+
serverName: string;
|
|
4201
4712
|
};
|
|
4202
4713
|
};
|
|
4203
4714
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4209,7 +4720,7 @@ export declare const marcoZero: {
|
|
|
4209
4720
|
readonly user: {
|
|
4210
4721
|
accounts: [{
|
|
4211
4722
|
readonly sourceField: string[];
|
|
4212
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4723
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4213
4724
|
readonly destSchema: "account";
|
|
4214
4725
|
readonly cardinality: "many";
|
|
4215
4726
|
}];
|
|
@@ -4221,7 +4732,7 @@ export declare const marcoZero: {
|
|
|
4221
4732
|
}];
|
|
4222
4733
|
drafts: [{
|
|
4223
4734
|
readonly sourceField: string[];
|
|
4224
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
4735
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
4225
4736
|
readonly destSchema: "draft";
|
|
4226
4737
|
readonly cardinality: "many";
|
|
4227
4738
|
}];
|
|
@@ -4241,7 +4752,7 @@ export declare const marcoZero: {
|
|
|
4241
4752
|
readonly userPushNotificationToken: {
|
|
4242
4753
|
user: [{
|
|
4243
4754
|
readonly sourceField: string[];
|
|
4244
|
-
readonly destField: ("id" | "name" | "
|
|
4755
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4245
4756
|
readonly destSchema: "user";
|
|
4246
4757
|
readonly cardinality: "one";
|
|
4247
4758
|
}];
|
|
@@ -4249,7 +4760,7 @@ export declare const marcoZero: {
|
|
|
4249
4760
|
readonly contact: {
|
|
4250
4761
|
user: [{
|
|
4251
4762
|
readonly sourceField: string[];
|
|
4252
|
-
readonly destField: ("id" | "name" | "
|
|
4763
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4253
4764
|
readonly destSchema: "user";
|
|
4254
4765
|
readonly cardinality: "one";
|
|
4255
4766
|
}];
|
|
@@ -4263,7 +4774,7 @@ export declare const marcoZero: {
|
|
|
4263
4774
|
}];
|
|
4264
4775
|
drafts: [{
|
|
4265
4776
|
readonly sourceField: string[];
|
|
4266
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
4777
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
4267
4778
|
readonly destSchema: "draft";
|
|
4268
4779
|
readonly cardinality: "many";
|
|
4269
4780
|
}];
|
|
@@ -4287,7 +4798,7 @@ export declare const marcoZero: {
|
|
|
4287
4798
|
}];
|
|
4288
4799
|
user: [{
|
|
4289
4800
|
readonly sourceField: string[];
|
|
4290
|
-
readonly destField: ("id" | "name" | "
|
|
4801
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4291
4802
|
readonly destSchema: "user";
|
|
4292
4803
|
readonly cardinality: "one";
|
|
4293
4804
|
}];
|
|
@@ -4295,7 +4806,7 @@ export declare const marcoZero: {
|
|
|
4295
4806
|
readonly accountAlias: {
|
|
4296
4807
|
account: [{
|
|
4297
4808
|
readonly sourceField: string[];
|
|
4298
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4809
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4299
4810
|
readonly destSchema: "account";
|
|
4300
4811
|
readonly cardinality: "one";
|
|
4301
4812
|
}];
|
|
@@ -4303,7 +4814,7 @@ export declare const marcoZero: {
|
|
|
4303
4814
|
readonly accountLabel: {
|
|
4304
4815
|
account: [{
|
|
4305
4816
|
readonly sourceField: string[];
|
|
4306
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4817
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4307
4818
|
readonly destSchema: "account";
|
|
4308
4819
|
readonly cardinality: "one";
|
|
4309
4820
|
}];
|
|
@@ -4314,7 +4825,7 @@ export declare const marcoZero: {
|
|
|
4314
4825
|
readonly cardinality: "many";
|
|
4315
4826
|
}, {
|
|
4316
4827
|
readonly sourceField: string[];
|
|
4317
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4828
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4318
4829
|
readonly destSchema: "threadMessage";
|
|
4319
4830
|
readonly cardinality: "many";
|
|
4320
4831
|
}];
|
|
@@ -4333,7 +4844,7 @@ export declare const marcoZero: {
|
|
|
4333
4844
|
readonly draft: {
|
|
4334
4845
|
account: [{
|
|
4335
4846
|
readonly sourceField: string[];
|
|
4336
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4847
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4337
4848
|
readonly destSchema: "account";
|
|
4338
4849
|
readonly cardinality: "one";
|
|
4339
4850
|
}];
|
|
@@ -4351,7 +4862,7 @@ export declare const marcoZero: {
|
|
|
4351
4862
|
}];
|
|
4352
4863
|
user: [{
|
|
4353
4864
|
readonly sourceField: string[];
|
|
4354
|
-
readonly destField: ("id" | "name" | "
|
|
4865
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4355
4866
|
readonly destSchema: "user";
|
|
4356
4867
|
readonly cardinality: "one";
|
|
4357
4868
|
}];
|
|
@@ -4359,7 +4870,7 @@ export declare const marcoZero: {
|
|
|
4359
4870
|
readonly draftRecipient: {
|
|
4360
4871
|
draft: [{
|
|
4361
4872
|
readonly sourceField: string[];
|
|
4362
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
4873
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
4363
4874
|
readonly destSchema: "draft";
|
|
4364
4875
|
readonly cardinality: "one";
|
|
4365
4876
|
}];
|
|
@@ -4367,7 +4878,7 @@ export declare const marcoZero: {
|
|
|
4367
4878
|
readonly draftAttachment: {
|
|
4368
4879
|
draft: [{
|
|
4369
4880
|
readonly sourceField: string[];
|
|
4370
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
4881
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
4371
4882
|
readonly destSchema: "draft";
|
|
4372
4883
|
readonly cardinality: "one";
|
|
4373
4884
|
}];
|
|
@@ -4375,7 +4886,7 @@ export declare const marcoZero: {
|
|
|
4375
4886
|
readonly thread: {
|
|
4376
4887
|
account: [{
|
|
4377
4888
|
readonly sourceField: string[];
|
|
4378
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4889
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4379
4890
|
readonly destSchema: "account";
|
|
4380
4891
|
readonly cardinality: "one";
|
|
4381
4892
|
}];
|
|
@@ -4392,13 +4903,13 @@ export declare const marcoZero: {
|
|
|
4392
4903
|
}];
|
|
4393
4904
|
messages: [{
|
|
4394
4905
|
readonly sourceField: string[];
|
|
4395
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4906
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4396
4907
|
readonly destSchema: "threadMessage";
|
|
4397
4908
|
readonly cardinality: "many";
|
|
4398
4909
|
}];
|
|
4399
4910
|
user: [{
|
|
4400
4911
|
readonly sourceField: string[];
|
|
4401
|
-
readonly destField: ("id" | "name" | "
|
|
4912
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4402
4913
|
readonly destSchema: "user";
|
|
4403
4914
|
readonly cardinality: "one";
|
|
4404
4915
|
}];
|
|
@@ -4451,7 +4962,7 @@ export declare const marcoZero: {
|
|
|
4451
4962
|
readonly threadMessageRecipient: {
|
|
4452
4963
|
message: [{
|
|
4453
4964
|
readonly sourceField: string[];
|
|
4454
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4965
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4455
4966
|
readonly destSchema: "threadMessage";
|
|
4456
4967
|
readonly cardinality: "one";
|
|
4457
4968
|
}];
|
|
@@ -4459,7 +4970,7 @@ export declare const marcoZero: {
|
|
|
4459
4970
|
readonly threadMessageAttachment: {
|
|
4460
4971
|
message: [{
|
|
4461
4972
|
readonly sourceField: string[];
|
|
4462
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4973
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4463
4974
|
readonly destSchema: "threadMessage";
|
|
4464
4975
|
readonly cardinality: "one";
|
|
4465
4976
|
}];
|
|
@@ -4473,7 +4984,7 @@ export declare const marcoZero: {
|
|
|
4473
4984
|
}];
|
|
4474
4985
|
message: [{
|
|
4475
4986
|
readonly sourceField: string[];
|
|
4476
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4987
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4477
4988
|
readonly destSchema: "threadMessage";
|
|
4478
4989
|
readonly cardinality: "one";
|
|
4479
4990
|
}];
|
|
@@ -4520,70 +5031,6 @@ export declare const marcoZero: {
|
|
|
4520
5031
|
readonly specialUse: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH" | null;
|
|
4521
5032
|
}[];
|
|
4522
5033
|
})[];
|
|
4523
|
-
} & {
|
|
4524
|
-
readonly contacts: readonly {
|
|
4525
|
-
readonly emailAddress: string;
|
|
4526
|
-
readonly id: string;
|
|
4527
|
-
readonly name: string | null;
|
|
4528
|
-
readonly userId: string;
|
|
4529
|
-
}[];
|
|
4530
|
-
} & {
|
|
4531
|
-
readonly drafts: readonly ({
|
|
4532
|
-
readonly accountId: string;
|
|
4533
|
-
readonly body: {
|
|
4534
|
-
content: string;
|
|
4535
|
-
to: string[];
|
|
4536
|
-
cc: string[];
|
|
4537
|
-
bcc: string[];
|
|
4538
|
-
};
|
|
4539
|
-
readonly error: string | null;
|
|
4540
|
-
readonly fromAliasId: string | null;
|
|
4541
|
-
readonly fromEmail: string;
|
|
4542
|
-
readonly fromName: string | null;
|
|
4543
|
-
readonly id: string;
|
|
4544
|
-
readonly referencedMessageId: string | null;
|
|
4545
|
-
readonly scheduledFor: number | null;
|
|
4546
|
-
readonly status: "DRAFT" | "SEND_REQUESTED" | "SEND_CONFIRMED" | "SEND_FAILED";
|
|
4547
|
-
readonly subject: string | null;
|
|
4548
|
-
readonly type: "NEW" | "REPLY" | "FORWARD";
|
|
4549
|
-
readonly updatedAt: number;
|
|
4550
|
-
readonly userId: string;
|
|
4551
|
-
} & {
|
|
4552
|
-
readonly recipients: readonly {
|
|
4553
|
-
readonly draftId: string;
|
|
4554
|
-
readonly emailAddress: string;
|
|
4555
|
-
readonly id: string;
|
|
4556
|
-
readonly type: "bcc" | "cc" | "to";
|
|
4557
|
-
}[];
|
|
4558
|
-
} & {
|
|
4559
|
-
readonly attachments: readonly {
|
|
4560
|
-
readonly draftId: string;
|
|
4561
|
-
readonly failed: boolean;
|
|
4562
|
-
readonly fileName: string;
|
|
4563
|
-
readonly id: string;
|
|
4564
|
-
readonly mimeType: string;
|
|
4565
|
-
readonly totalChunks: number;
|
|
4566
|
-
readonly totalSize: number;
|
|
4567
|
-
readonly uploadedChunks: number;
|
|
4568
|
-
}[];
|
|
4569
|
-
})[];
|
|
4570
|
-
} & {
|
|
4571
|
-
readonly pushNotificationTokens: readonly {
|
|
4572
|
-
readonly createdAt: number;
|
|
4573
|
-
readonly id: string;
|
|
4574
|
-
readonly token: string;
|
|
4575
|
-
readonly userId: string;
|
|
4576
|
-
}[];
|
|
4577
|
-
} & {
|
|
4578
|
-
readonly threads: readonly {
|
|
4579
|
-
readonly accountId: string;
|
|
4580
|
-
readonly flagged: boolean;
|
|
4581
|
-
readonly id: string;
|
|
4582
|
-
readonly latestMessageDate: number;
|
|
4583
|
-
readonly seen: boolean;
|
|
4584
|
-
readonly userId: string;
|
|
4585
|
-
readonly words: string;
|
|
4586
|
-
}[];
|
|
4587
5034
|
}>>;
|
|
4588
5035
|
};
|
|
4589
5036
|
readonly schema: {
|
|
@@ -4609,11 +5056,15 @@ export declare const marcoZero: {
|
|
|
4609
5056
|
customType: string;
|
|
4610
5057
|
}, "optional"> & {
|
|
4611
5058
|
optional: true;
|
|
5059
|
+
} & {
|
|
5060
|
+
serverName: string;
|
|
4612
5061
|
};
|
|
4613
5062
|
readonly undoSendEnabled: {
|
|
4614
5063
|
type: "boolean";
|
|
4615
5064
|
optional: false;
|
|
4616
5065
|
customType: boolean;
|
|
5066
|
+
} & {
|
|
5067
|
+
serverName: string;
|
|
4617
5068
|
};
|
|
4618
5069
|
};
|
|
4619
5070
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4627,6 +5078,8 @@ export declare const marcoZero: {
|
|
|
4627
5078
|
type: "number";
|
|
4628
5079
|
optional: false;
|
|
4629
5080
|
customType: number;
|
|
5081
|
+
} & {
|
|
5082
|
+
serverName: string;
|
|
4630
5083
|
};
|
|
4631
5084
|
readonly id: {
|
|
4632
5085
|
type: "string";
|
|
@@ -4642,6 +5095,8 @@ export declare const marcoZero: {
|
|
|
4642
5095
|
type: "string";
|
|
4643
5096
|
optional: false;
|
|
4644
5097
|
customType: string;
|
|
5098
|
+
} & {
|
|
5099
|
+
serverName: string;
|
|
4645
5100
|
};
|
|
4646
5101
|
};
|
|
4647
5102
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4655,6 +5110,8 @@ export declare const marcoZero: {
|
|
|
4655
5110
|
type: "string";
|
|
4656
5111
|
optional: false;
|
|
4657
5112
|
customType: string;
|
|
5113
|
+
} & {
|
|
5114
|
+
serverName: string;
|
|
4658
5115
|
};
|
|
4659
5116
|
readonly id: {
|
|
4660
5117
|
type: "string";
|
|
@@ -4672,6 +5129,8 @@ export declare const marcoZero: {
|
|
|
4672
5129
|
type: "string";
|
|
4673
5130
|
optional: false;
|
|
4674
5131
|
customType: string;
|
|
5132
|
+
} & {
|
|
5133
|
+
serverName: string;
|
|
4675
5134
|
};
|
|
4676
5135
|
};
|
|
4677
5136
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4692,6 +5151,8 @@ export declare const marcoZero: {
|
|
|
4692
5151
|
customType: string;
|
|
4693
5152
|
}, "optional"> & {
|
|
4694
5153
|
optional: true;
|
|
5154
|
+
} & {
|
|
5155
|
+
serverName: string;
|
|
4695
5156
|
};
|
|
4696
5157
|
readonly id: {
|
|
4697
5158
|
type: "string";
|
|
@@ -4702,16 +5163,22 @@ export declare const marcoZero: {
|
|
|
4702
5163
|
type: "string";
|
|
4703
5164
|
optional: false;
|
|
4704
5165
|
customType: "AWAITING_CONNECTION" | "CONNECTED" | "CONNECTION_FAILED_AUTHENTICATION_ERROR" | "CONNECTION_FAILED_CONNECTION_ERROR" | "CONNECTION_FAILED_OAUTH_EXCHANGE_ERROR" | "CONNECTION_FAILED_QUOTA_ERROR" | "CONNECTION_FAILED_UNKNOWN_ERROR";
|
|
5166
|
+
} & {
|
|
5167
|
+
serverName: string;
|
|
4705
5168
|
};
|
|
4706
5169
|
readonly mailProcessedCount: {
|
|
4707
5170
|
type: "number";
|
|
4708
5171
|
optional: false;
|
|
4709
5172
|
customType: number;
|
|
5173
|
+
} & {
|
|
5174
|
+
serverName: string;
|
|
4710
5175
|
};
|
|
4711
5176
|
readonly mailTotalCount: {
|
|
4712
5177
|
type: "number";
|
|
4713
5178
|
optional: false;
|
|
4714
5179
|
customType: number;
|
|
5180
|
+
} & {
|
|
5181
|
+
serverName: string;
|
|
4715
5182
|
};
|
|
4716
5183
|
readonly primaryAliasId: Omit<{
|
|
4717
5184
|
type: "string";
|
|
@@ -4719,11 +5186,15 @@ export declare const marcoZero: {
|
|
|
4719
5186
|
customType: string;
|
|
4720
5187
|
}, "optional"> & {
|
|
4721
5188
|
optional: true;
|
|
5189
|
+
} & {
|
|
5190
|
+
serverName: string;
|
|
4722
5191
|
};
|
|
4723
5192
|
readonly userId: {
|
|
4724
5193
|
type: "string";
|
|
4725
5194
|
optional: false;
|
|
4726
5195
|
customType: string;
|
|
5196
|
+
} & {
|
|
5197
|
+
serverName: string;
|
|
4727
5198
|
};
|
|
4728
5199
|
};
|
|
4729
5200
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4737,11 +5208,15 @@ export declare const marcoZero: {
|
|
|
4737
5208
|
type: "string";
|
|
4738
5209
|
optional: false;
|
|
4739
5210
|
customType: string;
|
|
5211
|
+
} & {
|
|
5212
|
+
serverName: string;
|
|
4740
5213
|
};
|
|
4741
5214
|
readonly emailAddress: {
|
|
4742
5215
|
type: "string";
|
|
4743
5216
|
optional: false;
|
|
4744
5217
|
customType: string;
|
|
5218
|
+
} & {
|
|
5219
|
+
serverName: string;
|
|
4745
5220
|
};
|
|
4746
5221
|
readonly id: {
|
|
4747
5222
|
type: "string";
|
|
@@ -4752,6 +5227,8 @@ export declare const marcoZero: {
|
|
|
4752
5227
|
type: "boolean";
|
|
4753
5228
|
optional: false;
|
|
4754
5229
|
customType: boolean;
|
|
5230
|
+
} & {
|
|
5231
|
+
serverName: string;
|
|
4755
5232
|
};
|
|
4756
5233
|
readonly name: Omit<{
|
|
4757
5234
|
type: "string";
|
|
@@ -4772,6 +5249,8 @@ export declare const marcoZero: {
|
|
|
4772
5249
|
type: "string";
|
|
4773
5250
|
optional: false;
|
|
4774
5251
|
customType: string;
|
|
5252
|
+
} & {
|
|
5253
|
+
serverName: string;
|
|
4775
5254
|
};
|
|
4776
5255
|
readonly id: {
|
|
4777
5256
|
type: "string";
|
|
@@ -4789,6 +5268,8 @@ export declare const marcoZero: {
|
|
|
4789
5268
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
4790
5269
|
}, "optional"> & {
|
|
4791
5270
|
optional: true;
|
|
5271
|
+
} & {
|
|
5272
|
+
serverName: string;
|
|
4792
5273
|
};
|
|
4793
5274
|
};
|
|
4794
5275
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4802,6 +5283,8 @@ export declare const marcoZero: {
|
|
|
4802
5283
|
type: "string";
|
|
4803
5284
|
optional: false;
|
|
4804
5285
|
customType: string;
|
|
5286
|
+
} & {
|
|
5287
|
+
serverName: string;
|
|
4805
5288
|
};
|
|
4806
5289
|
readonly body: {
|
|
4807
5290
|
type: "json";
|
|
@@ -4826,11 +5309,15 @@ export declare const marcoZero: {
|
|
|
4826
5309
|
customType: string;
|
|
4827
5310
|
}, "optional"> & {
|
|
4828
5311
|
optional: true;
|
|
5312
|
+
} & {
|
|
5313
|
+
serverName: string;
|
|
4829
5314
|
};
|
|
4830
5315
|
readonly fromEmail: {
|
|
4831
5316
|
type: "string";
|
|
4832
5317
|
optional: false;
|
|
4833
5318
|
customType: string;
|
|
5319
|
+
} & {
|
|
5320
|
+
serverName: string;
|
|
4834
5321
|
};
|
|
4835
5322
|
readonly fromName: Omit<{
|
|
4836
5323
|
type: "string";
|
|
@@ -4838,6 +5325,8 @@ export declare const marcoZero: {
|
|
|
4838
5325
|
customType: string;
|
|
4839
5326
|
}, "optional"> & {
|
|
4840
5327
|
optional: true;
|
|
5328
|
+
} & {
|
|
5329
|
+
serverName: string;
|
|
4841
5330
|
};
|
|
4842
5331
|
readonly id: {
|
|
4843
5332
|
type: "string";
|
|
@@ -4850,6 +5339,8 @@ export declare const marcoZero: {
|
|
|
4850
5339
|
customType: string;
|
|
4851
5340
|
}, "optional"> & {
|
|
4852
5341
|
optional: true;
|
|
5342
|
+
} & {
|
|
5343
|
+
serverName: string;
|
|
4853
5344
|
};
|
|
4854
5345
|
readonly scheduledFor: Omit<{
|
|
4855
5346
|
type: "number";
|
|
@@ -4857,6 +5348,8 @@ export declare const marcoZero: {
|
|
|
4857
5348
|
customType: number;
|
|
4858
5349
|
}, "optional"> & {
|
|
4859
5350
|
optional: true;
|
|
5351
|
+
} & {
|
|
5352
|
+
serverName: string;
|
|
4860
5353
|
};
|
|
4861
5354
|
readonly status: {
|
|
4862
5355
|
type: "string";
|
|
@@ -4879,11 +5372,15 @@ export declare const marcoZero: {
|
|
|
4879
5372
|
type: "number";
|
|
4880
5373
|
optional: false;
|
|
4881
5374
|
customType: number;
|
|
5375
|
+
} & {
|
|
5376
|
+
serverName: string;
|
|
4882
5377
|
};
|
|
4883
5378
|
readonly userId: {
|
|
4884
5379
|
type: "string";
|
|
4885
5380
|
optional: false;
|
|
4886
5381
|
customType: string;
|
|
5382
|
+
} & {
|
|
5383
|
+
serverName: string;
|
|
4887
5384
|
};
|
|
4888
5385
|
};
|
|
4889
5386
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4897,11 +5394,15 @@ export declare const marcoZero: {
|
|
|
4897
5394
|
type: "string";
|
|
4898
5395
|
optional: false;
|
|
4899
5396
|
customType: string;
|
|
5397
|
+
} & {
|
|
5398
|
+
serverName: string;
|
|
4900
5399
|
};
|
|
4901
5400
|
readonly emailAddress: {
|
|
4902
5401
|
type: "string";
|
|
4903
5402
|
optional: false;
|
|
4904
5403
|
customType: string;
|
|
5404
|
+
} & {
|
|
5405
|
+
serverName: string;
|
|
4905
5406
|
};
|
|
4906
5407
|
readonly id: {
|
|
4907
5408
|
type: "string";
|
|
@@ -4925,6 +5426,8 @@ export declare const marcoZero: {
|
|
|
4925
5426
|
type: "string";
|
|
4926
5427
|
optional: false;
|
|
4927
5428
|
customType: string;
|
|
5429
|
+
} & {
|
|
5430
|
+
serverName: string;
|
|
4928
5431
|
};
|
|
4929
5432
|
readonly failed: {
|
|
4930
5433
|
type: "boolean";
|
|
@@ -4935,6 +5438,8 @@ export declare const marcoZero: {
|
|
|
4935
5438
|
type: "string";
|
|
4936
5439
|
optional: false;
|
|
4937
5440
|
customType: string;
|
|
5441
|
+
} & {
|
|
5442
|
+
serverName: string;
|
|
4938
5443
|
};
|
|
4939
5444
|
readonly id: {
|
|
4940
5445
|
type: "string";
|
|
@@ -4945,21 +5450,29 @@ export declare const marcoZero: {
|
|
|
4945
5450
|
type: "string";
|
|
4946
5451
|
optional: false;
|
|
4947
5452
|
customType: string;
|
|
5453
|
+
} & {
|
|
5454
|
+
serverName: string;
|
|
4948
5455
|
};
|
|
4949
5456
|
readonly totalChunks: {
|
|
4950
5457
|
type: "number";
|
|
4951
5458
|
optional: false;
|
|
4952
5459
|
customType: number;
|
|
5460
|
+
} & {
|
|
5461
|
+
serverName: string;
|
|
4953
5462
|
};
|
|
4954
5463
|
readonly totalSize: {
|
|
4955
5464
|
type: "number";
|
|
4956
5465
|
optional: false;
|
|
4957
5466
|
customType: number;
|
|
5467
|
+
} & {
|
|
5468
|
+
serverName: string;
|
|
4958
5469
|
};
|
|
4959
5470
|
readonly uploadedChunks: {
|
|
4960
5471
|
type: "number";
|
|
4961
5472
|
optional: false;
|
|
4962
5473
|
customType: number;
|
|
5474
|
+
} & {
|
|
5475
|
+
serverName: string;
|
|
4963
5476
|
};
|
|
4964
5477
|
};
|
|
4965
5478
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4973,6 +5486,8 @@ export declare const marcoZero: {
|
|
|
4973
5486
|
type: "string";
|
|
4974
5487
|
optional: false;
|
|
4975
5488
|
customType: string;
|
|
5489
|
+
} & {
|
|
5490
|
+
serverName: string;
|
|
4976
5491
|
};
|
|
4977
5492
|
readonly flagged: {
|
|
4978
5493
|
type: "boolean";
|
|
@@ -4988,6 +5503,8 @@ export declare const marcoZero: {
|
|
|
4988
5503
|
type: "number";
|
|
4989
5504
|
optional: false;
|
|
4990
5505
|
customType: number;
|
|
5506
|
+
} & {
|
|
5507
|
+
serverName: string;
|
|
4991
5508
|
};
|
|
4992
5509
|
readonly seen: {
|
|
4993
5510
|
type: "boolean";
|
|
@@ -4998,6 +5515,8 @@ export declare const marcoZero: {
|
|
|
4998
5515
|
type: "string";
|
|
4999
5516
|
optional: false;
|
|
5000
5517
|
customType: string;
|
|
5518
|
+
} & {
|
|
5519
|
+
serverName: string;
|
|
5001
5520
|
};
|
|
5002
5521
|
readonly words: {
|
|
5003
5522
|
type: "string";
|
|
@@ -5016,11 +5535,15 @@ export declare const marcoZero: {
|
|
|
5016
5535
|
type: "string";
|
|
5017
5536
|
optional: false;
|
|
5018
5537
|
customType: string;
|
|
5538
|
+
} & {
|
|
5539
|
+
serverName: string;
|
|
5019
5540
|
};
|
|
5020
5541
|
readonly threadId: {
|
|
5021
5542
|
type: "string";
|
|
5022
5543
|
optional: false;
|
|
5023
5544
|
customType: string;
|
|
5545
|
+
} & {
|
|
5546
|
+
serverName: string;
|
|
5024
5547
|
};
|
|
5025
5548
|
};
|
|
5026
5549
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5034,6 +5557,8 @@ export declare const marcoZero: {
|
|
|
5034
5557
|
type: "number";
|
|
5035
5558
|
optional: false;
|
|
5036
5559
|
customType: number;
|
|
5560
|
+
} & {
|
|
5561
|
+
serverName: string;
|
|
5037
5562
|
};
|
|
5038
5563
|
readonly envelopeSubject: Omit<{
|
|
5039
5564
|
type: "string";
|
|
@@ -5041,6 +5566,8 @@ export declare const marcoZero: {
|
|
|
5041
5566
|
customType: string;
|
|
5042
5567
|
}, "optional"> & {
|
|
5043
5568
|
optional: true;
|
|
5569
|
+
} & {
|
|
5570
|
+
serverName: string;
|
|
5044
5571
|
};
|
|
5045
5572
|
readonly id: {
|
|
5046
5573
|
type: "string";
|
|
@@ -5051,11 +5578,15 @@ export declare const marcoZero: {
|
|
|
5051
5578
|
type: "string";
|
|
5052
5579
|
optional: false;
|
|
5053
5580
|
customType: string;
|
|
5581
|
+
} & {
|
|
5582
|
+
serverName: string;
|
|
5054
5583
|
};
|
|
5055
5584
|
readonly senderEmail: {
|
|
5056
5585
|
type: "string";
|
|
5057
5586
|
optional: false;
|
|
5058
5587
|
customType: string;
|
|
5588
|
+
} & {
|
|
5589
|
+
serverName: string;
|
|
5059
5590
|
};
|
|
5060
5591
|
readonly senderName: Omit<{
|
|
5061
5592
|
type: "string";
|
|
@@ -5063,11 +5594,15 @@ export declare const marcoZero: {
|
|
|
5063
5594
|
customType: string;
|
|
5064
5595
|
}, "optional"> & {
|
|
5065
5596
|
optional: true;
|
|
5597
|
+
} & {
|
|
5598
|
+
serverName: string;
|
|
5066
5599
|
};
|
|
5067
5600
|
readonly threadId: {
|
|
5068
5601
|
type: "string";
|
|
5069
5602
|
optional: false;
|
|
5070
5603
|
customType: string;
|
|
5604
|
+
} & {
|
|
5605
|
+
serverName: string;
|
|
5071
5606
|
};
|
|
5072
5607
|
};
|
|
5073
5608
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5081,6 +5616,8 @@ export declare const marcoZero: {
|
|
|
5081
5616
|
type: "string";
|
|
5082
5617
|
optional: false;
|
|
5083
5618
|
customType: string;
|
|
5619
|
+
} & {
|
|
5620
|
+
serverName: string;
|
|
5084
5621
|
};
|
|
5085
5622
|
readonly id: {
|
|
5086
5623
|
type: "string";
|
|
@@ -5098,6 +5635,8 @@ export declare const marcoZero: {
|
|
|
5098
5635
|
type: "string";
|
|
5099
5636
|
optional: false;
|
|
5100
5637
|
customType: string;
|
|
5638
|
+
} & {
|
|
5639
|
+
serverName: string;
|
|
5101
5640
|
};
|
|
5102
5641
|
readonly type: {
|
|
5103
5642
|
type: "string";
|
|
@@ -5116,6 +5655,8 @@ export declare const marcoZero: {
|
|
|
5116
5655
|
type: "string";
|
|
5117
5656
|
optional: false;
|
|
5118
5657
|
customType: string;
|
|
5658
|
+
} & {
|
|
5659
|
+
serverName: string;
|
|
5119
5660
|
};
|
|
5120
5661
|
readonly id: {
|
|
5121
5662
|
type: "string";
|
|
@@ -5126,6 +5667,8 @@ export declare const marcoZero: {
|
|
|
5126
5667
|
type: "string";
|
|
5127
5668
|
optional: false;
|
|
5128
5669
|
customType: string;
|
|
5670
|
+
} & {
|
|
5671
|
+
serverName: string;
|
|
5129
5672
|
};
|
|
5130
5673
|
readonly size: {
|
|
5131
5674
|
type: "number";
|
|
@@ -5141,6 +5684,8 @@ export declare const marcoZero: {
|
|
|
5141
5684
|
type: "string";
|
|
5142
5685
|
optional: false;
|
|
5143
5686
|
customType: string;
|
|
5687
|
+
} & {
|
|
5688
|
+
serverName: string;
|
|
5144
5689
|
};
|
|
5145
5690
|
};
|
|
5146
5691
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5154,11 +5699,15 @@ export declare const marcoZero: {
|
|
|
5154
5699
|
type: "string";
|
|
5155
5700
|
optional: false;
|
|
5156
5701
|
customType: string;
|
|
5702
|
+
} & {
|
|
5703
|
+
serverName: string;
|
|
5157
5704
|
};
|
|
5158
5705
|
readonly threadMessageId: {
|
|
5159
5706
|
type: "string";
|
|
5160
5707
|
optional: false;
|
|
5161
5708
|
customType: string;
|
|
5709
|
+
} & {
|
|
5710
|
+
serverName: string;
|
|
5162
5711
|
};
|
|
5163
5712
|
};
|
|
5164
5713
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5170,7 +5719,7 @@ export declare const marcoZero: {
|
|
|
5170
5719
|
readonly user: {
|
|
5171
5720
|
accounts: [{
|
|
5172
5721
|
readonly sourceField: string[];
|
|
5173
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5722
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5174
5723
|
readonly destSchema: "account";
|
|
5175
5724
|
readonly cardinality: "many";
|
|
5176
5725
|
}];
|
|
@@ -5182,7 +5731,7 @@ export declare const marcoZero: {
|
|
|
5182
5731
|
}];
|
|
5183
5732
|
drafts: [{
|
|
5184
5733
|
readonly sourceField: string[];
|
|
5185
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
5734
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
5186
5735
|
readonly destSchema: "draft";
|
|
5187
5736
|
readonly cardinality: "many";
|
|
5188
5737
|
}];
|
|
@@ -5202,7 +5751,7 @@ export declare const marcoZero: {
|
|
|
5202
5751
|
readonly userPushNotificationToken: {
|
|
5203
5752
|
user: [{
|
|
5204
5753
|
readonly sourceField: string[];
|
|
5205
|
-
readonly destField: ("id" | "name" | "
|
|
5754
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5206
5755
|
readonly destSchema: "user";
|
|
5207
5756
|
readonly cardinality: "one";
|
|
5208
5757
|
}];
|
|
@@ -5210,7 +5759,7 @@ export declare const marcoZero: {
|
|
|
5210
5759
|
readonly contact: {
|
|
5211
5760
|
user: [{
|
|
5212
5761
|
readonly sourceField: string[];
|
|
5213
|
-
readonly destField: ("id" | "name" | "
|
|
5762
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5214
5763
|
readonly destSchema: "user";
|
|
5215
5764
|
readonly cardinality: "one";
|
|
5216
5765
|
}];
|
|
@@ -5224,7 +5773,7 @@ export declare const marcoZero: {
|
|
|
5224
5773
|
}];
|
|
5225
5774
|
drafts: [{
|
|
5226
5775
|
readonly sourceField: string[];
|
|
5227
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
5776
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
5228
5777
|
readonly destSchema: "draft";
|
|
5229
5778
|
readonly cardinality: "many";
|
|
5230
5779
|
}];
|
|
@@ -5248,7 +5797,7 @@ export declare const marcoZero: {
|
|
|
5248
5797
|
}];
|
|
5249
5798
|
user: [{
|
|
5250
5799
|
readonly sourceField: string[];
|
|
5251
|
-
readonly destField: ("id" | "name" | "
|
|
5800
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5252
5801
|
readonly destSchema: "user";
|
|
5253
5802
|
readonly cardinality: "one";
|
|
5254
5803
|
}];
|
|
@@ -5256,7 +5805,7 @@ export declare const marcoZero: {
|
|
|
5256
5805
|
readonly accountAlias: {
|
|
5257
5806
|
account: [{
|
|
5258
5807
|
readonly sourceField: string[];
|
|
5259
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5808
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5260
5809
|
readonly destSchema: "account";
|
|
5261
5810
|
readonly cardinality: "one";
|
|
5262
5811
|
}];
|
|
@@ -5264,7 +5813,7 @@ export declare const marcoZero: {
|
|
|
5264
5813
|
readonly accountLabel: {
|
|
5265
5814
|
account: [{
|
|
5266
5815
|
readonly sourceField: string[];
|
|
5267
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5816
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5268
5817
|
readonly destSchema: "account";
|
|
5269
5818
|
readonly cardinality: "one";
|
|
5270
5819
|
}];
|
|
@@ -5275,7 +5824,7 @@ export declare const marcoZero: {
|
|
|
5275
5824
|
readonly cardinality: "many";
|
|
5276
5825
|
}, {
|
|
5277
5826
|
readonly sourceField: string[];
|
|
5278
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5827
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5279
5828
|
readonly destSchema: "threadMessage";
|
|
5280
5829
|
readonly cardinality: "many";
|
|
5281
5830
|
}];
|
|
@@ -5294,7 +5843,7 @@ export declare const marcoZero: {
|
|
|
5294
5843
|
readonly draft: {
|
|
5295
5844
|
account: [{
|
|
5296
5845
|
readonly sourceField: string[];
|
|
5297
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5846
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5298
5847
|
readonly destSchema: "account";
|
|
5299
5848
|
readonly cardinality: "one";
|
|
5300
5849
|
}];
|
|
@@ -5312,7 +5861,7 @@ export declare const marcoZero: {
|
|
|
5312
5861
|
}];
|
|
5313
5862
|
user: [{
|
|
5314
5863
|
readonly sourceField: string[];
|
|
5315
|
-
readonly destField: ("id" | "name" | "
|
|
5864
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5316
5865
|
readonly destSchema: "user";
|
|
5317
5866
|
readonly cardinality: "one";
|
|
5318
5867
|
}];
|
|
@@ -5320,7 +5869,7 @@ export declare const marcoZero: {
|
|
|
5320
5869
|
readonly draftRecipient: {
|
|
5321
5870
|
draft: [{
|
|
5322
5871
|
readonly sourceField: string[];
|
|
5323
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
5872
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
5324
5873
|
readonly destSchema: "draft";
|
|
5325
5874
|
readonly cardinality: "one";
|
|
5326
5875
|
}];
|
|
@@ -5328,7 +5877,7 @@ export declare const marcoZero: {
|
|
|
5328
5877
|
readonly draftAttachment: {
|
|
5329
5878
|
draft: [{
|
|
5330
5879
|
readonly sourceField: string[];
|
|
5331
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
5880
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
5332
5881
|
readonly destSchema: "draft";
|
|
5333
5882
|
readonly cardinality: "one";
|
|
5334
5883
|
}];
|
|
@@ -5336,7 +5885,7 @@ export declare const marcoZero: {
|
|
|
5336
5885
|
readonly thread: {
|
|
5337
5886
|
account: [{
|
|
5338
5887
|
readonly sourceField: string[];
|
|
5339
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5888
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5340
5889
|
readonly destSchema: "account";
|
|
5341
5890
|
readonly cardinality: "one";
|
|
5342
5891
|
}];
|
|
@@ -5353,13 +5902,13 @@ export declare const marcoZero: {
|
|
|
5353
5902
|
}];
|
|
5354
5903
|
messages: [{
|
|
5355
5904
|
readonly sourceField: string[];
|
|
5356
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5905
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5357
5906
|
readonly destSchema: "threadMessage";
|
|
5358
5907
|
readonly cardinality: "many";
|
|
5359
5908
|
}];
|
|
5360
5909
|
user: [{
|
|
5361
5910
|
readonly sourceField: string[];
|
|
5362
|
-
readonly destField: ("id" | "name" | "
|
|
5911
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5363
5912
|
readonly destSchema: "user";
|
|
5364
5913
|
readonly cardinality: "one";
|
|
5365
5914
|
}];
|
|
@@ -5412,7 +5961,7 @@ export declare const marcoZero: {
|
|
|
5412
5961
|
readonly threadMessageRecipient: {
|
|
5413
5962
|
message: [{
|
|
5414
5963
|
readonly sourceField: string[];
|
|
5415
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5964
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5416
5965
|
readonly destSchema: "threadMessage";
|
|
5417
5966
|
readonly cardinality: "one";
|
|
5418
5967
|
}];
|
|
@@ -5420,7 +5969,7 @@ export declare const marcoZero: {
|
|
|
5420
5969
|
readonly threadMessageAttachment: {
|
|
5421
5970
|
message: [{
|
|
5422
5971
|
readonly sourceField: string[];
|
|
5423
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5972
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5424
5973
|
readonly destSchema: "threadMessage";
|
|
5425
5974
|
readonly cardinality: "one";
|
|
5426
5975
|
}];
|
|
@@ -5434,7 +5983,7 @@ export declare const marcoZero: {
|
|
|
5434
5983
|
}];
|
|
5435
5984
|
message: [{
|
|
5436
5985
|
readonly sourceField: string[];
|
|
5437
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5986
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5438
5987
|
readonly destSchema: "threadMessage";
|
|
5439
5988
|
readonly cardinality: "one";
|
|
5440
5989
|
}];
|
|
@@ -5458,6 +6007,8 @@ export declare const marcoZero: {
|
|
|
5458
6007
|
customType: string;
|
|
5459
6008
|
}, "optional"> & {
|
|
5460
6009
|
optional: true;
|
|
6010
|
+
} & {
|
|
6011
|
+
serverName: string;
|
|
5461
6012
|
};
|
|
5462
6013
|
readonly id: {
|
|
5463
6014
|
type: "string";
|
|
@@ -5468,16 +6019,22 @@ export declare const marcoZero: {
|
|
|
5468
6019
|
type: "string";
|
|
5469
6020
|
optional: false;
|
|
5470
6021
|
customType: "AWAITING_CONNECTION" | "CONNECTED" | "CONNECTION_FAILED_AUTHENTICATION_ERROR" | "CONNECTION_FAILED_CONNECTION_ERROR" | "CONNECTION_FAILED_OAUTH_EXCHANGE_ERROR" | "CONNECTION_FAILED_QUOTA_ERROR" | "CONNECTION_FAILED_UNKNOWN_ERROR";
|
|
6022
|
+
} & {
|
|
6023
|
+
serverName: string;
|
|
5471
6024
|
};
|
|
5472
6025
|
readonly mailProcessedCount: {
|
|
5473
6026
|
type: "number";
|
|
5474
6027
|
optional: false;
|
|
5475
6028
|
customType: number;
|
|
6029
|
+
} & {
|
|
6030
|
+
serverName: string;
|
|
5476
6031
|
};
|
|
5477
6032
|
readonly mailTotalCount: {
|
|
5478
6033
|
type: "number";
|
|
5479
6034
|
optional: false;
|
|
5480
6035
|
customType: number;
|
|
6036
|
+
} & {
|
|
6037
|
+
serverName: string;
|
|
5481
6038
|
};
|
|
5482
6039
|
readonly primaryAliasId: Omit<{
|
|
5483
6040
|
type: "string";
|
|
@@ -5485,11 +6042,15 @@ export declare const marcoZero: {
|
|
|
5485
6042
|
customType: string;
|
|
5486
6043
|
}, "optional"> & {
|
|
5487
6044
|
optional: true;
|
|
6045
|
+
} & {
|
|
6046
|
+
serverName: string;
|
|
5488
6047
|
};
|
|
5489
6048
|
readonly userId: {
|
|
5490
6049
|
type: "string";
|
|
5491
6050
|
optional: false;
|
|
5492
6051
|
customType: string;
|
|
6052
|
+
} & {
|
|
6053
|
+
serverName: string;
|
|
5493
6054
|
};
|
|
5494
6055
|
};
|
|
5495
6056
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5503,11 +6064,15 @@ export declare const marcoZero: {
|
|
|
5503
6064
|
type: "string";
|
|
5504
6065
|
optional: false;
|
|
5505
6066
|
customType: string;
|
|
6067
|
+
} & {
|
|
6068
|
+
serverName: string;
|
|
5506
6069
|
};
|
|
5507
6070
|
readonly emailAddress: {
|
|
5508
6071
|
type: "string";
|
|
5509
6072
|
optional: false;
|
|
5510
6073
|
customType: string;
|
|
6074
|
+
} & {
|
|
6075
|
+
serverName: string;
|
|
5511
6076
|
};
|
|
5512
6077
|
readonly id: {
|
|
5513
6078
|
type: "string";
|
|
@@ -5518,6 +6083,8 @@ export declare const marcoZero: {
|
|
|
5518
6083
|
type: "boolean";
|
|
5519
6084
|
optional: false;
|
|
5520
6085
|
customType: boolean;
|
|
6086
|
+
} & {
|
|
6087
|
+
serverName: string;
|
|
5521
6088
|
};
|
|
5522
6089
|
readonly name: Omit<{
|
|
5523
6090
|
type: "string";
|
|
@@ -5538,6 +6105,8 @@ export declare const marcoZero: {
|
|
|
5538
6105
|
type: "string";
|
|
5539
6106
|
optional: false;
|
|
5540
6107
|
customType: string;
|
|
6108
|
+
} & {
|
|
6109
|
+
serverName: string;
|
|
5541
6110
|
};
|
|
5542
6111
|
readonly id: {
|
|
5543
6112
|
type: "string";
|
|
@@ -5555,6 +6124,8 @@ export declare const marcoZero: {
|
|
|
5555
6124
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
5556
6125
|
}, "optional"> & {
|
|
5557
6126
|
optional: true;
|
|
6127
|
+
} & {
|
|
6128
|
+
serverName: string;
|
|
5558
6129
|
};
|
|
5559
6130
|
};
|
|
5560
6131
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5568,6 +6139,8 @@ export declare const marcoZero: {
|
|
|
5568
6139
|
type: "string";
|
|
5569
6140
|
optional: false;
|
|
5570
6141
|
customType: string;
|
|
6142
|
+
} & {
|
|
6143
|
+
serverName: string;
|
|
5571
6144
|
};
|
|
5572
6145
|
readonly id: {
|
|
5573
6146
|
type: "string";
|
|
@@ -5585,6 +6158,8 @@ export declare const marcoZero: {
|
|
|
5585
6158
|
type: "string";
|
|
5586
6159
|
optional: false;
|
|
5587
6160
|
customType: string;
|
|
6161
|
+
} & {
|
|
6162
|
+
serverName: string;
|
|
5588
6163
|
};
|
|
5589
6164
|
};
|
|
5590
6165
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5598,6 +6173,8 @@ export declare const marcoZero: {
|
|
|
5598
6173
|
type: "string";
|
|
5599
6174
|
optional: false;
|
|
5600
6175
|
customType: string;
|
|
6176
|
+
} & {
|
|
6177
|
+
serverName: string;
|
|
5601
6178
|
};
|
|
5602
6179
|
readonly body: {
|
|
5603
6180
|
type: "json";
|
|
@@ -5622,11 +6199,15 @@ export declare const marcoZero: {
|
|
|
5622
6199
|
customType: string;
|
|
5623
6200
|
}, "optional"> & {
|
|
5624
6201
|
optional: true;
|
|
6202
|
+
} & {
|
|
6203
|
+
serverName: string;
|
|
5625
6204
|
};
|
|
5626
6205
|
readonly fromEmail: {
|
|
5627
6206
|
type: "string";
|
|
5628
6207
|
optional: false;
|
|
5629
6208
|
customType: string;
|
|
6209
|
+
} & {
|
|
6210
|
+
serverName: string;
|
|
5630
6211
|
};
|
|
5631
6212
|
readonly fromName: Omit<{
|
|
5632
6213
|
type: "string";
|
|
@@ -5634,6 +6215,8 @@ export declare const marcoZero: {
|
|
|
5634
6215
|
customType: string;
|
|
5635
6216
|
}, "optional"> & {
|
|
5636
6217
|
optional: true;
|
|
6218
|
+
} & {
|
|
6219
|
+
serverName: string;
|
|
5637
6220
|
};
|
|
5638
6221
|
readonly id: {
|
|
5639
6222
|
type: "string";
|
|
@@ -5646,6 +6229,8 @@ export declare const marcoZero: {
|
|
|
5646
6229
|
customType: string;
|
|
5647
6230
|
}, "optional"> & {
|
|
5648
6231
|
optional: true;
|
|
6232
|
+
} & {
|
|
6233
|
+
serverName: string;
|
|
5649
6234
|
};
|
|
5650
6235
|
readonly scheduledFor: Omit<{
|
|
5651
6236
|
type: "number";
|
|
@@ -5653,6 +6238,8 @@ export declare const marcoZero: {
|
|
|
5653
6238
|
customType: number;
|
|
5654
6239
|
}, "optional"> & {
|
|
5655
6240
|
optional: true;
|
|
6241
|
+
} & {
|
|
6242
|
+
serverName: string;
|
|
5656
6243
|
};
|
|
5657
6244
|
readonly status: {
|
|
5658
6245
|
type: "string";
|
|
@@ -5675,11 +6262,15 @@ export declare const marcoZero: {
|
|
|
5675
6262
|
type: "number";
|
|
5676
6263
|
optional: false;
|
|
5677
6264
|
customType: number;
|
|
6265
|
+
} & {
|
|
6266
|
+
serverName: string;
|
|
5678
6267
|
};
|
|
5679
6268
|
readonly userId: {
|
|
5680
6269
|
type: "string";
|
|
5681
6270
|
optional: false;
|
|
5682
6271
|
customType: string;
|
|
6272
|
+
} & {
|
|
6273
|
+
serverName: string;
|
|
5683
6274
|
};
|
|
5684
6275
|
};
|
|
5685
6276
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5693,6 +6284,8 @@ export declare const marcoZero: {
|
|
|
5693
6284
|
type: "string";
|
|
5694
6285
|
optional: false;
|
|
5695
6286
|
customType: string;
|
|
6287
|
+
} & {
|
|
6288
|
+
serverName: string;
|
|
5696
6289
|
};
|
|
5697
6290
|
readonly failed: {
|
|
5698
6291
|
type: "boolean";
|
|
@@ -5703,6 +6296,8 @@ export declare const marcoZero: {
|
|
|
5703
6296
|
type: "string";
|
|
5704
6297
|
optional: false;
|
|
5705
6298
|
customType: string;
|
|
6299
|
+
} & {
|
|
6300
|
+
serverName: string;
|
|
5706
6301
|
};
|
|
5707
6302
|
readonly id: {
|
|
5708
6303
|
type: "string";
|
|
@@ -5713,21 +6308,29 @@ export declare const marcoZero: {
|
|
|
5713
6308
|
type: "string";
|
|
5714
6309
|
optional: false;
|
|
5715
6310
|
customType: string;
|
|
6311
|
+
} & {
|
|
6312
|
+
serverName: string;
|
|
5716
6313
|
};
|
|
5717
6314
|
readonly totalChunks: {
|
|
5718
6315
|
type: "number";
|
|
5719
6316
|
optional: false;
|
|
5720
6317
|
customType: number;
|
|
6318
|
+
} & {
|
|
6319
|
+
serverName: string;
|
|
5721
6320
|
};
|
|
5722
6321
|
readonly totalSize: {
|
|
5723
6322
|
type: "number";
|
|
5724
6323
|
optional: false;
|
|
5725
6324
|
customType: number;
|
|
6325
|
+
} & {
|
|
6326
|
+
serverName: string;
|
|
5726
6327
|
};
|
|
5727
6328
|
readonly uploadedChunks: {
|
|
5728
6329
|
type: "number";
|
|
5729
6330
|
optional: false;
|
|
5730
6331
|
customType: number;
|
|
6332
|
+
} & {
|
|
6333
|
+
serverName: string;
|
|
5731
6334
|
};
|
|
5732
6335
|
};
|
|
5733
6336
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5741,11 +6344,15 @@ export declare const marcoZero: {
|
|
|
5741
6344
|
type: "string";
|
|
5742
6345
|
optional: false;
|
|
5743
6346
|
customType: string;
|
|
6347
|
+
} & {
|
|
6348
|
+
serverName: string;
|
|
5744
6349
|
};
|
|
5745
6350
|
readonly emailAddress: {
|
|
5746
6351
|
type: "string";
|
|
5747
6352
|
optional: false;
|
|
5748
6353
|
customType: string;
|
|
6354
|
+
} & {
|
|
6355
|
+
serverName: string;
|
|
5749
6356
|
};
|
|
5750
6357
|
readonly id: {
|
|
5751
6358
|
type: "string";
|
|
@@ -5769,6 +6376,8 @@ export declare const marcoZero: {
|
|
|
5769
6376
|
type: "string";
|
|
5770
6377
|
optional: false;
|
|
5771
6378
|
customType: string;
|
|
6379
|
+
} & {
|
|
6380
|
+
serverName: string;
|
|
5772
6381
|
};
|
|
5773
6382
|
readonly flagged: {
|
|
5774
6383
|
type: "boolean";
|
|
@@ -5784,6 +6393,8 @@ export declare const marcoZero: {
|
|
|
5784
6393
|
type: "number";
|
|
5785
6394
|
optional: false;
|
|
5786
6395
|
customType: number;
|
|
6396
|
+
} & {
|
|
6397
|
+
serverName: string;
|
|
5787
6398
|
};
|
|
5788
6399
|
readonly seen: {
|
|
5789
6400
|
type: "boolean";
|
|
@@ -5794,6 +6405,8 @@ export declare const marcoZero: {
|
|
|
5794
6405
|
type: "string";
|
|
5795
6406
|
optional: false;
|
|
5796
6407
|
customType: string;
|
|
6408
|
+
} & {
|
|
6409
|
+
serverName: string;
|
|
5797
6410
|
};
|
|
5798
6411
|
readonly words: {
|
|
5799
6412
|
type: "string";
|
|
@@ -5812,11 +6425,15 @@ export declare const marcoZero: {
|
|
|
5812
6425
|
type: "string";
|
|
5813
6426
|
optional: false;
|
|
5814
6427
|
customType: string;
|
|
6428
|
+
} & {
|
|
6429
|
+
serverName: string;
|
|
5815
6430
|
};
|
|
5816
6431
|
readonly threadId: {
|
|
5817
6432
|
type: "string";
|
|
5818
6433
|
optional: false;
|
|
5819
6434
|
customType: string;
|
|
6435
|
+
} & {
|
|
6436
|
+
serverName: string;
|
|
5820
6437
|
};
|
|
5821
6438
|
};
|
|
5822
6439
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5830,6 +6447,8 @@ export declare const marcoZero: {
|
|
|
5830
6447
|
type: "number";
|
|
5831
6448
|
optional: false;
|
|
5832
6449
|
customType: number;
|
|
6450
|
+
} & {
|
|
6451
|
+
serverName: string;
|
|
5833
6452
|
};
|
|
5834
6453
|
readonly envelopeSubject: Omit<{
|
|
5835
6454
|
type: "string";
|
|
@@ -5837,6 +6456,8 @@ export declare const marcoZero: {
|
|
|
5837
6456
|
customType: string;
|
|
5838
6457
|
}, "optional"> & {
|
|
5839
6458
|
optional: true;
|
|
6459
|
+
} & {
|
|
6460
|
+
serverName: string;
|
|
5840
6461
|
};
|
|
5841
6462
|
readonly id: {
|
|
5842
6463
|
type: "string";
|
|
@@ -5847,11 +6468,15 @@ export declare const marcoZero: {
|
|
|
5847
6468
|
type: "string";
|
|
5848
6469
|
optional: false;
|
|
5849
6470
|
customType: string;
|
|
6471
|
+
} & {
|
|
6472
|
+
serverName: string;
|
|
5850
6473
|
};
|
|
5851
6474
|
readonly senderEmail: {
|
|
5852
6475
|
type: "string";
|
|
5853
6476
|
optional: false;
|
|
5854
6477
|
customType: string;
|
|
6478
|
+
} & {
|
|
6479
|
+
serverName: string;
|
|
5855
6480
|
};
|
|
5856
6481
|
readonly senderName: Omit<{
|
|
5857
6482
|
type: "string";
|
|
@@ -5859,11 +6484,15 @@ export declare const marcoZero: {
|
|
|
5859
6484
|
customType: string;
|
|
5860
6485
|
}, "optional"> & {
|
|
5861
6486
|
optional: true;
|
|
6487
|
+
} & {
|
|
6488
|
+
serverName: string;
|
|
5862
6489
|
};
|
|
5863
6490
|
readonly threadId: {
|
|
5864
6491
|
type: "string";
|
|
5865
6492
|
optional: false;
|
|
5866
6493
|
customType: string;
|
|
6494
|
+
} & {
|
|
6495
|
+
serverName: string;
|
|
5867
6496
|
};
|
|
5868
6497
|
};
|
|
5869
6498
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5877,6 +6506,8 @@ export declare const marcoZero: {
|
|
|
5877
6506
|
type: "string";
|
|
5878
6507
|
optional: false;
|
|
5879
6508
|
customType: string;
|
|
6509
|
+
} & {
|
|
6510
|
+
serverName: string;
|
|
5880
6511
|
};
|
|
5881
6512
|
readonly id: {
|
|
5882
6513
|
type: "string";
|
|
@@ -5887,6 +6518,8 @@ export declare const marcoZero: {
|
|
|
5887
6518
|
type: "string";
|
|
5888
6519
|
optional: false;
|
|
5889
6520
|
customType: string;
|
|
6521
|
+
} & {
|
|
6522
|
+
serverName: string;
|
|
5890
6523
|
};
|
|
5891
6524
|
readonly size: {
|
|
5892
6525
|
type: "number";
|
|
@@ -5902,6 +6535,8 @@ export declare const marcoZero: {
|
|
|
5902
6535
|
type: "string";
|
|
5903
6536
|
optional: false;
|
|
5904
6537
|
customType: string;
|
|
6538
|
+
} & {
|
|
6539
|
+
serverName: string;
|
|
5905
6540
|
};
|
|
5906
6541
|
};
|
|
5907
6542
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5915,11 +6550,15 @@ export declare const marcoZero: {
|
|
|
5915
6550
|
type: "string";
|
|
5916
6551
|
optional: false;
|
|
5917
6552
|
customType: string;
|
|
6553
|
+
} & {
|
|
6554
|
+
serverName: string;
|
|
5918
6555
|
};
|
|
5919
6556
|
readonly threadMessageId: {
|
|
5920
6557
|
type: "string";
|
|
5921
6558
|
optional: false;
|
|
5922
6559
|
customType: string;
|
|
6560
|
+
} & {
|
|
6561
|
+
serverName: string;
|
|
5923
6562
|
};
|
|
5924
6563
|
};
|
|
5925
6564
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5933,6 +6572,8 @@ export declare const marcoZero: {
|
|
|
5933
6572
|
type: "string";
|
|
5934
6573
|
optional: false;
|
|
5935
6574
|
customType: string;
|
|
6575
|
+
} & {
|
|
6576
|
+
serverName: string;
|
|
5936
6577
|
};
|
|
5937
6578
|
readonly id: {
|
|
5938
6579
|
type: "string";
|
|
@@ -5950,6 +6591,8 @@ export declare const marcoZero: {
|
|
|
5950
6591
|
type: "string";
|
|
5951
6592
|
optional: false;
|
|
5952
6593
|
customType: string;
|
|
6594
|
+
} & {
|
|
6595
|
+
serverName: string;
|
|
5953
6596
|
};
|
|
5954
6597
|
readonly type: {
|
|
5955
6598
|
type: "string";
|
|
@@ -5982,11 +6625,15 @@ export declare const marcoZero: {
|
|
|
5982
6625
|
customType: string;
|
|
5983
6626
|
}, "optional"> & {
|
|
5984
6627
|
optional: true;
|
|
6628
|
+
} & {
|
|
6629
|
+
serverName: string;
|
|
5985
6630
|
};
|
|
5986
6631
|
readonly undoSendEnabled: {
|
|
5987
6632
|
type: "boolean";
|
|
5988
6633
|
optional: false;
|
|
5989
6634
|
customType: boolean;
|
|
6635
|
+
} & {
|
|
6636
|
+
serverName: string;
|
|
5990
6637
|
};
|
|
5991
6638
|
};
|
|
5992
6639
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -6000,6 +6647,8 @@ export declare const marcoZero: {
|
|
|
6000
6647
|
type: "number";
|
|
6001
6648
|
optional: false;
|
|
6002
6649
|
customType: number;
|
|
6650
|
+
} & {
|
|
6651
|
+
serverName: string;
|
|
6003
6652
|
};
|
|
6004
6653
|
readonly id: {
|
|
6005
6654
|
type: "string";
|
|
@@ -6015,6 +6664,8 @@ export declare const marcoZero: {
|
|
|
6015
6664
|
type: "string";
|
|
6016
6665
|
optional: false;
|
|
6017
6666
|
customType: string;
|
|
6667
|
+
} & {
|
|
6668
|
+
serverName: string;
|
|
6018
6669
|
};
|
|
6019
6670
|
};
|
|
6020
6671
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -6029,6 +6680,7 @@ export { accountMutatorDefinitions } from './mutators/account';
|
|
|
6029
6680
|
export { draftMutatorDefinitions } from './mutators/draft';
|
|
6030
6681
|
export { threadMutatorDefinitions } from './mutators/thread';
|
|
6031
6682
|
export { userMutatorDefinitions } from './mutators/user';
|
|
6683
|
+
export { permissions } from './permissions';
|
|
6032
6684
|
export { getUser } from './queries';
|
|
6033
6685
|
export type { MarcoZeroSchema } from './schema';
|
|
6034
6686
|
export { schema, zeroTables } from './schema';
|