@marcoappio/marco-config 2.0.420 → 2.0.422
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/zero/index.d.ts +853 -201
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/index.js +3 -0
- package/dist/zero/permissions.d.ts +23 -0
- package/dist/zero/permissions.d.ts.map +1 -0
- package/dist/zero/permissions.js +81 -0
- package/dist/zero/queries/getAccounts.d.ts +121 -26
- package/dist/zero/queries/getAccounts.d.ts.map +1 -1
- package/dist/zero/queries/getAccounts.js +1 -1
- package/dist/zero/queries/getContacts.d.ts +121 -26
- package/dist/zero/queries/getContacts.d.ts.map +1 -1
- package/dist/zero/queries/getContacts.js +6 -7
- package/dist/zero/queries/getDrafts.d.ts +122 -27
- package/dist/zero/queries/getDrafts.d.ts.map +1 -1
- package/dist/zero/queries/getDrafts.js +6 -8
- package/dist/zero/queries/getThreads.d.ts +122 -20
- package/dist/zero/queries/getThreads.d.ts.map +1 -1
- package/dist/zero/queries/getThreads.js +10 -11
- package/dist/zero/queries/getUser.d.ts +121 -83
- package/dist/zero/queries/getUser.d.ts.map +1 -1
- package/dist/zero/queries/getUser.js +2 -5
- package/dist/zero/queries/index.d.ts +121 -19
- package/dist/zero/queries/index.d.ts.map +1 -1
- package/dist/zero/schema.d.ts +223 -19
- package/dist/zero/schema.d.ts.map +1 -1
- package/dist/zero/schema.js +61 -51
- package/package.json +1 -1
package/dist/zero/schema.d.ts
CHANGED
|
@@ -21,11 +21,15 @@ export declare const schema: {
|
|
|
21
21
|
customType: string;
|
|
22
22
|
}, "optional"> & {
|
|
23
23
|
optional: true;
|
|
24
|
+
} & {
|
|
25
|
+
serverName: string;
|
|
24
26
|
};
|
|
25
27
|
readonly undoSendEnabled: {
|
|
26
28
|
type: "boolean";
|
|
27
29
|
optional: false;
|
|
28
30
|
customType: boolean;
|
|
31
|
+
} & {
|
|
32
|
+
serverName: string;
|
|
29
33
|
};
|
|
30
34
|
};
|
|
31
35
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -39,6 +43,8 @@ export declare const schema: {
|
|
|
39
43
|
type: "number";
|
|
40
44
|
optional: false;
|
|
41
45
|
customType: number;
|
|
46
|
+
} & {
|
|
47
|
+
serverName: string;
|
|
42
48
|
};
|
|
43
49
|
readonly id: {
|
|
44
50
|
type: "string";
|
|
@@ -54,6 +60,8 @@ export declare const schema: {
|
|
|
54
60
|
type: "string";
|
|
55
61
|
optional: false;
|
|
56
62
|
customType: string;
|
|
63
|
+
} & {
|
|
64
|
+
serverName: string;
|
|
57
65
|
};
|
|
58
66
|
};
|
|
59
67
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -67,6 +75,8 @@ export declare const schema: {
|
|
|
67
75
|
type: "string";
|
|
68
76
|
optional: false;
|
|
69
77
|
customType: string;
|
|
78
|
+
} & {
|
|
79
|
+
serverName: string;
|
|
70
80
|
};
|
|
71
81
|
readonly id: {
|
|
72
82
|
type: "string";
|
|
@@ -84,6 +94,8 @@ export declare const schema: {
|
|
|
84
94
|
type: "string";
|
|
85
95
|
optional: false;
|
|
86
96
|
customType: string;
|
|
97
|
+
} & {
|
|
98
|
+
serverName: string;
|
|
87
99
|
};
|
|
88
100
|
};
|
|
89
101
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -104,6 +116,8 @@ export declare const schema: {
|
|
|
104
116
|
customType: string;
|
|
105
117
|
}, "optional"> & {
|
|
106
118
|
optional: true;
|
|
119
|
+
} & {
|
|
120
|
+
serverName: string;
|
|
107
121
|
};
|
|
108
122
|
readonly id: {
|
|
109
123
|
type: "string";
|
|
@@ -114,16 +128,22 @@ export declare const schema: {
|
|
|
114
128
|
type: "string";
|
|
115
129
|
optional: false;
|
|
116
130
|
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";
|
|
131
|
+
} & {
|
|
132
|
+
serverName: string;
|
|
117
133
|
};
|
|
118
134
|
readonly mailProcessedCount: {
|
|
119
135
|
type: "number";
|
|
120
136
|
optional: false;
|
|
121
137
|
customType: number;
|
|
138
|
+
} & {
|
|
139
|
+
serverName: string;
|
|
122
140
|
};
|
|
123
141
|
readonly mailTotalCount: {
|
|
124
142
|
type: "number";
|
|
125
143
|
optional: false;
|
|
126
144
|
customType: number;
|
|
145
|
+
} & {
|
|
146
|
+
serverName: string;
|
|
127
147
|
};
|
|
128
148
|
readonly primaryAliasId: Omit<{
|
|
129
149
|
type: "string";
|
|
@@ -131,11 +151,15 @@ export declare const schema: {
|
|
|
131
151
|
customType: string;
|
|
132
152
|
}, "optional"> & {
|
|
133
153
|
optional: true;
|
|
154
|
+
} & {
|
|
155
|
+
serverName: string;
|
|
134
156
|
};
|
|
135
157
|
readonly userId: {
|
|
136
158
|
type: "string";
|
|
137
159
|
optional: false;
|
|
138
160
|
customType: string;
|
|
161
|
+
} & {
|
|
162
|
+
serverName: string;
|
|
139
163
|
};
|
|
140
164
|
};
|
|
141
165
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -149,11 +173,15 @@ export declare const schema: {
|
|
|
149
173
|
type: "string";
|
|
150
174
|
optional: false;
|
|
151
175
|
customType: string;
|
|
176
|
+
} & {
|
|
177
|
+
serverName: string;
|
|
152
178
|
};
|
|
153
179
|
readonly emailAddress: {
|
|
154
180
|
type: "string";
|
|
155
181
|
optional: false;
|
|
156
182
|
customType: string;
|
|
183
|
+
} & {
|
|
184
|
+
serverName: string;
|
|
157
185
|
};
|
|
158
186
|
readonly id: {
|
|
159
187
|
type: "string";
|
|
@@ -164,6 +192,8 @@ export declare const schema: {
|
|
|
164
192
|
type: "boolean";
|
|
165
193
|
optional: false;
|
|
166
194
|
customType: boolean;
|
|
195
|
+
} & {
|
|
196
|
+
serverName: string;
|
|
167
197
|
};
|
|
168
198
|
readonly name: Omit<{
|
|
169
199
|
type: "string";
|
|
@@ -184,6 +214,8 @@ export declare const schema: {
|
|
|
184
214
|
type: "string";
|
|
185
215
|
optional: false;
|
|
186
216
|
customType: string;
|
|
217
|
+
} & {
|
|
218
|
+
serverName: string;
|
|
187
219
|
};
|
|
188
220
|
readonly id: {
|
|
189
221
|
type: "string";
|
|
@@ -201,6 +233,8 @@ export declare const schema: {
|
|
|
201
233
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
202
234
|
}, "optional"> & {
|
|
203
235
|
optional: true;
|
|
236
|
+
} & {
|
|
237
|
+
serverName: string;
|
|
204
238
|
};
|
|
205
239
|
};
|
|
206
240
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -214,6 +248,8 @@ export declare const schema: {
|
|
|
214
248
|
type: "string";
|
|
215
249
|
optional: false;
|
|
216
250
|
customType: string;
|
|
251
|
+
} & {
|
|
252
|
+
serverName: string;
|
|
217
253
|
};
|
|
218
254
|
readonly body: {
|
|
219
255
|
type: "json";
|
|
@@ -238,11 +274,15 @@ export declare const schema: {
|
|
|
238
274
|
customType: string;
|
|
239
275
|
}, "optional"> & {
|
|
240
276
|
optional: true;
|
|
277
|
+
} & {
|
|
278
|
+
serverName: string;
|
|
241
279
|
};
|
|
242
280
|
readonly fromEmail: {
|
|
243
281
|
type: "string";
|
|
244
282
|
optional: false;
|
|
245
283
|
customType: string;
|
|
284
|
+
} & {
|
|
285
|
+
serverName: string;
|
|
246
286
|
};
|
|
247
287
|
readonly fromName: Omit<{
|
|
248
288
|
type: "string";
|
|
@@ -250,6 +290,8 @@ export declare const schema: {
|
|
|
250
290
|
customType: string;
|
|
251
291
|
}, "optional"> & {
|
|
252
292
|
optional: true;
|
|
293
|
+
} & {
|
|
294
|
+
serverName: string;
|
|
253
295
|
};
|
|
254
296
|
readonly id: {
|
|
255
297
|
type: "string";
|
|
@@ -262,6 +304,8 @@ export declare const schema: {
|
|
|
262
304
|
customType: string;
|
|
263
305
|
}, "optional"> & {
|
|
264
306
|
optional: true;
|
|
307
|
+
} & {
|
|
308
|
+
serverName: string;
|
|
265
309
|
};
|
|
266
310
|
readonly scheduledFor: Omit<{
|
|
267
311
|
type: "number";
|
|
@@ -269,6 +313,8 @@ export declare const schema: {
|
|
|
269
313
|
customType: number;
|
|
270
314
|
}, "optional"> & {
|
|
271
315
|
optional: true;
|
|
316
|
+
} & {
|
|
317
|
+
serverName: string;
|
|
272
318
|
};
|
|
273
319
|
readonly status: {
|
|
274
320
|
type: "string";
|
|
@@ -291,11 +337,15 @@ export declare const schema: {
|
|
|
291
337
|
type: "number";
|
|
292
338
|
optional: false;
|
|
293
339
|
customType: number;
|
|
340
|
+
} & {
|
|
341
|
+
serverName: string;
|
|
294
342
|
};
|
|
295
343
|
readonly userId: {
|
|
296
344
|
type: "string";
|
|
297
345
|
optional: false;
|
|
298
346
|
customType: string;
|
|
347
|
+
} & {
|
|
348
|
+
serverName: string;
|
|
299
349
|
};
|
|
300
350
|
};
|
|
301
351
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -309,11 +359,15 @@ export declare const schema: {
|
|
|
309
359
|
type: "string";
|
|
310
360
|
optional: false;
|
|
311
361
|
customType: string;
|
|
362
|
+
} & {
|
|
363
|
+
serverName: string;
|
|
312
364
|
};
|
|
313
365
|
readonly emailAddress: {
|
|
314
366
|
type: "string";
|
|
315
367
|
optional: false;
|
|
316
368
|
customType: string;
|
|
369
|
+
} & {
|
|
370
|
+
serverName: string;
|
|
317
371
|
};
|
|
318
372
|
readonly id: {
|
|
319
373
|
type: "string";
|
|
@@ -337,6 +391,8 @@ export declare const schema: {
|
|
|
337
391
|
type: "string";
|
|
338
392
|
optional: false;
|
|
339
393
|
customType: string;
|
|
394
|
+
} & {
|
|
395
|
+
serverName: string;
|
|
340
396
|
};
|
|
341
397
|
readonly failed: {
|
|
342
398
|
type: "boolean";
|
|
@@ -347,6 +403,8 @@ export declare const schema: {
|
|
|
347
403
|
type: "string";
|
|
348
404
|
optional: false;
|
|
349
405
|
customType: string;
|
|
406
|
+
} & {
|
|
407
|
+
serverName: string;
|
|
350
408
|
};
|
|
351
409
|
readonly id: {
|
|
352
410
|
type: "string";
|
|
@@ -357,21 +415,29 @@ export declare const schema: {
|
|
|
357
415
|
type: "string";
|
|
358
416
|
optional: false;
|
|
359
417
|
customType: string;
|
|
418
|
+
} & {
|
|
419
|
+
serverName: string;
|
|
360
420
|
};
|
|
361
421
|
readonly totalChunks: {
|
|
362
422
|
type: "number";
|
|
363
423
|
optional: false;
|
|
364
424
|
customType: number;
|
|
425
|
+
} & {
|
|
426
|
+
serverName: string;
|
|
365
427
|
};
|
|
366
428
|
readonly totalSize: {
|
|
367
429
|
type: "number";
|
|
368
430
|
optional: false;
|
|
369
431
|
customType: number;
|
|
432
|
+
} & {
|
|
433
|
+
serverName: string;
|
|
370
434
|
};
|
|
371
435
|
readonly uploadedChunks: {
|
|
372
436
|
type: "number";
|
|
373
437
|
optional: false;
|
|
374
438
|
customType: number;
|
|
439
|
+
} & {
|
|
440
|
+
serverName: string;
|
|
375
441
|
};
|
|
376
442
|
};
|
|
377
443
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -385,6 +451,8 @@ export declare const schema: {
|
|
|
385
451
|
type: "string";
|
|
386
452
|
optional: false;
|
|
387
453
|
customType: string;
|
|
454
|
+
} & {
|
|
455
|
+
serverName: string;
|
|
388
456
|
};
|
|
389
457
|
readonly flagged: {
|
|
390
458
|
type: "boolean";
|
|
@@ -400,6 +468,8 @@ export declare const schema: {
|
|
|
400
468
|
type: "number";
|
|
401
469
|
optional: false;
|
|
402
470
|
customType: number;
|
|
471
|
+
} & {
|
|
472
|
+
serverName: string;
|
|
403
473
|
};
|
|
404
474
|
readonly seen: {
|
|
405
475
|
type: "boolean";
|
|
@@ -410,6 +480,8 @@ export declare const schema: {
|
|
|
410
480
|
type: "string";
|
|
411
481
|
optional: false;
|
|
412
482
|
customType: string;
|
|
483
|
+
} & {
|
|
484
|
+
serverName: string;
|
|
413
485
|
};
|
|
414
486
|
readonly words: {
|
|
415
487
|
type: "string";
|
|
@@ -428,11 +500,15 @@ export declare const schema: {
|
|
|
428
500
|
type: "string";
|
|
429
501
|
optional: false;
|
|
430
502
|
customType: string;
|
|
503
|
+
} & {
|
|
504
|
+
serverName: string;
|
|
431
505
|
};
|
|
432
506
|
readonly threadId: {
|
|
433
507
|
type: "string";
|
|
434
508
|
optional: false;
|
|
435
509
|
customType: string;
|
|
510
|
+
} & {
|
|
511
|
+
serverName: string;
|
|
436
512
|
};
|
|
437
513
|
};
|
|
438
514
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -446,6 +522,8 @@ export declare const schema: {
|
|
|
446
522
|
type: "number";
|
|
447
523
|
optional: false;
|
|
448
524
|
customType: number;
|
|
525
|
+
} & {
|
|
526
|
+
serverName: string;
|
|
449
527
|
};
|
|
450
528
|
readonly envelopeSubject: Omit<{
|
|
451
529
|
type: "string";
|
|
@@ -453,6 +531,8 @@ export declare const schema: {
|
|
|
453
531
|
customType: string;
|
|
454
532
|
}, "optional"> & {
|
|
455
533
|
optional: true;
|
|
534
|
+
} & {
|
|
535
|
+
serverName: string;
|
|
456
536
|
};
|
|
457
537
|
readonly id: {
|
|
458
538
|
type: "string";
|
|
@@ -463,11 +543,15 @@ export declare const schema: {
|
|
|
463
543
|
type: "string";
|
|
464
544
|
optional: false;
|
|
465
545
|
customType: string;
|
|
546
|
+
} & {
|
|
547
|
+
serverName: string;
|
|
466
548
|
};
|
|
467
549
|
readonly senderEmail: {
|
|
468
550
|
type: "string";
|
|
469
551
|
optional: false;
|
|
470
552
|
customType: string;
|
|
553
|
+
} & {
|
|
554
|
+
serverName: string;
|
|
471
555
|
};
|
|
472
556
|
readonly senderName: Omit<{
|
|
473
557
|
type: "string";
|
|
@@ -475,11 +559,15 @@ export declare const schema: {
|
|
|
475
559
|
customType: string;
|
|
476
560
|
}, "optional"> & {
|
|
477
561
|
optional: true;
|
|
562
|
+
} & {
|
|
563
|
+
serverName: string;
|
|
478
564
|
};
|
|
479
565
|
readonly threadId: {
|
|
480
566
|
type: "string";
|
|
481
567
|
optional: false;
|
|
482
568
|
customType: string;
|
|
569
|
+
} & {
|
|
570
|
+
serverName: string;
|
|
483
571
|
};
|
|
484
572
|
};
|
|
485
573
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -493,6 +581,8 @@ export declare const schema: {
|
|
|
493
581
|
type: "string";
|
|
494
582
|
optional: false;
|
|
495
583
|
customType: string;
|
|
584
|
+
} & {
|
|
585
|
+
serverName: string;
|
|
496
586
|
};
|
|
497
587
|
readonly id: {
|
|
498
588
|
type: "string";
|
|
@@ -510,6 +600,8 @@ export declare const schema: {
|
|
|
510
600
|
type: "string";
|
|
511
601
|
optional: false;
|
|
512
602
|
customType: string;
|
|
603
|
+
} & {
|
|
604
|
+
serverName: string;
|
|
513
605
|
};
|
|
514
606
|
readonly type: {
|
|
515
607
|
type: "string";
|
|
@@ -528,6 +620,8 @@ export declare const schema: {
|
|
|
528
620
|
type: "string";
|
|
529
621
|
optional: false;
|
|
530
622
|
customType: string;
|
|
623
|
+
} & {
|
|
624
|
+
serverName: string;
|
|
531
625
|
};
|
|
532
626
|
readonly id: {
|
|
533
627
|
type: "string";
|
|
@@ -538,6 +632,8 @@ export declare const schema: {
|
|
|
538
632
|
type: "string";
|
|
539
633
|
optional: false;
|
|
540
634
|
customType: string;
|
|
635
|
+
} & {
|
|
636
|
+
serverName: string;
|
|
541
637
|
};
|
|
542
638
|
readonly size: {
|
|
543
639
|
type: "number";
|
|
@@ -553,6 +649,8 @@ export declare const schema: {
|
|
|
553
649
|
type: "string";
|
|
554
650
|
optional: false;
|
|
555
651
|
customType: string;
|
|
652
|
+
} & {
|
|
653
|
+
serverName: string;
|
|
556
654
|
};
|
|
557
655
|
};
|
|
558
656
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -566,11 +664,15 @@ export declare const schema: {
|
|
|
566
664
|
type: "string";
|
|
567
665
|
optional: false;
|
|
568
666
|
customType: string;
|
|
667
|
+
} & {
|
|
668
|
+
serverName: string;
|
|
569
669
|
};
|
|
570
670
|
readonly threadMessageId: {
|
|
571
671
|
type: "string";
|
|
572
672
|
optional: false;
|
|
573
673
|
customType: string;
|
|
674
|
+
} & {
|
|
675
|
+
serverName: string;
|
|
574
676
|
};
|
|
575
677
|
};
|
|
576
678
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -582,7 +684,7 @@ export declare const schema: {
|
|
|
582
684
|
readonly user: {
|
|
583
685
|
accounts: [{
|
|
584
686
|
readonly sourceField: string[];
|
|
585
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
687
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
586
688
|
readonly destSchema: "account";
|
|
587
689
|
readonly cardinality: "many";
|
|
588
690
|
}];
|
|
@@ -594,7 +696,7 @@ export declare const schema: {
|
|
|
594
696
|
}];
|
|
595
697
|
drafts: [{
|
|
596
698
|
readonly sourceField: string[];
|
|
597
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
699
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
598
700
|
readonly destSchema: "draft";
|
|
599
701
|
readonly cardinality: "many";
|
|
600
702
|
}];
|
|
@@ -614,7 +716,7 @@ export declare const schema: {
|
|
|
614
716
|
readonly userPushNotificationToken: {
|
|
615
717
|
user: [{
|
|
616
718
|
readonly sourceField: string[];
|
|
617
|
-
readonly destField: ("id" | "name" | "
|
|
719
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
618
720
|
readonly destSchema: "user";
|
|
619
721
|
readonly cardinality: "one";
|
|
620
722
|
}];
|
|
@@ -622,7 +724,7 @@ export declare const schema: {
|
|
|
622
724
|
readonly contact: {
|
|
623
725
|
user: [{
|
|
624
726
|
readonly sourceField: string[];
|
|
625
|
-
readonly destField: ("id" | "name" | "
|
|
727
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
626
728
|
readonly destSchema: "user";
|
|
627
729
|
readonly cardinality: "one";
|
|
628
730
|
}];
|
|
@@ -636,7 +738,7 @@ export declare const schema: {
|
|
|
636
738
|
}];
|
|
637
739
|
drafts: [{
|
|
638
740
|
readonly sourceField: string[];
|
|
639
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
741
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
640
742
|
readonly destSchema: "draft";
|
|
641
743
|
readonly cardinality: "many";
|
|
642
744
|
}];
|
|
@@ -660,7 +762,7 @@ export declare const schema: {
|
|
|
660
762
|
}];
|
|
661
763
|
user: [{
|
|
662
764
|
readonly sourceField: string[];
|
|
663
|
-
readonly destField: ("id" | "name" | "
|
|
765
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
664
766
|
readonly destSchema: "user";
|
|
665
767
|
readonly cardinality: "one";
|
|
666
768
|
}];
|
|
@@ -668,7 +770,7 @@ export declare const schema: {
|
|
|
668
770
|
readonly accountAlias: {
|
|
669
771
|
account: [{
|
|
670
772
|
readonly sourceField: string[];
|
|
671
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
773
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
672
774
|
readonly destSchema: "account";
|
|
673
775
|
readonly cardinality: "one";
|
|
674
776
|
}];
|
|
@@ -676,7 +778,7 @@ export declare const schema: {
|
|
|
676
778
|
readonly accountLabel: {
|
|
677
779
|
account: [{
|
|
678
780
|
readonly sourceField: string[];
|
|
679
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
781
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
680
782
|
readonly destSchema: "account";
|
|
681
783
|
readonly cardinality: "one";
|
|
682
784
|
}];
|
|
@@ -687,7 +789,7 @@ export declare const schema: {
|
|
|
687
789
|
readonly cardinality: "many";
|
|
688
790
|
}, {
|
|
689
791
|
readonly sourceField: string[];
|
|
690
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
792
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
691
793
|
readonly destSchema: "threadMessage";
|
|
692
794
|
readonly cardinality: "many";
|
|
693
795
|
}];
|
|
@@ -706,7 +808,7 @@ export declare const schema: {
|
|
|
706
808
|
readonly draft: {
|
|
707
809
|
account: [{
|
|
708
810
|
readonly sourceField: string[];
|
|
709
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
811
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
710
812
|
readonly destSchema: "account";
|
|
711
813
|
readonly cardinality: "one";
|
|
712
814
|
}];
|
|
@@ -724,7 +826,7 @@ export declare const schema: {
|
|
|
724
826
|
}];
|
|
725
827
|
user: [{
|
|
726
828
|
readonly sourceField: string[];
|
|
727
|
-
readonly destField: ("id" | "name" | "
|
|
829
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
728
830
|
readonly destSchema: "user";
|
|
729
831
|
readonly cardinality: "one";
|
|
730
832
|
}];
|
|
@@ -732,7 +834,7 @@ export declare const schema: {
|
|
|
732
834
|
readonly draftRecipient: {
|
|
733
835
|
draft: [{
|
|
734
836
|
readonly sourceField: string[];
|
|
735
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
837
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
736
838
|
readonly destSchema: "draft";
|
|
737
839
|
readonly cardinality: "one";
|
|
738
840
|
}];
|
|
@@ -740,7 +842,7 @@ export declare const schema: {
|
|
|
740
842
|
readonly draftAttachment: {
|
|
741
843
|
draft: [{
|
|
742
844
|
readonly sourceField: string[];
|
|
743
|
-
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "
|
|
845
|
+
readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
|
|
744
846
|
readonly destSchema: "draft";
|
|
745
847
|
readonly cardinality: "one";
|
|
746
848
|
}];
|
|
@@ -748,7 +850,7 @@ export declare const schema: {
|
|
|
748
850
|
readonly thread: {
|
|
749
851
|
account: [{
|
|
750
852
|
readonly sourceField: string[];
|
|
751
|
-
readonly destField: ("id" | "color" | "userId" | "
|
|
853
|
+
readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
752
854
|
readonly destSchema: "account";
|
|
753
855
|
readonly cardinality: "one";
|
|
754
856
|
}];
|
|
@@ -765,13 +867,13 @@ export declare const schema: {
|
|
|
765
867
|
}];
|
|
766
868
|
messages: [{
|
|
767
869
|
readonly sourceField: string[];
|
|
768
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
870
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
769
871
|
readonly destSchema: "threadMessage";
|
|
770
872
|
readonly cardinality: "many";
|
|
771
873
|
}];
|
|
772
874
|
user: [{
|
|
773
875
|
readonly sourceField: string[];
|
|
774
|
-
readonly destField: ("id" | "name" | "
|
|
876
|
+
readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
|
|
775
877
|
readonly destSchema: "user";
|
|
776
878
|
readonly cardinality: "one";
|
|
777
879
|
}];
|
|
@@ -824,7 +926,7 @@ export declare const schema: {
|
|
|
824
926
|
readonly threadMessageRecipient: {
|
|
825
927
|
message: [{
|
|
826
928
|
readonly sourceField: string[];
|
|
827
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
929
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
828
930
|
readonly destSchema: "threadMessage";
|
|
829
931
|
readonly cardinality: "one";
|
|
830
932
|
}];
|
|
@@ -832,7 +934,7 @@ export declare const schema: {
|
|
|
832
934
|
readonly threadMessageAttachment: {
|
|
833
935
|
message: [{
|
|
834
936
|
readonly sourceField: string[];
|
|
835
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
937
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
836
938
|
readonly destSchema: "threadMessage";
|
|
837
939
|
readonly cardinality: "one";
|
|
838
940
|
}];
|
|
@@ -846,7 +948,7 @@ export declare const schema: {
|
|
|
846
948
|
}];
|
|
847
949
|
message: [{
|
|
848
950
|
readonly sourceField: string[];
|
|
849
|
-
readonly destField: ("threadId" | "id" | "envelopeDate" | "
|
|
951
|
+
readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
850
952
|
readonly destSchema: "threadMessage";
|
|
851
953
|
readonly cardinality: "one";
|
|
852
954
|
}];
|
|
@@ -871,6 +973,8 @@ export declare const zeroTables: {
|
|
|
871
973
|
customType: string;
|
|
872
974
|
}, "optional"> & {
|
|
873
975
|
optional: true;
|
|
976
|
+
} & {
|
|
977
|
+
serverName: string;
|
|
874
978
|
};
|
|
875
979
|
readonly id: {
|
|
876
980
|
type: "string";
|
|
@@ -881,16 +985,22 @@ export declare const zeroTables: {
|
|
|
881
985
|
type: "string";
|
|
882
986
|
optional: false;
|
|
883
987
|
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";
|
|
988
|
+
} & {
|
|
989
|
+
serverName: string;
|
|
884
990
|
};
|
|
885
991
|
readonly mailProcessedCount: {
|
|
886
992
|
type: "number";
|
|
887
993
|
optional: false;
|
|
888
994
|
customType: number;
|
|
995
|
+
} & {
|
|
996
|
+
serverName: string;
|
|
889
997
|
};
|
|
890
998
|
readonly mailTotalCount: {
|
|
891
999
|
type: "number";
|
|
892
1000
|
optional: false;
|
|
893
1001
|
customType: number;
|
|
1002
|
+
} & {
|
|
1003
|
+
serverName: string;
|
|
894
1004
|
};
|
|
895
1005
|
readonly primaryAliasId: Omit<{
|
|
896
1006
|
type: "string";
|
|
@@ -898,11 +1008,15 @@ export declare const zeroTables: {
|
|
|
898
1008
|
customType: string;
|
|
899
1009
|
}, "optional"> & {
|
|
900
1010
|
optional: true;
|
|
1011
|
+
} & {
|
|
1012
|
+
serverName: string;
|
|
901
1013
|
};
|
|
902
1014
|
readonly userId: {
|
|
903
1015
|
type: "string";
|
|
904
1016
|
optional: false;
|
|
905
1017
|
customType: string;
|
|
1018
|
+
} & {
|
|
1019
|
+
serverName: string;
|
|
906
1020
|
};
|
|
907
1021
|
};
|
|
908
1022
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -916,11 +1030,15 @@ export declare const zeroTables: {
|
|
|
916
1030
|
type: "string";
|
|
917
1031
|
optional: false;
|
|
918
1032
|
customType: string;
|
|
1033
|
+
} & {
|
|
1034
|
+
serverName: string;
|
|
919
1035
|
};
|
|
920
1036
|
readonly emailAddress: {
|
|
921
1037
|
type: "string";
|
|
922
1038
|
optional: false;
|
|
923
1039
|
customType: string;
|
|
1040
|
+
} & {
|
|
1041
|
+
serverName: string;
|
|
924
1042
|
};
|
|
925
1043
|
readonly id: {
|
|
926
1044
|
type: "string";
|
|
@@ -931,6 +1049,8 @@ export declare const zeroTables: {
|
|
|
931
1049
|
type: "boolean";
|
|
932
1050
|
optional: false;
|
|
933
1051
|
customType: boolean;
|
|
1052
|
+
} & {
|
|
1053
|
+
serverName: string;
|
|
934
1054
|
};
|
|
935
1055
|
readonly name: Omit<{
|
|
936
1056
|
type: "string";
|
|
@@ -951,6 +1071,8 @@ export declare const zeroTables: {
|
|
|
951
1071
|
type: "string";
|
|
952
1072
|
optional: false;
|
|
953
1073
|
customType: string;
|
|
1074
|
+
} & {
|
|
1075
|
+
serverName: string;
|
|
954
1076
|
};
|
|
955
1077
|
readonly id: {
|
|
956
1078
|
type: "string";
|
|
@@ -968,6 +1090,8 @@ export declare const zeroTables: {
|
|
|
968
1090
|
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
969
1091
|
}, "optional"> & {
|
|
970
1092
|
optional: true;
|
|
1093
|
+
} & {
|
|
1094
|
+
serverName: string;
|
|
971
1095
|
};
|
|
972
1096
|
};
|
|
973
1097
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -981,6 +1105,8 @@ export declare const zeroTables: {
|
|
|
981
1105
|
type: "string";
|
|
982
1106
|
optional: false;
|
|
983
1107
|
customType: string;
|
|
1108
|
+
} & {
|
|
1109
|
+
serverName: string;
|
|
984
1110
|
};
|
|
985
1111
|
readonly id: {
|
|
986
1112
|
type: "string";
|
|
@@ -998,6 +1124,8 @@ export declare const zeroTables: {
|
|
|
998
1124
|
type: "string";
|
|
999
1125
|
optional: false;
|
|
1000
1126
|
customType: string;
|
|
1127
|
+
} & {
|
|
1128
|
+
serverName: string;
|
|
1001
1129
|
};
|
|
1002
1130
|
};
|
|
1003
1131
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1011,6 +1139,8 @@ export declare const zeroTables: {
|
|
|
1011
1139
|
type: "string";
|
|
1012
1140
|
optional: false;
|
|
1013
1141
|
customType: string;
|
|
1142
|
+
} & {
|
|
1143
|
+
serverName: string;
|
|
1014
1144
|
};
|
|
1015
1145
|
readonly body: {
|
|
1016
1146
|
type: "json";
|
|
@@ -1035,11 +1165,15 @@ export declare const zeroTables: {
|
|
|
1035
1165
|
customType: string;
|
|
1036
1166
|
}, "optional"> & {
|
|
1037
1167
|
optional: true;
|
|
1168
|
+
} & {
|
|
1169
|
+
serverName: string;
|
|
1038
1170
|
};
|
|
1039
1171
|
readonly fromEmail: {
|
|
1040
1172
|
type: "string";
|
|
1041
1173
|
optional: false;
|
|
1042
1174
|
customType: string;
|
|
1175
|
+
} & {
|
|
1176
|
+
serverName: string;
|
|
1043
1177
|
};
|
|
1044
1178
|
readonly fromName: Omit<{
|
|
1045
1179
|
type: "string";
|
|
@@ -1047,6 +1181,8 @@ export declare const zeroTables: {
|
|
|
1047
1181
|
customType: string;
|
|
1048
1182
|
}, "optional"> & {
|
|
1049
1183
|
optional: true;
|
|
1184
|
+
} & {
|
|
1185
|
+
serverName: string;
|
|
1050
1186
|
};
|
|
1051
1187
|
readonly id: {
|
|
1052
1188
|
type: "string";
|
|
@@ -1059,6 +1195,8 @@ export declare const zeroTables: {
|
|
|
1059
1195
|
customType: string;
|
|
1060
1196
|
}, "optional"> & {
|
|
1061
1197
|
optional: true;
|
|
1198
|
+
} & {
|
|
1199
|
+
serverName: string;
|
|
1062
1200
|
};
|
|
1063
1201
|
readonly scheduledFor: Omit<{
|
|
1064
1202
|
type: "number";
|
|
@@ -1066,6 +1204,8 @@ export declare const zeroTables: {
|
|
|
1066
1204
|
customType: number;
|
|
1067
1205
|
}, "optional"> & {
|
|
1068
1206
|
optional: true;
|
|
1207
|
+
} & {
|
|
1208
|
+
serverName: string;
|
|
1069
1209
|
};
|
|
1070
1210
|
readonly status: {
|
|
1071
1211
|
type: "string";
|
|
@@ -1088,11 +1228,15 @@ export declare const zeroTables: {
|
|
|
1088
1228
|
type: "number";
|
|
1089
1229
|
optional: false;
|
|
1090
1230
|
customType: number;
|
|
1231
|
+
} & {
|
|
1232
|
+
serverName: string;
|
|
1091
1233
|
};
|
|
1092
1234
|
readonly userId: {
|
|
1093
1235
|
type: "string";
|
|
1094
1236
|
optional: false;
|
|
1095
1237
|
customType: string;
|
|
1238
|
+
} & {
|
|
1239
|
+
serverName: string;
|
|
1096
1240
|
};
|
|
1097
1241
|
};
|
|
1098
1242
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1106,6 +1250,8 @@ export declare const zeroTables: {
|
|
|
1106
1250
|
type: "string";
|
|
1107
1251
|
optional: false;
|
|
1108
1252
|
customType: string;
|
|
1253
|
+
} & {
|
|
1254
|
+
serverName: string;
|
|
1109
1255
|
};
|
|
1110
1256
|
readonly failed: {
|
|
1111
1257
|
type: "boolean";
|
|
@@ -1116,6 +1262,8 @@ export declare const zeroTables: {
|
|
|
1116
1262
|
type: "string";
|
|
1117
1263
|
optional: false;
|
|
1118
1264
|
customType: string;
|
|
1265
|
+
} & {
|
|
1266
|
+
serverName: string;
|
|
1119
1267
|
};
|
|
1120
1268
|
readonly id: {
|
|
1121
1269
|
type: "string";
|
|
@@ -1126,21 +1274,29 @@ export declare const zeroTables: {
|
|
|
1126
1274
|
type: "string";
|
|
1127
1275
|
optional: false;
|
|
1128
1276
|
customType: string;
|
|
1277
|
+
} & {
|
|
1278
|
+
serverName: string;
|
|
1129
1279
|
};
|
|
1130
1280
|
readonly totalChunks: {
|
|
1131
1281
|
type: "number";
|
|
1132
1282
|
optional: false;
|
|
1133
1283
|
customType: number;
|
|
1284
|
+
} & {
|
|
1285
|
+
serverName: string;
|
|
1134
1286
|
};
|
|
1135
1287
|
readonly totalSize: {
|
|
1136
1288
|
type: "number";
|
|
1137
1289
|
optional: false;
|
|
1138
1290
|
customType: number;
|
|
1291
|
+
} & {
|
|
1292
|
+
serverName: string;
|
|
1139
1293
|
};
|
|
1140
1294
|
readonly uploadedChunks: {
|
|
1141
1295
|
type: "number";
|
|
1142
1296
|
optional: false;
|
|
1143
1297
|
customType: number;
|
|
1298
|
+
} & {
|
|
1299
|
+
serverName: string;
|
|
1144
1300
|
};
|
|
1145
1301
|
};
|
|
1146
1302
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1154,11 +1310,15 @@ export declare const zeroTables: {
|
|
|
1154
1310
|
type: "string";
|
|
1155
1311
|
optional: false;
|
|
1156
1312
|
customType: string;
|
|
1313
|
+
} & {
|
|
1314
|
+
serverName: string;
|
|
1157
1315
|
};
|
|
1158
1316
|
readonly emailAddress: {
|
|
1159
1317
|
type: "string";
|
|
1160
1318
|
optional: false;
|
|
1161
1319
|
customType: string;
|
|
1320
|
+
} & {
|
|
1321
|
+
serverName: string;
|
|
1162
1322
|
};
|
|
1163
1323
|
readonly id: {
|
|
1164
1324
|
type: "string";
|
|
@@ -1182,6 +1342,8 @@ export declare const zeroTables: {
|
|
|
1182
1342
|
type: "string";
|
|
1183
1343
|
optional: false;
|
|
1184
1344
|
customType: string;
|
|
1345
|
+
} & {
|
|
1346
|
+
serverName: string;
|
|
1185
1347
|
};
|
|
1186
1348
|
readonly flagged: {
|
|
1187
1349
|
type: "boolean";
|
|
@@ -1197,6 +1359,8 @@ export declare const zeroTables: {
|
|
|
1197
1359
|
type: "number";
|
|
1198
1360
|
optional: false;
|
|
1199
1361
|
customType: number;
|
|
1362
|
+
} & {
|
|
1363
|
+
serverName: string;
|
|
1200
1364
|
};
|
|
1201
1365
|
readonly seen: {
|
|
1202
1366
|
type: "boolean";
|
|
@@ -1207,6 +1371,8 @@ export declare const zeroTables: {
|
|
|
1207
1371
|
type: "string";
|
|
1208
1372
|
optional: false;
|
|
1209
1373
|
customType: string;
|
|
1374
|
+
} & {
|
|
1375
|
+
serverName: string;
|
|
1210
1376
|
};
|
|
1211
1377
|
readonly words: {
|
|
1212
1378
|
type: "string";
|
|
@@ -1225,11 +1391,15 @@ export declare const zeroTables: {
|
|
|
1225
1391
|
type: "string";
|
|
1226
1392
|
optional: false;
|
|
1227
1393
|
customType: string;
|
|
1394
|
+
} & {
|
|
1395
|
+
serverName: string;
|
|
1228
1396
|
};
|
|
1229
1397
|
readonly threadId: {
|
|
1230
1398
|
type: "string";
|
|
1231
1399
|
optional: false;
|
|
1232
1400
|
customType: string;
|
|
1401
|
+
} & {
|
|
1402
|
+
serverName: string;
|
|
1233
1403
|
};
|
|
1234
1404
|
};
|
|
1235
1405
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1243,6 +1413,8 @@ export declare const zeroTables: {
|
|
|
1243
1413
|
type: "number";
|
|
1244
1414
|
optional: false;
|
|
1245
1415
|
customType: number;
|
|
1416
|
+
} & {
|
|
1417
|
+
serverName: string;
|
|
1246
1418
|
};
|
|
1247
1419
|
readonly envelopeSubject: Omit<{
|
|
1248
1420
|
type: "string";
|
|
@@ -1250,6 +1422,8 @@ export declare const zeroTables: {
|
|
|
1250
1422
|
customType: string;
|
|
1251
1423
|
}, "optional"> & {
|
|
1252
1424
|
optional: true;
|
|
1425
|
+
} & {
|
|
1426
|
+
serverName: string;
|
|
1253
1427
|
};
|
|
1254
1428
|
readonly id: {
|
|
1255
1429
|
type: "string";
|
|
@@ -1260,11 +1434,15 @@ export declare const zeroTables: {
|
|
|
1260
1434
|
type: "string";
|
|
1261
1435
|
optional: false;
|
|
1262
1436
|
customType: string;
|
|
1437
|
+
} & {
|
|
1438
|
+
serverName: string;
|
|
1263
1439
|
};
|
|
1264
1440
|
readonly senderEmail: {
|
|
1265
1441
|
type: "string";
|
|
1266
1442
|
optional: false;
|
|
1267
1443
|
customType: string;
|
|
1444
|
+
} & {
|
|
1445
|
+
serverName: string;
|
|
1268
1446
|
};
|
|
1269
1447
|
readonly senderName: Omit<{
|
|
1270
1448
|
type: "string";
|
|
@@ -1272,11 +1450,15 @@ export declare const zeroTables: {
|
|
|
1272
1450
|
customType: string;
|
|
1273
1451
|
}, "optional"> & {
|
|
1274
1452
|
optional: true;
|
|
1453
|
+
} & {
|
|
1454
|
+
serverName: string;
|
|
1275
1455
|
};
|
|
1276
1456
|
readonly threadId: {
|
|
1277
1457
|
type: "string";
|
|
1278
1458
|
optional: false;
|
|
1279
1459
|
customType: string;
|
|
1460
|
+
} & {
|
|
1461
|
+
serverName: string;
|
|
1280
1462
|
};
|
|
1281
1463
|
};
|
|
1282
1464
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1290,6 +1472,8 @@ export declare const zeroTables: {
|
|
|
1290
1472
|
type: "string";
|
|
1291
1473
|
optional: false;
|
|
1292
1474
|
customType: string;
|
|
1475
|
+
} & {
|
|
1476
|
+
serverName: string;
|
|
1293
1477
|
};
|
|
1294
1478
|
readonly id: {
|
|
1295
1479
|
type: "string";
|
|
@@ -1300,6 +1484,8 @@ export declare const zeroTables: {
|
|
|
1300
1484
|
type: "string";
|
|
1301
1485
|
optional: false;
|
|
1302
1486
|
customType: string;
|
|
1487
|
+
} & {
|
|
1488
|
+
serverName: string;
|
|
1303
1489
|
};
|
|
1304
1490
|
readonly size: {
|
|
1305
1491
|
type: "number";
|
|
@@ -1315,6 +1501,8 @@ export declare const zeroTables: {
|
|
|
1315
1501
|
type: "string";
|
|
1316
1502
|
optional: false;
|
|
1317
1503
|
customType: string;
|
|
1504
|
+
} & {
|
|
1505
|
+
serverName: string;
|
|
1318
1506
|
};
|
|
1319
1507
|
};
|
|
1320
1508
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1328,11 +1516,15 @@ export declare const zeroTables: {
|
|
|
1328
1516
|
type: "string";
|
|
1329
1517
|
optional: false;
|
|
1330
1518
|
customType: string;
|
|
1519
|
+
} & {
|
|
1520
|
+
serverName: string;
|
|
1331
1521
|
};
|
|
1332
1522
|
readonly threadMessageId: {
|
|
1333
1523
|
type: "string";
|
|
1334
1524
|
optional: false;
|
|
1335
1525
|
customType: string;
|
|
1526
|
+
} & {
|
|
1527
|
+
serverName: string;
|
|
1336
1528
|
};
|
|
1337
1529
|
};
|
|
1338
1530
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1346,6 +1538,8 @@ export declare const zeroTables: {
|
|
|
1346
1538
|
type: "string";
|
|
1347
1539
|
optional: false;
|
|
1348
1540
|
customType: string;
|
|
1541
|
+
} & {
|
|
1542
|
+
serverName: string;
|
|
1349
1543
|
};
|
|
1350
1544
|
readonly id: {
|
|
1351
1545
|
type: "string";
|
|
@@ -1363,6 +1557,8 @@ export declare const zeroTables: {
|
|
|
1363
1557
|
type: "string";
|
|
1364
1558
|
optional: false;
|
|
1365
1559
|
customType: string;
|
|
1560
|
+
} & {
|
|
1561
|
+
serverName: string;
|
|
1366
1562
|
};
|
|
1367
1563
|
readonly type: {
|
|
1368
1564
|
type: "string";
|
|
@@ -1395,11 +1591,15 @@ export declare const zeroTables: {
|
|
|
1395
1591
|
customType: string;
|
|
1396
1592
|
}, "optional"> & {
|
|
1397
1593
|
optional: true;
|
|
1594
|
+
} & {
|
|
1595
|
+
serverName: string;
|
|
1398
1596
|
};
|
|
1399
1597
|
readonly undoSendEnabled: {
|
|
1400
1598
|
type: "boolean";
|
|
1401
1599
|
optional: false;
|
|
1402
1600
|
customType: boolean;
|
|
1601
|
+
} & {
|
|
1602
|
+
serverName: string;
|
|
1403
1603
|
};
|
|
1404
1604
|
};
|
|
1405
1605
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1413,6 +1613,8 @@ export declare const zeroTables: {
|
|
|
1413
1613
|
type: "number";
|
|
1414
1614
|
optional: false;
|
|
1415
1615
|
customType: number;
|
|
1616
|
+
} & {
|
|
1617
|
+
serverName: string;
|
|
1416
1618
|
};
|
|
1417
1619
|
readonly id: {
|
|
1418
1620
|
type: "string";
|
|
@@ -1428,6 +1630,8 @@ export declare const zeroTables: {
|
|
|
1428
1630
|
type: "string";
|
|
1429
1631
|
optional: false;
|
|
1430
1632
|
customType: string;
|
|
1633
|
+
} & {
|
|
1634
|
+
serverName: string;
|
|
1431
1635
|
};
|
|
1432
1636
|
};
|
|
1433
1637
|
primaryKey: readonly [string, ...string[]];
|