@marcoappio/marco-config 2.0.536 → 2.0.538
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/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/marcoPublicConfig.d.ts +5 -0
- package/dist/marcoPublicConfig.d.ts.map +1 -1
- package/dist/marcoPublicConfig.js +15 -0
- package/dist/schemas/boolean.d.ts +5 -0
- package/dist/schemas/boolean.d.ts.map +1 -0
- package/dist/schemas/boolean.js +4 -0
- package/dist/schemas/index.d.ts +257 -0
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +23 -0
- package/dist/schemas/models/account.d.ts +54 -0
- package/dist/schemas/models/account.d.ts.map +1 -0
- package/dist/schemas/models/account.js +33 -0
- package/dist/schemas/models/contact.d.ts +9 -0
- package/dist/schemas/models/contact.d.ts.map +1 -0
- package/dist/schemas/models/contact.js +8 -0
- package/dist/schemas/models/draft.d.ts +48 -0
- package/dist/schemas/models/draft.d.ts.map +1 -0
- package/dist/schemas/models/draft.js +35 -0
- package/dist/schemas/models/index.d.ts +6 -0
- package/dist/schemas/models/index.d.ts.map +1 -0
- package/dist/schemas/models/index.js +5 -0
- package/dist/schemas/models/thread.d.ts +122 -0
- package/dist/schemas/models/thread.d.ts.map +1 -0
- package/dist/schemas/models/thread.js +55 -0
- package/dist/schemas/models/user.d.ts +35 -0
- package/dist/schemas/models/user.d.ts.map +1 -0
- package/dist/schemas/models/user.js +24 -0
- package/dist/schemas/number.d.ts +2 -0
- package/dist/schemas/number.d.ts.map +1 -1
- package/dist/schemas/number.js +2 -0
- package/dist/schemas/paginatedResponse.d.ts +10 -0
- package/dist/schemas/paginatedResponse.d.ts.map +1 -0
- package/dist/schemas/paginatedResponse.js +5 -0
- package/dist/schemas/websocket.d.ts +12 -0
- package/dist/schemas/websocket.d.ts.map +1 -0
- package/dist/schemas/websocket.js +9 -0
- package/dist/sdk/endpoints/index.d.ts +14 -0
- package/dist/sdk/endpoints/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +14 -0
- package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.js +4 -0
- package/dist/sdk/endpoints/private/models/account/getAccounts.d.ts +68 -0
- package/dist/sdk/endpoints/private/models/account/getAccounts.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/account/getAccounts.js +26 -0
- package/dist/sdk/endpoints/private/models/account/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/account/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/account/index.js +1 -0
- package/dist/sdk/endpoints/private/models/contact/getContacts.d.ts +41 -0
- package/dist/sdk/endpoints/private/models/contact/getContacts.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/contact/getContacts.js +26 -0
- package/dist/sdk/endpoints/private/models/contact/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/contact/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/contact/index.js +1 -0
- package/dist/sdk/endpoints/private/models/draft/getDrafts.d.ts +62 -0
- package/dist/sdk/endpoints/private/models/draft/getDrafts.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/draft/getDrafts.js +25 -0
- package/dist/sdk/endpoints/private/models/draft/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/draft/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/draft/index.js +1 -0
- package/dist/sdk/endpoints/private/models/index.d.ts +15 -0
- package/dist/sdk/endpoints/private/models/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/index.js +14 -0
- package/dist/sdk/endpoints/private/models/label/getLabels.d.ts +44 -0
- package/dist/sdk/endpoints/private/models/label/getLabels.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/label/getLabels.js +27 -0
- package/dist/sdk/endpoints/private/models/label/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/label/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/label/index.js +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThread.d.ts +62 -0
- package/dist/sdk/endpoints/private/models/thread/getThread.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThread.js +17 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadByMessageId.d.ts +62 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadByMessageId.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadByMessageId.js +17 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadList.d.ts +55 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadList.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadList.js +30 -0
- package/dist/sdk/endpoints/private/models/thread/getThreads.d.ts +75 -0
- package/dist/sdk/endpoints/private/models/thread/getThreads.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThreads.js +25 -0
- package/dist/sdk/endpoints/private/models/thread/index.d.ts +5 -0
- package/dist/sdk/endpoints/private/models/thread/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/index.js +4 -0
- package/dist/sdk/endpoints/private/models/user/getUser.d.ts +33 -0
- package/dist/sdk/endpoints/private/models/user/getUser.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/user/getUser.js +16 -0
- package/dist/sdk/endpoints/private/models/user/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/user/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/user/index.js +1 -0
- package/dist/sdk/endpoints/private/mutations/account/createAccount.d.ts +35 -0
- package/dist/sdk/endpoints/private/mutations/account/createAccount.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/createAccount.js +18 -0
- package/dist/sdk/endpoints/private/mutations/account/createAlias.d.ts +42 -0
- package/dist/sdk/endpoints/private/mutations/account/createAlias.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/createAlias.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAccount.d.ts +27 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAccount.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAccount.js +18 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAlias.d.ts +33 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAlias.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAlias.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/index.d.ts +10 -0
- package/dist/sdk/endpoints/private/mutations/account/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/index.js +9 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasName.d.ts +44 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasName.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasName.js +20 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasPrimary.d.ts +33 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasPrimary.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasPrimary.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigImap.d.ts +49 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigImap.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigImap.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigOauth.d.ts +42 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigOauth.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigOauth.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/setSettings.d.ts +39 -0
- package/dist/sdk/endpoints/private/mutations/account/setSettings.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setSettings.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/cancelSend.d.ts +28 -0
- package/dist/sdk/endpoints/private/mutations/draft/cancelSend.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/cancelSend.js +18 -0
- package/dist/sdk/endpoints/private/mutations/draft/createAttachment.d.ts +45 -0
- package/dist/sdk/endpoints/private/mutations/draft/createAttachment.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/createAttachment.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/createDraft.d.ts +60 -0
- package/dist/sdk/endpoints/private/mutations/draft/createDraft.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/createDraft.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteAttachment.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteAttachment.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteAttachment.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteDraft.d.ts +27 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteDraft.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteDraft.js +18 -0
- package/dist/sdk/endpoints/private/mutations/draft/index.d.ts +10 -0
- package/dist/sdk/endpoints/private/mutations/draft/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/index.js +9 -0
- package/dist/sdk/endpoints/private/mutations/draft/scheduleSend.d.ts +45 -0
- package/dist/sdk/endpoints/private/mutations/draft/scheduleSend.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/scheduleSend.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/setContent.d.ts +43 -0
- package/dist/sdk/endpoints/private/mutations/draft/setContent.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/setContent.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/setEnvelope.d.ts +85 -0
- package/dist/sdk/endpoints/private/mutations/draft/setEnvelope.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/setEnvelope.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/setFrom.d.ts +47 -0
- package/dist/sdk/endpoints/private/mutations/draft/setFrom.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/setFrom.js +20 -0
- package/dist/sdk/endpoints/private/mutations/index.d.ts +11 -0
- package/dist/sdk/endpoints/private/mutations/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/index.js +10 -0
- package/dist/sdk/endpoints/private/mutations/thread/addLabel.d.ts +40 -0
- package/dist/sdk/endpoints/private/mutations/thread/addLabel.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/addLabel.js +19 -0
- package/dist/sdk/endpoints/private/mutations/thread/deleteThreads.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/deleteThreads.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/deleteThreads.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/index.d.ts +10 -0
- package/dist/sdk/endpoints/private/mutations/thread/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/index.js +9 -0
- package/dist/sdk/endpoints/private/mutations/thread/removeLabel.d.ts +40 -0
- package/dist/sdk/endpoints/private/mutations/thread/removeLabel.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/removeLabel.js +19 -0
- package/dist/sdk/endpoints/private/mutations/thread/setArchive.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/setArchive.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setArchive.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setFlagged.d.ts +35 -0
- package/dist/sdk/endpoints/private/mutations/thread/setFlagged.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setFlagged.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setInbox.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/setInbox.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setInbox.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSeen.d.ts +35 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSeen.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSeen.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSpam.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSpam.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSpam.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setTrash.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/setTrash.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setTrash.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/createView.d.ts +38 -0
- package/dist/sdk/endpoints/private/mutations/user/createView.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/createView.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/deletePushToken.d.ts +23 -0
- package/dist/sdk/endpoints/private/mutations/user/deletePushToken.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/deletePushToken.js +17 -0
- package/dist/sdk/endpoints/private/mutations/user/deleteView.d.ts +28 -0
- package/dist/sdk/endpoints/private/mutations/user/deleteView.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/deleteView.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/index.d.ts +7 -0
- package/dist/sdk/endpoints/private/mutations/user/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/index.js +6 -0
- package/dist/sdk/endpoints/private/mutations/user/setPushToken.d.ts +37 -0
- package/dist/sdk/endpoints/private/mutations/user/setPushToken.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/setPushToken.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/setSettingsName.d.ts +33 -0
- package/dist/sdk/endpoints/private/mutations/user/setSettingsName.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/setSettingsName.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/updateView.d.ts +43 -0
- package/dist/sdk/endpoints/private/mutations/user/updateView.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/updateView.js +19 -0
- package/dist/sdk/index.d.ts +50 -0
- package/dist/sdk/index.d.ts.map +1 -1
- package/dist/sdk/validation/errors.d.ts +72 -0
- package/dist/sdk/validation/errors.d.ts.map +1 -1
- package/dist/sdk/validation/errors.js +30 -0
- package/dist/sdk/validation/index.d.ts +36 -0
- package/dist/sdk/validation/index.d.ts.map +1 -1
- package/dist/types/PokeEvent.d.ts +6 -0
- package/dist/types/PokeEvent.d.ts.map +1 -0
- package/dist/types/PokeEvent.js +1 -0
- package/dist/types/SDKError.d.ts +1 -1
- package/dist/types/SDKError.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -0
- package/dist/zero/index.d.ts +926 -924
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/index.js +1 -0
- package/dist/zero/mutatorSchemas.d.ts +1 -1
- package/dist/zero/mutators.d.ts +281 -281
- package/dist/zero/queries.d.ts +281 -281
- package/dist/zero/schema.d.ts +281 -281
- package/dist/zero/schema.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/zero/queries.d.ts
CHANGED
|
@@ -374,72 +374,6 @@ export declare const queries: import("@rocicorp/zero").QueryRegistry<{
|
|
|
374
374
|
} & {
|
|
375
375
|
primaryKey: ["id"];
|
|
376
376
|
};
|
|
377
|
-
readonly userPushNotificationToken: {
|
|
378
|
-
name: "userPushNotificationToken";
|
|
379
|
-
columns: {
|
|
380
|
-
readonly createdAt: {
|
|
381
|
-
type: "number";
|
|
382
|
-
optional: false;
|
|
383
|
-
customType: number;
|
|
384
|
-
} & {
|
|
385
|
-
serverName: string;
|
|
386
|
-
};
|
|
387
|
-
readonly id: {
|
|
388
|
-
type: "string";
|
|
389
|
-
optional: false;
|
|
390
|
-
customType: string;
|
|
391
|
-
};
|
|
392
|
-
readonly token: {
|
|
393
|
-
type: "string";
|
|
394
|
-
optional: false;
|
|
395
|
-
customType: string;
|
|
396
|
-
};
|
|
397
|
-
readonly userId: {
|
|
398
|
-
type: "string";
|
|
399
|
-
optional: false;
|
|
400
|
-
customType: string;
|
|
401
|
-
} & {
|
|
402
|
-
serverName: string;
|
|
403
|
-
};
|
|
404
|
-
};
|
|
405
|
-
primaryKey: readonly [string, ...string[]];
|
|
406
|
-
} & {
|
|
407
|
-
primaryKey: ["id"];
|
|
408
|
-
};
|
|
409
|
-
readonly contact: {
|
|
410
|
-
name: "contact";
|
|
411
|
-
columns: {
|
|
412
|
-
readonly emailAddress: {
|
|
413
|
-
type: "string";
|
|
414
|
-
optional: false;
|
|
415
|
-
customType: string;
|
|
416
|
-
} & {
|
|
417
|
-
serverName: string;
|
|
418
|
-
};
|
|
419
|
-
readonly id: {
|
|
420
|
-
type: "string";
|
|
421
|
-
optional: false;
|
|
422
|
-
customType: string;
|
|
423
|
-
};
|
|
424
|
-
readonly name: Omit<{
|
|
425
|
-
type: "string";
|
|
426
|
-
optional: false;
|
|
427
|
-
customType: string;
|
|
428
|
-
}, "optional"> & {
|
|
429
|
-
optional: true;
|
|
430
|
-
};
|
|
431
|
-
readonly userId: {
|
|
432
|
-
type: "string";
|
|
433
|
-
optional: false;
|
|
434
|
-
customType: string;
|
|
435
|
-
} & {
|
|
436
|
-
serverName: string;
|
|
437
|
-
};
|
|
438
|
-
};
|
|
439
|
-
primaryKey: readonly [string, ...string[]];
|
|
440
|
-
} & {
|
|
441
|
-
primaryKey: ["id"];
|
|
442
|
-
};
|
|
443
377
|
readonly account: {
|
|
444
378
|
name: "account";
|
|
445
379
|
columns: {
|
|
@@ -504,16 +438,9 @@ export declare const queries: import("@rocicorp/zero").QueryRegistry<{
|
|
|
504
438
|
} & {
|
|
505
439
|
primaryKey: ["id"];
|
|
506
440
|
};
|
|
507
|
-
readonly
|
|
508
|
-
name: "
|
|
441
|
+
readonly contact: {
|
|
442
|
+
name: "contact";
|
|
509
443
|
columns: {
|
|
510
|
-
readonly accountId: {
|
|
511
|
-
type: "string";
|
|
512
|
-
optional: false;
|
|
513
|
-
customType: string;
|
|
514
|
-
} & {
|
|
515
|
-
serverName: string;
|
|
516
|
-
};
|
|
517
444
|
readonly emailAddress: {
|
|
518
445
|
type: "string";
|
|
519
446
|
optional: false;
|
|
@@ -526,13 +453,6 @@ export declare const queries: import("@rocicorp/zero").QueryRegistry<{
|
|
|
526
453
|
optional: false;
|
|
527
454
|
customType: string;
|
|
528
455
|
};
|
|
529
|
-
readonly isPrimary: {
|
|
530
|
-
type: "boolean";
|
|
531
|
-
optional: false;
|
|
532
|
-
customType: boolean;
|
|
533
|
-
} & {
|
|
534
|
-
serverName: string;
|
|
535
|
-
};
|
|
536
456
|
readonly name: Omit<{
|
|
537
457
|
type: "string";
|
|
538
458
|
optional: false;
|
|
@@ -540,58 +460,10 @@ export declare const queries: import("@rocicorp/zero").QueryRegistry<{
|
|
|
540
460
|
}, "optional"> & {
|
|
541
461
|
optional: true;
|
|
542
462
|
};
|
|
543
|
-
|
|
544
|
-
primaryKey: readonly [string, ...string[]];
|
|
545
|
-
} & {
|
|
546
|
-
primaryKey: ["id"];
|
|
547
|
-
};
|
|
548
|
-
readonly accountLabel: {
|
|
549
|
-
name: "accountLabel";
|
|
550
|
-
columns: {
|
|
551
|
-
readonly accountId: {
|
|
552
|
-
type: "string";
|
|
553
|
-
optional: false;
|
|
554
|
-
customType: string;
|
|
555
|
-
} & {
|
|
556
|
-
serverName: string;
|
|
557
|
-
};
|
|
558
|
-
readonly id: {
|
|
559
|
-
type: "string";
|
|
560
|
-
optional: false;
|
|
561
|
-
customType: string;
|
|
562
|
-
};
|
|
563
|
-
readonly name: Omit<{
|
|
564
|
-
type: "string";
|
|
565
|
-
optional: false;
|
|
566
|
-
customType: string;
|
|
567
|
-
}, "optional"> & {
|
|
568
|
-
optional: true;
|
|
569
|
-
};
|
|
570
|
-
readonly path: {
|
|
463
|
+
readonly userId: {
|
|
571
464
|
type: "string";
|
|
572
465
|
optional: false;
|
|
573
466
|
customType: string;
|
|
574
|
-
};
|
|
575
|
-
readonly specialUse: Omit<{
|
|
576
|
-
type: "string";
|
|
577
|
-
optional: false;
|
|
578
|
-
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
579
|
-
}, "optional"> & {
|
|
580
|
-
optional: true;
|
|
581
|
-
} & {
|
|
582
|
-
serverName: string;
|
|
583
|
-
};
|
|
584
|
-
readonly uidValidity: {
|
|
585
|
-
type: "number";
|
|
586
|
-
optional: false;
|
|
587
|
-
customType: number;
|
|
588
|
-
} & {
|
|
589
|
-
serverName: string;
|
|
590
|
-
};
|
|
591
|
-
readonly unreadCount: {
|
|
592
|
-
type: "number";
|
|
593
|
-
optional: false;
|
|
594
|
-
customType: number;
|
|
595
467
|
} & {
|
|
596
468
|
serverName: string;
|
|
597
469
|
};
|
|
@@ -711,20 +583,25 @@ export declare const queries: import("@rocicorp/zero").QueryRegistry<{
|
|
|
711
583
|
} & {
|
|
712
584
|
primaryKey: ["id"];
|
|
713
585
|
};
|
|
714
|
-
readonly
|
|
715
|
-
name: "
|
|
586
|
+
readonly thread: {
|
|
587
|
+
name: "thread";
|
|
716
588
|
columns: {
|
|
717
|
-
readonly
|
|
589
|
+
readonly accountId: {
|
|
718
590
|
type: "string";
|
|
719
591
|
optional: false;
|
|
720
592
|
customType: string;
|
|
721
593
|
} & {
|
|
722
594
|
serverName: string;
|
|
723
595
|
};
|
|
724
|
-
readonly
|
|
725
|
-
type: "
|
|
596
|
+
readonly flagged: {
|
|
597
|
+
type: "boolean";
|
|
726
598
|
optional: false;
|
|
727
|
-
customType:
|
|
599
|
+
customType: boolean;
|
|
600
|
+
};
|
|
601
|
+
readonly hasAttachments: {
|
|
602
|
+
type: "boolean";
|
|
603
|
+
optional: false;
|
|
604
|
+
customType: boolean;
|
|
728
605
|
} & {
|
|
729
606
|
serverName: string;
|
|
730
607
|
};
|
|
@@ -733,133 +610,256 @@ export declare const queries: import("@rocicorp/zero").QueryRegistry<{
|
|
|
733
610
|
optional: false;
|
|
734
611
|
customType: string;
|
|
735
612
|
};
|
|
736
|
-
readonly
|
|
613
|
+
readonly labelIdList: {
|
|
737
614
|
type: "string";
|
|
738
615
|
optional: false;
|
|
739
616
|
customType: string;
|
|
740
617
|
} & {
|
|
741
618
|
serverName: string;
|
|
742
619
|
};
|
|
743
|
-
readonly
|
|
620
|
+
readonly latestMessageDate: {
|
|
621
|
+
type: "number";
|
|
622
|
+
optional: false;
|
|
623
|
+
customType: number;
|
|
624
|
+
} & {
|
|
625
|
+
serverName: string;
|
|
626
|
+
};
|
|
627
|
+
readonly latestMessageId: {
|
|
744
628
|
type: "string";
|
|
745
629
|
optional: false;
|
|
746
|
-
customType:
|
|
630
|
+
customType: string;
|
|
747
631
|
} & {
|
|
748
632
|
serverName: string;
|
|
749
633
|
};
|
|
750
|
-
readonly
|
|
634
|
+
readonly messageCount: {
|
|
751
635
|
type: "number";
|
|
752
636
|
optional: false;
|
|
753
637
|
customType: number;
|
|
754
638
|
} & {
|
|
755
639
|
serverName: string;
|
|
756
640
|
};
|
|
757
|
-
|
|
758
|
-
primaryKey: readonly [string, ...string[]];
|
|
759
|
-
} & {
|
|
760
|
-
primaryKey: ["id"];
|
|
761
|
-
};
|
|
762
|
-
readonly thread: {
|
|
763
|
-
name: "thread";
|
|
764
|
-
columns: {
|
|
765
|
-
readonly accountId: {
|
|
641
|
+
readonly previewText: {
|
|
766
642
|
type: "string";
|
|
767
643
|
optional: false;
|
|
768
644
|
customType: string;
|
|
769
645
|
} & {
|
|
770
646
|
serverName: string;
|
|
771
647
|
};
|
|
772
|
-
readonly
|
|
648
|
+
readonly seen: {
|
|
773
649
|
type: "boolean";
|
|
774
650
|
optional: false;
|
|
775
651
|
customType: boolean;
|
|
776
652
|
};
|
|
777
|
-
readonly
|
|
778
|
-
type: "
|
|
653
|
+
readonly senderEmail: {
|
|
654
|
+
type: "string";
|
|
779
655
|
optional: false;
|
|
780
|
-
customType:
|
|
656
|
+
customType: string;
|
|
781
657
|
} & {
|
|
782
658
|
serverName: string;
|
|
783
659
|
};
|
|
784
|
-
readonly
|
|
660
|
+
readonly senderName: Omit<{
|
|
785
661
|
type: "string";
|
|
786
662
|
optional: false;
|
|
787
663
|
customType: string;
|
|
664
|
+
}, "optional"> & {
|
|
665
|
+
optional: true;
|
|
666
|
+
} & {
|
|
667
|
+
serverName: string;
|
|
788
668
|
};
|
|
789
|
-
readonly
|
|
669
|
+
readonly subject: Omit<{
|
|
670
|
+
type: "string";
|
|
671
|
+
optional: false;
|
|
672
|
+
customType: string;
|
|
673
|
+
}, "optional"> & {
|
|
674
|
+
optional: true;
|
|
675
|
+
};
|
|
676
|
+
readonly userId: {
|
|
790
677
|
type: "string";
|
|
791
678
|
optional: false;
|
|
792
679
|
customType: string;
|
|
793
680
|
} & {
|
|
794
681
|
serverName: string;
|
|
795
682
|
};
|
|
796
|
-
readonly
|
|
683
|
+
readonly words: {
|
|
684
|
+
type: "string";
|
|
685
|
+
optional: false;
|
|
686
|
+
customType: string;
|
|
687
|
+
};
|
|
688
|
+
};
|
|
689
|
+
primaryKey: readonly [string, ...string[]];
|
|
690
|
+
} & {
|
|
691
|
+
primaryKey: ["id"];
|
|
692
|
+
};
|
|
693
|
+
readonly userPushNotificationToken: {
|
|
694
|
+
name: "userPushNotificationToken";
|
|
695
|
+
columns: {
|
|
696
|
+
readonly createdAt: {
|
|
797
697
|
type: "number";
|
|
798
698
|
optional: false;
|
|
799
699
|
customType: number;
|
|
800
700
|
} & {
|
|
801
701
|
serverName: string;
|
|
802
702
|
};
|
|
803
|
-
readonly
|
|
703
|
+
readonly id: {
|
|
704
|
+
type: "string";
|
|
705
|
+
optional: false;
|
|
706
|
+
customType: string;
|
|
707
|
+
};
|
|
708
|
+
readonly token: {
|
|
709
|
+
type: "string";
|
|
710
|
+
optional: false;
|
|
711
|
+
customType: string;
|
|
712
|
+
};
|
|
713
|
+
readonly userId: {
|
|
804
714
|
type: "string";
|
|
805
715
|
optional: false;
|
|
806
716
|
customType: string;
|
|
807
717
|
} & {
|
|
808
718
|
serverName: string;
|
|
809
719
|
};
|
|
810
|
-
|
|
811
|
-
|
|
720
|
+
};
|
|
721
|
+
primaryKey: readonly [string, ...string[]];
|
|
722
|
+
} & {
|
|
723
|
+
primaryKey: ["id"];
|
|
724
|
+
};
|
|
725
|
+
readonly accountAlias: {
|
|
726
|
+
name: "accountAlias";
|
|
727
|
+
columns: {
|
|
728
|
+
readonly accountId: {
|
|
729
|
+
type: "string";
|
|
812
730
|
optional: false;
|
|
813
|
-
customType:
|
|
731
|
+
customType: string;
|
|
814
732
|
} & {
|
|
815
733
|
serverName: string;
|
|
816
734
|
};
|
|
817
|
-
readonly
|
|
735
|
+
readonly emailAddress: {
|
|
818
736
|
type: "string";
|
|
819
737
|
optional: false;
|
|
820
738
|
customType: string;
|
|
821
739
|
} & {
|
|
822
740
|
serverName: string;
|
|
823
741
|
};
|
|
824
|
-
readonly
|
|
742
|
+
readonly id: {
|
|
743
|
+
type: "string";
|
|
744
|
+
optional: false;
|
|
745
|
+
customType: string;
|
|
746
|
+
};
|
|
747
|
+
readonly isPrimary: {
|
|
825
748
|
type: "boolean";
|
|
826
749
|
optional: false;
|
|
827
750
|
customType: boolean;
|
|
751
|
+
} & {
|
|
752
|
+
serverName: string;
|
|
828
753
|
};
|
|
829
|
-
readonly
|
|
754
|
+
readonly name: Omit<{
|
|
755
|
+
type: "string";
|
|
756
|
+
optional: false;
|
|
757
|
+
customType: string;
|
|
758
|
+
}, "optional"> & {
|
|
759
|
+
optional: true;
|
|
760
|
+
};
|
|
761
|
+
};
|
|
762
|
+
primaryKey: readonly [string, ...string[]];
|
|
763
|
+
} & {
|
|
764
|
+
primaryKey: ["id"];
|
|
765
|
+
};
|
|
766
|
+
readonly accountLabel: {
|
|
767
|
+
name: "accountLabel";
|
|
768
|
+
columns: {
|
|
769
|
+
readonly accountId: {
|
|
830
770
|
type: "string";
|
|
831
771
|
optional: false;
|
|
832
772
|
customType: string;
|
|
833
773
|
} & {
|
|
834
774
|
serverName: string;
|
|
835
775
|
};
|
|
836
|
-
readonly
|
|
776
|
+
readonly id: {
|
|
777
|
+
type: "string";
|
|
778
|
+
optional: false;
|
|
779
|
+
customType: string;
|
|
780
|
+
};
|
|
781
|
+
readonly name: Omit<{
|
|
837
782
|
type: "string";
|
|
838
783
|
optional: false;
|
|
839
784
|
customType: string;
|
|
840
785
|
}, "optional"> & {
|
|
841
786
|
optional: true;
|
|
842
|
-
} & {
|
|
843
|
-
serverName: string;
|
|
844
787
|
};
|
|
845
|
-
readonly
|
|
788
|
+
readonly path: {
|
|
846
789
|
type: "string";
|
|
847
790
|
optional: false;
|
|
848
791
|
customType: string;
|
|
792
|
+
};
|
|
793
|
+
readonly specialUse: Omit<{
|
|
794
|
+
type: "string";
|
|
795
|
+
optional: false;
|
|
796
|
+
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
849
797
|
}, "optional"> & {
|
|
850
798
|
optional: true;
|
|
799
|
+
} & {
|
|
800
|
+
serverName: string;
|
|
851
801
|
};
|
|
852
|
-
readonly
|
|
802
|
+
readonly uidValidity: {
|
|
803
|
+
type: "number";
|
|
804
|
+
optional: false;
|
|
805
|
+
customType: number;
|
|
806
|
+
} & {
|
|
807
|
+
serverName: string;
|
|
808
|
+
};
|
|
809
|
+
readonly unreadCount: {
|
|
810
|
+
type: "number";
|
|
811
|
+
optional: false;
|
|
812
|
+
customType: number;
|
|
813
|
+
} & {
|
|
814
|
+
serverName: string;
|
|
815
|
+
};
|
|
816
|
+
};
|
|
817
|
+
primaryKey: readonly [string, ...string[]];
|
|
818
|
+
} & {
|
|
819
|
+
primaryKey: ["id"];
|
|
820
|
+
};
|
|
821
|
+
readonly draftAttachment: {
|
|
822
|
+
name: "draftAttachment";
|
|
823
|
+
columns: {
|
|
824
|
+
readonly draftId: {
|
|
853
825
|
type: "string";
|
|
854
826
|
optional: false;
|
|
855
827
|
customType: string;
|
|
856
828
|
} & {
|
|
857
829
|
serverName: string;
|
|
858
830
|
};
|
|
859
|
-
readonly
|
|
831
|
+
readonly fileName: {
|
|
832
|
+
type: "string";
|
|
833
|
+
optional: false;
|
|
834
|
+
customType: string;
|
|
835
|
+
} & {
|
|
836
|
+
serverName: string;
|
|
837
|
+
};
|
|
838
|
+
readonly id: {
|
|
839
|
+
type: "string";
|
|
840
|
+
optional: false;
|
|
841
|
+
customType: string;
|
|
842
|
+
};
|
|
843
|
+
readonly mimeType: {
|
|
860
844
|
type: "string";
|
|
861
845
|
optional: false;
|
|
862
846
|
customType: string;
|
|
847
|
+
} & {
|
|
848
|
+
serverName: string;
|
|
849
|
+
};
|
|
850
|
+
readonly status: {
|
|
851
|
+
type: "string";
|
|
852
|
+
optional: false;
|
|
853
|
+
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
854
|
+
} & {
|
|
855
|
+
serverName: string;
|
|
856
|
+
};
|
|
857
|
+
readonly totalSize: {
|
|
858
|
+
type: "number";
|
|
859
|
+
optional: false;
|
|
860
|
+
customType: number;
|
|
861
|
+
} & {
|
|
862
|
+
serverName: string;
|
|
863
863
|
};
|
|
864
864
|
};
|
|
865
865
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1107,259 +1107,259 @@ export declare const queries: import("@rocicorp/zero").QueryRegistry<{
|
|
|
1107
1107
|
relationships: {
|
|
1108
1108
|
readonly user: {
|
|
1109
1109
|
accounts: [{
|
|
1110
|
-
readonly sourceField: readonly ("id" | "
|
|
1111
|
-
readonly destField: readonly ("id" | "
|
|
1110
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1111
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1112
1112
|
readonly destSchema: "account";
|
|
1113
1113
|
readonly cardinality: "many";
|
|
1114
1114
|
}];
|
|
1115
1115
|
contacts: [{
|
|
1116
|
-
readonly sourceField: readonly ("id" | "
|
|
1117
|
-
readonly destField: readonly ("
|
|
1116
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1117
|
+
readonly destField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
1118
1118
|
readonly destSchema: "contact";
|
|
1119
1119
|
readonly cardinality: "many";
|
|
1120
1120
|
}];
|
|
1121
1121
|
drafts: [{
|
|
1122
|
-
readonly sourceField: readonly ("id" | "
|
|
1123
|
-
readonly destField: readonly ("type" | "status" | "
|
|
1122
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1123
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1124
1124
|
readonly destSchema: "draft";
|
|
1125
1125
|
readonly cardinality: "many";
|
|
1126
1126
|
}];
|
|
1127
1127
|
pushNotificationTokens: [{
|
|
1128
|
-
readonly sourceField: readonly ("id" | "
|
|
1129
|
-
readonly destField: readonly ("id" | "
|
|
1128
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1129
|
+
readonly destField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
1130
1130
|
readonly destSchema: "userPushNotificationToken";
|
|
1131
1131
|
readonly cardinality: "many";
|
|
1132
1132
|
}];
|
|
1133
1133
|
threads: [{
|
|
1134
|
-
readonly sourceField: readonly ("id" | "
|
|
1135
|
-
readonly destField: readonly ("
|
|
1134
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1135
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1136
1136
|
readonly destSchema: "thread";
|
|
1137
1137
|
readonly cardinality: "many";
|
|
1138
1138
|
}];
|
|
1139
1139
|
};
|
|
1140
|
-
readonly userPushNotificationToken: {
|
|
1141
|
-
user: [{
|
|
1142
|
-
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
1143
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
1144
|
-
readonly destSchema: "user";
|
|
1145
|
-
readonly cardinality: "one";
|
|
1146
|
-
}];
|
|
1147
|
-
};
|
|
1148
|
-
readonly contact: {
|
|
1149
|
-
user: [{
|
|
1150
|
-
readonly sourceField: readonly ("id" | "name" | "userId" | "emailAddress")[];
|
|
1151
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
1152
|
-
readonly destSchema: "user";
|
|
1153
|
-
readonly cardinality: "one";
|
|
1154
|
-
}];
|
|
1155
|
-
};
|
|
1156
1140
|
readonly account: {
|
|
1157
1141
|
aliases: [{
|
|
1158
|
-
readonly sourceField: readonly ("id" | "
|
|
1159
|
-
readonly destField: readonly ("
|
|
1142
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1143
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
1160
1144
|
readonly destSchema: "accountAlias";
|
|
1161
1145
|
readonly cardinality: "many";
|
|
1162
1146
|
}];
|
|
1163
1147
|
drafts: [{
|
|
1164
|
-
readonly sourceField: readonly ("id" | "
|
|
1165
|
-
readonly destField: readonly ("type" | "status" | "
|
|
1148
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1149
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1166
1150
|
readonly destSchema: "draft";
|
|
1167
1151
|
readonly cardinality: "many";
|
|
1168
1152
|
}];
|
|
1169
1153
|
labels: [{
|
|
1170
|
-
readonly sourceField: readonly ("id" | "
|
|
1171
|
-
readonly destField: readonly ("
|
|
1154
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1155
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1172
1156
|
readonly destSchema: "accountLabel";
|
|
1173
1157
|
readonly cardinality: "many";
|
|
1174
1158
|
}];
|
|
1175
1159
|
primaryAlias: [{
|
|
1176
|
-
readonly sourceField: readonly ("id" | "
|
|
1177
|
-
readonly destField: readonly ("
|
|
1160
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1161
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
1178
1162
|
readonly destSchema: "accountAlias";
|
|
1179
1163
|
readonly cardinality: "one";
|
|
1180
1164
|
}];
|
|
1181
1165
|
threads: [{
|
|
1182
|
-
readonly sourceField: readonly ("id" | "
|
|
1183
|
-
readonly destField: readonly ("
|
|
1166
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1167
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1184
1168
|
readonly destSchema: "thread";
|
|
1185
1169
|
readonly cardinality: "many";
|
|
1186
1170
|
}];
|
|
1187
1171
|
user: [{
|
|
1188
|
-
readonly sourceField: readonly ("id" | "
|
|
1189
|
-
readonly destField: readonly ("id" | "
|
|
1172
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1173
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1190
1174
|
readonly destSchema: "user";
|
|
1191
1175
|
readonly cardinality: "one";
|
|
1192
1176
|
}];
|
|
1193
1177
|
};
|
|
1194
|
-
readonly
|
|
1195
|
-
|
|
1196
|
-
readonly sourceField: readonly ("
|
|
1197
|
-
readonly destField: readonly ("id" | "
|
|
1198
|
-
readonly destSchema: "
|
|
1199
|
-
readonly cardinality: "one";
|
|
1200
|
-
}];
|
|
1201
|
-
};
|
|
1202
|
-
readonly accountLabel: {
|
|
1203
|
-
account: [{
|
|
1204
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1205
|
-
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1206
|
-
readonly destSchema: "account";
|
|
1178
|
+
readonly contact: {
|
|
1179
|
+
user: [{
|
|
1180
|
+
readonly sourceField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
1181
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1182
|
+
readonly destSchema: "user";
|
|
1207
1183
|
readonly cardinality: "one";
|
|
1208
1184
|
}];
|
|
1209
|
-
threads: [{
|
|
1210
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1211
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1212
|
-
readonly destSchema: "threadLabel";
|
|
1213
|
-
readonly cardinality: "many";
|
|
1214
|
-
}, {
|
|
1215
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1216
|
-
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1217
|
-
readonly destSchema: "thread";
|
|
1218
|
-
readonly cardinality: "many";
|
|
1219
|
-
}];
|
|
1220
1185
|
};
|
|
1221
1186
|
readonly draft: {
|
|
1222
1187
|
account: [{
|
|
1223
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
1224
|
-
readonly destField: readonly ("id" | "
|
|
1188
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1189
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1225
1190
|
readonly destSchema: "account";
|
|
1226
1191
|
readonly cardinality: "one";
|
|
1227
1192
|
}];
|
|
1228
1193
|
attachments: [{
|
|
1229
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
1194
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1230
1195
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1231
1196
|
readonly destSchema: "draftAttachment";
|
|
1232
1197
|
readonly cardinality: "many";
|
|
1233
1198
|
}];
|
|
1234
1199
|
user: [{
|
|
1235
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
1236
|
-
readonly destField: readonly ("id" | "
|
|
1200
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1201
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1237
1202
|
readonly destSchema: "user";
|
|
1238
1203
|
readonly cardinality: "one";
|
|
1239
1204
|
}];
|
|
1240
1205
|
};
|
|
1241
|
-
readonly draftAttachment: {
|
|
1242
|
-
draft: [{
|
|
1243
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1244
|
-
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
1245
|
-
readonly destSchema: "draft";
|
|
1246
|
-
readonly cardinality: "one";
|
|
1247
|
-
}];
|
|
1248
|
-
};
|
|
1249
1206
|
readonly thread: {
|
|
1250
1207
|
account: [{
|
|
1251
|
-
readonly sourceField: readonly ("
|
|
1252
|
-
readonly destField: readonly ("id" | "
|
|
1208
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1209
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1253
1210
|
readonly destSchema: "account";
|
|
1254
1211
|
readonly cardinality: "one";
|
|
1255
1212
|
}];
|
|
1256
1213
|
labels: [{
|
|
1257
|
-
readonly sourceField: readonly ("
|
|
1258
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
1214
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1215
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1259
1216
|
readonly destSchema: "threadLabel";
|
|
1260
1217
|
readonly cardinality: "many";
|
|
1261
1218
|
}, {
|
|
1262
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1263
|
-
readonly destField: readonly ("
|
|
1219
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1220
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1264
1221
|
readonly destSchema: "accountLabel";
|
|
1265
1222
|
readonly cardinality: "many";
|
|
1266
1223
|
}];
|
|
1267
1224
|
messages: [{
|
|
1268
|
-
readonly sourceField: readonly ("
|
|
1269
|
-
readonly destField: readonly ("
|
|
1225
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1226
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1270
1227
|
readonly destSchema: "threadMessage";
|
|
1271
1228
|
readonly cardinality: "many";
|
|
1272
1229
|
}];
|
|
1273
1230
|
threadByLabel: [{
|
|
1274
|
-
readonly sourceField: readonly ("
|
|
1275
|
-
readonly destField: readonly ("
|
|
1231
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1232
|
+
readonly destField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
1276
1233
|
readonly destSchema: "threadByLabel";
|
|
1277
1234
|
readonly cardinality: "many";
|
|
1278
1235
|
}];
|
|
1279
1236
|
user: [{
|
|
1280
|
-
readonly sourceField: readonly ("
|
|
1281
|
-
readonly destField: readonly ("id" | "
|
|
1237
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1238
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1282
1239
|
readonly destSchema: "user";
|
|
1283
1240
|
readonly cardinality: "one";
|
|
1284
1241
|
}];
|
|
1285
1242
|
};
|
|
1243
|
+
readonly userPushNotificationToken: {
|
|
1244
|
+
user: [{
|
|
1245
|
+
readonly sourceField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
1246
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1247
|
+
readonly destSchema: "user";
|
|
1248
|
+
readonly cardinality: "one";
|
|
1249
|
+
}];
|
|
1250
|
+
};
|
|
1251
|
+
readonly accountAlias: {
|
|
1252
|
+
account: [{
|
|
1253
|
+
readonly sourceField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
1254
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1255
|
+
readonly destSchema: "account";
|
|
1256
|
+
readonly cardinality: "one";
|
|
1257
|
+
}];
|
|
1258
|
+
};
|
|
1259
|
+
readonly accountLabel: {
|
|
1260
|
+
account: [{
|
|
1261
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1262
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1263
|
+
readonly destSchema: "account";
|
|
1264
|
+
readonly cardinality: "one";
|
|
1265
|
+
}];
|
|
1266
|
+
threads: [{
|
|
1267
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1268
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1269
|
+
readonly destSchema: "threadLabel";
|
|
1270
|
+
readonly cardinality: "many";
|
|
1271
|
+
}, {
|
|
1272
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1273
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1274
|
+
readonly destSchema: "thread";
|
|
1275
|
+
readonly cardinality: "many";
|
|
1276
|
+
}];
|
|
1277
|
+
};
|
|
1278
|
+
readonly draftAttachment: {
|
|
1279
|
+
draft: [{
|
|
1280
|
+
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1281
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1282
|
+
readonly destSchema: "draft";
|
|
1283
|
+
readonly cardinality: "one";
|
|
1284
|
+
}];
|
|
1285
|
+
};
|
|
1286
1286
|
readonly threadLabel: {
|
|
1287
1287
|
label: [{
|
|
1288
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1289
|
-
readonly destField: readonly ("
|
|
1288
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1289
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1290
1290
|
readonly destSchema: "accountLabel";
|
|
1291
1291
|
readonly cardinality: "one";
|
|
1292
1292
|
}];
|
|
1293
1293
|
message: [{
|
|
1294
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1295
|
-
readonly destField: readonly ("
|
|
1294
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1295
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1296
1296
|
readonly destSchema: "threadMessage";
|
|
1297
1297
|
readonly cardinality: "one";
|
|
1298
1298
|
}];
|
|
1299
1299
|
thread: [{
|
|
1300
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1301
|
-
readonly destField: readonly ("
|
|
1300
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1301
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1302
1302
|
readonly destSchema: "thread";
|
|
1303
1303
|
readonly cardinality: "one";
|
|
1304
1304
|
}];
|
|
1305
1305
|
};
|
|
1306
1306
|
readonly threadByLabel: {
|
|
1307
1307
|
label: [{
|
|
1308
|
-
readonly sourceField: readonly ("
|
|
1309
|
-
readonly destField: readonly ("
|
|
1308
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
1309
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1310
1310
|
readonly destSchema: "accountLabel";
|
|
1311
1311
|
readonly cardinality: "one";
|
|
1312
1312
|
}];
|
|
1313
1313
|
thread: [{
|
|
1314
|
-
readonly sourceField: readonly ("
|
|
1315
|
-
readonly destField: readonly ("
|
|
1314
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
1315
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1316
1316
|
readonly destSchema: "thread";
|
|
1317
1317
|
readonly cardinality: "one";
|
|
1318
1318
|
}];
|
|
1319
1319
|
};
|
|
1320
1320
|
readonly threadMessage: {
|
|
1321
1321
|
attachments: [{
|
|
1322
|
-
readonly sourceField: readonly ("
|
|
1323
|
-
readonly destField: readonly ("id" | "fileName" | "mimeType" | "
|
|
1322
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1323
|
+
readonly destField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
1324
1324
|
readonly destSchema: "threadMessageAttachment";
|
|
1325
1325
|
readonly cardinality: "many";
|
|
1326
1326
|
}];
|
|
1327
1327
|
labels: [{
|
|
1328
|
-
readonly sourceField: readonly ("
|
|
1329
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
1328
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1329
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1330
1330
|
readonly destSchema: "threadLabel";
|
|
1331
1331
|
readonly cardinality: "many";
|
|
1332
1332
|
}, {
|
|
1333
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1334
|
-
readonly destField: readonly ("
|
|
1333
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1334
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1335
1335
|
readonly destSchema: "accountLabel";
|
|
1336
1336
|
readonly cardinality: "many";
|
|
1337
1337
|
}];
|
|
1338
1338
|
recipients: [{
|
|
1339
|
-
readonly sourceField: readonly ("
|
|
1340
|
-
readonly destField: readonly ("type" | "
|
|
1339
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1340
|
+
readonly destField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
1341
1341
|
readonly destSchema: "threadMessageRecipient";
|
|
1342
1342
|
readonly cardinality: "many";
|
|
1343
1343
|
}];
|
|
1344
1344
|
thread: [{
|
|
1345
|
-
readonly sourceField: readonly ("
|
|
1346
|
-
readonly destField: readonly ("
|
|
1345
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1346
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1347
1347
|
readonly destSchema: "thread";
|
|
1348
1348
|
readonly cardinality: "one";
|
|
1349
1349
|
}];
|
|
1350
1350
|
};
|
|
1351
1351
|
readonly threadMessageRecipient: {
|
|
1352
1352
|
message: [{
|
|
1353
|
-
readonly sourceField: readonly ("type" | "
|
|
1354
|
-
readonly destField: readonly ("
|
|
1353
|
+
readonly sourceField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
1354
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1355
1355
|
readonly destSchema: "threadMessage";
|
|
1356
1356
|
readonly cardinality: "one";
|
|
1357
1357
|
}];
|
|
1358
1358
|
};
|
|
1359
1359
|
readonly threadMessageAttachment: {
|
|
1360
1360
|
message: [{
|
|
1361
|
-
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "
|
|
1362
|
-
readonly destField: readonly ("
|
|
1361
|
+
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
1362
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1363
1363
|
readonly destSchema: "threadMessage";
|
|
1364
1364
|
readonly cardinality: "one";
|
|
1365
1365
|
}];
|