@marcoappio/marco-config 2.0.420 → 2.0.421
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 +830 -201
- package/dist/zero/index.d.ts.map +1 -1
- 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
|
@@ -24,11 +24,15 @@ export declare const marcoZero: {
|
|
|
24
24
|
customType: string;
|
|
25
25
|
}, "optional"> & {
|
|
26
26
|
optional: true;
|
|
27
|
+
} & {
|
|
28
|
+
serverName: string;
|
|
27
29
|
};
|
|
28
30
|
readonly undoSendEnabled: {
|
|
29
31
|
type: "boolean";
|
|
30
32
|
optional: false;
|
|
31
33
|
customType: boolean;
|
|
34
|
+
} & {
|
|
35
|
+
serverName: string;
|
|
32
36
|
};
|
|
33
37
|
};
|
|
34
38
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -42,6 +46,8 @@ export declare const marcoZero: {
|
|
|
42
46
|
type: "number";
|
|
43
47
|
optional: false;
|
|
44
48
|
customType: number;
|
|
49
|
+
} & {
|
|
50
|
+
serverName: string;
|
|
45
51
|
};
|
|
46
52
|
readonly id: {
|
|
47
53
|
type: "string";
|
|
@@ -57,6 +63,8 @@ export declare const marcoZero: {
|
|
|
57
63
|
type: "string";
|
|
58
64
|
optional: false;
|
|
59
65
|
customType: string;
|
|
66
|
+
} & {
|
|
67
|
+
serverName: string;
|
|
60
68
|
};
|
|
61
69
|
};
|
|
62
70
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -70,6 +78,8 @@ export declare const marcoZero: {
|
|
|
70
78
|
type: "string";
|
|
71
79
|
optional: false;
|
|
72
80
|
customType: string;
|
|
81
|
+
} & {
|
|
82
|
+
serverName: string;
|
|
73
83
|
};
|
|
74
84
|
readonly id: {
|
|
75
85
|
type: "string";
|
|
@@ -87,6 +97,8 @@ export declare const marcoZero: {
|
|
|
87
97
|
type: "string";
|
|
88
98
|
optional: false;
|
|
89
99
|
customType: string;
|
|
100
|
+
} & {
|
|
101
|
+
serverName: string;
|
|
90
102
|
};
|
|
91
103
|
};
|
|
92
104
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -107,6 +119,8 @@ export declare const marcoZero: {
|
|
|
107
119
|
customType: string;
|
|
108
120
|
}, "optional"> & {
|
|
109
121
|
optional: true;
|
|
122
|
+
} & {
|
|
123
|
+
serverName: string;
|
|
110
124
|
};
|
|
111
125
|
readonly id: {
|
|
112
126
|
type: "string";
|
|
@@ -117,16 +131,22 @@ export declare const marcoZero: {
|
|
|
117
131
|
type: "string";
|
|
118
132
|
optional: false;
|
|
119
133
|
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";
|
|
134
|
+
} & {
|
|
135
|
+
serverName: string;
|
|
120
136
|
};
|
|
121
137
|
readonly mailProcessedCount: {
|
|
122
138
|
type: "number";
|
|
123
139
|
optional: false;
|
|
124
140
|
customType: number;
|
|
141
|
+
} & {
|
|
142
|
+
serverName: string;
|
|
125
143
|
};
|
|
126
144
|
readonly mailTotalCount: {
|
|
127
145
|
type: "number";
|
|
128
146
|
optional: false;
|
|
129
147
|
customType: number;
|
|
148
|
+
} & {
|
|
149
|
+
serverName: string;
|
|
130
150
|
};
|
|
131
151
|
readonly primaryAliasId: Omit<{
|
|
132
152
|
type: "string";
|
|
@@ -134,11 +154,15 @@ export declare const marcoZero: {
|
|
|
134
154
|
customType: string;
|
|
135
155
|
}, "optional"> & {
|
|
136
156
|
optional: true;
|
|
157
|
+
} & {
|
|
158
|
+
serverName: string;
|
|
137
159
|
};
|
|
138
160
|
readonly userId: {
|
|
139
161
|
type: "string";
|
|
140
162
|
optional: false;
|
|
141
163
|
customType: string;
|
|
164
|
+
} & {
|
|
165
|
+
serverName: string;
|
|
142
166
|
};
|
|
143
167
|
};
|
|
144
168
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -152,11 +176,15 @@ export declare const marcoZero: {
|
|
|
152
176
|
type: "string";
|
|
153
177
|
optional: false;
|
|
154
178
|
customType: string;
|
|
179
|
+
} & {
|
|
180
|
+
serverName: string;
|
|
155
181
|
};
|
|
156
182
|
readonly emailAddress: {
|
|
157
183
|
type: "string";
|
|
158
184
|
optional: false;
|
|
159
185
|
customType: string;
|
|
186
|
+
} & {
|
|
187
|
+
serverName: string;
|
|
160
188
|
};
|
|
161
189
|
readonly id: {
|
|
162
190
|
type: "string";
|
|
@@ -167,6 +195,8 @@ export declare const marcoZero: {
|
|
|
167
195
|
type: "boolean";
|
|
168
196
|
optional: false;
|
|
169
197
|
customType: boolean;
|
|
198
|
+
} & {
|
|
199
|
+
serverName: string;
|
|
170
200
|
};
|
|
171
201
|
readonly name: Omit<{
|
|
172
202
|
type: "string";
|
|
@@ -187,6 +217,8 @@ export declare const marcoZero: {
|
|
|
187
217
|
type: "string";
|
|
188
218
|
optional: false;
|
|
189
219
|
customType: string;
|
|
220
|
+
} & {
|
|
221
|
+
serverName: string;
|
|
190
222
|
};
|
|
191
223
|
readonly id: {
|
|
192
224
|
type: "string";
|
|
@@ -204,6 +236,8 @@ export declare const marcoZero: {
|
|
|
204
236
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
205
237
|
}, "optional"> & {
|
|
206
238
|
optional: true;
|
|
239
|
+
} & {
|
|
240
|
+
serverName: string;
|
|
207
241
|
};
|
|
208
242
|
};
|
|
209
243
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -217,6 +251,8 @@ export declare const marcoZero: {
|
|
|
217
251
|
type: "string";
|
|
218
252
|
optional: false;
|
|
219
253
|
customType: string;
|
|
254
|
+
} & {
|
|
255
|
+
serverName: string;
|
|
220
256
|
};
|
|
221
257
|
readonly body: {
|
|
222
258
|
type: "json";
|
|
@@ -241,11 +277,15 @@ export declare const marcoZero: {
|
|
|
241
277
|
customType: string;
|
|
242
278
|
}, "optional"> & {
|
|
243
279
|
optional: true;
|
|
280
|
+
} & {
|
|
281
|
+
serverName: string;
|
|
244
282
|
};
|
|
245
283
|
readonly fromEmail: {
|
|
246
284
|
type: "string";
|
|
247
285
|
optional: false;
|
|
248
286
|
customType: string;
|
|
287
|
+
} & {
|
|
288
|
+
serverName: string;
|
|
249
289
|
};
|
|
250
290
|
readonly fromName: Omit<{
|
|
251
291
|
type: "string";
|
|
@@ -253,6 +293,8 @@ export declare const marcoZero: {
|
|
|
253
293
|
customType: string;
|
|
254
294
|
}, "optional"> & {
|
|
255
295
|
optional: true;
|
|
296
|
+
} & {
|
|
297
|
+
serverName: string;
|
|
256
298
|
};
|
|
257
299
|
readonly id: {
|
|
258
300
|
type: "string";
|
|
@@ -265,6 +307,8 @@ export declare const marcoZero: {
|
|
|
265
307
|
customType: string;
|
|
266
308
|
}, "optional"> & {
|
|
267
309
|
optional: true;
|
|
310
|
+
} & {
|
|
311
|
+
serverName: string;
|
|
268
312
|
};
|
|
269
313
|
readonly scheduledFor: Omit<{
|
|
270
314
|
type: "number";
|
|
@@ -272,6 +316,8 @@ export declare const marcoZero: {
|
|
|
272
316
|
customType: number;
|
|
273
317
|
}, "optional"> & {
|
|
274
318
|
optional: true;
|
|
319
|
+
} & {
|
|
320
|
+
serverName: string;
|
|
275
321
|
};
|
|
276
322
|
readonly status: {
|
|
277
323
|
type: "string";
|
|
@@ -294,11 +340,15 @@ export declare const marcoZero: {
|
|
|
294
340
|
type: "number";
|
|
295
341
|
optional: false;
|
|
296
342
|
customType: number;
|
|
343
|
+
} & {
|
|
344
|
+
serverName: string;
|
|
297
345
|
};
|
|
298
346
|
readonly userId: {
|
|
299
347
|
type: "string";
|
|
300
348
|
optional: false;
|
|
301
349
|
customType: string;
|
|
350
|
+
} & {
|
|
351
|
+
serverName: string;
|
|
302
352
|
};
|
|
303
353
|
};
|
|
304
354
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -312,11 +362,15 @@ export declare const marcoZero: {
|
|
|
312
362
|
type: "string";
|
|
313
363
|
optional: false;
|
|
314
364
|
customType: string;
|
|
365
|
+
} & {
|
|
366
|
+
serverName: string;
|
|
315
367
|
};
|
|
316
368
|
readonly emailAddress: {
|
|
317
369
|
type: "string";
|
|
318
370
|
optional: false;
|
|
319
371
|
customType: string;
|
|
372
|
+
} & {
|
|
373
|
+
serverName: string;
|
|
320
374
|
};
|
|
321
375
|
readonly id: {
|
|
322
376
|
type: "string";
|
|
@@ -340,6 +394,8 @@ export declare const marcoZero: {
|
|
|
340
394
|
type: "string";
|
|
341
395
|
optional: false;
|
|
342
396
|
customType: string;
|
|
397
|
+
} & {
|
|
398
|
+
serverName: string;
|
|
343
399
|
};
|
|
344
400
|
readonly failed: {
|
|
345
401
|
type: "boolean";
|
|
@@ -350,6 +406,8 @@ export declare const marcoZero: {
|
|
|
350
406
|
type: "string";
|
|
351
407
|
optional: false;
|
|
352
408
|
customType: string;
|
|
409
|
+
} & {
|
|
410
|
+
serverName: string;
|
|
353
411
|
};
|
|
354
412
|
readonly id: {
|
|
355
413
|
type: "string";
|
|
@@ -360,21 +418,29 @@ export declare const marcoZero: {
|
|
|
360
418
|
type: "string";
|
|
361
419
|
optional: false;
|
|
362
420
|
customType: string;
|
|
421
|
+
} & {
|
|
422
|
+
serverName: string;
|
|
363
423
|
};
|
|
364
424
|
readonly totalChunks: {
|
|
365
425
|
type: "number";
|
|
366
426
|
optional: false;
|
|
367
427
|
customType: number;
|
|
428
|
+
} & {
|
|
429
|
+
serverName: string;
|
|
368
430
|
};
|
|
369
431
|
readonly totalSize: {
|
|
370
432
|
type: "number";
|
|
371
433
|
optional: false;
|
|
372
434
|
customType: number;
|
|
435
|
+
} & {
|
|
436
|
+
serverName: string;
|
|
373
437
|
};
|
|
374
438
|
readonly uploadedChunks: {
|
|
375
439
|
type: "number";
|
|
376
440
|
optional: false;
|
|
377
441
|
customType: number;
|
|
442
|
+
} & {
|
|
443
|
+
serverName: string;
|
|
378
444
|
};
|
|
379
445
|
};
|
|
380
446
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -388,6 +454,8 @@ export declare const marcoZero: {
|
|
|
388
454
|
type: "string";
|
|
389
455
|
optional: false;
|
|
390
456
|
customType: string;
|
|
457
|
+
} & {
|
|
458
|
+
serverName: string;
|
|
391
459
|
};
|
|
392
460
|
readonly flagged: {
|
|
393
461
|
type: "boolean";
|
|
@@ -403,6 +471,8 @@ export declare const marcoZero: {
|
|
|
403
471
|
type: "number";
|
|
404
472
|
optional: false;
|
|
405
473
|
customType: number;
|
|
474
|
+
} & {
|
|
475
|
+
serverName: string;
|
|
406
476
|
};
|
|
407
477
|
readonly seen: {
|
|
408
478
|
type: "boolean";
|
|
@@ -413,6 +483,8 @@ export declare const marcoZero: {
|
|
|
413
483
|
type: "string";
|
|
414
484
|
optional: false;
|
|
415
485
|
customType: string;
|
|
486
|
+
} & {
|
|
487
|
+
serverName: string;
|
|
416
488
|
};
|
|
417
489
|
readonly words: {
|
|
418
490
|
type: "string";
|
|
@@ -431,11 +503,15 @@ export declare const marcoZero: {
|
|
|
431
503
|
type: "string";
|
|
432
504
|
optional: false;
|
|
433
505
|
customType: string;
|
|
506
|
+
} & {
|
|
507
|
+
serverName: string;
|
|
434
508
|
};
|
|
435
509
|
readonly threadId: {
|
|
436
510
|
type: "string";
|
|
437
511
|
optional: false;
|
|
438
512
|
customType: string;
|
|
513
|
+
} & {
|
|
514
|
+
serverName: string;
|
|
439
515
|
};
|
|
440
516
|
};
|
|
441
517
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -449,6 +525,8 @@ export declare const marcoZero: {
|
|
|
449
525
|
type: "number";
|
|
450
526
|
optional: false;
|
|
451
527
|
customType: number;
|
|
528
|
+
} & {
|
|
529
|
+
serverName: string;
|
|
452
530
|
};
|
|
453
531
|
readonly envelopeSubject: Omit<{
|
|
454
532
|
type: "string";
|
|
@@ -456,6 +534,8 @@ export declare const marcoZero: {
|
|
|
456
534
|
customType: string;
|
|
457
535
|
}, "optional"> & {
|
|
458
536
|
optional: true;
|
|
537
|
+
} & {
|
|
538
|
+
serverName: string;
|
|
459
539
|
};
|
|
460
540
|
readonly id: {
|
|
461
541
|
type: "string";
|
|
@@ -466,11 +546,15 @@ export declare const marcoZero: {
|
|
|
466
546
|
type: "string";
|
|
467
547
|
optional: false;
|
|
468
548
|
customType: string;
|
|
549
|
+
} & {
|
|
550
|
+
serverName: string;
|
|
469
551
|
};
|
|
470
552
|
readonly senderEmail: {
|
|
471
553
|
type: "string";
|
|
472
554
|
optional: false;
|
|
473
555
|
customType: string;
|
|
556
|
+
} & {
|
|
557
|
+
serverName: string;
|
|
474
558
|
};
|
|
475
559
|
readonly senderName: Omit<{
|
|
476
560
|
type: "string";
|
|
@@ -478,11 +562,15 @@ export declare const marcoZero: {
|
|
|
478
562
|
customType: string;
|
|
479
563
|
}, "optional"> & {
|
|
480
564
|
optional: true;
|
|
565
|
+
} & {
|
|
566
|
+
serverName: string;
|
|
481
567
|
};
|
|
482
568
|
readonly threadId: {
|
|
483
569
|
type: "string";
|
|
484
570
|
optional: false;
|
|
485
571
|
customType: string;
|
|
572
|
+
} & {
|
|
573
|
+
serverName: string;
|
|
486
574
|
};
|
|
487
575
|
};
|
|
488
576
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -496,6 +584,8 @@ export declare const marcoZero: {
|
|
|
496
584
|
type: "string";
|
|
497
585
|
optional: false;
|
|
498
586
|
customType: string;
|
|
587
|
+
} & {
|
|
588
|
+
serverName: string;
|
|
499
589
|
};
|
|
500
590
|
readonly id: {
|
|
501
591
|
type: "string";
|
|
@@ -513,6 +603,8 @@ export declare const marcoZero: {
|
|
|
513
603
|
type: "string";
|
|
514
604
|
optional: false;
|
|
515
605
|
customType: string;
|
|
606
|
+
} & {
|
|
607
|
+
serverName: string;
|
|
516
608
|
};
|
|
517
609
|
readonly type: {
|
|
518
610
|
type: "string";
|
|
@@ -531,6 +623,8 @@ export declare const marcoZero: {
|
|
|
531
623
|
type: "string";
|
|
532
624
|
optional: false;
|
|
533
625
|
customType: string;
|
|
626
|
+
} & {
|
|
627
|
+
serverName: string;
|
|
534
628
|
};
|
|
535
629
|
readonly id: {
|
|
536
630
|
type: "string";
|
|
@@ -541,6 +635,8 @@ export declare const marcoZero: {
|
|
|
541
635
|
type: "string";
|
|
542
636
|
optional: false;
|
|
543
637
|
customType: string;
|
|
638
|
+
} & {
|
|
639
|
+
serverName: string;
|
|
544
640
|
};
|
|
545
641
|
readonly size: {
|
|
546
642
|
type: "number";
|
|
@@ -556,6 +652,8 @@ export declare const marcoZero: {
|
|
|
556
652
|
type: "string";
|
|
557
653
|
optional: false;
|
|
558
654
|
customType: string;
|
|
655
|
+
} & {
|
|
656
|
+
serverName: string;
|
|
559
657
|
};
|
|
560
658
|
};
|
|
561
659
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -569,11 +667,15 @@ export declare const marcoZero: {
|
|
|
569
667
|
type: "string";
|
|
570
668
|
optional: false;
|
|
571
669
|
customType: string;
|
|
670
|
+
} & {
|
|
671
|
+
serverName: string;
|
|
572
672
|
};
|
|
573
673
|
readonly threadMessageId: {
|
|
574
674
|
type: "string";
|
|
575
675
|
optional: false;
|
|
576
676
|
customType: string;
|
|
677
|
+
} & {
|
|
678
|
+
serverName: string;
|
|
577
679
|
};
|
|
578
680
|
};
|
|
579
681
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -585,7 +687,7 @@ export declare const marcoZero: {
|
|
|
585
687
|
readonly user: {
|
|
586
688
|
accounts: [{
|
|
587
689
|
readonly sourceField: string[];
|
|
588
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
690
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
589
691
|
readonly destSchema: "account";
|
|
590
692
|
readonly cardinality: "many";
|
|
591
693
|
}];
|
|
@@ -597,7 +699,7 @@ export declare const marcoZero: {
|
|
|
597
699
|
}];
|
|
598
700
|
drafts: [{
|
|
599
701
|
readonly sourceField: string[];
|
|
600
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
702
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
601
703
|
readonly destSchema: "draft";
|
|
602
704
|
readonly cardinality: "many";
|
|
603
705
|
}];
|
|
@@ -617,7 +719,7 @@ export declare const marcoZero: {
|
|
|
617
719
|
readonly userPushNotificationToken: {
|
|
618
720
|
user: [{
|
|
619
721
|
readonly sourceField: string[];
|
|
620
|
-
readonly destField: ("id" | "name" | "
|
|
722
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
621
723
|
readonly destSchema: "user";
|
|
622
724
|
readonly cardinality: "one";
|
|
623
725
|
}];
|
|
@@ -625,7 +727,7 @@ export declare const marcoZero: {
|
|
|
625
727
|
readonly contact: {
|
|
626
728
|
user: [{
|
|
627
729
|
readonly sourceField: string[];
|
|
628
|
-
readonly destField: ("id" | "name" | "
|
|
730
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
629
731
|
readonly destSchema: "user";
|
|
630
732
|
readonly cardinality: "one";
|
|
631
733
|
}];
|
|
@@ -639,7 +741,7 @@ export declare const marcoZero: {
|
|
|
639
741
|
}];
|
|
640
742
|
drafts: [{
|
|
641
743
|
readonly sourceField: string[];
|
|
642
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
744
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
643
745
|
readonly destSchema: "draft";
|
|
644
746
|
readonly cardinality: "many";
|
|
645
747
|
}];
|
|
@@ -663,7 +765,7 @@ export declare const marcoZero: {
|
|
|
663
765
|
}];
|
|
664
766
|
user: [{
|
|
665
767
|
readonly sourceField: string[];
|
|
666
|
-
readonly destField: ("id" | "name" | "
|
|
768
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
667
769
|
readonly destSchema: "user";
|
|
668
770
|
readonly cardinality: "one";
|
|
669
771
|
}];
|
|
@@ -671,7 +773,7 @@ export declare const marcoZero: {
|
|
|
671
773
|
readonly accountAlias: {
|
|
672
774
|
account: [{
|
|
673
775
|
readonly sourceField: string[];
|
|
674
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
776
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
675
777
|
readonly destSchema: "account";
|
|
676
778
|
readonly cardinality: "one";
|
|
677
779
|
}];
|
|
@@ -679,7 +781,7 @@ export declare const marcoZero: {
|
|
|
679
781
|
readonly accountLabel: {
|
|
680
782
|
account: [{
|
|
681
783
|
readonly sourceField: string[];
|
|
682
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
784
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
683
785
|
readonly destSchema: "account";
|
|
684
786
|
readonly cardinality: "one";
|
|
685
787
|
}];
|
|
@@ -690,7 +792,7 @@ export declare const marcoZero: {
|
|
|
690
792
|
readonly cardinality: "many";
|
|
691
793
|
}, {
|
|
692
794
|
readonly sourceField: string[];
|
|
693
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
795
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
694
796
|
readonly destSchema: "threadMessage";
|
|
695
797
|
readonly cardinality: "many";
|
|
696
798
|
}];
|
|
@@ -709,7 +811,7 @@ export declare const marcoZero: {
|
|
|
709
811
|
readonly draft: {
|
|
710
812
|
account: [{
|
|
711
813
|
readonly sourceField: string[];
|
|
712
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
814
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
713
815
|
readonly destSchema: "account";
|
|
714
816
|
readonly cardinality: "one";
|
|
715
817
|
}];
|
|
@@ -727,7 +829,7 @@ export declare const marcoZero: {
|
|
|
727
829
|
}];
|
|
728
830
|
user: [{
|
|
729
831
|
readonly sourceField: string[];
|
|
730
|
-
readonly destField: ("id" | "name" | "
|
|
832
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
731
833
|
readonly destSchema: "user";
|
|
732
834
|
readonly cardinality: "one";
|
|
733
835
|
}];
|
|
@@ -735,7 +837,7 @@ export declare const marcoZero: {
|
|
|
735
837
|
readonly draftRecipient: {
|
|
736
838
|
draft: [{
|
|
737
839
|
readonly sourceField: string[];
|
|
738
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
840
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
739
841
|
readonly destSchema: "draft";
|
|
740
842
|
readonly cardinality: "one";
|
|
741
843
|
}];
|
|
@@ -743,7 +845,7 @@ export declare const marcoZero: {
|
|
|
743
845
|
readonly draftAttachment: {
|
|
744
846
|
draft: [{
|
|
745
847
|
readonly sourceField: string[];
|
|
746
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
848
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
747
849
|
readonly destSchema: "draft";
|
|
748
850
|
readonly cardinality: "one";
|
|
749
851
|
}];
|
|
@@ -751,7 +853,7 @@ export declare const marcoZero: {
|
|
|
751
853
|
readonly thread: {
|
|
752
854
|
account: [{
|
|
753
855
|
readonly sourceField: string[];
|
|
754
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
856
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
755
857
|
readonly destSchema: "account";
|
|
756
858
|
readonly cardinality: "one";
|
|
757
859
|
}];
|
|
@@ -768,13 +870,13 @@ export declare const marcoZero: {
|
|
|
768
870
|
}];
|
|
769
871
|
messages: [{
|
|
770
872
|
readonly sourceField: string[];
|
|
771
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
873
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
772
874
|
readonly destSchema: "threadMessage";
|
|
773
875
|
readonly cardinality: "many";
|
|
774
876
|
}];
|
|
775
877
|
user: [{
|
|
776
878
|
readonly sourceField: string[];
|
|
777
|
-
readonly destField: ("id" | "name" | "
|
|
879
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
778
880
|
readonly destSchema: "user";
|
|
779
881
|
readonly cardinality: "one";
|
|
780
882
|
}];
|
|
@@ -827,7 +929,7 @@ export declare const marcoZero: {
|
|
|
827
929
|
readonly threadMessageRecipient: {
|
|
828
930
|
message: [{
|
|
829
931
|
readonly sourceField: string[];
|
|
830
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
932
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
831
933
|
readonly destSchema: "threadMessage";
|
|
832
934
|
readonly cardinality: "one";
|
|
833
935
|
}];
|
|
@@ -835,7 +937,7 @@ export declare const marcoZero: {
|
|
|
835
937
|
readonly threadMessageAttachment: {
|
|
836
938
|
message: [{
|
|
837
939
|
readonly sourceField: string[];
|
|
838
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
940
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
839
941
|
readonly destSchema: "threadMessage";
|
|
840
942
|
readonly cardinality: "one";
|
|
841
943
|
}];
|
|
@@ -849,7 +951,7 @@ export declare const marcoZero: {
|
|
|
849
951
|
}];
|
|
850
952
|
message: [{
|
|
851
953
|
readonly sourceField: string[];
|
|
852
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
954
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
853
955
|
readonly destSchema: "threadMessage";
|
|
854
956
|
readonly cardinality: "one";
|
|
855
957
|
}];
|
|
@@ -889,13 +991,6 @@ export declare const marcoZero: {
|
|
|
889
991
|
readonly path: string;
|
|
890
992
|
readonly specialUse: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH" | null;
|
|
891
993
|
}[];
|
|
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
994
|
}>>;
|
|
900
995
|
readonly getContacts: import("@rocicorp/zero").SyncedQuery<"getContacts", import("..").MarcoSyncedQueryContext, true, [{
|
|
901
996
|
limit: number;
|
|
@@ -927,11 +1022,15 @@ export declare const marcoZero: {
|
|
|
927
1022
|
customType: string;
|
|
928
1023
|
}, "optional"> & {
|
|
929
1024
|
optional: true;
|
|
1025
|
+
} & {
|
|
1026
|
+
serverName: string;
|
|
930
1027
|
};
|
|
931
1028
|
readonly undoSendEnabled: {
|
|
932
1029
|
type: "boolean";
|
|
933
1030
|
optional: false;
|
|
934
1031
|
customType: boolean;
|
|
1032
|
+
} & {
|
|
1033
|
+
serverName: string;
|
|
935
1034
|
};
|
|
936
1035
|
};
|
|
937
1036
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -945,6 +1044,8 @@ export declare const marcoZero: {
|
|
|
945
1044
|
type: "number";
|
|
946
1045
|
optional: false;
|
|
947
1046
|
customType: number;
|
|
1047
|
+
} & {
|
|
1048
|
+
serverName: string;
|
|
948
1049
|
};
|
|
949
1050
|
readonly id: {
|
|
950
1051
|
type: "string";
|
|
@@ -960,6 +1061,8 @@ export declare const marcoZero: {
|
|
|
960
1061
|
type: "string";
|
|
961
1062
|
optional: false;
|
|
962
1063
|
customType: string;
|
|
1064
|
+
} & {
|
|
1065
|
+
serverName: string;
|
|
963
1066
|
};
|
|
964
1067
|
};
|
|
965
1068
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -973,6 +1076,8 @@ export declare const marcoZero: {
|
|
|
973
1076
|
type: "string";
|
|
974
1077
|
optional: false;
|
|
975
1078
|
customType: string;
|
|
1079
|
+
} & {
|
|
1080
|
+
serverName: string;
|
|
976
1081
|
};
|
|
977
1082
|
readonly id: {
|
|
978
1083
|
type: "string";
|
|
@@ -990,6 +1095,8 @@ export declare const marcoZero: {
|
|
|
990
1095
|
type: "string";
|
|
991
1096
|
optional: false;
|
|
992
1097
|
customType: string;
|
|
1098
|
+
} & {
|
|
1099
|
+
serverName: string;
|
|
993
1100
|
};
|
|
994
1101
|
};
|
|
995
1102
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1010,6 +1117,8 @@ export declare const marcoZero: {
|
|
|
1010
1117
|
customType: string;
|
|
1011
1118
|
}, "optional"> & {
|
|
1012
1119
|
optional: true;
|
|
1120
|
+
} & {
|
|
1121
|
+
serverName: string;
|
|
1013
1122
|
};
|
|
1014
1123
|
readonly id: {
|
|
1015
1124
|
type: "string";
|
|
@@ -1020,16 +1129,22 @@ export declare const marcoZero: {
|
|
|
1020
1129
|
type: "string";
|
|
1021
1130
|
optional: false;
|
|
1022
1131
|
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";
|
|
1132
|
+
} & {
|
|
1133
|
+
serverName: string;
|
|
1023
1134
|
};
|
|
1024
1135
|
readonly mailProcessedCount: {
|
|
1025
1136
|
type: "number";
|
|
1026
1137
|
optional: false;
|
|
1027
1138
|
customType: number;
|
|
1139
|
+
} & {
|
|
1140
|
+
serverName: string;
|
|
1028
1141
|
};
|
|
1029
1142
|
readonly mailTotalCount: {
|
|
1030
1143
|
type: "number";
|
|
1031
1144
|
optional: false;
|
|
1032
1145
|
customType: number;
|
|
1146
|
+
} & {
|
|
1147
|
+
serverName: string;
|
|
1033
1148
|
};
|
|
1034
1149
|
readonly primaryAliasId: Omit<{
|
|
1035
1150
|
type: "string";
|
|
@@ -1037,11 +1152,15 @@ export declare const marcoZero: {
|
|
|
1037
1152
|
customType: string;
|
|
1038
1153
|
}, "optional"> & {
|
|
1039
1154
|
optional: true;
|
|
1155
|
+
} & {
|
|
1156
|
+
serverName: string;
|
|
1040
1157
|
};
|
|
1041
1158
|
readonly userId: {
|
|
1042
1159
|
type: "string";
|
|
1043
1160
|
optional: false;
|
|
1044
1161
|
customType: string;
|
|
1162
|
+
} & {
|
|
1163
|
+
serverName: string;
|
|
1045
1164
|
};
|
|
1046
1165
|
};
|
|
1047
1166
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1055,11 +1174,15 @@ export declare const marcoZero: {
|
|
|
1055
1174
|
type: "string";
|
|
1056
1175
|
optional: false;
|
|
1057
1176
|
customType: string;
|
|
1177
|
+
} & {
|
|
1178
|
+
serverName: string;
|
|
1058
1179
|
};
|
|
1059
1180
|
readonly emailAddress: {
|
|
1060
1181
|
type: "string";
|
|
1061
1182
|
optional: false;
|
|
1062
1183
|
customType: string;
|
|
1184
|
+
} & {
|
|
1185
|
+
serverName: string;
|
|
1063
1186
|
};
|
|
1064
1187
|
readonly id: {
|
|
1065
1188
|
type: "string";
|
|
@@ -1070,6 +1193,8 @@ export declare const marcoZero: {
|
|
|
1070
1193
|
type: "boolean";
|
|
1071
1194
|
optional: false;
|
|
1072
1195
|
customType: boolean;
|
|
1196
|
+
} & {
|
|
1197
|
+
serverName: string;
|
|
1073
1198
|
};
|
|
1074
1199
|
readonly name: Omit<{
|
|
1075
1200
|
type: "string";
|
|
@@ -1090,6 +1215,8 @@ export declare const marcoZero: {
|
|
|
1090
1215
|
type: "string";
|
|
1091
1216
|
optional: false;
|
|
1092
1217
|
customType: string;
|
|
1218
|
+
} & {
|
|
1219
|
+
serverName: string;
|
|
1093
1220
|
};
|
|
1094
1221
|
readonly id: {
|
|
1095
1222
|
type: "string";
|
|
@@ -1107,6 +1234,8 @@ export declare const marcoZero: {
|
|
|
1107
1234
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
1108
1235
|
}, "optional"> & {
|
|
1109
1236
|
optional: true;
|
|
1237
|
+
} & {
|
|
1238
|
+
serverName: string;
|
|
1110
1239
|
};
|
|
1111
1240
|
};
|
|
1112
1241
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1120,6 +1249,8 @@ export declare const marcoZero: {
|
|
|
1120
1249
|
type: "string";
|
|
1121
1250
|
optional: false;
|
|
1122
1251
|
customType: string;
|
|
1252
|
+
} & {
|
|
1253
|
+
serverName: string;
|
|
1123
1254
|
};
|
|
1124
1255
|
readonly body: {
|
|
1125
1256
|
type: "json";
|
|
@@ -1144,11 +1275,15 @@ export declare const marcoZero: {
|
|
|
1144
1275
|
customType: string;
|
|
1145
1276
|
}, "optional"> & {
|
|
1146
1277
|
optional: true;
|
|
1278
|
+
} & {
|
|
1279
|
+
serverName: string;
|
|
1147
1280
|
};
|
|
1148
1281
|
readonly fromEmail: {
|
|
1149
1282
|
type: "string";
|
|
1150
1283
|
optional: false;
|
|
1151
1284
|
customType: string;
|
|
1285
|
+
} & {
|
|
1286
|
+
serverName: string;
|
|
1152
1287
|
};
|
|
1153
1288
|
readonly fromName: Omit<{
|
|
1154
1289
|
type: "string";
|
|
@@ -1156,6 +1291,8 @@ export declare const marcoZero: {
|
|
|
1156
1291
|
customType: string;
|
|
1157
1292
|
}, "optional"> & {
|
|
1158
1293
|
optional: true;
|
|
1294
|
+
} & {
|
|
1295
|
+
serverName: string;
|
|
1159
1296
|
};
|
|
1160
1297
|
readonly id: {
|
|
1161
1298
|
type: "string";
|
|
@@ -1168,6 +1305,8 @@ export declare const marcoZero: {
|
|
|
1168
1305
|
customType: string;
|
|
1169
1306
|
}, "optional"> & {
|
|
1170
1307
|
optional: true;
|
|
1308
|
+
} & {
|
|
1309
|
+
serverName: string;
|
|
1171
1310
|
};
|
|
1172
1311
|
readonly scheduledFor: Omit<{
|
|
1173
1312
|
type: "number";
|
|
@@ -1175,6 +1314,8 @@ export declare const marcoZero: {
|
|
|
1175
1314
|
customType: number;
|
|
1176
1315
|
}, "optional"> & {
|
|
1177
1316
|
optional: true;
|
|
1317
|
+
} & {
|
|
1318
|
+
serverName: string;
|
|
1178
1319
|
};
|
|
1179
1320
|
readonly status: {
|
|
1180
1321
|
type: "string";
|
|
@@ -1197,11 +1338,15 @@ export declare const marcoZero: {
|
|
|
1197
1338
|
type: "number";
|
|
1198
1339
|
optional: false;
|
|
1199
1340
|
customType: number;
|
|
1341
|
+
} & {
|
|
1342
|
+
serverName: string;
|
|
1200
1343
|
};
|
|
1201
1344
|
readonly userId: {
|
|
1202
1345
|
type: "string";
|
|
1203
1346
|
optional: false;
|
|
1204
1347
|
customType: string;
|
|
1348
|
+
} & {
|
|
1349
|
+
serverName: string;
|
|
1205
1350
|
};
|
|
1206
1351
|
};
|
|
1207
1352
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1215,11 +1360,15 @@ export declare const marcoZero: {
|
|
|
1215
1360
|
type: "string";
|
|
1216
1361
|
optional: false;
|
|
1217
1362
|
customType: string;
|
|
1363
|
+
} & {
|
|
1364
|
+
serverName: string;
|
|
1218
1365
|
};
|
|
1219
1366
|
readonly emailAddress: {
|
|
1220
1367
|
type: "string";
|
|
1221
1368
|
optional: false;
|
|
1222
1369
|
customType: string;
|
|
1370
|
+
} & {
|
|
1371
|
+
serverName: string;
|
|
1223
1372
|
};
|
|
1224
1373
|
readonly id: {
|
|
1225
1374
|
type: "string";
|
|
@@ -1243,6 +1392,8 @@ export declare const marcoZero: {
|
|
|
1243
1392
|
type: "string";
|
|
1244
1393
|
optional: false;
|
|
1245
1394
|
customType: string;
|
|
1395
|
+
} & {
|
|
1396
|
+
serverName: string;
|
|
1246
1397
|
};
|
|
1247
1398
|
readonly failed: {
|
|
1248
1399
|
type: "boolean";
|
|
@@ -1253,6 +1404,8 @@ export declare const marcoZero: {
|
|
|
1253
1404
|
type: "string";
|
|
1254
1405
|
optional: false;
|
|
1255
1406
|
customType: string;
|
|
1407
|
+
} & {
|
|
1408
|
+
serverName: string;
|
|
1256
1409
|
};
|
|
1257
1410
|
readonly id: {
|
|
1258
1411
|
type: "string";
|
|
@@ -1263,21 +1416,29 @@ export declare const marcoZero: {
|
|
|
1263
1416
|
type: "string";
|
|
1264
1417
|
optional: false;
|
|
1265
1418
|
customType: string;
|
|
1419
|
+
} & {
|
|
1420
|
+
serverName: string;
|
|
1266
1421
|
};
|
|
1267
1422
|
readonly totalChunks: {
|
|
1268
1423
|
type: "number";
|
|
1269
1424
|
optional: false;
|
|
1270
1425
|
customType: number;
|
|
1426
|
+
} & {
|
|
1427
|
+
serverName: string;
|
|
1271
1428
|
};
|
|
1272
1429
|
readonly totalSize: {
|
|
1273
1430
|
type: "number";
|
|
1274
1431
|
optional: false;
|
|
1275
1432
|
customType: number;
|
|
1433
|
+
} & {
|
|
1434
|
+
serverName: string;
|
|
1276
1435
|
};
|
|
1277
1436
|
readonly uploadedChunks: {
|
|
1278
1437
|
type: "number";
|
|
1279
1438
|
optional: false;
|
|
1280
1439
|
customType: number;
|
|
1440
|
+
} & {
|
|
1441
|
+
serverName: string;
|
|
1281
1442
|
};
|
|
1282
1443
|
};
|
|
1283
1444
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1291,6 +1452,8 @@ export declare const marcoZero: {
|
|
|
1291
1452
|
type: "string";
|
|
1292
1453
|
optional: false;
|
|
1293
1454
|
customType: string;
|
|
1455
|
+
} & {
|
|
1456
|
+
serverName: string;
|
|
1294
1457
|
};
|
|
1295
1458
|
readonly flagged: {
|
|
1296
1459
|
type: "boolean";
|
|
@@ -1306,6 +1469,8 @@ export declare const marcoZero: {
|
|
|
1306
1469
|
type: "number";
|
|
1307
1470
|
optional: false;
|
|
1308
1471
|
customType: number;
|
|
1472
|
+
} & {
|
|
1473
|
+
serverName: string;
|
|
1309
1474
|
};
|
|
1310
1475
|
readonly seen: {
|
|
1311
1476
|
type: "boolean";
|
|
@@ -1316,6 +1481,8 @@ export declare const marcoZero: {
|
|
|
1316
1481
|
type: "string";
|
|
1317
1482
|
optional: false;
|
|
1318
1483
|
customType: string;
|
|
1484
|
+
} & {
|
|
1485
|
+
serverName: string;
|
|
1319
1486
|
};
|
|
1320
1487
|
readonly words: {
|
|
1321
1488
|
type: "string";
|
|
@@ -1334,11 +1501,15 @@ export declare const marcoZero: {
|
|
|
1334
1501
|
type: "string";
|
|
1335
1502
|
optional: false;
|
|
1336
1503
|
customType: string;
|
|
1504
|
+
} & {
|
|
1505
|
+
serverName: string;
|
|
1337
1506
|
};
|
|
1338
1507
|
readonly threadId: {
|
|
1339
1508
|
type: "string";
|
|
1340
1509
|
optional: false;
|
|
1341
1510
|
customType: string;
|
|
1511
|
+
} & {
|
|
1512
|
+
serverName: string;
|
|
1342
1513
|
};
|
|
1343
1514
|
};
|
|
1344
1515
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1352,6 +1523,8 @@ export declare const marcoZero: {
|
|
|
1352
1523
|
type: "number";
|
|
1353
1524
|
optional: false;
|
|
1354
1525
|
customType: number;
|
|
1526
|
+
} & {
|
|
1527
|
+
serverName: string;
|
|
1355
1528
|
};
|
|
1356
1529
|
readonly envelopeSubject: Omit<{
|
|
1357
1530
|
type: "string";
|
|
@@ -1359,6 +1532,8 @@ export declare const marcoZero: {
|
|
|
1359
1532
|
customType: string;
|
|
1360
1533
|
}, "optional"> & {
|
|
1361
1534
|
optional: true;
|
|
1535
|
+
} & {
|
|
1536
|
+
serverName: string;
|
|
1362
1537
|
};
|
|
1363
1538
|
readonly id: {
|
|
1364
1539
|
type: "string";
|
|
@@ -1369,11 +1544,15 @@ export declare const marcoZero: {
|
|
|
1369
1544
|
type: "string";
|
|
1370
1545
|
optional: false;
|
|
1371
1546
|
customType: string;
|
|
1547
|
+
} & {
|
|
1548
|
+
serverName: string;
|
|
1372
1549
|
};
|
|
1373
1550
|
readonly senderEmail: {
|
|
1374
1551
|
type: "string";
|
|
1375
1552
|
optional: false;
|
|
1376
1553
|
customType: string;
|
|
1554
|
+
} & {
|
|
1555
|
+
serverName: string;
|
|
1377
1556
|
};
|
|
1378
1557
|
readonly senderName: Omit<{
|
|
1379
1558
|
type: "string";
|
|
@@ -1381,11 +1560,15 @@ export declare const marcoZero: {
|
|
|
1381
1560
|
customType: string;
|
|
1382
1561
|
}, "optional"> & {
|
|
1383
1562
|
optional: true;
|
|
1563
|
+
} & {
|
|
1564
|
+
serverName: string;
|
|
1384
1565
|
};
|
|
1385
1566
|
readonly threadId: {
|
|
1386
1567
|
type: "string";
|
|
1387
1568
|
optional: false;
|
|
1388
1569
|
customType: string;
|
|
1570
|
+
} & {
|
|
1571
|
+
serverName: string;
|
|
1389
1572
|
};
|
|
1390
1573
|
};
|
|
1391
1574
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1399,6 +1582,8 @@ export declare const marcoZero: {
|
|
|
1399
1582
|
type: "string";
|
|
1400
1583
|
optional: false;
|
|
1401
1584
|
customType: string;
|
|
1585
|
+
} & {
|
|
1586
|
+
serverName: string;
|
|
1402
1587
|
};
|
|
1403
1588
|
readonly id: {
|
|
1404
1589
|
type: "string";
|
|
@@ -1416,6 +1601,8 @@ export declare const marcoZero: {
|
|
|
1416
1601
|
type: "string";
|
|
1417
1602
|
optional: false;
|
|
1418
1603
|
customType: string;
|
|
1604
|
+
} & {
|
|
1605
|
+
serverName: string;
|
|
1419
1606
|
};
|
|
1420
1607
|
readonly type: {
|
|
1421
1608
|
type: "string";
|
|
@@ -1434,6 +1621,8 @@ export declare const marcoZero: {
|
|
|
1434
1621
|
type: "string";
|
|
1435
1622
|
optional: false;
|
|
1436
1623
|
customType: string;
|
|
1624
|
+
} & {
|
|
1625
|
+
serverName: string;
|
|
1437
1626
|
};
|
|
1438
1627
|
readonly id: {
|
|
1439
1628
|
type: "string";
|
|
@@ -1444,6 +1633,8 @@ export declare const marcoZero: {
|
|
|
1444
1633
|
type: "string";
|
|
1445
1634
|
optional: false;
|
|
1446
1635
|
customType: string;
|
|
1636
|
+
} & {
|
|
1637
|
+
serverName: string;
|
|
1447
1638
|
};
|
|
1448
1639
|
readonly size: {
|
|
1449
1640
|
type: "number";
|
|
@@ -1459,6 +1650,8 @@ export declare const marcoZero: {
|
|
|
1459
1650
|
type: "string";
|
|
1460
1651
|
optional: false;
|
|
1461
1652
|
customType: string;
|
|
1653
|
+
} & {
|
|
1654
|
+
serverName: string;
|
|
1462
1655
|
};
|
|
1463
1656
|
};
|
|
1464
1657
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1472,11 +1665,15 @@ export declare const marcoZero: {
|
|
|
1472
1665
|
type: "string";
|
|
1473
1666
|
optional: false;
|
|
1474
1667
|
customType: string;
|
|
1668
|
+
} & {
|
|
1669
|
+
serverName: string;
|
|
1475
1670
|
};
|
|
1476
1671
|
readonly threadMessageId: {
|
|
1477
1672
|
type: "string";
|
|
1478
1673
|
optional: false;
|
|
1479
1674
|
customType: string;
|
|
1675
|
+
} & {
|
|
1676
|
+
serverName: string;
|
|
1480
1677
|
};
|
|
1481
1678
|
};
|
|
1482
1679
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1488,7 +1685,7 @@ export declare const marcoZero: {
|
|
|
1488
1685
|
readonly user: {
|
|
1489
1686
|
accounts: [{
|
|
1490
1687
|
readonly sourceField: string[];
|
|
1491
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1688
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1492
1689
|
readonly destSchema: "account";
|
|
1493
1690
|
readonly cardinality: "many";
|
|
1494
1691
|
}];
|
|
@@ -1500,7 +1697,7 @@ export declare const marcoZero: {
|
|
|
1500
1697
|
}];
|
|
1501
1698
|
drafts: [{
|
|
1502
1699
|
readonly sourceField: string[];
|
|
1503
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
1700
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
1504
1701
|
readonly destSchema: "draft";
|
|
1505
1702
|
readonly cardinality: "many";
|
|
1506
1703
|
}];
|
|
@@ -1520,7 +1717,7 @@ export declare const marcoZero: {
|
|
|
1520
1717
|
readonly userPushNotificationToken: {
|
|
1521
1718
|
user: [{
|
|
1522
1719
|
readonly sourceField: string[];
|
|
1523
|
-
readonly destField: ("id" | "name" | "
|
|
1720
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1524
1721
|
readonly destSchema: "user";
|
|
1525
1722
|
readonly cardinality: "one";
|
|
1526
1723
|
}];
|
|
@@ -1528,7 +1725,7 @@ export declare const marcoZero: {
|
|
|
1528
1725
|
readonly contact: {
|
|
1529
1726
|
user: [{
|
|
1530
1727
|
readonly sourceField: string[];
|
|
1531
|
-
readonly destField: ("id" | "name" | "
|
|
1728
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1532
1729
|
readonly destSchema: "user";
|
|
1533
1730
|
readonly cardinality: "one";
|
|
1534
1731
|
}];
|
|
@@ -1542,7 +1739,7 @@ export declare const marcoZero: {
|
|
|
1542
1739
|
}];
|
|
1543
1740
|
drafts: [{
|
|
1544
1741
|
readonly sourceField: string[];
|
|
1545
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
1742
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
1546
1743
|
readonly destSchema: "draft";
|
|
1547
1744
|
readonly cardinality: "many";
|
|
1548
1745
|
}];
|
|
@@ -1566,7 +1763,7 @@ export declare const marcoZero: {
|
|
|
1566
1763
|
}];
|
|
1567
1764
|
user: [{
|
|
1568
1765
|
readonly sourceField: string[];
|
|
1569
|
-
readonly destField: ("id" | "name" | "
|
|
1766
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1570
1767
|
readonly destSchema: "user";
|
|
1571
1768
|
readonly cardinality: "one";
|
|
1572
1769
|
}];
|
|
@@ -1574,7 +1771,7 @@ export declare const marcoZero: {
|
|
|
1574
1771
|
readonly accountAlias: {
|
|
1575
1772
|
account: [{
|
|
1576
1773
|
readonly sourceField: string[];
|
|
1577
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1774
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1578
1775
|
readonly destSchema: "account";
|
|
1579
1776
|
readonly cardinality: "one";
|
|
1580
1777
|
}];
|
|
@@ -1582,7 +1779,7 @@ export declare const marcoZero: {
|
|
|
1582
1779
|
readonly accountLabel: {
|
|
1583
1780
|
account: [{
|
|
1584
1781
|
readonly sourceField: string[];
|
|
1585
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1782
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1586
1783
|
readonly destSchema: "account";
|
|
1587
1784
|
readonly cardinality: "one";
|
|
1588
1785
|
}];
|
|
@@ -1593,7 +1790,7 @@ export declare const marcoZero: {
|
|
|
1593
1790
|
readonly cardinality: "many";
|
|
1594
1791
|
}, {
|
|
1595
1792
|
readonly sourceField: string[];
|
|
1596
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1793
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1597
1794
|
readonly destSchema: "threadMessage";
|
|
1598
1795
|
readonly cardinality: "many";
|
|
1599
1796
|
}];
|
|
@@ -1612,7 +1809,7 @@ export declare const marcoZero: {
|
|
|
1612
1809
|
readonly draft: {
|
|
1613
1810
|
account: [{
|
|
1614
1811
|
readonly sourceField: string[];
|
|
1615
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1812
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1616
1813
|
readonly destSchema: "account";
|
|
1617
1814
|
readonly cardinality: "one";
|
|
1618
1815
|
}];
|
|
@@ -1630,7 +1827,7 @@ export declare const marcoZero: {
|
|
|
1630
1827
|
}];
|
|
1631
1828
|
user: [{
|
|
1632
1829
|
readonly sourceField: string[];
|
|
1633
|
-
readonly destField: ("id" | "name" | "
|
|
1830
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1634
1831
|
readonly destSchema: "user";
|
|
1635
1832
|
readonly cardinality: "one";
|
|
1636
1833
|
}];
|
|
@@ -1638,7 +1835,7 @@ export declare const marcoZero: {
|
|
|
1638
1835
|
readonly draftRecipient: {
|
|
1639
1836
|
draft: [{
|
|
1640
1837
|
readonly sourceField: string[];
|
|
1641
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
1838
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
1642
1839
|
readonly destSchema: "draft";
|
|
1643
1840
|
readonly cardinality: "one";
|
|
1644
1841
|
}];
|
|
@@ -1646,7 +1843,7 @@ export declare const marcoZero: {
|
|
|
1646
1843
|
readonly draftAttachment: {
|
|
1647
1844
|
draft: [{
|
|
1648
1845
|
readonly sourceField: string[];
|
|
1649
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
1846
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
1650
1847
|
readonly destSchema: "draft";
|
|
1651
1848
|
readonly cardinality: "one";
|
|
1652
1849
|
}];
|
|
@@ -1654,7 +1851,7 @@ export declare const marcoZero: {
|
|
|
1654
1851
|
readonly thread: {
|
|
1655
1852
|
account: [{
|
|
1656
1853
|
readonly sourceField: string[];
|
|
1657
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
1854
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1658
1855
|
readonly destSchema: "account";
|
|
1659
1856
|
readonly cardinality: "one";
|
|
1660
1857
|
}];
|
|
@@ -1671,13 +1868,13 @@ export declare const marcoZero: {
|
|
|
1671
1868
|
}];
|
|
1672
1869
|
messages: [{
|
|
1673
1870
|
readonly sourceField: string[];
|
|
1674
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1871
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1675
1872
|
readonly destSchema: "threadMessage";
|
|
1676
1873
|
readonly cardinality: "many";
|
|
1677
1874
|
}];
|
|
1678
1875
|
user: [{
|
|
1679
1876
|
readonly sourceField: string[];
|
|
1680
|
-
readonly destField: ("id" | "name" | "
|
|
1877
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
1681
1878
|
readonly destSchema: "user";
|
|
1682
1879
|
readonly cardinality: "one";
|
|
1683
1880
|
}];
|
|
@@ -1730,7 +1927,7 @@ export declare const marcoZero: {
|
|
|
1730
1927
|
readonly threadMessageRecipient: {
|
|
1731
1928
|
message: [{
|
|
1732
1929
|
readonly sourceField: string[];
|
|
1733
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1930
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1734
1931
|
readonly destSchema: "threadMessage";
|
|
1735
1932
|
readonly cardinality: "one";
|
|
1736
1933
|
}];
|
|
@@ -1738,7 +1935,7 @@ export declare const marcoZero: {
|
|
|
1738
1935
|
readonly threadMessageAttachment: {
|
|
1739
1936
|
message: [{
|
|
1740
1937
|
readonly sourceField: string[];
|
|
1741
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1938
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1742
1939
|
readonly destSchema: "threadMessage";
|
|
1743
1940
|
readonly cardinality: "one";
|
|
1744
1941
|
}];
|
|
@@ -1752,7 +1949,7 @@ export declare const marcoZero: {
|
|
|
1752
1949
|
}];
|
|
1753
1950
|
message: [{
|
|
1754
1951
|
readonly sourceField: string[];
|
|
1755
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
1952
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
1756
1953
|
readonly destSchema: "threadMessage";
|
|
1757
1954
|
readonly cardinality: "one";
|
|
1758
1955
|
}];
|
|
@@ -1765,17 +1962,10 @@ export declare const marcoZero: {
|
|
|
1765
1962
|
readonly id: string;
|
|
1766
1963
|
readonly name: string | null;
|
|
1767
1964
|
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
1965
|
}>>;
|
|
1776
1966
|
readonly getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts", import("..").MarcoSyncedQueryContext, true, [{
|
|
1777
1967
|
accountId?: string;
|
|
1778
|
-
limit
|
|
1968
|
+
limit: number;
|
|
1779
1969
|
status?: typeof import("..").DRAFT_STATUSES[number];
|
|
1780
1970
|
}], import("@rocicorp/zero").Query<{
|
|
1781
1971
|
tables: {
|
|
@@ -1800,11 +1990,15 @@ export declare const marcoZero: {
|
|
|
1800
1990
|
customType: string;
|
|
1801
1991
|
}, "optional"> & {
|
|
1802
1992
|
optional: true;
|
|
1993
|
+
} & {
|
|
1994
|
+
serverName: string;
|
|
1803
1995
|
};
|
|
1804
1996
|
readonly undoSendEnabled: {
|
|
1805
1997
|
type: "boolean";
|
|
1806
1998
|
optional: false;
|
|
1807
1999
|
customType: boolean;
|
|
2000
|
+
} & {
|
|
2001
|
+
serverName: string;
|
|
1808
2002
|
};
|
|
1809
2003
|
};
|
|
1810
2004
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1818,6 +2012,8 @@ export declare const marcoZero: {
|
|
|
1818
2012
|
type: "number";
|
|
1819
2013
|
optional: false;
|
|
1820
2014
|
customType: number;
|
|
2015
|
+
} & {
|
|
2016
|
+
serverName: string;
|
|
1821
2017
|
};
|
|
1822
2018
|
readonly id: {
|
|
1823
2019
|
type: "string";
|
|
@@ -1833,6 +2029,8 @@ export declare const marcoZero: {
|
|
|
1833
2029
|
type: "string";
|
|
1834
2030
|
optional: false;
|
|
1835
2031
|
customType: string;
|
|
2032
|
+
} & {
|
|
2033
|
+
serverName: string;
|
|
1836
2034
|
};
|
|
1837
2035
|
};
|
|
1838
2036
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1846,6 +2044,8 @@ export declare const marcoZero: {
|
|
|
1846
2044
|
type: "string";
|
|
1847
2045
|
optional: false;
|
|
1848
2046
|
customType: string;
|
|
2047
|
+
} & {
|
|
2048
|
+
serverName: string;
|
|
1849
2049
|
};
|
|
1850
2050
|
readonly id: {
|
|
1851
2051
|
type: "string";
|
|
@@ -1863,6 +2063,8 @@ export declare const marcoZero: {
|
|
|
1863
2063
|
type: "string";
|
|
1864
2064
|
optional: false;
|
|
1865
2065
|
customType: string;
|
|
2066
|
+
} & {
|
|
2067
|
+
serverName: string;
|
|
1866
2068
|
};
|
|
1867
2069
|
};
|
|
1868
2070
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1883,6 +2085,8 @@ export declare const marcoZero: {
|
|
|
1883
2085
|
customType: string;
|
|
1884
2086
|
}, "optional"> & {
|
|
1885
2087
|
optional: true;
|
|
2088
|
+
} & {
|
|
2089
|
+
serverName: string;
|
|
1886
2090
|
};
|
|
1887
2091
|
readonly id: {
|
|
1888
2092
|
type: "string";
|
|
@@ -1893,16 +2097,22 @@ export declare const marcoZero: {
|
|
|
1893
2097
|
type: "string";
|
|
1894
2098
|
optional: false;
|
|
1895
2099
|
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";
|
|
2100
|
+
} & {
|
|
2101
|
+
serverName: string;
|
|
1896
2102
|
};
|
|
1897
2103
|
readonly mailProcessedCount: {
|
|
1898
2104
|
type: "number";
|
|
1899
2105
|
optional: false;
|
|
1900
2106
|
customType: number;
|
|
2107
|
+
} & {
|
|
2108
|
+
serverName: string;
|
|
1901
2109
|
};
|
|
1902
2110
|
readonly mailTotalCount: {
|
|
1903
2111
|
type: "number";
|
|
1904
2112
|
optional: false;
|
|
1905
2113
|
customType: number;
|
|
2114
|
+
} & {
|
|
2115
|
+
serverName: string;
|
|
1906
2116
|
};
|
|
1907
2117
|
readonly primaryAliasId: Omit<{
|
|
1908
2118
|
type: "string";
|
|
@@ -1910,11 +2120,15 @@ export declare const marcoZero: {
|
|
|
1910
2120
|
customType: string;
|
|
1911
2121
|
}, "optional"> & {
|
|
1912
2122
|
optional: true;
|
|
2123
|
+
} & {
|
|
2124
|
+
serverName: string;
|
|
1913
2125
|
};
|
|
1914
2126
|
readonly userId: {
|
|
1915
2127
|
type: "string";
|
|
1916
2128
|
optional: false;
|
|
1917
2129
|
customType: string;
|
|
2130
|
+
} & {
|
|
2131
|
+
serverName: string;
|
|
1918
2132
|
};
|
|
1919
2133
|
};
|
|
1920
2134
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1928,11 +2142,15 @@ export declare const marcoZero: {
|
|
|
1928
2142
|
type: "string";
|
|
1929
2143
|
optional: false;
|
|
1930
2144
|
customType: string;
|
|
2145
|
+
} & {
|
|
2146
|
+
serverName: string;
|
|
1931
2147
|
};
|
|
1932
2148
|
readonly emailAddress: {
|
|
1933
2149
|
type: "string";
|
|
1934
2150
|
optional: false;
|
|
1935
2151
|
customType: string;
|
|
2152
|
+
} & {
|
|
2153
|
+
serverName: string;
|
|
1936
2154
|
};
|
|
1937
2155
|
readonly id: {
|
|
1938
2156
|
type: "string";
|
|
@@ -1943,6 +2161,8 @@ export declare const marcoZero: {
|
|
|
1943
2161
|
type: "boolean";
|
|
1944
2162
|
optional: false;
|
|
1945
2163
|
customType: boolean;
|
|
2164
|
+
} & {
|
|
2165
|
+
serverName: string;
|
|
1946
2166
|
};
|
|
1947
2167
|
readonly name: Omit<{
|
|
1948
2168
|
type: "string";
|
|
@@ -1963,6 +2183,8 @@ export declare const marcoZero: {
|
|
|
1963
2183
|
type: "string";
|
|
1964
2184
|
optional: false;
|
|
1965
2185
|
customType: string;
|
|
2186
|
+
} & {
|
|
2187
|
+
serverName: string;
|
|
1966
2188
|
};
|
|
1967
2189
|
readonly id: {
|
|
1968
2190
|
type: "string";
|
|
@@ -1980,6 +2202,8 @@ export declare const marcoZero: {
|
|
|
1980
2202
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
1981
2203
|
}, "optional"> & {
|
|
1982
2204
|
optional: true;
|
|
2205
|
+
} & {
|
|
2206
|
+
serverName: string;
|
|
1983
2207
|
};
|
|
1984
2208
|
};
|
|
1985
2209
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1993,6 +2217,8 @@ export declare const marcoZero: {
|
|
|
1993
2217
|
type: "string";
|
|
1994
2218
|
optional: false;
|
|
1995
2219
|
customType: string;
|
|
2220
|
+
} & {
|
|
2221
|
+
serverName: string;
|
|
1996
2222
|
};
|
|
1997
2223
|
readonly body: {
|
|
1998
2224
|
type: "json";
|
|
@@ -2017,11 +2243,15 @@ export declare const marcoZero: {
|
|
|
2017
2243
|
customType: string;
|
|
2018
2244
|
}, "optional"> & {
|
|
2019
2245
|
optional: true;
|
|
2246
|
+
} & {
|
|
2247
|
+
serverName: string;
|
|
2020
2248
|
};
|
|
2021
2249
|
readonly fromEmail: {
|
|
2022
2250
|
type: "string";
|
|
2023
2251
|
optional: false;
|
|
2024
2252
|
customType: string;
|
|
2253
|
+
} & {
|
|
2254
|
+
serverName: string;
|
|
2025
2255
|
};
|
|
2026
2256
|
readonly fromName: Omit<{
|
|
2027
2257
|
type: "string";
|
|
@@ -2029,6 +2259,8 @@ export declare const marcoZero: {
|
|
|
2029
2259
|
customType: string;
|
|
2030
2260
|
}, "optional"> & {
|
|
2031
2261
|
optional: true;
|
|
2262
|
+
} & {
|
|
2263
|
+
serverName: string;
|
|
2032
2264
|
};
|
|
2033
2265
|
readonly id: {
|
|
2034
2266
|
type: "string";
|
|
@@ -2041,6 +2273,8 @@ export declare const marcoZero: {
|
|
|
2041
2273
|
customType: string;
|
|
2042
2274
|
}, "optional"> & {
|
|
2043
2275
|
optional: true;
|
|
2276
|
+
} & {
|
|
2277
|
+
serverName: string;
|
|
2044
2278
|
};
|
|
2045
2279
|
readonly scheduledFor: Omit<{
|
|
2046
2280
|
type: "number";
|
|
@@ -2048,6 +2282,8 @@ export declare const marcoZero: {
|
|
|
2048
2282
|
customType: number;
|
|
2049
2283
|
}, "optional"> & {
|
|
2050
2284
|
optional: true;
|
|
2285
|
+
} & {
|
|
2286
|
+
serverName: string;
|
|
2051
2287
|
};
|
|
2052
2288
|
readonly status: {
|
|
2053
2289
|
type: "string";
|
|
@@ -2070,11 +2306,15 @@ export declare const marcoZero: {
|
|
|
2070
2306
|
type: "number";
|
|
2071
2307
|
optional: false;
|
|
2072
2308
|
customType: number;
|
|
2309
|
+
} & {
|
|
2310
|
+
serverName: string;
|
|
2073
2311
|
};
|
|
2074
2312
|
readonly userId: {
|
|
2075
2313
|
type: "string";
|
|
2076
2314
|
optional: false;
|
|
2077
2315
|
customType: string;
|
|
2316
|
+
} & {
|
|
2317
|
+
serverName: string;
|
|
2078
2318
|
};
|
|
2079
2319
|
};
|
|
2080
2320
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2088,11 +2328,15 @@ export declare const marcoZero: {
|
|
|
2088
2328
|
type: "string";
|
|
2089
2329
|
optional: false;
|
|
2090
2330
|
customType: string;
|
|
2331
|
+
} & {
|
|
2332
|
+
serverName: string;
|
|
2091
2333
|
};
|
|
2092
2334
|
readonly emailAddress: {
|
|
2093
2335
|
type: "string";
|
|
2094
2336
|
optional: false;
|
|
2095
2337
|
customType: string;
|
|
2338
|
+
} & {
|
|
2339
|
+
serverName: string;
|
|
2096
2340
|
};
|
|
2097
2341
|
readonly id: {
|
|
2098
2342
|
type: "string";
|
|
@@ -2116,6 +2360,8 @@ export declare const marcoZero: {
|
|
|
2116
2360
|
type: "string";
|
|
2117
2361
|
optional: false;
|
|
2118
2362
|
customType: string;
|
|
2363
|
+
} & {
|
|
2364
|
+
serverName: string;
|
|
2119
2365
|
};
|
|
2120
2366
|
readonly failed: {
|
|
2121
2367
|
type: "boolean";
|
|
@@ -2126,6 +2372,8 @@ export declare const marcoZero: {
|
|
|
2126
2372
|
type: "string";
|
|
2127
2373
|
optional: false;
|
|
2128
2374
|
customType: string;
|
|
2375
|
+
} & {
|
|
2376
|
+
serverName: string;
|
|
2129
2377
|
};
|
|
2130
2378
|
readonly id: {
|
|
2131
2379
|
type: "string";
|
|
@@ -2136,21 +2384,29 @@ export declare const marcoZero: {
|
|
|
2136
2384
|
type: "string";
|
|
2137
2385
|
optional: false;
|
|
2138
2386
|
customType: string;
|
|
2387
|
+
} & {
|
|
2388
|
+
serverName: string;
|
|
2139
2389
|
};
|
|
2140
2390
|
readonly totalChunks: {
|
|
2141
2391
|
type: "number";
|
|
2142
2392
|
optional: false;
|
|
2143
2393
|
customType: number;
|
|
2394
|
+
} & {
|
|
2395
|
+
serverName: string;
|
|
2144
2396
|
};
|
|
2145
2397
|
readonly totalSize: {
|
|
2146
2398
|
type: "number";
|
|
2147
2399
|
optional: false;
|
|
2148
2400
|
customType: number;
|
|
2401
|
+
} & {
|
|
2402
|
+
serverName: string;
|
|
2149
2403
|
};
|
|
2150
2404
|
readonly uploadedChunks: {
|
|
2151
2405
|
type: "number";
|
|
2152
2406
|
optional: false;
|
|
2153
2407
|
customType: number;
|
|
2408
|
+
} & {
|
|
2409
|
+
serverName: string;
|
|
2154
2410
|
};
|
|
2155
2411
|
};
|
|
2156
2412
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2164,6 +2420,8 @@ export declare const marcoZero: {
|
|
|
2164
2420
|
type: "string";
|
|
2165
2421
|
optional: false;
|
|
2166
2422
|
customType: string;
|
|
2423
|
+
} & {
|
|
2424
|
+
serverName: string;
|
|
2167
2425
|
};
|
|
2168
2426
|
readonly flagged: {
|
|
2169
2427
|
type: "boolean";
|
|
@@ -2179,6 +2437,8 @@ export declare const marcoZero: {
|
|
|
2179
2437
|
type: "number";
|
|
2180
2438
|
optional: false;
|
|
2181
2439
|
customType: number;
|
|
2440
|
+
} & {
|
|
2441
|
+
serverName: string;
|
|
2182
2442
|
};
|
|
2183
2443
|
readonly seen: {
|
|
2184
2444
|
type: "boolean";
|
|
@@ -2189,6 +2449,8 @@ export declare const marcoZero: {
|
|
|
2189
2449
|
type: "string";
|
|
2190
2450
|
optional: false;
|
|
2191
2451
|
customType: string;
|
|
2452
|
+
} & {
|
|
2453
|
+
serverName: string;
|
|
2192
2454
|
};
|
|
2193
2455
|
readonly words: {
|
|
2194
2456
|
type: "string";
|
|
@@ -2207,11 +2469,15 @@ export declare const marcoZero: {
|
|
|
2207
2469
|
type: "string";
|
|
2208
2470
|
optional: false;
|
|
2209
2471
|
customType: string;
|
|
2472
|
+
} & {
|
|
2473
|
+
serverName: string;
|
|
2210
2474
|
};
|
|
2211
2475
|
readonly threadId: {
|
|
2212
2476
|
type: "string";
|
|
2213
2477
|
optional: false;
|
|
2214
2478
|
customType: string;
|
|
2479
|
+
} & {
|
|
2480
|
+
serverName: string;
|
|
2215
2481
|
};
|
|
2216
2482
|
};
|
|
2217
2483
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2225,6 +2491,8 @@ export declare const marcoZero: {
|
|
|
2225
2491
|
type: "number";
|
|
2226
2492
|
optional: false;
|
|
2227
2493
|
customType: number;
|
|
2494
|
+
} & {
|
|
2495
|
+
serverName: string;
|
|
2228
2496
|
};
|
|
2229
2497
|
readonly envelopeSubject: Omit<{
|
|
2230
2498
|
type: "string";
|
|
@@ -2232,6 +2500,8 @@ export declare const marcoZero: {
|
|
|
2232
2500
|
customType: string;
|
|
2233
2501
|
}, "optional"> & {
|
|
2234
2502
|
optional: true;
|
|
2503
|
+
} & {
|
|
2504
|
+
serverName: string;
|
|
2235
2505
|
};
|
|
2236
2506
|
readonly id: {
|
|
2237
2507
|
type: "string";
|
|
@@ -2242,11 +2512,15 @@ export declare const marcoZero: {
|
|
|
2242
2512
|
type: "string";
|
|
2243
2513
|
optional: false;
|
|
2244
2514
|
customType: string;
|
|
2515
|
+
} & {
|
|
2516
|
+
serverName: string;
|
|
2245
2517
|
};
|
|
2246
2518
|
readonly senderEmail: {
|
|
2247
2519
|
type: "string";
|
|
2248
2520
|
optional: false;
|
|
2249
2521
|
customType: string;
|
|
2522
|
+
} & {
|
|
2523
|
+
serverName: string;
|
|
2250
2524
|
};
|
|
2251
2525
|
readonly senderName: Omit<{
|
|
2252
2526
|
type: "string";
|
|
@@ -2254,11 +2528,15 @@ export declare const marcoZero: {
|
|
|
2254
2528
|
customType: string;
|
|
2255
2529
|
}, "optional"> & {
|
|
2256
2530
|
optional: true;
|
|
2531
|
+
} & {
|
|
2532
|
+
serverName: string;
|
|
2257
2533
|
};
|
|
2258
2534
|
readonly threadId: {
|
|
2259
2535
|
type: "string";
|
|
2260
2536
|
optional: false;
|
|
2261
2537
|
customType: string;
|
|
2538
|
+
} & {
|
|
2539
|
+
serverName: string;
|
|
2262
2540
|
};
|
|
2263
2541
|
};
|
|
2264
2542
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2272,6 +2550,8 @@ export declare const marcoZero: {
|
|
|
2272
2550
|
type: "string";
|
|
2273
2551
|
optional: false;
|
|
2274
2552
|
customType: string;
|
|
2553
|
+
} & {
|
|
2554
|
+
serverName: string;
|
|
2275
2555
|
};
|
|
2276
2556
|
readonly id: {
|
|
2277
2557
|
type: "string";
|
|
@@ -2289,6 +2569,8 @@ export declare const marcoZero: {
|
|
|
2289
2569
|
type: "string";
|
|
2290
2570
|
optional: false;
|
|
2291
2571
|
customType: string;
|
|
2572
|
+
} & {
|
|
2573
|
+
serverName: string;
|
|
2292
2574
|
};
|
|
2293
2575
|
readonly type: {
|
|
2294
2576
|
type: "string";
|
|
@@ -2307,6 +2589,8 @@ export declare const marcoZero: {
|
|
|
2307
2589
|
type: "string";
|
|
2308
2590
|
optional: false;
|
|
2309
2591
|
customType: string;
|
|
2592
|
+
} & {
|
|
2593
|
+
serverName: string;
|
|
2310
2594
|
};
|
|
2311
2595
|
readonly id: {
|
|
2312
2596
|
type: "string";
|
|
@@ -2317,6 +2601,8 @@ export declare const marcoZero: {
|
|
|
2317
2601
|
type: "string";
|
|
2318
2602
|
optional: false;
|
|
2319
2603
|
customType: string;
|
|
2604
|
+
} & {
|
|
2605
|
+
serverName: string;
|
|
2320
2606
|
};
|
|
2321
2607
|
readonly size: {
|
|
2322
2608
|
type: "number";
|
|
@@ -2332,6 +2618,8 @@ export declare const marcoZero: {
|
|
|
2332
2618
|
type: "string";
|
|
2333
2619
|
optional: false;
|
|
2334
2620
|
customType: string;
|
|
2621
|
+
} & {
|
|
2622
|
+
serverName: string;
|
|
2335
2623
|
};
|
|
2336
2624
|
};
|
|
2337
2625
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2345,11 +2633,15 @@ export declare const marcoZero: {
|
|
|
2345
2633
|
type: "string";
|
|
2346
2634
|
optional: false;
|
|
2347
2635
|
customType: string;
|
|
2636
|
+
} & {
|
|
2637
|
+
serverName: string;
|
|
2348
2638
|
};
|
|
2349
2639
|
readonly threadMessageId: {
|
|
2350
2640
|
type: "string";
|
|
2351
2641
|
optional: false;
|
|
2352
2642
|
customType: string;
|
|
2643
|
+
} & {
|
|
2644
|
+
serverName: string;
|
|
2353
2645
|
};
|
|
2354
2646
|
};
|
|
2355
2647
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2361,7 +2653,7 @@ export declare const marcoZero: {
|
|
|
2361
2653
|
readonly user: {
|
|
2362
2654
|
accounts: [{
|
|
2363
2655
|
readonly sourceField: string[];
|
|
2364
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2656
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2365
2657
|
readonly destSchema: "account";
|
|
2366
2658
|
readonly cardinality: "many";
|
|
2367
2659
|
}];
|
|
@@ -2373,7 +2665,7 @@ export declare const marcoZero: {
|
|
|
2373
2665
|
}];
|
|
2374
2666
|
drafts: [{
|
|
2375
2667
|
readonly sourceField: string[];
|
|
2376
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
2668
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
2377
2669
|
readonly destSchema: "draft";
|
|
2378
2670
|
readonly cardinality: "many";
|
|
2379
2671
|
}];
|
|
@@ -2393,7 +2685,7 @@ export declare const marcoZero: {
|
|
|
2393
2685
|
readonly userPushNotificationToken: {
|
|
2394
2686
|
user: [{
|
|
2395
2687
|
readonly sourceField: string[];
|
|
2396
|
-
readonly destField: ("id" | "name" | "
|
|
2688
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2397
2689
|
readonly destSchema: "user";
|
|
2398
2690
|
readonly cardinality: "one";
|
|
2399
2691
|
}];
|
|
@@ -2401,7 +2693,7 @@ export declare const marcoZero: {
|
|
|
2401
2693
|
readonly contact: {
|
|
2402
2694
|
user: [{
|
|
2403
2695
|
readonly sourceField: string[];
|
|
2404
|
-
readonly destField: ("id" | "name" | "
|
|
2696
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2405
2697
|
readonly destSchema: "user";
|
|
2406
2698
|
readonly cardinality: "one";
|
|
2407
2699
|
}];
|
|
@@ -2415,7 +2707,7 @@ export declare const marcoZero: {
|
|
|
2415
2707
|
}];
|
|
2416
2708
|
drafts: [{
|
|
2417
2709
|
readonly sourceField: string[];
|
|
2418
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
2710
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
2419
2711
|
readonly destSchema: "draft";
|
|
2420
2712
|
readonly cardinality: "many";
|
|
2421
2713
|
}];
|
|
@@ -2439,7 +2731,7 @@ export declare const marcoZero: {
|
|
|
2439
2731
|
}];
|
|
2440
2732
|
user: [{
|
|
2441
2733
|
readonly sourceField: string[];
|
|
2442
|
-
readonly destField: ("id" | "name" | "
|
|
2734
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2443
2735
|
readonly destSchema: "user";
|
|
2444
2736
|
readonly cardinality: "one";
|
|
2445
2737
|
}];
|
|
@@ -2447,7 +2739,7 @@ export declare const marcoZero: {
|
|
|
2447
2739
|
readonly accountAlias: {
|
|
2448
2740
|
account: [{
|
|
2449
2741
|
readonly sourceField: string[];
|
|
2450
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2742
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2451
2743
|
readonly destSchema: "account";
|
|
2452
2744
|
readonly cardinality: "one";
|
|
2453
2745
|
}];
|
|
@@ -2455,7 +2747,7 @@ export declare const marcoZero: {
|
|
|
2455
2747
|
readonly accountLabel: {
|
|
2456
2748
|
account: [{
|
|
2457
2749
|
readonly sourceField: string[];
|
|
2458
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2750
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2459
2751
|
readonly destSchema: "account";
|
|
2460
2752
|
readonly cardinality: "one";
|
|
2461
2753
|
}];
|
|
@@ -2466,7 +2758,7 @@ export declare const marcoZero: {
|
|
|
2466
2758
|
readonly cardinality: "many";
|
|
2467
2759
|
}, {
|
|
2468
2760
|
readonly sourceField: string[];
|
|
2469
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2761
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2470
2762
|
readonly destSchema: "threadMessage";
|
|
2471
2763
|
readonly cardinality: "many";
|
|
2472
2764
|
}];
|
|
@@ -2485,7 +2777,7 @@ export declare const marcoZero: {
|
|
|
2485
2777
|
readonly draft: {
|
|
2486
2778
|
account: [{
|
|
2487
2779
|
readonly sourceField: string[];
|
|
2488
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2780
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2489
2781
|
readonly destSchema: "account";
|
|
2490
2782
|
readonly cardinality: "one";
|
|
2491
2783
|
}];
|
|
@@ -2503,7 +2795,7 @@ export declare const marcoZero: {
|
|
|
2503
2795
|
}];
|
|
2504
2796
|
user: [{
|
|
2505
2797
|
readonly sourceField: string[];
|
|
2506
|
-
readonly destField: ("id" | "name" | "
|
|
2798
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2507
2799
|
readonly destSchema: "user";
|
|
2508
2800
|
readonly cardinality: "one";
|
|
2509
2801
|
}];
|
|
@@ -2511,7 +2803,7 @@ export declare const marcoZero: {
|
|
|
2511
2803
|
readonly draftRecipient: {
|
|
2512
2804
|
draft: [{
|
|
2513
2805
|
readonly sourceField: string[];
|
|
2514
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
2806
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
2515
2807
|
readonly destSchema: "draft";
|
|
2516
2808
|
readonly cardinality: "one";
|
|
2517
2809
|
}];
|
|
@@ -2519,7 +2811,7 @@ export declare const marcoZero: {
|
|
|
2519
2811
|
readonly draftAttachment: {
|
|
2520
2812
|
draft: [{
|
|
2521
2813
|
readonly sourceField: string[];
|
|
2522
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
2814
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
2523
2815
|
readonly destSchema: "draft";
|
|
2524
2816
|
readonly cardinality: "one";
|
|
2525
2817
|
}];
|
|
@@ -2527,7 +2819,7 @@ export declare const marcoZero: {
|
|
|
2527
2819
|
readonly thread: {
|
|
2528
2820
|
account: [{
|
|
2529
2821
|
readonly sourceField: string[];
|
|
2530
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
2822
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
2531
2823
|
readonly destSchema: "account";
|
|
2532
2824
|
readonly cardinality: "one";
|
|
2533
2825
|
}];
|
|
@@ -2544,13 +2836,13 @@ export declare const marcoZero: {
|
|
|
2544
2836
|
}];
|
|
2545
2837
|
messages: [{
|
|
2546
2838
|
readonly sourceField: string[];
|
|
2547
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2839
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2548
2840
|
readonly destSchema: "threadMessage";
|
|
2549
2841
|
readonly cardinality: "many";
|
|
2550
2842
|
}];
|
|
2551
2843
|
user: [{
|
|
2552
2844
|
readonly sourceField: string[];
|
|
2553
|
-
readonly destField: ("id" | "name" | "
|
|
2845
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
2554
2846
|
readonly destSchema: "user";
|
|
2555
2847
|
readonly cardinality: "one";
|
|
2556
2848
|
}];
|
|
@@ -2603,7 +2895,7 @@ export declare const marcoZero: {
|
|
|
2603
2895
|
readonly threadMessageRecipient: {
|
|
2604
2896
|
message: [{
|
|
2605
2897
|
readonly sourceField: string[];
|
|
2606
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2898
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2607
2899
|
readonly destSchema: "threadMessage";
|
|
2608
2900
|
readonly cardinality: "one";
|
|
2609
2901
|
}];
|
|
@@ -2611,7 +2903,7 @@ export declare const marcoZero: {
|
|
|
2611
2903
|
readonly threadMessageAttachment: {
|
|
2612
2904
|
message: [{
|
|
2613
2905
|
readonly sourceField: string[];
|
|
2614
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2906
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2615
2907
|
readonly destSchema: "threadMessage";
|
|
2616
2908
|
readonly cardinality: "one";
|
|
2617
2909
|
}];
|
|
@@ -2625,7 +2917,7 @@ export declare const marcoZero: {
|
|
|
2625
2917
|
}];
|
|
2626
2918
|
message: [{
|
|
2627
2919
|
readonly sourceField: string[];
|
|
2628
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
2920
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
2629
2921
|
readonly destSchema: "threadMessage";
|
|
2630
2922
|
readonly cardinality: "one";
|
|
2631
2923
|
}];
|
|
@@ -2690,16 +2982,9 @@ export declare const marcoZero: {
|
|
|
2690
2982
|
readonly totalSize: number;
|
|
2691
2983
|
readonly uploadedChunks: number;
|
|
2692
2984
|
}[];
|
|
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
2985
|
}>>;
|
|
2701
2986
|
readonly getThreads: import("@rocicorp/zero").SyncedQuery<"getThreads", import("..").MarcoSyncedQueryContext, true, [{
|
|
2702
|
-
limit
|
|
2987
|
+
limit: number;
|
|
2703
2988
|
search?: string;
|
|
2704
2989
|
where?: {
|
|
2705
2990
|
flagged?: boolean;
|
|
@@ -2731,11 +3016,15 @@ export declare const marcoZero: {
|
|
|
2731
3016
|
customType: string;
|
|
2732
3017
|
}, "optional"> & {
|
|
2733
3018
|
optional: true;
|
|
3019
|
+
} & {
|
|
3020
|
+
serverName: string;
|
|
2734
3021
|
};
|
|
2735
3022
|
readonly undoSendEnabled: {
|
|
2736
3023
|
type: "boolean";
|
|
2737
3024
|
optional: false;
|
|
2738
3025
|
customType: boolean;
|
|
3026
|
+
} & {
|
|
3027
|
+
serverName: string;
|
|
2739
3028
|
};
|
|
2740
3029
|
};
|
|
2741
3030
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2749,6 +3038,8 @@ export declare const marcoZero: {
|
|
|
2749
3038
|
type: "number";
|
|
2750
3039
|
optional: false;
|
|
2751
3040
|
customType: number;
|
|
3041
|
+
} & {
|
|
3042
|
+
serverName: string;
|
|
2752
3043
|
};
|
|
2753
3044
|
readonly id: {
|
|
2754
3045
|
type: "string";
|
|
@@ -2764,6 +3055,8 @@ export declare const marcoZero: {
|
|
|
2764
3055
|
type: "string";
|
|
2765
3056
|
optional: false;
|
|
2766
3057
|
customType: string;
|
|
3058
|
+
} & {
|
|
3059
|
+
serverName: string;
|
|
2767
3060
|
};
|
|
2768
3061
|
};
|
|
2769
3062
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2777,6 +3070,8 @@ export declare const marcoZero: {
|
|
|
2777
3070
|
type: "string";
|
|
2778
3071
|
optional: false;
|
|
2779
3072
|
customType: string;
|
|
3073
|
+
} & {
|
|
3074
|
+
serverName: string;
|
|
2780
3075
|
};
|
|
2781
3076
|
readonly id: {
|
|
2782
3077
|
type: "string";
|
|
@@ -2794,6 +3089,8 @@ export declare const marcoZero: {
|
|
|
2794
3089
|
type: "string";
|
|
2795
3090
|
optional: false;
|
|
2796
3091
|
customType: string;
|
|
3092
|
+
} & {
|
|
3093
|
+
serverName: string;
|
|
2797
3094
|
};
|
|
2798
3095
|
};
|
|
2799
3096
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2814,6 +3111,8 @@ export declare const marcoZero: {
|
|
|
2814
3111
|
customType: string;
|
|
2815
3112
|
}, "optional"> & {
|
|
2816
3113
|
optional: true;
|
|
3114
|
+
} & {
|
|
3115
|
+
serverName: string;
|
|
2817
3116
|
};
|
|
2818
3117
|
readonly id: {
|
|
2819
3118
|
type: "string";
|
|
@@ -2824,16 +3123,22 @@ export declare const marcoZero: {
|
|
|
2824
3123
|
type: "string";
|
|
2825
3124
|
optional: false;
|
|
2826
3125
|
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";
|
|
3126
|
+
} & {
|
|
3127
|
+
serverName: string;
|
|
2827
3128
|
};
|
|
2828
3129
|
readonly mailProcessedCount: {
|
|
2829
3130
|
type: "number";
|
|
2830
3131
|
optional: false;
|
|
2831
3132
|
customType: number;
|
|
3133
|
+
} & {
|
|
3134
|
+
serverName: string;
|
|
2832
3135
|
};
|
|
2833
3136
|
readonly mailTotalCount: {
|
|
2834
3137
|
type: "number";
|
|
2835
3138
|
optional: false;
|
|
2836
3139
|
customType: number;
|
|
3140
|
+
} & {
|
|
3141
|
+
serverName: string;
|
|
2837
3142
|
};
|
|
2838
3143
|
readonly primaryAliasId: Omit<{
|
|
2839
3144
|
type: "string";
|
|
@@ -2841,11 +3146,15 @@ export declare const marcoZero: {
|
|
|
2841
3146
|
customType: string;
|
|
2842
3147
|
}, "optional"> & {
|
|
2843
3148
|
optional: true;
|
|
3149
|
+
} & {
|
|
3150
|
+
serverName: string;
|
|
2844
3151
|
};
|
|
2845
3152
|
readonly userId: {
|
|
2846
3153
|
type: "string";
|
|
2847
3154
|
optional: false;
|
|
2848
3155
|
customType: string;
|
|
3156
|
+
} & {
|
|
3157
|
+
serverName: string;
|
|
2849
3158
|
};
|
|
2850
3159
|
};
|
|
2851
3160
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2859,11 +3168,15 @@ export declare const marcoZero: {
|
|
|
2859
3168
|
type: "string";
|
|
2860
3169
|
optional: false;
|
|
2861
3170
|
customType: string;
|
|
3171
|
+
} & {
|
|
3172
|
+
serverName: string;
|
|
2862
3173
|
};
|
|
2863
3174
|
readonly emailAddress: {
|
|
2864
3175
|
type: "string";
|
|
2865
3176
|
optional: false;
|
|
2866
3177
|
customType: string;
|
|
3178
|
+
} & {
|
|
3179
|
+
serverName: string;
|
|
2867
3180
|
};
|
|
2868
3181
|
readonly id: {
|
|
2869
3182
|
type: "string";
|
|
@@ -2874,6 +3187,8 @@ export declare const marcoZero: {
|
|
|
2874
3187
|
type: "boolean";
|
|
2875
3188
|
optional: false;
|
|
2876
3189
|
customType: boolean;
|
|
3190
|
+
} & {
|
|
3191
|
+
serverName: string;
|
|
2877
3192
|
};
|
|
2878
3193
|
readonly name: Omit<{
|
|
2879
3194
|
type: "string";
|
|
@@ -2894,6 +3209,8 @@ export declare const marcoZero: {
|
|
|
2894
3209
|
type: "string";
|
|
2895
3210
|
optional: false;
|
|
2896
3211
|
customType: string;
|
|
3212
|
+
} & {
|
|
3213
|
+
serverName: string;
|
|
2897
3214
|
};
|
|
2898
3215
|
readonly id: {
|
|
2899
3216
|
type: "string";
|
|
@@ -2911,6 +3228,8 @@ export declare const marcoZero: {
|
|
|
2911
3228
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
2912
3229
|
}, "optional"> & {
|
|
2913
3230
|
optional: true;
|
|
3231
|
+
} & {
|
|
3232
|
+
serverName: string;
|
|
2914
3233
|
};
|
|
2915
3234
|
};
|
|
2916
3235
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2924,6 +3243,8 @@ export declare const marcoZero: {
|
|
|
2924
3243
|
type: "string";
|
|
2925
3244
|
optional: false;
|
|
2926
3245
|
customType: string;
|
|
3246
|
+
} & {
|
|
3247
|
+
serverName: string;
|
|
2927
3248
|
};
|
|
2928
3249
|
readonly body: {
|
|
2929
3250
|
type: "json";
|
|
@@ -2948,11 +3269,15 @@ export declare const marcoZero: {
|
|
|
2948
3269
|
customType: string;
|
|
2949
3270
|
}, "optional"> & {
|
|
2950
3271
|
optional: true;
|
|
3272
|
+
} & {
|
|
3273
|
+
serverName: string;
|
|
2951
3274
|
};
|
|
2952
3275
|
readonly fromEmail: {
|
|
2953
3276
|
type: "string";
|
|
2954
3277
|
optional: false;
|
|
2955
3278
|
customType: string;
|
|
3279
|
+
} & {
|
|
3280
|
+
serverName: string;
|
|
2956
3281
|
};
|
|
2957
3282
|
readonly fromName: Omit<{
|
|
2958
3283
|
type: "string";
|
|
@@ -2960,6 +3285,8 @@ export declare const marcoZero: {
|
|
|
2960
3285
|
customType: string;
|
|
2961
3286
|
}, "optional"> & {
|
|
2962
3287
|
optional: true;
|
|
3288
|
+
} & {
|
|
3289
|
+
serverName: string;
|
|
2963
3290
|
};
|
|
2964
3291
|
readonly id: {
|
|
2965
3292
|
type: "string";
|
|
@@ -2972,6 +3299,8 @@ export declare const marcoZero: {
|
|
|
2972
3299
|
customType: string;
|
|
2973
3300
|
}, "optional"> & {
|
|
2974
3301
|
optional: true;
|
|
3302
|
+
} & {
|
|
3303
|
+
serverName: string;
|
|
2975
3304
|
};
|
|
2976
3305
|
readonly scheduledFor: Omit<{
|
|
2977
3306
|
type: "number";
|
|
@@ -2979,6 +3308,8 @@ export declare const marcoZero: {
|
|
|
2979
3308
|
customType: number;
|
|
2980
3309
|
}, "optional"> & {
|
|
2981
3310
|
optional: true;
|
|
3311
|
+
} & {
|
|
3312
|
+
serverName: string;
|
|
2982
3313
|
};
|
|
2983
3314
|
readonly status: {
|
|
2984
3315
|
type: "string";
|
|
@@ -3001,11 +3332,15 @@ export declare const marcoZero: {
|
|
|
3001
3332
|
type: "number";
|
|
3002
3333
|
optional: false;
|
|
3003
3334
|
customType: number;
|
|
3335
|
+
} & {
|
|
3336
|
+
serverName: string;
|
|
3004
3337
|
};
|
|
3005
3338
|
readonly userId: {
|
|
3006
3339
|
type: "string";
|
|
3007
3340
|
optional: false;
|
|
3008
3341
|
customType: string;
|
|
3342
|
+
} & {
|
|
3343
|
+
serverName: string;
|
|
3009
3344
|
};
|
|
3010
3345
|
};
|
|
3011
3346
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3019,11 +3354,15 @@ export declare const marcoZero: {
|
|
|
3019
3354
|
type: "string";
|
|
3020
3355
|
optional: false;
|
|
3021
3356
|
customType: string;
|
|
3357
|
+
} & {
|
|
3358
|
+
serverName: string;
|
|
3022
3359
|
};
|
|
3023
3360
|
readonly emailAddress: {
|
|
3024
3361
|
type: "string";
|
|
3025
3362
|
optional: false;
|
|
3026
3363
|
customType: string;
|
|
3364
|
+
} & {
|
|
3365
|
+
serverName: string;
|
|
3027
3366
|
};
|
|
3028
3367
|
readonly id: {
|
|
3029
3368
|
type: "string";
|
|
@@ -3047,6 +3386,8 @@ export declare const marcoZero: {
|
|
|
3047
3386
|
type: "string";
|
|
3048
3387
|
optional: false;
|
|
3049
3388
|
customType: string;
|
|
3389
|
+
} & {
|
|
3390
|
+
serverName: string;
|
|
3050
3391
|
};
|
|
3051
3392
|
readonly failed: {
|
|
3052
3393
|
type: "boolean";
|
|
@@ -3057,6 +3398,8 @@ export declare const marcoZero: {
|
|
|
3057
3398
|
type: "string";
|
|
3058
3399
|
optional: false;
|
|
3059
3400
|
customType: string;
|
|
3401
|
+
} & {
|
|
3402
|
+
serverName: string;
|
|
3060
3403
|
};
|
|
3061
3404
|
readonly id: {
|
|
3062
3405
|
type: "string";
|
|
@@ -3067,21 +3410,29 @@ export declare const marcoZero: {
|
|
|
3067
3410
|
type: "string";
|
|
3068
3411
|
optional: false;
|
|
3069
3412
|
customType: string;
|
|
3413
|
+
} & {
|
|
3414
|
+
serverName: string;
|
|
3070
3415
|
};
|
|
3071
3416
|
readonly totalChunks: {
|
|
3072
3417
|
type: "number";
|
|
3073
3418
|
optional: false;
|
|
3074
3419
|
customType: number;
|
|
3420
|
+
} & {
|
|
3421
|
+
serverName: string;
|
|
3075
3422
|
};
|
|
3076
3423
|
readonly totalSize: {
|
|
3077
3424
|
type: "number";
|
|
3078
3425
|
optional: false;
|
|
3079
3426
|
customType: number;
|
|
3427
|
+
} & {
|
|
3428
|
+
serverName: string;
|
|
3080
3429
|
};
|
|
3081
3430
|
readonly uploadedChunks: {
|
|
3082
3431
|
type: "number";
|
|
3083
3432
|
optional: false;
|
|
3084
3433
|
customType: number;
|
|
3434
|
+
} & {
|
|
3435
|
+
serverName: string;
|
|
3085
3436
|
};
|
|
3086
3437
|
};
|
|
3087
3438
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3095,6 +3446,8 @@ export declare const marcoZero: {
|
|
|
3095
3446
|
type: "string";
|
|
3096
3447
|
optional: false;
|
|
3097
3448
|
customType: string;
|
|
3449
|
+
} & {
|
|
3450
|
+
serverName: string;
|
|
3098
3451
|
};
|
|
3099
3452
|
readonly flagged: {
|
|
3100
3453
|
type: "boolean";
|
|
@@ -3110,6 +3463,8 @@ export declare const marcoZero: {
|
|
|
3110
3463
|
type: "number";
|
|
3111
3464
|
optional: false;
|
|
3112
3465
|
customType: number;
|
|
3466
|
+
} & {
|
|
3467
|
+
serverName: string;
|
|
3113
3468
|
};
|
|
3114
3469
|
readonly seen: {
|
|
3115
3470
|
type: "boolean";
|
|
@@ -3120,6 +3475,8 @@ export declare const marcoZero: {
|
|
|
3120
3475
|
type: "string";
|
|
3121
3476
|
optional: false;
|
|
3122
3477
|
customType: string;
|
|
3478
|
+
} & {
|
|
3479
|
+
serverName: string;
|
|
3123
3480
|
};
|
|
3124
3481
|
readonly words: {
|
|
3125
3482
|
type: "string";
|
|
@@ -3138,11 +3495,15 @@ export declare const marcoZero: {
|
|
|
3138
3495
|
type: "string";
|
|
3139
3496
|
optional: false;
|
|
3140
3497
|
customType: string;
|
|
3498
|
+
} & {
|
|
3499
|
+
serverName: string;
|
|
3141
3500
|
};
|
|
3142
3501
|
readonly threadId: {
|
|
3143
3502
|
type: "string";
|
|
3144
3503
|
optional: false;
|
|
3145
3504
|
customType: string;
|
|
3505
|
+
} & {
|
|
3506
|
+
serverName: string;
|
|
3146
3507
|
};
|
|
3147
3508
|
};
|
|
3148
3509
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3156,6 +3517,8 @@ export declare const marcoZero: {
|
|
|
3156
3517
|
type: "number";
|
|
3157
3518
|
optional: false;
|
|
3158
3519
|
customType: number;
|
|
3520
|
+
} & {
|
|
3521
|
+
serverName: string;
|
|
3159
3522
|
};
|
|
3160
3523
|
readonly envelopeSubject: Omit<{
|
|
3161
3524
|
type: "string";
|
|
@@ -3163,6 +3526,8 @@ export declare const marcoZero: {
|
|
|
3163
3526
|
customType: string;
|
|
3164
3527
|
}, "optional"> & {
|
|
3165
3528
|
optional: true;
|
|
3529
|
+
} & {
|
|
3530
|
+
serverName: string;
|
|
3166
3531
|
};
|
|
3167
3532
|
readonly id: {
|
|
3168
3533
|
type: "string";
|
|
@@ -3173,11 +3538,15 @@ export declare const marcoZero: {
|
|
|
3173
3538
|
type: "string";
|
|
3174
3539
|
optional: false;
|
|
3175
3540
|
customType: string;
|
|
3541
|
+
} & {
|
|
3542
|
+
serverName: string;
|
|
3176
3543
|
};
|
|
3177
3544
|
readonly senderEmail: {
|
|
3178
3545
|
type: "string";
|
|
3179
3546
|
optional: false;
|
|
3180
3547
|
customType: string;
|
|
3548
|
+
} & {
|
|
3549
|
+
serverName: string;
|
|
3181
3550
|
};
|
|
3182
3551
|
readonly senderName: Omit<{
|
|
3183
3552
|
type: "string";
|
|
@@ -3185,11 +3554,15 @@ export declare const marcoZero: {
|
|
|
3185
3554
|
customType: string;
|
|
3186
3555
|
}, "optional"> & {
|
|
3187
3556
|
optional: true;
|
|
3557
|
+
} & {
|
|
3558
|
+
serverName: string;
|
|
3188
3559
|
};
|
|
3189
3560
|
readonly threadId: {
|
|
3190
3561
|
type: "string";
|
|
3191
3562
|
optional: false;
|
|
3192
3563
|
customType: string;
|
|
3564
|
+
} & {
|
|
3565
|
+
serverName: string;
|
|
3193
3566
|
};
|
|
3194
3567
|
};
|
|
3195
3568
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3203,6 +3576,8 @@ export declare const marcoZero: {
|
|
|
3203
3576
|
type: "string";
|
|
3204
3577
|
optional: false;
|
|
3205
3578
|
customType: string;
|
|
3579
|
+
} & {
|
|
3580
|
+
serverName: string;
|
|
3206
3581
|
};
|
|
3207
3582
|
readonly id: {
|
|
3208
3583
|
type: "string";
|
|
@@ -3220,6 +3595,8 @@ export declare const marcoZero: {
|
|
|
3220
3595
|
type: "string";
|
|
3221
3596
|
optional: false;
|
|
3222
3597
|
customType: string;
|
|
3598
|
+
} & {
|
|
3599
|
+
serverName: string;
|
|
3223
3600
|
};
|
|
3224
3601
|
readonly type: {
|
|
3225
3602
|
type: "string";
|
|
@@ -3238,6 +3615,8 @@ export declare const marcoZero: {
|
|
|
3238
3615
|
type: "string";
|
|
3239
3616
|
optional: false;
|
|
3240
3617
|
customType: string;
|
|
3618
|
+
} & {
|
|
3619
|
+
serverName: string;
|
|
3241
3620
|
};
|
|
3242
3621
|
readonly id: {
|
|
3243
3622
|
type: "string";
|
|
@@ -3248,6 +3627,8 @@ export declare const marcoZero: {
|
|
|
3248
3627
|
type: "string";
|
|
3249
3628
|
optional: false;
|
|
3250
3629
|
customType: string;
|
|
3630
|
+
} & {
|
|
3631
|
+
serverName: string;
|
|
3251
3632
|
};
|
|
3252
3633
|
readonly size: {
|
|
3253
3634
|
type: "number";
|
|
@@ -3263,6 +3644,8 @@ export declare const marcoZero: {
|
|
|
3263
3644
|
type: "string";
|
|
3264
3645
|
optional: false;
|
|
3265
3646
|
customType: string;
|
|
3647
|
+
} & {
|
|
3648
|
+
serverName: string;
|
|
3266
3649
|
};
|
|
3267
3650
|
};
|
|
3268
3651
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3276,11 +3659,15 @@ export declare const marcoZero: {
|
|
|
3276
3659
|
type: "string";
|
|
3277
3660
|
optional: false;
|
|
3278
3661
|
customType: string;
|
|
3662
|
+
} & {
|
|
3663
|
+
serverName: string;
|
|
3279
3664
|
};
|
|
3280
3665
|
readonly threadMessageId: {
|
|
3281
3666
|
type: "string";
|
|
3282
3667
|
optional: false;
|
|
3283
3668
|
customType: string;
|
|
3669
|
+
} & {
|
|
3670
|
+
serverName: string;
|
|
3284
3671
|
};
|
|
3285
3672
|
};
|
|
3286
3673
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3292,7 +3679,7 @@ export declare const marcoZero: {
|
|
|
3292
3679
|
readonly user: {
|
|
3293
3680
|
accounts: [{
|
|
3294
3681
|
readonly sourceField: string[];
|
|
3295
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3682
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3296
3683
|
readonly destSchema: "account";
|
|
3297
3684
|
readonly cardinality: "many";
|
|
3298
3685
|
}];
|
|
@@ -3304,7 +3691,7 @@ export declare const marcoZero: {
|
|
|
3304
3691
|
}];
|
|
3305
3692
|
drafts: [{
|
|
3306
3693
|
readonly sourceField: string[];
|
|
3307
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
3694
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
3308
3695
|
readonly destSchema: "draft";
|
|
3309
3696
|
readonly cardinality: "many";
|
|
3310
3697
|
}];
|
|
@@ -3324,7 +3711,7 @@ export declare const marcoZero: {
|
|
|
3324
3711
|
readonly userPushNotificationToken: {
|
|
3325
3712
|
user: [{
|
|
3326
3713
|
readonly sourceField: string[];
|
|
3327
|
-
readonly destField: ("id" | "name" | "
|
|
3714
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3328
3715
|
readonly destSchema: "user";
|
|
3329
3716
|
readonly cardinality: "one";
|
|
3330
3717
|
}];
|
|
@@ -3332,7 +3719,7 @@ export declare const marcoZero: {
|
|
|
3332
3719
|
readonly contact: {
|
|
3333
3720
|
user: [{
|
|
3334
3721
|
readonly sourceField: string[];
|
|
3335
|
-
readonly destField: ("id" | "name" | "
|
|
3722
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3336
3723
|
readonly destSchema: "user";
|
|
3337
3724
|
readonly cardinality: "one";
|
|
3338
3725
|
}];
|
|
@@ -3346,7 +3733,7 @@ export declare const marcoZero: {
|
|
|
3346
3733
|
}];
|
|
3347
3734
|
drafts: [{
|
|
3348
3735
|
readonly sourceField: string[];
|
|
3349
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
3736
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
3350
3737
|
readonly destSchema: "draft";
|
|
3351
3738
|
readonly cardinality: "many";
|
|
3352
3739
|
}];
|
|
@@ -3370,7 +3757,7 @@ export declare const marcoZero: {
|
|
|
3370
3757
|
}];
|
|
3371
3758
|
user: [{
|
|
3372
3759
|
readonly sourceField: string[];
|
|
3373
|
-
readonly destField: ("id" | "name" | "
|
|
3760
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3374
3761
|
readonly destSchema: "user";
|
|
3375
3762
|
readonly cardinality: "one";
|
|
3376
3763
|
}];
|
|
@@ -3378,7 +3765,7 @@ export declare const marcoZero: {
|
|
|
3378
3765
|
readonly accountAlias: {
|
|
3379
3766
|
account: [{
|
|
3380
3767
|
readonly sourceField: string[];
|
|
3381
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3768
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3382
3769
|
readonly destSchema: "account";
|
|
3383
3770
|
readonly cardinality: "one";
|
|
3384
3771
|
}];
|
|
@@ -3386,7 +3773,7 @@ export declare const marcoZero: {
|
|
|
3386
3773
|
readonly accountLabel: {
|
|
3387
3774
|
account: [{
|
|
3388
3775
|
readonly sourceField: string[];
|
|
3389
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3776
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3390
3777
|
readonly destSchema: "account";
|
|
3391
3778
|
readonly cardinality: "one";
|
|
3392
3779
|
}];
|
|
@@ -3397,7 +3784,7 @@ export declare const marcoZero: {
|
|
|
3397
3784
|
readonly cardinality: "many";
|
|
3398
3785
|
}, {
|
|
3399
3786
|
readonly sourceField: string[];
|
|
3400
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3787
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3401
3788
|
readonly destSchema: "threadMessage";
|
|
3402
3789
|
readonly cardinality: "many";
|
|
3403
3790
|
}];
|
|
@@ -3416,7 +3803,7 @@ export declare const marcoZero: {
|
|
|
3416
3803
|
readonly draft: {
|
|
3417
3804
|
account: [{
|
|
3418
3805
|
readonly sourceField: string[];
|
|
3419
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3806
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3420
3807
|
readonly destSchema: "account";
|
|
3421
3808
|
readonly cardinality: "one";
|
|
3422
3809
|
}];
|
|
@@ -3434,7 +3821,7 @@ export declare const marcoZero: {
|
|
|
3434
3821
|
}];
|
|
3435
3822
|
user: [{
|
|
3436
3823
|
readonly sourceField: string[];
|
|
3437
|
-
readonly destField: ("id" | "name" | "
|
|
3824
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3438
3825
|
readonly destSchema: "user";
|
|
3439
3826
|
readonly cardinality: "one";
|
|
3440
3827
|
}];
|
|
@@ -3442,7 +3829,7 @@ export declare const marcoZero: {
|
|
|
3442
3829
|
readonly draftRecipient: {
|
|
3443
3830
|
draft: [{
|
|
3444
3831
|
readonly sourceField: string[];
|
|
3445
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
3832
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
3446
3833
|
readonly destSchema: "draft";
|
|
3447
3834
|
readonly cardinality: "one";
|
|
3448
3835
|
}];
|
|
@@ -3450,7 +3837,7 @@ export declare const marcoZero: {
|
|
|
3450
3837
|
readonly draftAttachment: {
|
|
3451
3838
|
draft: [{
|
|
3452
3839
|
readonly sourceField: string[];
|
|
3453
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
3840
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
3454
3841
|
readonly destSchema: "draft";
|
|
3455
3842
|
readonly cardinality: "one";
|
|
3456
3843
|
}];
|
|
@@ -3458,7 +3845,7 @@ export declare const marcoZero: {
|
|
|
3458
3845
|
readonly thread: {
|
|
3459
3846
|
account: [{
|
|
3460
3847
|
readonly sourceField: string[];
|
|
3461
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
3848
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3462
3849
|
readonly destSchema: "account";
|
|
3463
3850
|
readonly cardinality: "one";
|
|
3464
3851
|
}];
|
|
@@ -3475,13 +3862,13 @@ export declare const marcoZero: {
|
|
|
3475
3862
|
}];
|
|
3476
3863
|
messages: [{
|
|
3477
3864
|
readonly sourceField: string[];
|
|
3478
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3865
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3479
3866
|
readonly destSchema: "threadMessage";
|
|
3480
3867
|
readonly cardinality: "many";
|
|
3481
3868
|
}];
|
|
3482
3869
|
user: [{
|
|
3483
3870
|
readonly sourceField: string[];
|
|
3484
|
-
readonly destField: ("id" | "name" | "
|
|
3871
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
3485
3872
|
readonly destSchema: "user";
|
|
3486
3873
|
readonly cardinality: "one";
|
|
3487
3874
|
}];
|
|
@@ -3534,7 +3921,7 @@ export declare const marcoZero: {
|
|
|
3534
3921
|
readonly threadMessageRecipient: {
|
|
3535
3922
|
message: [{
|
|
3536
3923
|
readonly sourceField: string[];
|
|
3537
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3924
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3538
3925
|
readonly destSchema: "threadMessage";
|
|
3539
3926
|
readonly cardinality: "one";
|
|
3540
3927
|
}];
|
|
@@ -3542,7 +3929,7 @@ export declare const marcoZero: {
|
|
|
3542
3929
|
readonly threadMessageAttachment: {
|
|
3543
3930
|
message: [{
|
|
3544
3931
|
readonly sourceField: string[];
|
|
3545
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3932
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3546
3933
|
readonly destSchema: "threadMessage";
|
|
3547
3934
|
readonly cardinality: "one";
|
|
3548
3935
|
}];
|
|
@@ -3556,7 +3943,7 @@ export declare const marcoZero: {
|
|
|
3556
3943
|
}];
|
|
3557
3944
|
message: [{
|
|
3558
3945
|
readonly sourceField: string[];
|
|
3559
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
3946
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
3560
3947
|
readonly destSchema: "threadMessage";
|
|
3561
3948
|
readonly cardinality: "one";
|
|
3562
3949
|
}];
|
|
@@ -3648,11 +4035,15 @@ export declare const marcoZero: {
|
|
|
3648
4035
|
customType: string;
|
|
3649
4036
|
}, "optional"> & {
|
|
3650
4037
|
optional: true;
|
|
4038
|
+
} & {
|
|
4039
|
+
serverName: string;
|
|
3651
4040
|
};
|
|
3652
4041
|
readonly undoSendEnabled: {
|
|
3653
4042
|
type: "boolean";
|
|
3654
4043
|
optional: false;
|
|
3655
4044
|
customType: boolean;
|
|
4045
|
+
} & {
|
|
4046
|
+
serverName: string;
|
|
3656
4047
|
};
|
|
3657
4048
|
};
|
|
3658
4049
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3666,6 +4057,8 @@ export declare const marcoZero: {
|
|
|
3666
4057
|
type: "number";
|
|
3667
4058
|
optional: false;
|
|
3668
4059
|
customType: number;
|
|
4060
|
+
} & {
|
|
4061
|
+
serverName: string;
|
|
3669
4062
|
};
|
|
3670
4063
|
readonly id: {
|
|
3671
4064
|
type: "string";
|
|
@@ -3681,6 +4074,8 @@ export declare const marcoZero: {
|
|
|
3681
4074
|
type: "string";
|
|
3682
4075
|
optional: false;
|
|
3683
4076
|
customType: string;
|
|
4077
|
+
} & {
|
|
4078
|
+
serverName: string;
|
|
3684
4079
|
};
|
|
3685
4080
|
};
|
|
3686
4081
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3694,6 +4089,8 @@ export declare const marcoZero: {
|
|
|
3694
4089
|
type: "string";
|
|
3695
4090
|
optional: false;
|
|
3696
4091
|
customType: string;
|
|
4092
|
+
} & {
|
|
4093
|
+
serverName: string;
|
|
3697
4094
|
};
|
|
3698
4095
|
readonly id: {
|
|
3699
4096
|
type: "string";
|
|
@@ -3711,6 +4108,8 @@ export declare const marcoZero: {
|
|
|
3711
4108
|
type: "string";
|
|
3712
4109
|
optional: false;
|
|
3713
4110
|
customType: string;
|
|
4111
|
+
} & {
|
|
4112
|
+
serverName: string;
|
|
3714
4113
|
};
|
|
3715
4114
|
};
|
|
3716
4115
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3731,6 +4130,8 @@ export declare const marcoZero: {
|
|
|
3731
4130
|
customType: string;
|
|
3732
4131
|
}, "optional"> & {
|
|
3733
4132
|
optional: true;
|
|
4133
|
+
} & {
|
|
4134
|
+
serverName: string;
|
|
3734
4135
|
};
|
|
3735
4136
|
readonly id: {
|
|
3736
4137
|
type: "string";
|
|
@@ -3741,16 +4142,22 @@ export declare const marcoZero: {
|
|
|
3741
4142
|
type: "string";
|
|
3742
4143
|
optional: false;
|
|
3743
4144
|
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";
|
|
4145
|
+
} & {
|
|
4146
|
+
serverName: string;
|
|
3744
4147
|
};
|
|
3745
4148
|
readonly mailProcessedCount: {
|
|
3746
4149
|
type: "number";
|
|
3747
4150
|
optional: false;
|
|
3748
4151
|
customType: number;
|
|
4152
|
+
} & {
|
|
4153
|
+
serverName: string;
|
|
3749
4154
|
};
|
|
3750
4155
|
readonly mailTotalCount: {
|
|
3751
4156
|
type: "number";
|
|
3752
4157
|
optional: false;
|
|
3753
4158
|
customType: number;
|
|
4159
|
+
} & {
|
|
4160
|
+
serverName: string;
|
|
3754
4161
|
};
|
|
3755
4162
|
readonly primaryAliasId: Omit<{
|
|
3756
4163
|
type: "string";
|
|
@@ -3758,11 +4165,15 @@ export declare const marcoZero: {
|
|
|
3758
4165
|
customType: string;
|
|
3759
4166
|
}, "optional"> & {
|
|
3760
4167
|
optional: true;
|
|
4168
|
+
} & {
|
|
4169
|
+
serverName: string;
|
|
3761
4170
|
};
|
|
3762
4171
|
readonly userId: {
|
|
3763
4172
|
type: "string";
|
|
3764
4173
|
optional: false;
|
|
3765
4174
|
customType: string;
|
|
4175
|
+
} & {
|
|
4176
|
+
serverName: string;
|
|
3766
4177
|
};
|
|
3767
4178
|
};
|
|
3768
4179
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3776,11 +4187,15 @@ export declare const marcoZero: {
|
|
|
3776
4187
|
type: "string";
|
|
3777
4188
|
optional: false;
|
|
3778
4189
|
customType: string;
|
|
4190
|
+
} & {
|
|
4191
|
+
serverName: string;
|
|
3779
4192
|
};
|
|
3780
4193
|
readonly emailAddress: {
|
|
3781
4194
|
type: "string";
|
|
3782
4195
|
optional: false;
|
|
3783
4196
|
customType: string;
|
|
4197
|
+
} & {
|
|
4198
|
+
serverName: string;
|
|
3784
4199
|
};
|
|
3785
4200
|
readonly id: {
|
|
3786
4201
|
type: "string";
|
|
@@ -3791,6 +4206,8 @@ export declare const marcoZero: {
|
|
|
3791
4206
|
type: "boolean";
|
|
3792
4207
|
optional: false;
|
|
3793
4208
|
customType: boolean;
|
|
4209
|
+
} & {
|
|
4210
|
+
serverName: string;
|
|
3794
4211
|
};
|
|
3795
4212
|
readonly name: Omit<{
|
|
3796
4213
|
type: "string";
|
|
@@ -3811,6 +4228,8 @@ export declare const marcoZero: {
|
|
|
3811
4228
|
type: "string";
|
|
3812
4229
|
optional: false;
|
|
3813
4230
|
customType: string;
|
|
4231
|
+
} & {
|
|
4232
|
+
serverName: string;
|
|
3814
4233
|
};
|
|
3815
4234
|
readonly id: {
|
|
3816
4235
|
type: "string";
|
|
@@ -3828,6 +4247,8 @@ export declare const marcoZero: {
|
|
|
3828
4247
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
3829
4248
|
}, "optional"> & {
|
|
3830
4249
|
optional: true;
|
|
4250
|
+
} & {
|
|
4251
|
+
serverName: string;
|
|
3831
4252
|
};
|
|
3832
4253
|
};
|
|
3833
4254
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3841,6 +4262,8 @@ export declare const marcoZero: {
|
|
|
3841
4262
|
type: "string";
|
|
3842
4263
|
optional: false;
|
|
3843
4264
|
customType: string;
|
|
4265
|
+
} & {
|
|
4266
|
+
serverName: string;
|
|
3844
4267
|
};
|
|
3845
4268
|
readonly body: {
|
|
3846
4269
|
type: "json";
|
|
@@ -3865,11 +4288,15 @@ export declare const marcoZero: {
|
|
|
3865
4288
|
customType: string;
|
|
3866
4289
|
}, "optional"> & {
|
|
3867
4290
|
optional: true;
|
|
4291
|
+
} & {
|
|
4292
|
+
serverName: string;
|
|
3868
4293
|
};
|
|
3869
4294
|
readonly fromEmail: {
|
|
3870
4295
|
type: "string";
|
|
3871
4296
|
optional: false;
|
|
3872
4297
|
customType: string;
|
|
4298
|
+
} & {
|
|
4299
|
+
serverName: string;
|
|
3873
4300
|
};
|
|
3874
4301
|
readonly fromName: Omit<{
|
|
3875
4302
|
type: "string";
|
|
@@ -3877,6 +4304,8 @@ export declare const marcoZero: {
|
|
|
3877
4304
|
customType: string;
|
|
3878
4305
|
}, "optional"> & {
|
|
3879
4306
|
optional: true;
|
|
4307
|
+
} & {
|
|
4308
|
+
serverName: string;
|
|
3880
4309
|
};
|
|
3881
4310
|
readonly id: {
|
|
3882
4311
|
type: "string";
|
|
@@ -3889,6 +4318,8 @@ export declare const marcoZero: {
|
|
|
3889
4318
|
customType: string;
|
|
3890
4319
|
}, "optional"> & {
|
|
3891
4320
|
optional: true;
|
|
4321
|
+
} & {
|
|
4322
|
+
serverName: string;
|
|
3892
4323
|
};
|
|
3893
4324
|
readonly scheduledFor: Omit<{
|
|
3894
4325
|
type: "number";
|
|
@@ -3896,6 +4327,8 @@ export declare const marcoZero: {
|
|
|
3896
4327
|
customType: number;
|
|
3897
4328
|
}, "optional"> & {
|
|
3898
4329
|
optional: true;
|
|
4330
|
+
} & {
|
|
4331
|
+
serverName: string;
|
|
3899
4332
|
};
|
|
3900
4333
|
readonly status: {
|
|
3901
4334
|
type: "string";
|
|
@@ -3918,11 +4351,15 @@ export declare const marcoZero: {
|
|
|
3918
4351
|
type: "number";
|
|
3919
4352
|
optional: false;
|
|
3920
4353
|
customType: number;
|
|
4354
|
+
} & {
|
|
4355
|
+
serverName: string;
|
|
3921
4356
|
};
|
|
3922
4357
|
readonly userId: {
|
|
3923
4358
|
type: "string";
|
|
3924
4359
|
optional: false;
|
|
3925
4360
|
customType: string;
|
|
4361
|
+
} & {
|
|
4362
|
+
serverName: string;
|
|
3926
4363
|
};
|
|
3927
4364
|
};
|
|
3928
4365
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -3936,11 +4373,15 @@ export declare const marcoZero: {
|
|
|
3936
4373
|
type: "string";
|
|
3937
4374
|
optional: false;
|
|
3938
4375
|
customType: string;
|
|
4376
|
+
} & {
|
|
4377
|
+
serverName: string;
|
|
3939
4378
|
};
|
|
3940
4379
|
readonly emailAddress: {
|
|
3941
4380
|
type: "string";
|
|
3942
4381
|
optional: false;
|
|
3943
4382
|
customType: string;
|
|
4383
|
+
} & {
|
|
4384
|
+
serverName: string;
|
|
3944
4385
|
};
|
|
3945
4386
|
readonly id: {
|
|
3946
4387
|
type: "string";
|
|
@@ -3964,6 +4405,8 @@ export declare const marcoZero: {
|
|
|
3964
4405
|
type: "string";
|
|
3965
4406
|
optional: false;
|
|
3966
4407
|
customType: string;
|
|
4408
|
+
} & {
|
|
4409
|
+
serverName: string;
|
|
3967
4410
|
};
|
|
3968
4411
|
readonly failed: {
|
|
3969
4412
|
type: "boolean";
|
|
@@ -3974,6 +4417,8 @@ export declare const marcoZero: {
|
|
|
3974
4417
|
type: "string";
|
|
3975
4418
|
optional: false;
|
|
3976
4419
|
customType: string;
|
|
4420
|
+
} & {
|
|
4421
|
+
serverName: string;
|
|
3977
4422
|
};
|
|
3978
4423
|
readonly id: {
|
|
3979
4424
|
type: "string";
|
|
@@ -3984,21 +4429,29 @@ export declare const marcoZero: {
|
|
|
3984
4429
|
type: "string";
|
|
3985
4430
|
optional: false;
|
|
3986
4431
|
customType: string;
|
|
4432
|
+
} & {
|
|
4433
|
+
serverName: string;
|
|
3987
4434
|
};
|
|
3988
4435
|
readonly totalChunks: {
|
|
3989
4436
|
type: "number";
|
|
3990
4437
|
optional: false;
|
|
3991
4438
|
customType: number;
|
|
4439
|
+
} & {
|
|
4440
|
+
serverName: string;
|
|
3992
4441
|
};
|
|
3993
4442
|
readonly totalSize: {
|
|
3994
4443
|
type: "number";
|
|
3995
4444
|
optional: false;
|
|
3996
4445
|
customType: number;
|
|
4446
|
+
} & {
|
|
4447
|
+
serverName: string;
|
|
3997
4448
|
};
|
|
3998
4449
|
readonly uploadedChunks: {
|
|
3999
4450
|
type: "number";
|
|
4000
4451
|
optional: false;
|
|
4001
4452
|
customType: number;
|
|
4453
|
+
} & {
|
|
4454
|
+
serverName: string;
|
|
4002
4455
|
};
|
|
4003
4456
|
};
|
|
4004
4457
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4012,6 +4465,8 @@ export declare const marcoZero: {
|
|
|
4012
4465
|
type: "string";
|
|
4013
4466
|
optional: false;
|
|
4014
4467
|
customType: string;
|
|
4468
|
+
} & {
|
|
4469
|
+
serverName: string;
|
|
4015
4470
|
};
|
|
4016
4471
|
readonly flagged: {
|
|
4017
4472
|
type: "boolean";
|
|
@@ -4027,6 +4482,8 @@ export declare const marcoZero: {
|
|
|
4027
4482
|
type: "number";
|
|
4028
4483
|
optional: false;
|
|
4029
4484
|
customType: number;
|
|
4485
|
+
} & {
|
|
4486
|
+
serverName: string;
|
|
4030
4487
|
};
|
|
4031
4488
|
readonly seen: {
|
|
4032
4489
|
type: "boolean";
|
|
@@ -4037,6 +4494,8 @@ export declare const marcoZero: {
|
|
|
4037
4494
|
type: "string";
|
|
4038
4495
|
optional: false;
|
|
4039
4496
|
customType: string;
|
|
4497
|
+
} & {
|
|
4498
|
+
serverName: string;
|
|
4040
4499
|
};
|
|
4041
4500
|
readonly words: {
|
|
4042
4501
|
type: "string";
|
|
@@ -4055,11 +4514,15 @@ export declare const marcoZero: {
|
|
|
4055
4514
|
type: "string";
|
|
4056
4515
|
optional: false;
|
|
4057
4516
|
customType: string;
|
|
4517
|
+
} & {
|
|
4518
|
+
serverName: string;
|
|
4058
4519
|
};
|
|
4059
4520
|
readonly threadId: {
|
|
4060
4521
|
type: "string";
|
|
4061
4522
|
optional: false;
|
|
4062
4523
|
customType: string;
|
|
4524
|
+
} & {
|
|
4525
|
+
serverName: string;
|
|
4063
4526
|
};
|
|
4064
4527
|
};
|
|
4065
4528
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4073,6 +4536,8 @@ export declare const marcoZero: {
|
|
|
4073
4536
|
type: "number";
|
|
4074
4537
|
optional: false;
|
|
4075
4538
|
customType: number;
|
|
4539
|
+
} & {
|
|
4540
|
+
serverName: string;
|
|
4076
4541
|
};
|
|
4077
4542
|
readonly envelopeSubject: Omit<{
|
|
4078
4543
|
type: "string";
|
|
@@ -4080,6 +4545,8 @@ export declare const marcoZero: {
|
|
|
4080
4545
|
customType: string;
|
|
4081
4546
|
}, "optional"> & {
|
|
4082
4547
|
optional: true;
|
|
4548
|
+
} & {
|
|
4549
|
+
serverName: string;
|
|
4083
4550
|
};
|
|
4084
4551
|
readonly id: {
|
|
4085
4552
|
type: "string";
|
|
@@ -4090,11 +4557,15 @@ export declare const marcoZero: {
|
|
|
4090
4557
|
type: "string";
|
|
4091
4558
|
optional: false;
|
|
4092
4559
|
customType: string;
|
|
4560
|
+
} & {
|
|
4561
|
+
serverName: string;
|
|
4093
4562
|
};
|
|
4094
4563
|
readonly senderEmail: {
|
|
4095
4564
|
type: "string";
|
|
4096
4565
|
optional: false;
|
|
4097
4566
|
customType: string;
|
|
4567
|
+
} & {
|
|
4568
|
+
serverName: string;
|
|
4098
4569
|
};
|
|
4099
4570
|
readonly senderName: Omit<{
|
|
4100
4571
|
type: "string";
|
|
@@ -4102,11 +4573,15 @@ export declare const marcoZero: {
|
|
|
4102
4573
|
customType: string;
|
|
4103
4574
|
}, "optional"> & {
|
|
4104
4575
|
optional: true;
|
|
4576
|
+
} & {
|
|
4577
|
+
serverName: string;
|
|
4105
4578
|
};
|
|
4106
4579
|
readonly threadId: {
|
|
4107
4580
|
type: "string";
|
|
4108
4581
|
optional: false;
|
|
4109
4582
|
customType: string;
|
|
4583
|
+
} & {
|
|
4584
|
+
serverName: string;
|
|
4110
4585
|
};
|
|
4111
4586
|
};
|
|
4112
4587
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4120,6 +4595,8 @@ export declare const marcoZero: {
|
|
|
4120
4595
|
type: "string";
|
|
4121
4596
|
optional: false;
|
|
4122
4597
|
customType: string;
|
|
4598
|
+
} & {
|
|
4599
|
+
serverName: string;
|
|
4123
4600
|
};
|
|
4124
4601
|
readonly id: {
|
|
4125
4602
|
type: "string";
|
|
@@ -4137,6 +4614,8 @@ export declare const marcoZero: {
|
|
|
4137
4614
|
type: "string";
|
|
4138
4615
|
optional: false;
|
|
4139
4616
|
customType: string;
|
|
4617
|
+
} & {
|
|
4618
|
+
serverName: string;
|
|
4140
4619
|
};
|
|
4141
4620
|
readonly type: {
|
|
4142
4621
|
type: "string";
|
|
@@ -4155,6 +4634,8 @@ export declare const marcoZero: {
|
|
|
4155
4634
|
type: "string";
|
|
4156
4635
|
optional: false;
|
|
4157
4636
|
customType: string;
|
|
4637
|
+
} & {
|
|
4638
|
+
serverName: string;
|
|
4158
4639
|
};
|
|
4159
4640
|
readonly id: {
|
|
4160
4641
|
type: "string";
|
|
@@ -4165,6 +4646,8 @@ export declare const marcoZero: {
|
|
|
4165
4646
|
type: "string";
|
|
4166
4647
|
optional: false;
|
|
4167
4648
|
customType: string;
|
|
4649
|
+
} & {
|
|
4650
|
+
serverName: string;
|
|
4168
4651
|
};
|
|
4169
4652
|
readonly size: {
|
|
4170
4653
|
type: "number";
|
|
@@ -4180,6 +4663,8 @@ export declare const marcoZero: {
|
|
|
4180
4663
|
type: "string";
|
|
4181
4664
|
optional: false;
|
|
4182
4665
|
customType: string;
|
|
4666
|
+
} & {
|
|
4667
|
+
serverName: string;
|
|
4183
4668
|
};
|
|
4184
4669
|
};
|
|
4185
4670
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4193,11 +4678,15 @@ export declare const marcoZero: {
|
|
|
4193
4678
|
type: "string";
|
|
4194
4679
|
optional: false;
|
|
4195
4680
|
customType: string;
|
|
4681
|
+
} & {
|
|
4682
|
+
serverName: string;
|
|
4196
4683
|
};
|
|
4197
4684
|
readonly threadMessageId: {
|
|
4198
4685
|
type: "string";
|
|
4199
4686
|
optional: false;
|
|
4200
4687
|
customType: string;
|
|
4688
|
+
} & {
|
|
4689
|
+
serverName: string;
|
|
4201
4690
|
};
|
|
4202
4691
|
};
|
|
4203
4692
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4209,7 +4698,7 @@ export declare const marcoZero: {
|
|
|
4209
4698
|
readonly user: {
|
|
4210
4699
|
accounts: [{
|
|
4211
4700
|
readonly sourceField: string[];
|
|
4212
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4701
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4213
4702
|
readonly destSchema: "account";
|
|
4214
4703
|
readonly cardinality: "many";
|
|
4215
4704
|
}];
|
|
@@ -4221,7 +4710,7 @@ export declare const marcoZero: {
|
|
|
4221
4710
|
}];
|
|
4222
4711
|
drafts: [{
|
|
4223
4712
|
readonly sourceField: string[];
|
|
4224
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
4713
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
4225
4714
|
readonly destSchema: "draft";
|
|
4226
4715
|
readonly cardinality: "many";
|
|
4227
4716
|
}];
|
|
@@ -4241,7 +4730,7 @@ export declare const marcoZero: {
|
|
|
4241
4730
|
readonly userPushNotificationToken: {
|
|
4242
4731
|
user: [{
|
|
4243
4732
|
readonly sourceField: string[];
|
|
4244
|
-
readonly destField: ("id" | "name" | "
|
|
4733
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4245
4734
|
readonly destSchema: "user";
|
|
4246
4735
|
readonly cardinality: "one";
|
|
4247
4736
|
}];
|
|
@@ -4249,7 +4738,7 @@ export declare const marcoZero: {
|
|
|
4249
4738
|
readonly contact: {
|
|
4250
4739
|
user: [{
|
|
4251
4740
|
readonly sourceField: string[];
|
|
4252
|
-
readonly destField: ("id" | "name" | "
|
|
4741
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4253
4742
|
readonly destSchema: "user";
|
|
4254
4743
|
readonly cardinality: "one";
|
|
4255
4744
|
}];
|
|
@@ -4263,7 +4752,7 @@ export declare const marcoZero: {
|
|
|
4263
4752
|
}];
|
|
4264
4753
|
drafts: [{
|
|
4265
4754
|
readonly sourceField: string[];
|
|
4266
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
4755
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
4267
4756
|
readonly destSchema: "draft";
|
|
4268
4757
|
readonly cardinality: "many";
|
|
4269
4758
|
}];
|
|
@@ -4287,7 +4776,7 @@ export declare const marcoZero: {
|
|
|
4287
4776
|
}];
|
|
4288
4777
|
user: [{
|
|
4289
4778
|
readonly sourceField: string[];
|
|
4290
|
-
readonly destField: ("id" | "name" | "
|
|
4779
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4291
4780
|
readonly destSchema: "user";
|
|
4292
4781
|
readonly cardinality: "one";
|
|
4293
4782
|
}];
|
|
@@ -4295,7 +4784,7 @@ export declare const marcoZero: {
|
|
|
4295
4784
|
readonly accountAlias: {
|
|
4296
4785
|
account: [{
|
|
4297
4786
|
readonly sourceField: string[];
|
|
4298
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4787
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4299
4788
|
readonly destSchema: "account";
|
|
4300
4789
|
readonly cardinality: "one";
|
|
4301
4790
|
}];
|
|
@@ -4303,7 +4792,7 @@ export declare const marcoZero: {
|
|
|
4303
4792
|
readonly accountLabel: {
|
|
4304
4793
|
account: [{
|
|
4305
4794
|
readonly sourceField: string[];
|
|
4306
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4795
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4307
4796
|
readonly destSchema: "account";
|
|
4308
4797
|
readonly cardinality: "one";
|
|
4309
4798
|
}];
|
|
@@ -4314,7 +4803,7 @@ export declare const marcoZero: {
|
|
|
4314
4803
|
readonly cardinality: "many";
|
|
4315
4804
|
}, {
|
|
4316
4805
|
readonly sourceField: string[];
|
|
4317
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4806
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4318
4807
|
readonly destSchema: "threadMessage";
|
|
4319
4808
|
readonly cardinality: "many";
|
|
4320
4809
|
}];
|
|
@@ -4333,7 +4822,7 @@ export declare const marcoZero: {
|
|
|
4333
4822
|
readonly draft: {
|
|
4334
4823
|
account: [{
|
|
4335
4824
|
readonly sourceField: string[];
|
|
4336
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4825
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4337
4826
|
readonly destSchema: "account";
|
|
4338
4827
|
readonly cardinality: "one";
|
|
4339
4828
|
}];
|
|
@@ -4351,7 +4840,7 @@ export declare const marcoZero: {
|
|
|
4351
4840
|
}];
|
|
4352
4841
|
user: [{
|
|
4353
4842
|
readonly sourceField: string[];
|
|
4354
|
-
readonly destField: ("id" | "name" | "
|
|
4843
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4355
4844
|
readonly destSchema: "user";
|
|
4356
4845
|
readonly cardinality: "one";
|
|
4357
4846
|
}];
|
|
@@ -4359,7 +4848,7 @@ export declare const marcoZero: {
|
|
|
4359
4848
|
readonly draftRecipient: {
|
|
4360
4849
|
draft: [{
|
|
4361
4850
|
readonly sourceField: string[];
|
|
4362
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
4851
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
4363
4852
|
readonly destSchema: "draft";
|
|
4364
4853
|
readonly cardinality: "one";
|
|
4365
4854
|
}];
|
|
@@ -4367,7 +4856,7 @@ export declare const marcoZero: {
|
|
|
4367
4856
|
readonly draftAttachment: {
|
|
4368
4857
|
draft: [{
|
|
4369
4858
|
readonly sourceField: string[];
|
|
4370
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
4859
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
4371
4860
|
readonly destSchema: "draft";
|
|
4372
4861
|
readonly cardinality: "one";
|
|
4373
4862
|
}];
|
|
@@ -4375,7 +4864,7 @@ export declare const marcoZero: {
|
|
|
4375
4864
|
readonly thread: {
|
|
4376
4865
|
account: [{
|
|
4377
4866
|
readonly sourceField: string[];
|
|
4378
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
4867
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4379
4868
|
readonly destSchema: "account";
|
|
4380
4869
|
readonly cardinality: "one";
|
|
4381
4870
|
}];
|
|
@@ -4392,13 +4881,13 @@ export declare const marcoZero: {
|
|
|
4392
4881
|
}];
|
|
4393
4882
|
messages: [{
|
|
4394
4883
|
readonly sourceField: string[];
|
|
4395
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4884
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4396
4885
|
readonly destSchema: "threadMessage";
|
|
4397
4886
|
readonly cardinality: "many";
|
|
4398
4887
|
}];
|
|
4399
4888
|
user: [{
|
|
4400
4889
|
readonly sourceField: string[];
|
|
4401
|
-
readonly destField: ("id" | "name" | "
|
|
4890
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
4402
4891
|
readonly destSchema: "user";
|
|
4403
4892
|
readonly cardinality: "one";
|
|
4404
4893
|
}];
|
|
@@ -4451,7 +4940,7 @@ export declare const marcoZero: {
|
|
|
4451
4940
|
readonly threadMessageRecipient: {
|
|
4452
4941
|
message: [{
|
|
4453
4942
|
readonly sourceField: string[];
|
|
4454
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4943
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4455
4944
|
readonly destSchema: "threadMessage";
|
|
4456
4945
|
readonly cardinality: "one";
|
|
4457
4946
|
}];
|
|
@@ -4459,7 +4948,7 @@ export declare const marcoZero: {
|
|
|
4459
4948
|
readonly threadMessageAttachment: {
|
|
4460
4949
|
message: [{
|
|
4461
4950
|
readonly sourceField: string[];
|
|
4462
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4951
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4463
4952
|
readonly destSchema: "threadMessage";
|
|
4464
4953
|
readonly cardinality: "one";
|
|
4465
4954
|
}];
|
|
@@ -4473,7 +4962,7 @@ export declare const marcoZero: {
|
|
|
4473
4962
|
}];
|
|
4474
4963
|
message: [{
|
|
4475
4964
|
readonly sourceField: string[];
|
|
4476
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
4965
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
4477
4966
|
readonly destSchema: "threadMessage";
|
|
4478
4967
|
readonly cardinality: "one";
|
|
4479
4968
|
}];
|
|
@@ -4520,70 +5009,6 @@ export declare const marcoZero: {
|
|
|
4520
5009
|
readonly specialUse: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH" | null;
|
|
4521
5010
|
}[];
|
|
4522
5011
|
})[];
|
|
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
5012
|
}>>;
|
|
4588
5013
|
};
|
|
4589
5014
|
readonly schema: {
|
|
@@ -4609,11 +5034,15 @@ export declare const marcoZero: {
|
|
|
4609
5034
|
customType: string;
|
|
4610
5035
|
}, "optional"> & {
|
|
4611
5036
|
optional: true;
|
|
5037
|
+
} & {
|
|
5038
|
+
serverName: string;
|
|
4612
5039
|
};
|
|
4613
5040
|
readonly undoSendEnabled: {
|
|
4614
5041
|
type: "boolean";
|
|
4615
5042
|
optional: false;
|
|
4616
5043
|
customType: boolean;
|
|
5044
|
+
} & {
|
|
5045
|
+
serverName: string;
|
|
4617
5046
|
};
|
|
4618
5047
|
};
|
|
4619
5048
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4627,6 +5056,8 @@ export declare const marcoZero: {
|
|
|
4627
5056
|
type: "number";
|
|
4628
5057
|
optional: false;
|
|
4629
5058
|
customType: number;
|
|
5059
|
+
} & {
|
|
5060
|
+
serverName: string;
|
|
4630
5061
|
};
|
|
4631
5062
|
readonly id: {
|
|
4632
5063
|
type: "string";
|
|
@@ -4642,6 +5073,8 @@ export declare const marcoZero: {
|
|
|
4642
5073
|
type: "string";
|
|
4643
5074
|
optional: false;
|
|
4644
5075
|
customType: string;
|
|
5076
|
+
} & {
|
|
5077
|
+
serverName: string;
|
|
4645
5078
|
};
|
|
4646
5079
|
};
|
|
4647
5080
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4655,6 +5088,8 @@ export declare const marcoZero: {
|
|
|
4655
5088
|
type: "string";
|
|
4656
5089
|
optional: false;
|
|
4657
5090
|
customType: string;
|
|
5091
|
+
} & {
|
|
5092
|
+
serverName: string;
|
|
4658
5093
|
};
|
|
4659
5094
|
readonly id: {
|
|
4660
5095
|
type: "string";
|
|
@@ -4672,6 +5107,8 @@ export declare const marcoZero: {
|
|
|
4672
5107
|
type: "string";
|
|
4673
5108
|
optional: false;
|
|
4674
5109
|
customType: string;
|
|
5110
|
+
} & {
|
|
5111
|
+
serverName: string;
|
|
4675
5112
|
};
|
|
4676
5113
|
};
|
|
4677
5114
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4692,6 +5129,8 @@ export declare const marcoZero: {
|
|
|
4692
5129
|
customType: string;
|
|
4693
5130
|
}, "optional"> & {
|
|
4694
5131
|
optional: true;
|
|
5132
|
+
} & {
|
|
5133
|
+
serverName: string;
|
|
4695
5134
|
};
|
|
4696
5135
|
readonly id: {
|
|
4697
5136
|
type: "string";
|
|
@@ -4702,16 +5141,22 @@ export declare const marcoZero: {
|
|
|
4702
5141
|
type: "string";
|
|
4703
5142
|
optional: false;
|
|
4704
5143
|
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";
|
|
5144
|
+
} & {
|
|
5145
|
+
serverName: string;
|
|
4705
5146
|
};
|
|
4706
5147
|
readonly mailProcessedCount: {
|
|
4707
5148
|
type: "number";
|
|
4708
5149
|
optional: false;
|
|
4709
5150
|
customType: number;
|
|
5151
|
+
} & {
|
|
5152
|
+
serverName: string;
|
|
4710
5153
|
};
|
|
4711
5154
|
readonly mailTotalCount: {
|
|
4712
5155
|
type: "number";
|
|
4713
5156
|
optional: false;
|
|
4714
5157
|
customType: number;
|
|
5158
|
+
} & {
|
|
5159
|
+
serverName: string;
|
|
4715
5160
|
};
|
|
4716
5161
|
readonly primaryAliasId: Omit<{
|
|
4717
5162
|
type: "string";
|
|
@@ -4719,11 +5164,15 @@ export declare const marcoZero: {
|
|
|
4719
5164
|
customType: string;
|
|
4720
5165
|
}, "optional"> & {
|
|
4721
5166
|
optional: true;
|
|
5167
|
+
} & {
|
|
5168
|
+
serverName: string;
|
|
4722
5169
|
};
|
|
4723
5170
|
readonly userId: {
|
|
4724
5171
|
type: "string";
|
|
4725
5172
|
optional: false;
|
|
4726
5173
|
customType: string;
|
|
5174
|
+
} & {
|
|
5175
|
+
serverName: string;
|
|
4727
5176
|
};
|
|
4728
5177
|
};
|
|
4729
5178
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4737,11 +5186,15 @@ export declare const marcoZero: {
|
|
|
4737
5186
|
type: "string";
|
|
4738
5187
|
optional: false;
|
|
4739
5188
|
customType: string;
|
|
5189
|
+
} & {
|
|
5190
|
+
serverName: string;
|
|
4740
5191
|
};
|
|
4741
5192
|
readonly emailAddress: {
|
|
4742
5193
|
type: "string";
|
|
4743
5194
|
optional: false;
|
|
4744
5195
|
customType: string;
|
|
5196
|
+
} & {
|
|
5197
|
+
serverName: string;
|
|
4745
5198
|
};
|
|
4746
5199
|
readonly id: {
|
|
4747
5200
|
type: "string";
|
|
@@ -4752,6 +5205,8 @@ export declare const marcoZero: {
|
|
|
4752
5205
|
type: "boolean";
|
|
4753
5206
|
optional: false;
|
|
4754
5207
|
customType: boolean;
|
|
5208
|
+
} & {
|
|
5209
|
+
serverName: string;
|
|
4755
5210
|
};
|
|
4756
5211
|
readonly name: Omit<{
|
|
4757
5212
|
type: "string";
|
|
@@ -4772,6 +5227,8 @@ export declare const marcoZero: {
|
|
|
4772
5227
|
type: "string";
|
|
4773
5228
|
optional: false;
|
|
4774
5229
|
customType: string;
|
|
5230
|
+
} & {
|
|
5231
|
+
serverName: string;
|
|
4775
5232
|
};
|
|
4776
5233
|
readonly id: {
|
|
4777
5234
|
type: "string";
|
|
@@ -4789,6 +5246,8 @@ export declare const marcoZero: {
|
|
|
4789
5246
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
4790
5247
|
}, "optional"> & {
|
|
4791
5248
|
optional: true;
|
|
5249
|
+
} & {
|
|
5250
|
+
serverName: string;
|
|
4792
5251
|
};
|
|
4793
5252
|
};
|
|
4794
5253
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4802,6 +5261,8 @@ export declare const marcoZero: {
|
|
|
4802
5261
|
type: "string";
|
|
4803
5262
|
optional: false;
|
|
4804
5263
|
customType: string;
|
|
5264
|
+
} & {
|
|
5265
|
+
serverName: string;
|
|
4805
5266
|
};
|
|
4806
5267
|
readonly body: {
|
|
4807
5268
|
type: "json";
|
|
@@ -4826,11 +5287,15 @@ export declare const marcoZero: {
|
|
|
4826
5287
|
customType: string;
|
|
4827
5288
|
}, "optional"> & {
|
|
4828
5289
|
optional: true;
|
|
5290
|
+
} & {
|
|
5291
|
+
serverName: string;
|
|
4829
5292
|
};
|
|
4830
5293
|
readonly fromEmail: {
|
|
4831
5294
|
type: "string";
|
|
4832
5295
|
optional: false;
|
|
4833
5296
|
customType: string;
|
|
5297
|
+
} & {
|
|
5298
|
+
serverName: string;
|
|
4834
5299
|
};
|
|
4835
5300
|
readonly fromName: Omit<{
|
|
4836
5301
|
type: "string";
|
|
@@ -4838,6 +5303,8 @@ export declare const marcoZero: {
|
|
|
4838
5303
|
customType: string;
|
|
4839
5304
|
}, "optional"> & {
|
|
4840
5305
|
optional: true;
|
|
5306
|
+
} & {
|
|
5307
|
+
serverName: string;
|
|
4841
5308
|
};
|
|
4842
5309
|
readonly id: {
|
|
4843
5310
|
type: "string";
|
|
@@ -4850,6 +5317,8 @@ export declare const marcoZero: {
|
|
|
4850
5317
|
customType: string;
|
|
4851
5318
|
}, "optional"> & {
|
|
4852
5319
|
optional: true;
|
|
5320
|
+
} & {
|
|
5321
|
+
serverName: string;
|
|
4853
5322
|
};
|
|
4854
5323
|
readonly scheduledFor: Omit<{
|
|
4855
5324
|
type: "number";
|
|
@@ -4857,6 +5326,8 @@ export declare const marcoZero: {
|
|
|
4857
5326
|
customType: number;
|
|
4858
5327
|
}, "optional"> & {
|
|
4859
5328
|
optional: true;
|
|
5329
|
+
} & {
|
|
5330
|
+
serverName: string;
|
|
4860
5331
|
};
|
|
4861
5332
|
readonly status: {
|
|
4862
5333
|
type: "string";
|
|
@@ -4879,11 +5350,15 @@ export declare const marcoZero: {
|
|
|
4879
5350
|
type: "number";
|
|
4880
5351
|
optional: false;
|
|
4881
5352
|
customType: number;
|
|
5353
|
+
} & {
|
|
5354
|
+
serverName: string;
|
|
4882
5355
|
};
|
|
4883
5356
|
readonly userId: {
|
|
4884
5357
|
type: "string";
|
|
4885
5358
|
optional: false;
|
|
4886
5359
|
customType: string;
|
|
5360
|
+
} & {
|
|
5361
|
+
serverName: string;
|
|
4887
5362
|
};
|
|
4888
5363
|
};
|
|
4889
5364
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4897,11 +5372,15 @@ export declare const marcoZero: {
|
|
|
4897
5372
|
type: "string";
|
|
4898
5373
|
optional: false;
|
|
4899
5374
|
customType: string;
|
|
5375
|
+
} & {
|
|
5376
|
+
serverName: string;
|
|
4900
5377
|
};
|
|
4901
5378
|
readonly emailAddress: {
|
|
4902
5379
|
type: "string";
|
|
4903
5380
|
optional: false;
|
|
4904
5381
|
customType: string;
|
|
5382
|
+
} & {
|
|
5383
|
+
serverName: string;
|
|
4905
5384
|
};
|
|
4906
5385
|
readonly id: {
|
|
4907
5386
|
type: "string";
|
|
@@ -4925,6 +5404,8 @@ export declare const marcoZero: {
|
|
|
4925
5404
|
type: "string";
|
|
4926
5405
|
optional: false;
|
|
4927
5406
|
customType: string;
|
|
5407
|
+
} & {
|
|
5408
|
+
serverName: string;
|
|
4928
5409
|
};
|
|
4929
5410
|
readonly failed: {
|
|
4930
5411
|
type: "boolean";
|
|
@@ -4935,6 +5416,8 @@ export declare const marcoZero: {
|
|
|
4935
5416
|
type: "string";
|
|
4936
5417
|
optional: false;
|
|
4937
5418
|
customType: string;
|
|
5419
|
+
} & {
|
|
5420
|
+
serverName: string;
|
|
4938
5421
|
};
|
|
4939
5422
|
readonly id: {
|
|
4940
5423
|
type: "string";
|
|
@@ -4945,21 +5428,29 @@ export declare const marcoZero: {
|
|
|
4945
5428
|
type: "string";
|
|
4946
5429
|
optional: false;
|
|
4947
5430
|
customType: string;
|
|
5431
|
+
} & {
|
|
5432
|
+
serverName: string;
|
|
4948
5433
|
};
|
|
4949
5434
|
readonly totalChunks: {
|
|
4950
5435
|
type: "number";
|
|
4951
5436
|
optional: false;
|
|
4952
5437
|
customType: number;
|
|
5438
|
+
} & {
|
|
5439
|
+
serverName: string;
|
|
4953
5440
|
};
|
|
4954
5441
|
readonly totalSize: {
|
|
4955
5442
|
type: "number";
|
|
4956
5443
|
optional: false;
|
|
4957
5444
|
customType: number;
|
|
5445
|
+
} & {
|
|
5446
|
+
serverName: string;
|
|
4958
5447
|
};
|
|
4959
5448
|
readonly uploadedChunks: {
|
|
4960
5449
|
type: "number";
|
|
4961
5450
|
optional: false;
|
|
4962
5451
|
customType: number;
|
|
5452
|
+
} & {
|
|
5453
|
+
serverName: string;
|
|
4963
5454
|
};
|
|
4964
5455
|
};
|
|
4965
5456
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4973,6 +5464,8 @@ export declare const marcoZero: {
|
|
|
4973
5464
|
type: "string";
|
|
4974
5465
|
optional: false;
|
|
4975
5466
|
customType: string;
|
|
5467
|
+
} & {
|
|
5468
|
+
serverName: string;
|
|
4976
5469
|
};
|
|
4977
5470
|
readonly flagged: {
|
|
4978
5471
|
type: "boolean";
|
|
@@ -4988,6 +5481,8 @@ export declare const marcoZero: {
|
|
|
4988
5481
|
type: "number";
|
|
4989
5482
|
optional: false;
|
|
4990
5483
|
customType: number;
|
|
5484
|
+
} & {
|
|
5485
|
+
serverName: string;
|
|
4991
5486
|
};
|
|
4992
5487
|
readonly seen: {
|
|
4993
5488
|
type: "boolean";
|
|
@@ -4998,6 +5493,8 @@ export declare const marcoZero: {
|
|
|
4998
5493
|
type: "string";
|
|
4999
5494
|
optional: false;
|
|
5000
5495
|
customType: string;
|
|
5496
|
+
} & {
|
|
5497
|
+
serverName: string;
|
|
5001
5498
|
};
|
|
5002
5499
|
readonly words: {
|
|
5003
5500
|
type: "string";
|
|
@@ -5016,11 +5513,15 @@ export declare const marcoZero: {
|
|
|
5016
5513
|
type: "string";
|
|
5017
5514
|
optional: false;
|
|
5018
5515
|
customType: string;
|
|
5516
|
+
} & {
|
|
5517
|
+
serverName: string;
|
|
5019
5518
|
};
|
|
5020
5519
|
readonly threadId: {
|
|
5021
5520
|
type: "string";
|
|
5022
5521
|
optional: false;
|
|
5023
5522
|
customType: string;
|
|
5523
|
+
} & {
|
|
5524
|
+
serverName: string;
|
|
5024
5525
|
};
|
|
5025
5526
|
};
|
|
5026
5527
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5034,6 +5535,8 @@ export declare const marcoZero: {
|
|
|
5034
5535
|
type: "number";
|
|
5035
5536
|
optional: false;
|
|
5036
5537
|
customType: number;
|
|
5538
|
+
} & {
|
|
5539
|
+
serverName: string;
|
|
5037
5540
|
};
|
|
5038
5541
|
readonly envelopeSubject: Omit<{
|
|
5039
5542
|
type: "string";
|
|
@@ -5041,6 +5544,8 @@ export declare const marcoZero: {
|
|
|
5041
5544
|
customType: string;
|
|
5042
5545
|
}, "optional"> & {
|
|
5043
5546
|
optional: true;
|
|
5547
|
+
} & {
|
|
5548
|
+
serverName: string;
|
|
5044
5549
|
};
|
|
5045
5550
|
readonly id: {
|
|
5046
5551
|
type: "string";
|
|
@@ -5051,11 +5556,15 @@ export declare const marcoZero: {
|
|
|
5051
5556
|
type: "string";
|
|
5052
5557
|
optional: false;
|
|
5053
5558
|
customType: string;
|
|
5559
|
+
} & {
|
|
5560
|
+
serverName: string;
|
|
5054
5561
|
};
|
|
5055
5562
|
readonly senderEmail: {
|
|
5056
5563
|
type: "string";
|
|
5057
5564
|
optional: false;
|
|
5058
5565
|
customType: string;
|
|
5566
|
+
} & {
|
|
5567
|
+
serverName: string;
|
|
5059
5568
|
};
|
|
5060
5569
|
readonly senderName: Omit<{
|
|
5061
5570
|
type: "string";
|
|
@@ -5063,11 +5572,15 @@ export declare const marcoZero: {
|
|
|
5063
5572
|
customType: string;
|
|
5064
5573
|
}, "optional"> & {
|
|
5065
5574
|
optional: true;
|
|
5575
|
+
} & {
|
|
5576
|
+
serverName: string;
|
|
5066
5577
|
};
|
|
5067
5578
|
readonly threadId: {
|
|
5068
5579
|
type: "string";
|
|
5069
5580
|
optional: false;
|
|
5070
5581
|
customType: string;
|
|
5582
|
+
} & {
|
|
5583
|
+
serverName: string;
|
|
5071
5584
|
};
|
|
5072
5585
|
};
|
|
5073
5586
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5081,6 +5594,8 @@ export declare const marcoZero: {
|
|
|
5081
5594
|
type: "string";
|
|
5082
5595
|
optional: false;
|
|
5083
5596
|
customType: string;
|
|
5597
|
+
} & {
|
|
5598
|
+
serverName: string;
|
|
5084
5599
|
};
|
|
5085
5600
|
readonly id: {
|
|
5086
5601
|
type: "string";
|
|
@@ -5098,6 +5613,8 @@ export declare const marcoZero: {
|
|
|
5098
5613
|
type: "string";
|
|
5099
5614
|
optional: false;
|
|
5100
5615
|
customType: string;
|
|
5616
|
+
} & {
|
|
5617
|
+
serverName: string;
|
|
5101
5618
|
};
|
|
5102
5619
|
readonly type: {
|
|
5103
5620
|
type: "string";
|
|
@@ -5116,6 +5633,8 @@ export declare const marcoZero: {
|
|
|
5116
5633
|
type: "string";
|
|
5117
5634
|
optional: false;
|
|
5118
5635
|
customType: string;
|
|
5636
|
+
} & {
|
|
5637
|
+
serverName: string;
|
|
5119
5638
|
};
|
|
5120
5639
|
readonly id: {
|
|
5121
5640
|
type: "string";
|
|
@@ -5126,6 +5645,8 @@ export declare const marcoZero: {
|
|
|
5126
5645
|
type: "string";
|
|
5127
5646
|
optional: false;
|
|
5128
5647
|
customType: string;
|
|
5648
|
+
} & {
|
|
5649
|
+
serverName: string;
|
|
5129
5650
|
};
|
|
5130
5651
|
readonly size: {
|
|
5131
5652
|
type: "number";
|
|
@@ -5141,6 +5662,8 @@ export declare const marcoZero: {
|
|
|
5141
5662
|
type: "string";
|
|
5142
5663
|
optional: false;
|
|
5143
5664
|
customType: string;
|
|
5665
|
+
} & {
|
|
5666
|
+
serverName: string;
|
|
5144
5667
|
};
|
|
5145
5668
|
};
|
|
5146
5669
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5154,11 +5677,15 @@ export declare const marcoZero: {
|
|
|
5154
5677
|
type: "string";
|
|
5155
5678
|
optional: false;
|
|
5156
5679
|
customType: string;
|
|
5680
|
+
} & {
|
|
5681
|
+
serverName: string;
|
|
5157
5682
|
};
|
|
5158
5683
|
readonly threadMessageId: {
|
|
5159
5684
|
type: "string";
|
|
5160
5685
|
optional: false;
|
|
5161
5686
|
customType: string;
|
|
5687
|
+
} & {
|
|
5688
|
+
serverName: string;
|
|
5162
5689
|
};
|
|
5163
5690
|
};
|
|
5164
5691
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5170,7 +5697,7 @@ export declare const marcoZero: {
|
|
|
5170
5697
|
readonly user: {
|
|
5171
5698
|
accounts: [{
|
|
5172
5699
|
readonly sourceField: string[];
|
|
5173
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5700
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5174
5701
|
readonly destSchema: "account";
|
|
5175
5702
|
readonly cardinality: "many";
|
|
5176
5703
|
}];
|
|
@@ -5182,7 +5709,7 @@ export declare const marcoZero: {
|
|
|
5182
5709
|
}];
|
|
5183
5710
|
drafts: [{
|
|
5184
5711
|
readonly sourceField: string[];
|
|
5185
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
5712
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
5186
5713
|
readonly destSchema: "draft";
|
|
5187
5714
|
readonly cardinality: "many";
|
|
5188
5715
|
}];
|
|
@@ -5202,7 +5729,7 @@ export declare const marcoZero: {
|
|
|
5202
5729
|
readonly userPushNotificationToken: {
|
|
5203
5730
|
user: [{
|
|
5204
5731
|
readonly sourceField: string[];
|
|
5205
|
-
readonly destField: ("id" | "name" | "
|
|
5732
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5206
5733
|
readonly destSchema: "user";
|
|
5207
5734
|
readonly cardinality: "one";
|
|
5208
5735
|
}];
|
|
@@ -5210,7 +5737,7 @@ export declare const marcoZero: {
|
|
|
5210
5737
|
readonly contact: {
|
|
5211
5738
|
user: [{
|
|
5212
5739
|
readonly sourceField: string[];
|
|
5213
|
-
readonly destField: ("id" | "name" | "
|
|
5740
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5214
5741
|
readonly destSchema: "user";
|
|
5215
5742
|
readonly cardinality: "one";
|
|
5216
5743
|
}];
|
|
@@ -5224,7 +5751,7 @@ export declare const marcoZero: {
|
|
|
5224
5751
|
}];
|
|
5225
5752
|
drafts: [{
|
|
5226
5753
|
readonly sourceField: string[];
|
|
5227
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
5754
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
5228
5755
|
readonly destSchema: "draft";
|
|
5229
5756
|
readonly cardinality: "many";
|
|
5230
5757
|
}];
|
|
@@ -5248,7 +5775,7 @@ export declare const marcoZero: {
|
|
|
5248
5775
|
}];
|
|
5249
5776
|
user: [{
|
|
5250
5777
|
readonly sourceField: string[];
|
|
5251
|
-
readonly destField: ("id" | "name" | "
|
|
5778
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5252
5779
|
readonly destSchema: "user";
|
|
5253
5780
|
readonly cardinality: "one";
|
|
5254
5781
|
}];
|
|
@@ -5256,7 +5783,7 @@ export declare const marcoZero: {
|
|
|
5256
5783
|
readonly accountAlias: {
|
|
5257
5784
|
account: [{
|
|
5258
5785
|
readonly sourceField: string[];
|
|
5259
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5786
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5260
5787
|
readonly destSchema: "account";
|
|
5261
5788
|
readonly cardinality: "one";
|
|
5262
5789
|
}];
|
|
@@ -5264,7 +5791,7 @@ export declare const marcoZero: {
|
|
|
5264
5791
|
readonly accountLabel: {
|
|
5265
5792
|
account: [{
|
|
5266
5793
|
readonly sourceField: string[];
|
|
5267
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5794
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5268
5795
|
readonly destSchema: "account";
|
|
5269
5796
|
readonly cardinality: "one";
|
|
5270
5797
|
}];
|
|
@@ -5275,7 +5802,7 @@ export declare const marcoZero: {
|
|
|
5275
5802
|
readonly cardinality: "many";
|
|
5276
5803
|
}, {
|
|
5277
5804
|
readonly sourceField: string[];
|
|
5278
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5805
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5279
5806
|
readonly destSchema: "threadMessage";
|
|
5280
5807
|
readonly cardinality: "many";
|
|
5281
5808
|
}];
|
|
@@ -5294,7 +5821,7 @@ export declare const marcoZero: {
|
|
|
5294
5821
|
readonly draft: {
|
|
5295
5822
|
account: [{
|
|
5296
5823
|
readonly sourceField: string[];
|
|
5297
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5824
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5298
5825
|
readonly destSchema: "account";
|
|
5299
5826
|
readonly cardinality: "one";
|
|
5300
5827
|
}];
|
|
@@ -5312,7 +5839,7 @@ export declare const marcoZero: {
|
|
|
5312
5839
|
}];
|
|
5313
5840
|
user: [{
|
|
5314
5841
|
readonly sourceField: string[];
|
|
5315
|
-
readonly destField: ("id" | "name" | "
|
|
5842
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5316
5843
|
readonly destSchema: "user";
|
|
5317
5844
|
readonly cardinality: "one";
|
|
5318
5845
|
}];
|
|
@@ -5320,7 +5847,7 @@ export declare const marcoZero: {
|
|
|
5320
5847
|
readonly draftRecipient: {
|
|
5321
5848
|
draft: [{
|
|
5322
5849
|
readonly sourceField: string[];
|
|
5323
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
5850
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
5324
5851
|
readonly destSchema: "draft";
|
|
5325
5852
|
readonly cardinality: "one";
|
|
5326
5853
|
}];
|
|
@@ -5328,7 +5855,7 @@ export declare const marcoZero: {
|
|
|
5328
5855
|
readonly draftAttachment: {
|
|
5329
5856
|
draft: [{
|
|
5330
5857
|
readonly sourceField: string[];
|
|
5331
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
5858
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
5332
5859
|
readonly destSchema: "draft";
|
|
5333
5860
|
readonly cardinality: "one";
|
|
5334
5861
|
}];
|
|
@@ -5336,7 +5863,7 @@ export declare const marcoZero: {
|
|
|
5336
5863
|
readonly thread: {
|
|
5337
5864
|
account: [{
|
|
5338
5865
|
readonly sourceField: string[];
|
|
5339
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
5866
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
5340
5867
|
readonly destSchema: "account";
|
|
5341
5868
|
readonly cardinality: "one";
|
|
5342
5869
|
}];
|
|
@@ -5353,13 +5880,13 @@ export declare const marcoZero: {
|
|
|
5353
5880
|
}];
|
|
5354
5881
|
messages: [{
|
|
5355
5882
|
readonly sourceField: string[];
|
|
5356
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5883
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5357
5884
|
readonly destSchema: "threadMessage";
|
|
5358
5885
|
readonly cardinality: "many";
|
|
5359
5886
|
}];
|
|
5360
5887
|
user: [{
|
|
5361
5888
|
readonly sourceField: string[];
|
|
5362
|
-
readonly destField: ("id" | "name" | "
|
|
5889
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
5363
5890
|
readonly destSchema: "user";
|
|
5364
5891
|
readonly cardinality: "one";
|
|
5365
5892
|
}];
|
|
@@ -5412,7 +5939,7 @@ export declare const marcoZero: {
|
|
|
5412
5939
|
readonly threadMessageRecipient: {
|
|
5413
5940
|
message: [{
|
|
5414
5941
|
readonly sourceField: string[];
|
|
5415
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5942
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5416
5943
|
readonly destSchema: "threadMessage";
|
|
5417
5944
|
readonly cardinality: "one";
|
|
5418
5945
|
}];
|
|
@@ -5420,7 +5947,7 @@ export declare const marcoZero: {
|
|
|
5420
5947
|
readonly threadMessageAttachment: {
|
|
5421
5948
|
message: [{
|
|
5422
5949
|
readonly sourceField: string[];
|
|
5423
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5950
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5424
5951
|
readonly destSchema: "threadMessage";
|
|
5425
5952
|
readonly cardinality: "one";
|
|
5426
5953
|
}];
|
|
@@ -5434,7 +5961,7 @@ export declare const marcoZero: {
|
|
|
5434
5961
|
}];
|
|
5435
5962
|
message: [{
|
|
5436
5963
|
readonly sourceField: string[];
|
|
5437
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
5964
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
5438
5965
|
readonly destSchema: "threadMessage";
|
|
5439
5966
|
readonly cardinality: "one";
|
|
5440
5967
|
}];
|
|
@@ -5458,6 +5985,8 @@ export declare const marcoZero: {
|
|
|
5458
5985
|
customType: string;
|
|
5459
5986
|
}, "optional"> & {
|
|
5460
5987
|
optional: true;
|
|
5988
|
+
} & {
|
|
5989
|
+
serverName: string;
|
|
5461
5990
|
};
|
|
5462
5991
|
readonly id: {
|
|
5463
5992
|
type: "string";
|
|
@@ -5468,16 +5997,22 @@ export declare const marcoZero: {
|
|
|
5468
5997
|
type: "string";
|
|
5469
5998
|
optional: false;
|
|
5470
5999
|
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";
|
|
6000
|
+
} & {
|
|
6001
|
+
serverName: string;
|
|
5471
6002
|
};
|
|
5472
6003
|
readonly mailProcessedCount: {
|
|
5473
6004
|
type: "number";
|
|
5474
6005
|
optional: false;
|
|
5475
6006
|
customType: number;
|
|
6007
|
+
} & {
|
|
6008
|
+
serverName: string;
|
|
5476
6009
|
};
|
|
5477
6010
|
readonly mailTotalCount: {
|
|
5478
6011
|
type: "number";
|
|
5479
6012
|
optional: false;
|
|
5480
6013
|
customType: number;
|
|
6014
|
+
} & {
|
|
6015
|
+
serverName: string;
|
|
5481
6016
|
};
|
|
5482
6017
|
readonly primaryAliasId: Omit<{
|
|
5483
6018
|
type: "string";
|
|
@@ -5485,11 +6020,15 @@ export declare const marcoZero: {
|
|
|
5485
6020
|
customType: string;
|
|
5486
6021
|
}, "optional"> & {
|
|
5487
6022
|
optional: true;
|
|
6023
|
+
} & {
|
|
6024
|
+
serverName: string;
|
|
5488
6025
|
};
|
|
5489
6026
|
readonly userId: {
|
|
5490
6027
|
type: "string";
|
|
5491
6028
|
optional: false;
|
|
5492
6029
|
customType: string;
|
|
6030
|
+
} & {
|
|
6031
|
+
serverName: string;
|
|
5493
6032
|
};
|
|
5494
6033
|
};
|
|
5495
6034
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5503,11 +6042,15 @@ export declare const marcoZero: {
|
|
|
5503
6042
|
type: "string";
|
|
5504
6043
|
optional: false;
|
|
5505
6044
|
customType: string;
|
|
6045
|
+
} & {
|
|
6046
|
+
serverName: string;
|
|
5506
6047
|
};
|
|
5507
6048
|
readonly emailAddress: {
|
|
5508
6049
|
type: "string";
|
|
5509
6050
|
optional: false;
|
|
5510
6051
|
customType: string;
|
|
6052
|
+
} & {
|
|
6053
|
+
serverName: string;
|
|
5511
6054
|
};
|
|
5512
6055
|
readonly id: {
|
|
5513
6056
|
type: "string";
|
|
@@ -5518,6 +6061,8 @@ export declare const marcoZero: {
|
|
|
5518
6061
|
type: "boolean";
|
|
5519
6062
|
optional: false;
|
|
5520
6063
|
customType: boolean;
|
|
6064
|
+
} & {
|
|
6065
|
+
serverName: string;
|
|
5521
6066
|
};
|
|
5522
6067
|
readonly name: Omit<{
|
|
5523
6068
|
type: "string";
|
|
@@ -5538,6 +6083,8 @@ export declare const marcoZero: {
|
|
|
5538
6083
|
type: "string";
|
|
5539
6084
|
optional: false;
|
|
5540
6085
|
customType: string;
|
|
6086
|
+
} & {
|
|
6087
|
+
serverName: string;
|
|
5541
6088
|
};
|
|
5542
6089
|
readonly id: {
|
|
5543
6090
|
type: "string";
|
|
@@ -5555,6 +6102,8 @@ export declare const marcoZero: {
|
|
|
5555
6102
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
5556
6103
|
}, "optional"> & {
|
|
5557
6104
|
optional: true;
|
|
6105
|
+
} & {
|
|
6106
|
+
serverName: string;
|
|
5558
6107
|
};
|
|
5559
6108
|
};
|
|
5560
6109
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5568,6 +6117,8 @@ export declare const marcoZero: {
|
|
|
5568
6117
|
type: "string";
|
|
5569
6118
|
optional: false;
|
|
5570
6119
|
customType: string;
|
|
6120
|
+
} & {
|
|
6121
|
+
serverName: string;
|
|
5571
6122
|
};
|
|
5572
6123
|
readonly id: {
|
|
5573
6124
|
type: "string";
|
|
@@ -5585,6 +6136,8 @@ export declare const marcoZero: {
|
|
|
5585
6136
|
type: "string";
|
|
5586
6137
|
optional: false;
|
|
5587
6138
|
customType: string;
|
|
6139
|
+
} & {
|
|
6140
|
+
serverName: string;
|
|
5588
6141
|
};
|
|
5589
6142
|
};
|
|
5590
6143
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5598,6 +6151,8 @@ export declare const marcoZero: {
|
|
|
5598
6151
|
type: "string";
|
|
5599
6152
|
optional: false;
|
|
5600
6153
|
customType: string;
|
|
6154
|
+
} & {
|
|
6155
|
+
serverName: string;
|
|
5601
6156
|
};
|
|
5602
6157
|
readonly body: {
|
|
5603
6158
|
type: "json";
|
|
@@ -5622,11 +6177,15 @@ export declare const marcoZero: {
|
|
|
5622
6177
|
customType: string;
|
|
5623
6178
|
}, "optional"> & {
|
|
5624
6179
|
optional: true;
|
|
6180
|
+
} & {
|
|
6181
|
+
serverName: string;
|
|
5625
6182
|
};
|
|
5626
6183
|
readonly fromEmail: {
|
|
5627
6184
|
type: "string";
|
|
5628
6185
|
optional: false;
|
|
5629
6186
|
customType: string;
|
|
6187
|
+
} & {
|
|
6188
|
+
serverName: string;
|
|
5630
6189
|
};
|
|
5631
6190
|
readonly fromName: Omit<{
|
|
5632
6191
|
type: "string";
|
|
@@ -5634,6 +6193,8 @@ export declare const marcoZero: {
|
|
|
5634
6193
|
customType: string;
|
|
5635
6194
|
}, "optional"> & {
|
|
5636
6195
|
optional: true;
|
|
6196
|
+
} & {
|
|
6197
|
+
serverName: string;
|
|
5637
6198
|
};
|
|
5638
6199
|
readonly id: {
|
|
5639
6200
|
type: "string";
|
|
@@ -5646,6 +6207,8 @@ export declare const marcoZero: {
|
|
|
5646
6207
|
customType: string;
|
|
5647
6208
|
}, "optional"> & {
|
|
5648
6209
|
optional: true;
|
|
6210
|
+
} & {
|
|
6211
|
+
serverName: string;
|
|
5649
6212
|
};
|
|
5650
6213
|
readonly scheduledFor: Omit<{
|
|
5651
6214
|
type: "number";
|
|
@@ -5653,6 +6216,8 @@ export declare const marcoZero: {
|
|
|
5653
6216
|
customType: number;
|
|
5654
6217
|
}, "optional"> & {
|
|
5655
6218
|
optional: true;
|
|
6219
|
+
} & {
|
|
6220
|
+
serverName: string;
|
|
5656
6221
|
};
|
|
5657
6222
|
readonly status: {
|
|
5658
6223
|
type: "string";
|
|
@@ -5675,11 +6240,15 @@ export declare const marcoZero: {
|
|
|
5675
6240
|
type: "number";
|
|
5676
6241
|
optional: false;
|
|
5677
6242
|
customType: number;
|
|
6243
|
+
} & {
|
|
6244
|
+
serverName: string;
|
|
5678
6245
|
};
|
|
5679
6246
|
readonly userId: {
|
|
5680
6247
|
type: "string";
|
|
5681
6248
|
optional: false;
|
|
5682
6249
|
customType: string;
|
|
6250
|
+
} & {
|
|
6251
|
+
serverName: string;
|
|
5683
6252
|
};
|
|
5684
6253
|
};
|
|
5685
6254
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5693,6 +6262,8 @@ export declare const marcoZero: {
|
|
|
5693
6262
|
type: "string";
|
|
5694
6263
|
optional: false;
|
|
5695
6264
|
customType: string;
|
|
6265
|
+
} & {
|
|
6266
|
+
serverName: string;
|
|
5696
6267
|
};
|
|
5697
6268
|
readonly failed: {
|
|
5698
6269
|
type: "boolean";
|
|
@@ -5703,6 +6274,8 @@ export declare const marcoZero: {
|
|
|
5703
6274
|
type: "string";
|
|
5704
6275
|
optional: false;
|
|
5705
6276
|
customType: string;
|
|
6277
|
+
} & {
|
|
6278
|
+
serverName: string;
|
|
5706
6279
|
};
|
|
5707
6280
|
readonly id: {
|
|
5708
6281
|
type: "string";
|
|
@@ -5713,21 +6286,29 @@ export declare const marcoZero: {
|
|
|
5713
6286
|
type: "string";
|
|
5714
6287
|
optional: false;
|
|
5715
6288
|
customType: string;
|
|
6289
|
+
} & {
|
|
6290
|
+
serverName: string;
|
|
5716
6291
|
};
|
|
5717
6292
|
readonly totalChunks: {
|
|
5718
6293
|
type: "number";
|
|
5719
6294
|
optional: false;
|
|
5720
6295
|
customType: number;
|
|
6296
|
+
} & {
|
|
6297
|
+
serverName: string;
|
|
5721
6298
|
};
|
|
5722
6299
|
readonly totalSize: {
|
|
5723
6300
|
type: "number";
|
|
5724
6301
|
optional: false;
|
|
5725
6302
|
customType: number;
|
|
6303
|
+
} & {
|
|
6304
|
+
serverName: string;
|
|
5726
6305
|
};
|
|
5727
6306
|
readonly uploadedChunks: {
|
|
5728
6307
|
type: "number";
|
|
5729
6308
|
optional: false;
|
|
5730
6309
|
customType: number;
|
|
6310
|
+
} & {
|
|
6311
|
+
serverName: string;
|
|
5731
6312
|
};
|
|
5732
6313
|
};
|
|
5733
6314
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5741,11 +6322,15 @@ export declare const marcoZero: {
|
|
|
5741
6322
|
type: "string";
|
|
5742
6323
|
optional: false;
|
|
5743
6324
|
customType: string;
|
|
6325
|
+
} & {
|
|
6326
|
+
serverName: string;
|
|
5744
6327
|
};
|
|
5745
6328
|
readonly emailAddress: {
|
|
5746
6329
|
type: "string";
|
|
5747
6330
|
optional: false;
|
|
5748
6331
|
customType: string;
|
|
6332
|
+
} & {
|
|
6333
|
+
serverName: string;
|
|
5749
6334
|
};
|
|
5750
6335
|
readonly id: {
|
|
5751
6336
|
type: "string";
|
|
@@ -5769,6 +6354,8 @@ export declare const marcoZero: {
|
|
|
5769
6354
|
type: "string";
|
|
5770
6355
|
optional: false;
|
|
5771
6356
|
customType: string;
|
|
6357
|
+
} & {
|
|
6358
|
+
serverName: string;
|
|
5772
6359
|
};
|
|
5773
6360
|
readonly flagged: {
|
|
5774
6361
|
type: "boolean";
|
|
@@ -5784,6 +6371,8 @@ export declare const marcoZero: {
|
|
|
5784
6371
|
type: "number";
|
|
5785
6372
|
optional: false;
|
|
5786
6373
|
customType: number;
|
|
6374
|
+
} & {
|
|
6375
|
+
serverName: string;
|
|
5787
6376
|
};
|
|
5788
6377
|
readonly seen: {
|
|
5789
6378
|
type: "boolean";
|
|
@@ -5794,6 +6383,8 @@ export declare const marcoZero: {
|
|
|
5794
6383
|
type: "string";
|
|
5795
6384
|
optional: false;
|
|
5796
6385
|
customType: string;
|
|
6386
|
+
} & {
|
|
6387
|
+
serverName: string;
|
|
5797
6388
|
};
|
|
5798
6389
|
readonly words: {
|
|
5799
6390
|
type: "string";
|
|
@@ -5812,11 +6403,15 @@ export declare const marcoZero: {
|
|
|
5812
6403
|
type: "string";
|
|
5813
6404
|
optional: false;
|
|
5814
6405
|
customType: string;
|
|
6406
|
+
} & {
|
|
6407
|
+
serverName: string;
|
|
5815
6408
|
};
|
|
5816
6409
|
readonly threadId: {
|
|
5817
6410
|
type: "string";
|
|
5818
6411
|
optional: false;
|
|
5819
6412
|
customType: string;
|
|
6413
|
+
} & {
|
|
6414
|
+
serverName: string;
|
|
5820
6415
|
};
|
|
5821
6416
|
};
|
|
5822
6417
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5830,6 +6425,8 @@ export declare const marcoZero: {
|
|
|
5830
6425
|
type: "number";
|
|
5831
6426
|
optional: false;
|
|
5832
6427
|
customType: number;
|
|
6428
|
+
} & {
|
|
6429
|
+
serverName: string;
|
|
5833
6430
|
};
|
|
5834
6431
|
readonly envelopeSubject: Omit<{
|
|
5835
6432
|
type: "string";
|
|
@@ -5837,6 +6434,8 @@ export declare const marcoZero: {
|
|
|
5837
6434
|
customType: string;
|
|
5838
6435
|
}, "optional"> & {
|
|
5839
6436
|
optional: true;
|
|
6437
|
+
} & {
|
|
6438
|
+
serverName: string;
|
|
5840
6439
|
};
|
|
5841
6440
|
readonly id: {
|
|
5842
6441
|
type: "string";
|
|
@@ -5847,11 +6446,15 @@ export declare const marcoZero: {
|
|
|
5847
6446
|
type: "string";
|
|
5848
6447
|
optional: false;
|
|
5849
6448
|
customType: string;
|
|
6449
|
+
} & {
|
|
6450
|
+
serverName: string;
|
|
5850
6451
|
};
|
|
5851
6452
|
readonly senderEmail: {
|
|
5852
6453
|
type: "string";
|
|
5853
6454
|
optional: false;
|
|
5854
6455
|
customType: string;
|
|
6456
|
+
} & {
|
|
6457
|
+
serverName: string;
|
|
5855
6458
|
};
|
|
5856
6459
|
readonly senderName: Omit<{
|
|
5857
6460
|
type: "string";
|
|
@@ -5859,11 +6462,15 @@ export declare const marcoZero: {
|
|
|
5859
6462
|
customType: string;
|
|
5860
6463
|
}, "optional"> & {
|
|
5861
6464
|
optional: true;
|
|
6465
|
+
} & {
|
|
6466
|
+
serverName: string;
|
|
5862
6467
|
};
|
|
5863
6468
|
readonly threadId: {
|
|
5864
6469
|
type: "string";
|
|
5865
6470
|
optional: false;
|
|
5866
6471
|
customType: string;
|
|
6472
|
+
} & {
|
|
6473
|
+
serverName: string;
|
|
5867
6474
|
};
|
|
5868
6475
|
};
|
|
5869
6476
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5877,6 +6484,8 @@ export declare const marcoZero: {
|
|
|
5877
6484
|
type: "string";
|
|
5878
6485
|
optional: false;
|
|
5879
6486
|
customType: string;
|
|
6487
|
+
} & {
|
|
6488
|
+
serverName: string;
|
|
5880
6489
|
};
|
|
5881
6490
|
readonly id: {
|
|
5882
6491
|
type: "string";
|
|
@@ -5887,6 +6496,8 @@ export declare const marcoZero: {
|
|
|
5887
6496
|
type: "string";
|
|
5888
6497
|
optional: false;
|
|
5889
6498
|
customType: string;
|
|
6499
|
+
} & {
|
|
6500
|
+
serverName: string;
|
|
5890
6501
|
};
|
|
5891
6502
|
readonly size: {
|
|
5892
6503
|
type: "number";
|
|
@@ -5902,6 +6513,8 @@ export declare const marcoZero: {
|
|
|
5902
6513
|
type: "string";
|
|
5903
6514
|
optional: false;
|
|
5904
6515
|
customType: string;
|
|
6516
|
+
} & {
|
|
6517
|
+
serverName: string;
|
|
5905
6518
|
};
|
|
5906
6519
|
};
|
|
5907
6520
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5915,11 +6528,15 @@ export declare const marcoZero: {
|
|
|
5915
6528
|
type: "string";
|
|
5916
6529
|
optional: false;
|
|
5917
6530
|
customType: string;
|
|
6531
|
+
} & {
|
|
6532
|
+
serverName: string;
|
|
5918
6533
|
};
|
|
5919
6534
|
readonly threadMessageId: {
|
|
5920
6535
|
type: "string";
|
|
5921
6536
|
optional: false;
|
|
5922
6537
|
customType: string;
|
|
6538
|
+
} & {
|
|
6539
|
+
serverName: string;
|
|
5923
6540
|
};
|
|
5924
6541
|
};
|
|
5925
6542
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -5933,6 +6550,8 @@ export declare const marcoZero: {
|
|
|
5933
6550
|
type: "string";
|
|
5934
6551
|
optional: false;
|
|
5935
6552
|
customType: string;
|
|
6553
|
+
} & {
|
|
6554
|
+
serverName: string;
|
|
5936
6555
|
};
|
|
5937
6556
|
readonly id: {
|
|
5938
6557
|
type: "string";
|
|
@@ -5950,6 +6569,8 @@ export declare const marcoZero: {
|
|
|
5950
6569
|
type: "string";
|
|
5951
6570
|
optional: false;
|
|
5952
6571
|
customType: string;
|
|
6572
|
+
} & {
|
|
6573
|
+
serverName: string;
|
|
5953
6574
|
};
|
|
5954
6575
|
readonly type: {
|
|
5955
6576
|
type: "string";
|
|
@@ -5982,11 +6603,15 @@ export declare const marcoZero: {
|
|
|
5982
6603
|
customType: string;
|
|
5983
6604
|
}, "optional"> & {
|
|
5984
6605
|
optional: true;
|
|
6606
|
+
} & {
|
|
6607
|
+
serverName: string;
|
|
5985
6608
|
};
|
|
5986
6609
|
readonly undoSendEnabled: {
|
|
5987
6610
|
type: "boolean";
|
|
5988
6611
|
optional: false;
|
|
5989
6612
|
customType: boolean;
|
|
6613
|
+
} & {
|
|
6614
|
+
serverName: string;
|
|
5990
6615
|
};
|
|
5991
6616
|
};
|
|
5992
6617
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -6000,6 +6625,8 @@ export declare const marcoZero: {
|
|
|
6000
6625
|
type: "number";
|
|
6001
6626
|
optional: false;
|
|
6002
6627
|
customType: number;
|
|
6628
|
+
} & {
|
|
6629
|
+
serverName: string;
|
|
6003
6630
|
};
|
|
6004
6631
|
readonly id: {
|
|
6005
6632
|
type: "string";
|
|
@@ -6015,6 +6642,8 @@ export declare const marcoZero: {
|
|
|
6015
6642
|
type: "string";
|
|
6016
6643
|
optional: false;
|
|
6017
6644
|
customType: string;
|
|
6645
|
+
} & {
|
|
6646
|
+
serverName: string;
|
|
6018
6647
|
};
|
|
6019
6648
|
};
|
|
6020
6649
|
primaryKey: readonly [string, ...string[]];
|