@marcoappio/marco-config 2.0.536 → 2.0.537
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/mutators.d.ts
CHANGED
|
@@ -525,72 +525,6 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
525
525
|
} & {
|
|
526
526
|
primaryKey: ["id"];
|
|
527
527
|
};
|
|
528
|
-
readonly userPushNotificationToken: {
|
|
529
|
-
name: "userPushNotificationToken";
|
|
530
|
-
columns: {
|
|
531
|
-
readonly createdAt: {
|
|
532
|
-
type: "number";
|
|
533
|
-
optional: false;
|
|
534
|
-
customType: number;
|
|
535
|
-
} & {
|
|
536
|
-
serverName: string;
|
|
537
|
-
};
|
|
538
|
-
readonly id: {
|
|
539
|
-
type: "string";
|
|
540
|
-
optional: false;
|
|
541
|
-
customType: string;
|
|
542
|
-
};
|
|
543
|
-
readonly token: {
|
|
544
|
-
type: "string";
|
|
545
|
-
optional: false;
|
|
546
|
-
customType: string;
|
|
547
|
-
};
|
|
548
|
-
readonly userId: {
|
|
549
|
-
type: "string";
|
|
550
|
-
optional: false;
|
|
551
|
-
customType: string;
|
|
552
|
-
} & {
|
|
553
|
-
serverName: string;
|
|
554
|
-
};
|
|
555
|
-
};
|
|
556
|
-
primaryKey: readonly [string, ...string[]];
|
|
557
|
-
} & {
|
|
558
|
-
primaryKey: ["id"];
|
|
559
|
-
};
|
|
560
|
-
readonly contact: {
|
|
561
|
-
name: "contact";
|
|
562
|
-
columns: {
|
|
563
|
-
readonly emailAddress: {
|
|
564
|
-
type: "string";
|
|
565
|
-
optional: false;
|
|
566
|
-
customType: string;
|
|
567
|
-
} & {
|
|
568
|
-
serverName: string;
|
|
569
|
-
};
|
|
570
|
-
readonly id: {
|
|
571
|
-
type: "string";
|
|
572
|
-
optional: false;
|
|
573
|
-
customType: string;
|
|
574
|
-
};
|
|
575
|
-
readonly name: Omit<{
|
|
576
|
-
type: "string";
|
|
577
|
-
optional: false;
|
|
578
|
-
customType: string;
|
|
579
|
-
}, "optional"> & {
|
|
580
|
-
optional: true;
|
|
581
|
-
};
|
|
582
|
-
readonly userId: {
|
|
583
|
-
type: "string";
|
|
584
|
-
optional: false;
|
|
585
|
-
customType: string;
|
|
586
|
-
} & {
|
|
587
|
-
serverName: string;
|
|
588
|
-
};
|
|
589
|
-
};
|
|
590
|
-
primaryKey: readonly [string, ...string[]];
|
|
591
|
-
} & {
|
|
592
|
-
primaryKey: ["id"];
|
|
593
|
-
};
|
|
594
528
|
readonly account: {
|
|
595
529
|
name: "account";
|
|
596
530
|
columns: {
|
|
@@ -655,16 +589,9 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
655
589
|
} & {
|
|
656
590
|
primaryKey: ["id"];
|
|
657
591
|
};
|
|
658
|
-
readonly
|
|
659
|
-
name: "
|
|
592
|
+
readonly contact: {
|
|
593
|
+
name: "contact";
|
|
660
594
|
columns: {
|
|
661
|
-
readonly accountId: {
|
|
662
|
-
type: "string";
|
|
663
|
-
optional: false;
|
|
664
|
-
customType: string;
|
|
665
|
-
} & {
|
|
666
|
-
serverName: string;
|
|
667
|
-
};
|
|
668
595
|
readonly emailAddress: {
|
|
669
596
|
type: "string";
|
|
670
597
|
optional: false;
|
|
@@ -677,13 +604,6 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
677
604
|
optional: false;
|
|
678
605
|
customType: string;
|
|
679
606
|
};
|
|
680
|
-
readonly isPrimary: {
|
|
681
|
-
type: "boolean";
|
|
682
|
-
optional: false;
|
|
683
|
-
customType: boolean;
|
|
684
|
-
} & {
|
|
685
|
-
serverName: string;
|
|
686
|
-
};
|
|
687
607
|
readonly name: Omit<{
|
|
688
608
|
type: "string";
|
|
689
609
|
optional: false;
|
|
@@ -691,58 +611,10 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
691
611
|
}, "optional"> & {
|
|
692
612
|
optional: true;
|
|
693
613
|
};
|
|
694
|
-
|
|
695
|
-
primaryKey: readonly [string, ...string[]];
|
|
696
|
-
} & {
|
|
697
|
-
primaryKey: ["id"];
|
|
698
|
-
};
|
|
699
|
-
readonly accountLabel: {
|
|
700
|
-
name: "accountLabel";
|
|
701
|
-
columns: {
|
|
702
|
-
readonly accountId: {
|
|
703
|
-
type: "string";
|
|
704
|
-
optional: false;
|
|
705
|
-
customType: string;
|
|
706
|
-
} & {
|
|
707
|
-
serverName: string;
|
|
708
|
-
};
|
|
709
|
-
readonly id: {
|
|
710
|
-
type: "string";
|
|
711
|
-
optional: false;
|
|
712
|
-
customType: string;
|
|
713
|
-
};
|
|
714
|
-
readonly name: Omit<{
|
|
715
|
-
type: "string";
|
|
716
|
-
optional: false;
|
|
717
|
-
customType: string;
|
|
718
|
-
}, "optional"> & {
|
|
719
|
-
optional: true;
|
|
720
|
-
};
|
|
721
|
-
readonly path: {
|
|
614
|
+
readonly userId: {
|
|
722
615
|
type: "string";
|
|
723
616
|
optional: false;
|
|
724
617
|
customType: string;
|
|
725
|
-
};
|
|
726
|
-
readonly specialUse: Omit<{
|
|
727
|
-
type: "string";
|
|
728
|
-
optional: false;
|
|
729
|
-
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
730
|
-
}, "optional"> & {
|
|
731
|
-
optional: true;
|
|
732
|
-
} & {
|
|
733
|
-
serverName: string;
|
|
734
|
-
};
|
|
735
|
-
readonly uidValidity: {
|
|
736
|
-
type: "number";
|
|
737
|
-
optional: false;
|
|
738
|
-
customType: number;
|
|
739
|
-
} & {
|
|
740
|
-
serverName: string;
|
|
741
|
-
};
|
|
742
|
-
readonly unreadCount: {
|
|
743
|
-
type: "number";
|
|
744
|
-
optional: false;
|
|
745
|
-
customType: number;
|
|
746
618
|
} & {
|
|
747
619
|
serverName: string;
|
|
748
620
|
};
|
|
@@ -862,20 +734,25 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
862
734
|
} & {
|
|
863
735
|
primaryKey: ["id"];
|
|
864
736
|
};
|
|
865
|
-
readonly
|
|
866
|
-
name: "
|
|
737
|
+
readonly thread: {
|
|
738
|
+
name: "thread";
|
|
867
739
|
columns: {
|
|
868
|
-
readonly
|
|
740
|
+
readonly accountId: {
|
|
869
741
|
type: "string";
|
|
870
742
|
optional: false;
|
|
871
743
|
customType: string;
|
|
872
744
|
} & {
|
|
873
745
|
serverName: string;
|
|
874
746
|
};
|
|
875
|
-
readonly
|
|
876
|
-
type: "
|
|
747
|
+
readonly flagged: {
|
|
748
|
+
type: "boolean";
|
|
877
749
|
optional: false;
|
|
878
|
-
customType:
|
|
750
|
+
customType: boolean;
|
|
751
|
+
};
|
|
752
|
+
readonly hasAttachments: {
|
|
753
|
+
type: "boolean";
|
|
754
|
+
optional: false;
|
|
755
|
+
customType: boolean;
|
|
879
756
|
} & {
|
|
880
757
|
serverName: string;
|
|
881
758
|
};
|
|
@@ -884,133 +761,256 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
884
761
|
optional: false;
|
|
885
762
|
customType: string;
|
|
886
763
|
};
|
|
887
|
-
readonly
|
|
764
|
+
readonly labelIdList: {
|
|
888
765
|
type: "string";
|
|
889
766
|
optional: false;
|
|
890
767
|
customType: string;
|
|
891
768
|
} & {
|
|
892
769
|
serverName: string;
|
|
893
770
|
};
|
|
894
|
-
readonly
|
|
771
|
+
readonly latestMessageDate: {
|
|
772
|
+
type: "number";
|
|
773
|
+
optional: false;
|
|
774
|
+
customType: number;
|
|
775
|
+
} & {
|
|
776
|
+
serverName: string;
|
|
777
|
+
};
|
|
778
|
+
readonly latestMessageId: {
|
|
895
779
|
type: "string";
|
|
896
780
|
optional: false;
|
|
897
|
-
customType:
|
|
781
|
+
customType: string;
|
|
898
782
|
} & {
|
|
899
783
|
serverName: string;
|
|
900
784
|
};
|
|
901
|
-
readonly
|
|
785
|
+
readonly messageCount: {
|
|
902
786
|
type: "number";
|
|
903
787
|
optional: false;
|
|
904
788
|
customType: number;
|
|
905
789
|
} & {
|
|
906
790
|
serverName: string;
|
|
907
791
|
};
|
|
908
|
-
|
|
909
|
-
primaryKey: readonly [string, ...string[]];
|
|
910
|
-
} & {
|
|
911
|
-
primaryKey: ["id"];
|
|
912
|
-
};
|
|
913
|
-
readonly thread: {
|
|
914
|
-
name: "thread";
|
|
915
|
-
columns: {
|
|
916
|
-
readonly accountId: {
|
|
792
|
+
readonly previewText: {
|
|
917
793
|
type: "string";
|
|
918
794
|
optional: false;
|
|
919
795
|
customType: string;
|
|
920
796
|
} & {
|
|
921
797
|
serverName: string;
|
|
922
798
|
};
|
|
923
|
-
readonly
|
|
799
|
+
readonly seen: {
|
|
924
800
|
type: "boolean";
|
|
925
801
|
optional: false;
|
|
926
802
|
customType: boolean;
|
|
927
803
|
};
|
|
928
|
-
readonly
|
|
929
|
-
type: "
|
|
804
|
+
readonly senderEmail: {
|
|
805
|
+
type: "string";
|
|
930
806
|
optional: false;
|
|
931
|
-
customType:
|
|
807
|
+
customType: string;
|
|
932
808
|
} & {
|
|
933
809
|
serverName: string;
|
|
934
810
|
};
|
|
935
|
-
readonly
|
|
811
|
+
readonly senderName: Omit<{
|
|
936
812
|
type: "string";
|
|
937
813
|
optional: false;
|
|
938
814
|
customType: string;
|
|
815
|
+
}, "optional"> & {
|
|
816
|
+
optional: true;
|
|
817
|
+
} & {
|
|
818
|
+
serverName: string;
|
|
939
819
|
};
|
|
940
|
-
readonly
|
|
820
|
+
readonly subject: Omit<{
|
|
821
|
+
type: "string";
|
|
822
|
+
optional: false;
|
|
823
|
+
customType: string;
|
|
824
|
+
}, "optional"> & {
|
|
825
|
+
optional: true;
|
|
826
|
+
};
|
|
827
|
+
readonly userId: {
|
|
941
828
|
type: "string";
|
|
942
829
|
optional: false;
|
|
943
830
|
customType: string;
|
|
944
831
|
} & {
|
|
945
832
|
serverName: string;
|
|
946
833
|
};
|
|
947
|
-
readonly
|
|
834
|
+
readonly words: {
|
|
835
|
+
type: "string";
|
|
836
|
+
optional: false;
|
|
837
|
+
customType: string;
|
|
838
|
+
};
|
|
839
|
+
};
|
|
840
|
+
primaryKey: readonly [string, ...string[]];
|
|
841
|
+
} & {
|
|
842
|
+
primaryKey: ["id"];
|
|
843
|
+
};
|
|
844
|
+
readonly userPushNotificationToken: {
|
|
845
|
+
name: "userPushNotificationToken";
|
|
846
|
+
columns: {
|
|
847
|
+
readonly createdAt: {
|
|
948
848
|
type: "number";
|
|
949
849
|
optional: false;
|
|
950
850
|
customType: number;
|
|
951
851
|
} & {
|
|
952
852
|
serverName: string;
|
|
953
853
|
};
|
|
954
|
-
readonly
|
|
854
|
+
readonly id: {
|
|
855
|
+
type: "string";
|
|
856
|
+
optional: false;
|
|
857
|
+
customType: string;
|
|
858
|
+
};
|
|
859
|
+
readonly token: {
|
|
860
|
+
type: "string";
|
|
861
|
+
optional: false;
|
|
862
|
+
customType: string;
|
|
863
|
+
};
|
|
864
|
+
readonly userId: {
|
|
955
865
|
type: "string";
|
|
956
866
|
optional: false;
|
|
957
867
|
customType: string;
|
|
958
868
|
} & {
|
|
959
869
|
serverName: string;
|
|
960
870
|
};
|
|
961
|
-
|
|
962
|
-
|
|
871
|
+
};
|
|
872
|
+
primaryKey: readonly [string, ...string[]];
|
|
873
|
+
} & {
|
|
874
|
+
primaryKey: ["id"];
|
|
875
|
+
};
|
|
876
|
+
readonly accountAlias: {
|
|
877
|
+
name: "accountAlias";
|
|
878
|
+
columns: {
|
|
879
|
+
readonly accountId: {
|
|
880
|
+
type: "string";
|
|
963
881
|
optional: false;
|
|
964
|
-
customType:
|
|
882
|
+
customType: string;
|
|
965
883
|
} & {
|
|
966
884
|
serverName: string;
|
|
967
885
|
};
|
|
968
|
-
readonly
|
|
886
|
+
readonly emailAddress: {
|
|
969
887
|
type: "string";
|
|
970
888
|
optional: false;
|
|
971
889
|
customType: string;
|
|
972
890
|
} & {
|
|
973
891
|
serverName: string;
|
|
974
892
|
};
|
|
975
|
-
readonly
|
|
893
|
+
readonly id: {
|
|
894
|
+
type: "string";
|
|
895
|
+
optional: false;
|
|
896
|
+
customType: string;
|
|
897
|
+
};
|
|
898
|
+
readonly isPrimary: {
|
|
976
899
|
type: "boolean";
|
|
977
900
|
optional: false;
|
|
978
901
|
customType: boolean;
|
|
902
|
+
} & {
|
|
903
|
+
serverName: string;
|
|
979
904
|
};
|
|
980
|
-
readonly
|
|
905
|
+
readonly name: Omit<{
|
|
906
|
+
type: "string";
|
|
907
|
+
optional: false;
|
|
908
|
+
customType: string;
|
|
909
|
+
}, "optional"> & {
|
|
910
|
+
optional: true;
|
|
911
|
+
};
|
|
912
|
+
};
|
|
913
|
+
primaryKey: readonly [string, ...string[]];
|
|
914
|
+
} & {
|
|
915
|
+
primaryKey: ["id"];
|
|
916
|
+
};
|
|
917
|
+
readonly accountLabel: {
|
|
918
|
+
name: "accountLabel";
|
|
919
|
+
columns: {
|
|
920
|
+
readonly accountId: {
|
|
981
921
|
type: "string";
|
|
982
922
|
optional: false;
|
|
983
923
|
customType: string;
|
|
984
924
|
} & {
|
|
985
925
|
serverName: string;
|
|
986
926
|
};
|
|
987
|
-
readonly
|
|
927
|
+
readonly id: {
|
|
928
|
+
type: "string";
|
|
929
|
+
optional: false;
|
|
930
|
+
customType: string;
|
|
931
|
+
};
|
|
932
|
+
readonly name: Omit<{
|
|
988
933
|
type: "string";
|
|
989
934
|
optional: false;
|
|
990
935
|
customType: string;
|
|
991
936
|
}, "optional"> & {
|
|
992
937
|
optional: true;
|
|
993
|
-
} & {
|
|
994
|
-
serverName: string;
|
|
995
938
|
};
|
|
996
|
-
readonly
|
|
939
|
+
readonly path: {
|
|
997
940
|
type: "string";
|
|
998
941
|
optional: false;
|
|
999
942
|
customType: string;
|
|
943
|
+
};
|
|
944
|
+
readonly specialUse: Omit<{
|
|
945
|
+
type: "string";
|
|
946
|
+
optional: false;
|
|
947
|
+
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
1000
948
|
}, "optional"> & {
|
|
1001
949
|
optional: true;
|
|
950
|
+
} & {
|
|
951
|
+
serverName: string;
|
|
1002
952
|
};
|
|
1003
|
-
readonly
|
|
953
|
+
readonly uidValidity: {
|
|
954
|
+
type: "number";
|
|
955
|
+
optional: false;
|
|
956
|
+
customType: number;
|
|
957
|
+
} & {
|
|
958
|
+
serverName: string;
|
|
959
|
+
};
|
|
960
|
+
readonly unreadCount: {
|
|
961
|
+
type: "number";
|
|
962
|
+
optional: false;
|
|
963
|
+
customType: number;
|
|
964
|
+
} & {
|
|
965
|
+
serverName: string;
|
|
966
|
+
};
|
|
967
|
+
};
|
|
968
|
+
primaryKey: readonly [string, ...string[]];
|
|
969
|
+
} & {
|
|
970
|
+
primaryKey: ["id"];
|
|
971
|
+
};
|
|
972
|
+
readonly draftAttachment: {
|
|
973
|
+
name: "draftAttachment";
|
|
974
|
+
columns: {
|
|
975
|
+
readonly draftId: {
|
|
1004
976
|
type: "string";
|
|
1005
977
|
optional: false;
|
|
1006
978
|
customType: string;
|
|
1007
979
|
} & {
|
|
1008
980
|
serverName: string;
|
|
1009
981
|
};
|
|
1010
|
-
readonly
|
|
982
|
+
readonly fileName: {
|
|
983
|
+
type: "string";
|
|
984
|
+
optional: false;
|
|
985
|
+
customType: string;
|
|
986
|
+
} & {
|
|
987
|
+
serverName: string;
|
|
988
|
+
};
|
|
989
|
+
readonly id: {
|
|
990
|
+
type: "string";
|
|
991
|
+
optional: false;
|
|
992
|
+
customType: string;
|
|
993
|
+
};
|
|
994
|
+
readonly mimeType: {
|
|
1011
995
|
type: "string";
|
|
1012
996
|
optional: false;
|
|
1013
997
|
customType: string;
|
|
998
|
+
} & {
|
|
999
|
+
serverName: string;
|
|
1000
|
+
};
|
|
1001
|
+
readonly status: {
|
|
1002
|
+
type: "string";
|
|
1003
|
+
optional: false;
|
|
1004
|
+
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
1005
|
+
} & {
|
|
1006
|
+
serverName: string;
|
|
1007
|
+
};
|
|
1008
|
+
readonly totalSize: {
|
|
1009
|
+
type: "number";
|
|
1010
|
+
optional: false;
|
|
1011
|
+
customType: number;
|
|
1012
|
+
} & {
|
|
1013
|
+
serverName: string;
|
|
1014
1014
|
};
|
|
1015
1015
|
};
|
|
1016
1016
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -1258,259 +1258,259 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1258
1258
|
relationships: {
|
|
1259
1259
|
readonly user: {
|
|
1260
1260
|
accounts: [{
|
|
1261
|
-
readonly sourceField: readonly ("id" | "
|
|
1262
|
-
readonly destField: readonly ("id" | "
|
|
1261
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1262
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1263
1263
|
readonly destSchema: "account";
|
|
1264
1264
|
readonly cardinality: "many";
|
|
1265
1265
|
}];
|
|
1266
1266
|
contacts: [{
|
|
1267
|
-
readonly sourceField: readonly ("id" | "
|
|
1268
|
-
readonly destField: readonly ("
|
|
1267
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1268
|
+
readonly destField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
1269
1269
|
readonly destSchema: "contact";
|
|
1270
1270
|
readonly cardinality: "many";
|
|
1271
1271
|
}];
|
|
1272
1272
|
drafts: [{
|
|
1273
|
-
readonly sourceField: readonly ("id" | "
|
|
1274
|
-
readonly destField: readonly ("type" | "status" | "
|
|
1273
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1274
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1275
1275
|
readonly destSchema: "draft";
|
|
1276
1276
|
readonly cardinality: "many";
|
|
1277
1277
|
}];
|
|
1278
1278
|
pushNotificationTokens: [{
|
|
1279
|
-
readonly sourceField: readonly ("id" | "
|
|
1280
|
-
readonly destField: readonly ("id" | "
|
|
1279
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1280
|
+
readonly destField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
1281
1281
|
readonly destSchema: "userPushNotificationToken";
|
|
1282
1282
|
readonly cardinality: "many";
|
|
1283
1283
|
}];
|
|
1284
1284
|
threads: [{
|
|
1285
|
-
readonly sourceField: readonly ("id" | "
|
|
1286
|
-
readonly destField: readonly ("
|
|
1285
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1286
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1287
1287
|
readonly destSchema: "thread";
|
|
1288
1288
|
readonly cardinality: "many";
|
|
1289
1289
|
}];
|
|
1290
1290
|
};
|
|
1291
|
-
readonly userPushNotificationToken: {
|
|
1292
|
-
user: [{
|
|
1293
|
-
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
1294
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
1295
|
-
readonly destSchema: "user";
|
|
1296
|
-
readonly cardinality: "one";
|
|
1297
|
-
}];
|
|
1298
|
-
};
|
|
1299
|
-
readonly contact: {
|
|
1300
|
-
user: [{
|
|
1301
|
-
readonly sourceField: readonly ("id" | "name" | "userId" | "emailAddress")[];
|
|
1302
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
1303
|
-
readonly destSchema: "user";
|
|
1304
|
-
readonly cardinality: "one";
|
|
1305
|
-
}];
|
|
1306
|
-
};
|
|
1307
1291
|
readonly account: {
|
|
1308
1292
|
aliases: [{
|
|
1309
|
-
readonly sourceField: readonly ("id" | "
|
|
1310
|
-
readonly destField: readonly ("
|
|
1293
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1294
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
1311
1295
|
readonly destSchema: "accountAlias";
|
|
1312
1296
|
readonly cardinality: "many";
|
|
1313
1297
|
}];
|
|
1314
1298
|
drafts: [{
|
|
1315
|
-
readonly sourceField: readonly ("id" | "
|
|
1316
|
-
readonly destField: readonly ("type" | "status" | "
|
|
1299
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1300
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1317
1301
|
readonly destSchema: "draft";
|
|
1318
1302
|
readonly cardinality: "many";
|
|
1319
1303
|
}];
|
|
1320
1304
|
labels: [{
|
|
1321
|
-
readonly sourceField: readonly ("id" | "
|
|
1322
|
-
readonly destField: readonly ("
|
|
1305
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1306
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1323
1307
|
readonly destSchema: "accountLabel";
|
|
1324
1308
|
readonly cardinality: "many";
|
|
1325
1309
|
}];
|
|
1326
1310
|
primaryAlias: [{
|
|
1327
|
-
readonly sourceField: readonly ("id" | "
|
|
1328
|
-
readonly destField: readonly ("
|
|
1311
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1312
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
1329
1313
|
readonly destSchema: "accountAlias";
|
|
1330
1314
|
readonly cardinality: "one";
|
|
1331
1315
|
}];
|
|
1332
1316
|
threads: [{
|
|
1333
|
-
readonly sourceField: readonly ("id" | "
|
|
1334
|
-
readonly destField: readonly ("
|
|
1317
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1318
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1335
1319
|
readonly destSchema: "thread";
|
|
1336
1320
|
readonly cardinality: "many";
|
|
1337
1321
|
}];
|
|
1338
1322
|
user: [{
|
|
1339
|
-
readonly sourceField: readonly ("id" | "
|
|
1340
|
-
readonly destField: readonly ("id" | "
|
|
1323
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1324
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1341
1325
|
readonly destSchema: "user";
|
|
1342
1326
|
readonly cardinality: "one";
|
|
1343
1327
|
}];
|
|
1344
1328
|
};
|
|
1345
|
-
readonly
|
|
1346
|
-
|
|
1347
|
-
readonly sourceField: readonly ("
|
|
1348
|
-
readonly destField: readonly ("id" | "
|
|
1349
|
-
readonly destSchema: "
|
|
1350
|
-
readonly cardinality: "one";
|
|
1351
|
-
}];
|
|
1352
|
-
};
|
|
1353
|
-
readonly accountLabel: {
|
|
1354
|
-
account: [{
|
|
1355
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1356
|
-
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1357
|
-
readonly destSchema: "account";
|
|
1329
|
+
readonly contact: {
|
|
1330
|
+
user: [{
|
|
1331
|
+
readonly sourceField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
1332
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1333
|
+
readonly destSchema: "user";
|
|
1358
1334
|
readonly cardinality: "one";
|
|
1359
1335
|
}];
|
|
1360
|
-
threads: [{
|
|
1361
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1362
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1363
|
-
readonly destSchema: "threadLabel";
|
|
1364
|
-
readonly cardinality: "many";
|
|
1365
|
-
}, {
|
|
1366
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1367
|
-
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1368
|
-
readonly destSchema: "thread";
|
|
1369
|
-
readonly cardinality: "many";
|
|
1370
|
-
}];
|
|
1371
1336
|
};
|
|
1372
1337
|
readonly draft: {
|
|
1373
1338
|
account: [{
|
|
1374
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
1375
|
-
readonly destField: readonly ("id" | "
|
|
1339
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1340
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1376
1341
|
readonly destSchema: "account";
|
|
1377
1342
|
readonly cardinality: "one";
|
|
1378
1343
|
}];
|
|
1379
1344
|
attachments: [{
|
|
1380
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
1345
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1381
1346
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1382
1347
|
readonly destSchema: "draftAttachment";
|
|
1383
1348
|
readonly cardinality: "many";
|
|
1384
1349
|
}];
|
|
1385
1350
|
user: [{
|
|
1386
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
1387
|
-
readonly destField: readonly ("id" | "
|
|
1351
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1352
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1388
1353
|
readonly destSchema: "user";
|
|
1389
1354
|
readonly cardinality: "one";
|
|
1390
1355
|
}];
|
|
1391
1356
|
};
|
|
1392
|
-
readonly draftAttachment: {
|
|
1393
|
-
draft: [{
|
|
1394
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1395
|
-
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
1396
|
-
readonly destSchema: "draft";
|
|
1397
|
-
readonly cardinality: "one";
|
|
1398
|
-
}];
|
|
1399
|
-
};
|
|
1400
1357
|
readonly thread: {
|
|
1401
1358
|
account: [{
|
|
1402
|
-
readonly sourceField: readonly ("
|
|
1403
|
-
readonly destField: readonly ("id" | "
|
|
1359
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1360
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1404
1361
|
readonly destSchema: "account";
|
|
1405
1362
|
readonly cardinality: "one";
|
|
1406
1363
|
}];
|
|
1407
1364
|
labels: [{
|
|
1408
|
-
readonly sourceField: readonly ("
|
|
1409
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
1365
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1366
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1410
1367
|
readonly destSchema: "threadLabel";
|
|
1411
1368
|
readonly cardinality: "many";
|
|
1412
1369
|
}, {
|
|
1413
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1414
|
-
readonly destField: readonly ("
|
|
1370
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1371
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1415
1372
|
readonly destSchema: "accountLabel";
|
|
1416
1373
|
readonly cardinality: "many";
|
|
1417
1374
|
}];
|
|
1418
1375
|
messages: [{
|
|
1419
|
-
readonly sourceField: readonly ("
|
|
1420
|
-
readonly destField: readonly ("
|
|
1376
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1377
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1421
1378
|
readonly destSchema: "threadMessage";
|
|
1422
1379
|
readonly cardinality: "many";
|
|
1423
1380
|
}];
|
|
1424
1381
|
threadByLabel: [{
|
|
1425
|
-
readonly sourceField: readonly ("
|
|
1426
|
-
readonly destField: readonly ("
|
|
1382
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1383
|
+
readonly destField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
1427
1384
|
readonly destSchema: "threadByLabel";
|
|
1428
1385
|
readonly cardinality: "many";
|
|
1429
1386
|
}];
|
|
1430
1387
|
user: [{
|
|
1431
|
-
readonly sourceField: readonly ("
|
|
1432
|
-
readonly destField: readonly ("id" | "
|
|
1388
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1389
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1433
1390
|
readonly destSchema: "user";
|
|
1434
1391
|
readonly cardinality: "one";
|
|
1435
1392
|
}];
|
|
1436
1393
|
};
|
|
1394
|
+
readonly userPushNotificationToken: {
|
|
1395
|
+
user: [{
|
|
1396
|
+
readonly sourceField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
1397
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1398
|
+
readonly destSchema: "user";
|
|
1399
|
+
readonly cardinality: "one";
|
|
1400
|
+
}];
|
|
1401
|
+
};
|
|
1402
|
+
readonly accountAlias: {
|
|
1403
|
+
account: [{
|
|
1404
|
+
readonly sourceField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
1405
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1406
|
+
readonly destSchema: "account";
|
|
1407
|
+
readonly cardinality: "one";
|
|
1408
|
+
}];
|
|
1409
|
+
};
|
|
1410
|
+
readonly accountLabel: {
|
|
1411
|
+
account: [{
|
|
1412
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1413
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1414
|
+
readonly destSchema: "account";
|
|
1415
|
+
readonly cardinality: "one";
|
|
1416
|
+
}];
|
|
1417
|
+
threads: [{
|
|
1418
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1419
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1420
|
+
readonly destSchema: "threadLabel";
|
|
1421
|
+
readonly cardinality: "many";
|
|
1422
|
+
}, {
|
|
1423
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1424
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1425
|
+
readonly destSchema: "thread";
|
|
1426
|
+
readonly cardinality: "many";
|
|
1427
|
+
}];
|
|
1428
|
+
};
|
|
1429
|
+
readonly draftAttachment: {
|
|
1430
|
+
draft: [{
|
|
1431
|
+
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1432
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1433
|
+
readonly destSchema: "draft";
|
|
1434
|
+
readonly cardinality: "one";
|
|
1435
|
+
}];
|
|
1436
|
+
};
|
|
1437
1437
|
readonly threadLabel: {
|
|
1438
1438
|
label: [{
|
|
1439
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1440
|
-
readonly destField: readonly ("
|
|
1439
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1440
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1441
1441
|
readonly destSchema: "accountLabel";
|
|
1442
1442
|
readonly cardinality: "one";
|
|
1443
1443
|
}];
|
|
1444
1444
|
message: [{
|
|
1445
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1446
|
-
readonly destField: readonly ("
|
|
1445
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1446
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1447
1447
|
readonly destSchema: "threadMessage";
|
|
1448
1448
|
readonly cardinality: "one";
|
|
1449
1449
|
}];
|
|
1450
1450
|
thread: [{
|
|
1451
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1452
|
-
readonly destField: readonly ("
|
|
1451
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1452
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1453
1453
|
readonly destSchema: "thread";
|
|
1454
1454
|
readonly cardinality: "one";
|
|
1455
1455
|
}];
|
|
1456
1456
|
};
|
|
1457
1457
|
readonly threadByLabel: {
|
|
1458
1458
|
label: [{
|
|
1459
|
-
readonly sourceField: readonly ("
|
|
1460
|
-
readonly destField: readonly ("
|
|
1459
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
1460
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1461
1461
|
readonly destSchema: "accountLabel";
|
|
1462
1462
|
readonly cardinality: "one";
|
|
1463
1463
|
}];
|
|
1464
1464
|
thread: [{
|
|
1465
|
-
readonly sourceField: readonly ("
|
|
1466
|
-
readonly destField: readonly ("
|
|
1465
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
1466
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1467
1467
|
readonly destSchema: "thread";
|
|
1468
1468
|
readonly cardinality: "one";
|
|
1469
1469
|
}];
|
|
1470
1470
|
};
|
|
1471
1471
|
readonly threadMessage: {
|
|
1472
1472
|
attachments: [{
|
|
1473
|
-
readonly sourceField: readonly ("
|
|
1474
|
-
readonly destField: readonly ("id" | "fileName" | "mimeType" | "
|
|
1473
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1474
|
+
readonly destField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
1475
1475
|
readonly destSchema: "threadMessageAttachment";
|
|
1476
1476
|
readonly cardinality: "many";
|
|
1477
1477
|
}];
|
|
1478
1478
|
labels: [{
|
|
1479
|
-
readonly sourceField: readonly ("
|
|
1480
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
1479
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1480
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1481
1481
|
readonly destSchema: "threadLabel";
|
|
1482
1482
|
readonly cardinality: "many";
|
|
1483
1483
|
}, {
|
|
1484
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1485
|
-
readonly destField: readonly ("
|
|
1484
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1485
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1486
1486
|
readonly destSchema: "accountLabel";
|
|
1487
1487
|
readonly cardinality: "many";
|
|
1488
1488
|
}];
|
|
1489
1489
|
recipients: [{
|
|
1490
|
-
readonly sourceField: readonly ("
|
|
1491
|
-
readonly destField: readonly ("type" | "
|
|
1490
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1491
|
+
readonly destField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
1492
1492
|
readonly destSchema: "threadMessageRecipient";
|
|
1493
1493
|
readonly cardinality: "many";
|
|
1494
1494
|
}];
|
|
1495
1495
|
thread: [{
|
|
1496
|
-
readonly sourceField: readonly ("
|
|
1497
|
-
readonly destField: readonly ("
|
|
1496
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1497
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1498
1498
|
readonly destSchema: "thread";
|
|
1499
1499
|
readonly cardinality: "one";
|
|
1500
1500
|
}];
|
|
1501
1501
|
};
|
|
1502
1502
|
readonly threadMessageRecipient: {
|
|
1503
1503
|
message: [{
|
|
1504
|
-
readonly sourceField: readonly ("type" | "
|
|
1505
|
-
readonly destField: readonly ("
|
|
1504
|
+
readonly sourceField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
1505
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1506
1506
|
readonly destSchema: "threadMessage";
|
|
1507
1507
|
readonly cardinality: "one";
|
|
1508
1508
|
}];
|
|
1509
1509
|
};
|
|
1510
1510
|
readonly threadMessageAttachment: {
|
|
1511
1511
|
message: [{
|
|
1512
|
-
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "
|
|
1513
|
-
readonly destField: readonly ("
|
|
1512
|
+
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
1513
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1514
1514
|
readonly destSchema: "threadMessage";
|
|
1515
1515
|
readonly cardinality: "one";
|
|
1516
1516
|
}];
|