@marcoappio/marco-config 2.0.427 → 2.0.428

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.
Files changed (88) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +1 -1
  4. package/dist/types/AuthData.d.ts +4 -0
  5. package/dist/types/AuthData.d.ts.map +1 -0
  6. package/dist/types/AuthData.js +1 -0
  7. package/dist/types/Zero.d.ts +18 -0
  8. package/dist/types/Zero.d.ts.map +1 -1
  9. package/dist/types/Zero.js +5 -1
  10. package/dist/types/index.d.ts +1 -0
  11. package/dist/types/index.d.ts.map +1 -1
  12. package/dist/types/index.js +1 -0
  13. package/dist/zero/index.d.ts +176 -184
  14. package/dist/zero/index.d.ts.map +1 -1
  15. package/dist/zero/index.js +0 -7
  16. package/dist/zero/{mutators → mutatorSchemas}/account.d.ts +4 -33
  17. package/dist/zero/mutatorSchemas/account.d.ts.map +1 -0
  18. package/dist/zero/{mutators → mutatorSchemas}/account.js +4 -7
  19. package/dist/zero/{mutators → mutatorSchemas}/draft.d.ts +1 -1
  20. package/dist/zero/{mutators → mutatorSchemas}/draft.d.ts.map +1 -1
  21. package/dist/zero/{mutators → mutatorSchemas}/draft.js +1 -1
  22. package/dist/zero/mutatorSchemas/index.d.ts +5 -0
  23. package/dist/zero/mutatorSchemas/index.d.ts.map +1 -0
  24. package/dist/zero/mutatorSchemas/index.js +4 -0
  25. package/dist/zero/{mutators → mutatorSchemas}/thread.d.ts +13 -26
  26. package/dist/zero/mutatorSchemas/thread.d.ts.map +1 -0
  27. package/dist/zero/{mutators → mutatorSchemas}/thread.js +13 -24
  28. package/dist/zero/{mutators → mutatorSchemas}/user.d.ts +1 -7
  29. package/dist/zero/mutatorSchemas/user.d.ts.map +1 -0
  30. package/dist/zero/{mutators → mutatorSchemas}/user.js +1 -7
  31. package/dist/zero/mutators/accountMutators/accountMutators.d.ts +8 -0
  32. package/dist/zero/mutators/accountMutators/accountMutators.d.ts.map +1 -0
  33. package/dist/zero/mutators/accountMutators/accountMutators.js +112 -0
  34. package/dist/zero/mutators/accountMutators/accountMutators.test.d.ts +2 -0
  35. package/dist/zero/mutators/accountMutators/accountMutators.test.d.ts.map +1 -0
  36. package/dist/zero/mutators/accountMutators/accountMutators.test.js +390 -0
  37. package/dist/zero/mutators/accountMutators/index.d.ts +2 -0
  38. package/dist/zero/mutators/accountMutators/index.d.ts.map +1 -0
  39. package/dist/zero/mutators/accountMutators/index.js +1 -0
  40. package/dist/zero/mutators/draftMutators/draftMutators.d.ts +8 -0
  41. package/dist/zero/mutators/draftMutators/draftMutators.d.ts.map +1 -0
  42. package/dist/zero/mutators/draftMutators/draftMutators.js +162 -0
  43. package/dist/zero/mutators/draftMutators/draftMutators.test.d.ts +2 -0
  44. package/dist/zero/mutators/draftMutators/draftMutators.test.d.ts.map +1 -0
  45. package/dist/zero/mutators/draftMutators/draftMutators.test.js +390 -0
  46. package/dist/zero/mutators/draftMutators/index.d.ts +2 -0
  47. package/dist/zero/mutators/draftMutators/index.d.ts.map +1 -0
  48. package/dist/zero/mutators/draftMutators/index.js +1 -0
  49. package/dist/zero/mutators/index.d.ts +6566 -0
  50. package/dist/zero/mutators/index.d.ts.map +1 -0
  51. package/dist/zero/mutators/index.js +17 -0
  52. package/dist/zero/mutators/mutators.d.ts +29 -0
  53. package/dist/zero/mutators/mutators.d.ts.map +1 -0
  54. package/dist/zero/{mutators.js → mutators/mutators.js} +10 -15
  55. package/dist/zero/mutators/threadMutators/index.d.ts +2 -0
  56. package/dist/zero/mutators/threadMutators/index.d.ts.map +1 -0
  57. package/dist/zero/mutators/threadMutators/index.js +1 -0
  58. package/dist/zero/mutators/threadMutators/threadMutators.d.ts +8 -0
  59. package/dist/zero/mutators/threadMutators/threadMutators.d.ts.map +1 -0
  60. package/dist/zero/mutators/threadMutators/threadMutators.js +238 -0
  61. package/dist/zero/mutators/threadMutators/threadMutators.test.d.ts +2 -0
  62. package/dist/zero/mutators/threadMutators/threadMutators.test.d.ts.map +1 -0
  63. package/dist/zero/mutators/threadMutators/threadMutators.test.js +465 -0
  64. package/dist/zero/mutators/userMutators/index.d.ts +2 -0
  65. package/dist/zero/mutators/userMutators/index.d.ts.map +1 -0
  66. package/dist/zero/mutators/userMutators/index.js +1 -0
  67. package/dist/zero/mutators/userMutators/userMutators.d.ts +8 -0
  68. package/dist/zero/mutators/userMutators/userMutators.d.ts.map +1 -0
  69. package/dist/zero/mutators/userMutators/userMutators.js +37 -0
  70. package/dist/zero/mutators/userMutators/userMutators.test.d.ts +2 -0
  71. package/dist/zero/mutators/userMutators/userMutators.test.d.ts.map +1 -0
  72. package/dist/zero/mutators/userMutators/userMutators.test.js +123 -0
  73. package/dist/zero/queries/getAccounts.d.ts +29 -29
  74. package/dist/zero/queries/getContacts.d.ts +29 -29
  75. package/dist/zero/queries/getDrafts.d.ts +29 -29
  76. package/dist/zero/queries/getThreads.d.ts +29 -29
  77. package/dist/zero/queries/getUser.d.ts +29 -29
  78. package/dist/zero/queries/index.d.ts +29 -29
  79. package/dist/zero/schema.d.ts +29 -29
  80. package/package.json +1 -1
  81. package/dist/zero/mutators/account.d.ts.map +0 -1
  82. package/dist/zero/mutators/thread.d.ts.map +0 -1
  83. package/dist/zero/mutators/user.d.ts.map +0 -1
  84. package/dist/zero/mutators.d.ts +0 -412
  85. package/dist/zero/mutators.d.ts.map +0 -1
  86. package/dist/zero/mutators.test.d.ts +0 -2
  87. package/dist/zero/mutators.test.d.ts.map +0 -1
  88. package/dist/zero/mutators.test.js +0 -33
@@ -1,5 +1,5 @@
1
1
  export declare const marcoZero: {
2
- readonly createMutators: (handlers: import("./mutators").MarcoZeroMutatorHandlers) => import("./mutators").MarcoZeroMutators;
2
+ readonly createMutators: (authData?: import("./mutators/mutators").AuthData, callbacks?: import("./mutators/mutators").MutatorCallbacks) => import("./mutators").MarcoZeroMutators;
3
3
  readonly queries: {
4
4
  readonly getAccounts: import("@rocicorp/zero").SyncedQuery<"getAccounts", import("..").MarcoSyncedQueryContext, true, [], import("@rocicorp/zero").Query<{
5
5
  tables: {
@@ -687,31 +687,31 @@ export declare const marcoZero: {
687
687
  readonly user: {
688
688
  accounts: [{
689
689
  readonly sourceField: string[];
690
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
690
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
691
691
  readonly destSchema: "account";
692
692
  readonly cardinality: "many";
693
693
  }];
694
694
  contacts: [{
695
695
  readonly sourceField: string[];
696
- readonly destField: ("id" | "name" | "emailAddress" | "userId")[];
696
+ readonly destField: ("id" | "name" | "userId" | "emailAddress")[];
697
697
  readonly destSchema: "contact";
698
698
  readonly cardinality: "many";
699
699
  }];
700
700
  drafts: [{
701
701
  readonly sourceField: string[];
702
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
702
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
703
703
  readonly destSchema: "draft";
704
704
  readonly cardinality: "many";
705
705
  }];
706
706
  pushNotificationTokens: [{
707
707
  readonly sourceField: string[];
708
- readonly destField: ("createdAt" | "id" | "token" | "userId")[];
708
+ readonly destField: ("id" | "createdAt" | "token" | "userId")[];
709
709
  readonly destSchema: "userPushNotificationToken";
710
710
  readonly cardinality: "many";
711
711
  }];
712
712
  threads: [{
713
713
  readonly sourceField: string[];
714
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
714
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
715
715
  readonly destSchema: "thread";
716
716
  readonly cardinality: "many";
717
717
  }];
@@ -719,7 +719,7 @@ export declare const marcoZero: {
719
719
  readonly userPushNotificationToken: {
720
720
  user: [{
721
721
  readonly sourceField: string[];
722
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
722
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
723
723
  readonly destSchema: "user";
724
724
  readonly cardinality: "one";
725
725
  }];
@@ -727,7 +727,7 @@ export declare const marcoZero: {
727
727
  readonly contact: {
728
728
  user: [{
729
729
  readonly sourceField: string[];
730
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
730
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
731
731
  readonly destSchema: "user";
732
732
  readonly cardinality: "one";
733
733
  }];
@@ -741,7 +741,7 @@ export declare const marcoZero: {
741
741
  }];
742
742
  drafts: [{
743
743
  readonly sourceField: string[];
744
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
744
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
745
745
  readonly destSchema: "draft";
746
746
  readonly cardinality: "many";
747
747
  }];
@@ -759,13 +759,13 @@ export declare const marcoZero: {
759
759
  }];
760
760
  threads: [{
761
761
  readonly sourceField: string[];
762
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
762
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
763
763
  readonly destSchema: "thread";
764
764
  readonly cardinality: "many";
765
765
  }];
766
766
  user: [{
767
767
  readonly sourceField: string[];
768
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
768
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
769
769
  readonly destSchema: "user";
770
770
  readonly cardinality: "one";
771
771
  }];
@@ -773,7 +773,7 @@ export declare const marcoZero: {
773
773
  readonly accountAlias: {
774
774
  account: [{
775
775
  readonly sourceField: string[];
776
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
776
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
777
777
  readonly destSchema: "account";
778
778
  readonly cardinality: "one";
779
779
  }];
@@ -781,7 +781,7 @@ export declare const marcoZero: {
781
781
  readonly accountLabel: {
782
782
  account: [{
783
783
  readonly sourceField: string[];
784
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
784
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
785
785
  readonly destSchema: "account";
786
786
  readonly cardinality: "one";
787
787
  }];
@@ -792,18 +792,18 @@ export declare const marcoZero: {
792
792
  readonly cardinality: "many";
793
793
  }, {
794
794
  readonly sourceField: string[];
795
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
795
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
796
796
  readonly destSchema: "threadMessage";
797
797
  readonly cardinality: "many";
798
798
  }];
799
799
  threads: [{
800
800
  readonly sourceField: string[];
801
- readonly destField: ("threadId" | "labelId")[];
801
+ readonly destField: ("labelId" | "threadId")[];
802
802
  readonly destSchema: "threadLabel";
803
803
  readonly cardinality: "many";
804
804
  }, {
805
805
  readonly sourceField: string[];
806
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
806
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
807
807
  readonly destSchema: "thread";
808
808
  readonly cardinality: "many";
809
809
  }];
@@ -811,13 +811,13 @@ export declare const marcoZero: {
811
811
  readonly draft: {
812
812
  account: [{
813
813
  readonly sourceField: string[];
814
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
814
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
815
815
  readonly destSchema: "account";
816
816
  readonly cardinality: "one";
817
817
  }];
818
818
  attachments: [{
819
819
  readonly sourceField: string[];
820
- readonly destField: ("id" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks" | "draftId")[];
820
+ readonly destField: ("id" | "draftId" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks")[];
821
821
  readonly destSchema: "draftAttachment";
822
822
  readonly cardinality: "many";
823
823
  }];
@@ -829,7 +829,7 @@ export declare const marcoZero: {
829
829
  }];
830
830
  user: [{
831
831
  readonly sourceField: string[];
832
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
832
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
833
833
  readonly destSchema: "user";
834
834
  readonly cardinality: "one";
835
835
  }];
@@ -837,7 +837,7 @@ export declare const marcoZero: {
837
837
  readonly draftRecipient: {
838
838
  draft: [{
839
839
  readonly sourceField: string[];
840
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
840
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
841
841
  readonly destSchema: "draft";
842
842
  readonly cardinality: "one";
843
843
  }];
@@ -845,7 +845,7 @@ export declare const marcoZero: {
845
845
  readonly draftAttachment: {
846
846
  draft: [{
847
847
  readonly sourceField: string[];
848
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
848
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
849
849
  readonly destSchema: "draft";
850
850
  readonly cardinality: "one";
851
851
  }];
@@ -853,13 +853,13 @@ export declare const marcoZero: {
853
853
  readonly thread: {
854
854
  account: [{
855
855
  readonly sourceField: string[];
856
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
856
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
857
857
  readonly destSchema: "account";
858
858
  readonly cardinality: "one";
859
859
  }];
860
860
  labels: [{
861
861
  readonly sourceField: string[];
862
- readonly destField: ("threadId" | "labelId")[];
862
+ readonly destField: ("labelId" | "threadId")[];
863
863
  readonly destSchema: "threadLabel";
864
864
  readonly cardinality: "many";
865
865
  }, {
@@ -870,13 +870,13 @@ export declare const marcoZero: {
870
870
  }];
871
871
  messages: [{
872
872
  readonly sourceField: string[];
873
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
873
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
874
874
  readonly destSchema: "threadMessage";
875
875
  readonly cardinality: "many";
876
876
  }];
877
877
  user: [{
878
878
  readonly sourceField: string[];
879
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
879
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
880
880
  readonly destSchema: "user";
881
881
  readonly cardinality: "one";
882
882
  }];
@@ -890,7 +890,7 @@ export declare const marcoZero: {
890
890
  }];
891
891
  thread: [{
892
892
  readonly sourceField: string[];
893
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
893
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
894
894
  readonly destSchema: "thread";
895
895
  readonly cardinality: "one";
896
896
  }];
@@ -910,7 +910,7 @@ export declare const marcoZero: {
910
910
  }];
911
911
  thread: [{
912
912
  readonly sourceField: string[];
913
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
913
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
914
914
  readonly destSchema: "thread";
915
915
  readonly cardinality: "one";
916
916
  }];
@@ -918,7 +918,7 @@ export declare const marcoZero: {
918
918
  readonly threadMessageRecipient: {
919
919
  message: [{
920
920
  readonly sourceField: string[];
921
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
921
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
922
922
  readonly destSchema: "threadMessage";
923
923
  readonly cardinality: "one";
924
924
  }];
@@ -926,7 +926,7 @@ export declare const marcoZero: {
926
926
  readonly threadMessageAttachment: {
927
927
  message: [{
928
928
  readonly sourceField: string[];
929
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
929
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
930
930
  readonly destSchema: "threadMessage";
931
931
  readonly cardinality: "one";
932
932
  }];
@@ -940,7 +940,7 @@ export declare const marcoZero: {
940
940
  }];
941
941
  message: [{
942
942
  readonly sourceField: string[];
943
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
943
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
944
944
  readonly destSchema: "threadMessage";
945
945
  readonly cardinality: "one";
946
946
  }];
@@ -1674,31 +1674,31 @@ export declare const marcoZero: {
1674
1674
  readonly user: {
1675
1675
  accounts: [{
1676
1676
  readonly sourceField: string[];
1677
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1677
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1678
1678
  readonly destSchema: "account";
1679
1679
  readonly cardinality: "many";
1680
1680
  }];
1681
1681
  contacts: [{
1682
1682
  readonly sourceField: string[];
1683
- readonly destField: ("id" | "name" | "emailAddress" | "userId")[];
1683
+ readonly destField: ("id" | "name" | "userId" | "emailAddress")[];
1684
1684
  readonly destSchema: "contact";
1685
1685
  readonly cardinality: "many";
1686
1686
  }];
1687
1687
  drafts: [{
1688
1688
  readonly sourceField: string[];
1689
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
1689
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
1690
1690
  readonly destSchema: "draft";
1691
1691
  readonly cardinality: "many";
1692
1692
  }];
1693
1693
  pushNotificationTokens: [{
1694
1694
  readonly sourceField: string[];
1695
- readonly destField: ("createdAt" | "id" | "token" | "userId")[];
1695
+ readonly destField: ("id" | "createdAt" | "token" | "userId")[];
1696
1696
  readonly destSchema: "userPushNotificationToken";
1697
1697
  readonly cardinality: "many";
1698
1698
  }];
1699
1699
  threads: [{
1700
1700
  readonly sourceField: string[];
1701
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
1701
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
1702
1702
  readonly destSchema: "thread";
1703
1703
  readonly cardinality: "many";
1704
1704
  }];
@@ -1706,7 +1706,7 @@ export declare const marcoZero: {
1706
1706
  readonly userPushNotificationToken: {
1707
1707
  user: [{
1708
1708
  readonly sourceField: string[];
1709
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
1709
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
1710
1710
  readonly destSchema: "user";
1711
1711
  readonly cardinality: "one";
1712
1712
  }];
@@ -1714,7 +1714,7 @@ export declare const marcoZero: {
1714
1714
  readonly contact: {
1715
1715
  user: [{
1716
1716
  readonly sourceField: string[];
1717
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
1717
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
1718
1718
  readonly destSchema: "user";
1719
1719
  readonly cardinality: "one";
1720
1720
  }];
@@ -1728,7 +1728,7 @@ export declare const marcoZero: {
1728
1728
  }];
1729
1729
  drafts: [{
1730
1730
  readonly sourceField: string[];
1731
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
1731
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
1732
1732
  readonly destSchema: "draft";
1733
1733
  readonly cardinality: "many";
1734
1734
  }];
@@ -1746,13 +1746,13 @@ export declare const marcoZero: {
1746
1746
  }];
1747
1747
  threads: [{
1748
1748
  readonly sourceField: string[];
1749
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
1749
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
1750
1750
  readonly destSchema: "thread";
1751
1751
  readonly cardinality: "many";
1752
1752
  }];
1753
1753
  user: [{
1754
1754
  readonly sourceField: string[];
1755
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
1755
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
1756
1756
  readonly destSchema: "user";
1757
1757
  readonly cardinality: "one";
1758
1758
  }];
@@ -1760,7 +1760,7 @@ export declare const marcoZero: {
1760
1760
  readonly accountAlias: {
1761
1761
  account: [{
1762
1762
  readonly sourceField: string[];
1763
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1763
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1764
1764
  readonly destSchema: "account";
1765
1765
  readonly cardinality: "one";
1766
1766
  }];
@@ -1768,7 +1768,7 @@ export declare const marcoZero: {
1768
1768
  readonly accountLabel: {
1769
1769
  account: [{
1770
1770
  readonly sourceField: string[];
1771
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1771
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1772
1772
  readonly destSchema: "account";
1773
1773
  readonly cardinality: "one";
1774
1774
  }];
@@ -1779,18 +1779,18 @@ export declare const marcoZero: {
1779
1779
  readonly cardinality: "many";
1780
1780
  }, {
1781
1781
  readonly sourceField: string[];
1782
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1782
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1783
1783
  readonly destSchema: "threadMessage";
1784
1784
  readonly cardinality: "many";
1785
1785
  }];
1786
1786
  threads: [{
1787
1787
  readonly sourceField: string[];
1788
- readonly destField: ("threadId" | "labelId")[];
1788
+ readonly destField: ("labelId" | "threadId")[];
1789
1789
  readonly destSchema: "threadLabel";
1790
1790
  readonly cardinality: "many";
1791
1791
  }, {
1792
1792
  readonly sourceField: string[];
1793
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
1793
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
1794
1794
  readonly destSchema: "thread";
1795
1795
  readonly cardinality: "many";
1796
1796
  }];
@@ -1798,13 +1798,13 @@ export declare const marcoZero: {
1798
1798
  readonly draft: {
1799
1799
  account: [{
1800
1800
  readonly sourceField: string[];
1801
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1801
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1802
1802
  readonly destSchema: "account";
1803
1803
  readonly cardinality: "one";
1804
1804
  }];
1805
1805
  attachments: [{
1806
1806
  readonly sourceField: string[];
1807
- readonly destField: ("id" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks" | "draftId")[];
1807
+ readonly destField: ("id" | "draftId" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks")[];
1808
1808
  readonly destSchema: "draftAttachment";
1809
1809
  readonly cardinality: "many";
1810
1810
  }];
@@ -1816,7 +1816,7 @@ export declare const marcoZero: {
1816
1816
  }];
1817
1817
  user: [{
1818
1818
  readonly sourceField: string[];
1819
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
1819
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
1820
1820
  readonly destSchema: "user";
1821
1821
  readonly cardinality: "one";
1822
1822
  }];
@@ -1824,7 +1824,7 @@ export declare const marcoZero: {
1824
1824
  readonly draftRecipient: {
1825
1825
  draft: [{
1826
1826
  readonly sourceField: string[];
1827
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
1827
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
1828
1828
  readonly destSchema: "draft";
1829
1829
  readonly cardinality: "one";
1830
1830
  }];
@@ -1832,7 +1832,7 @@ export declare const marcoZero: {
1832
1832
  readonly draftAttachment: {
1833
1833
  draft: [{
1834
1834
  readonly sourceField: string[];
1835
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
1835
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
1836
1836
  readonly destSchema: "draft";
1837
1837
  readonly cardinality: "one";
1838
1838
  }];
@@ -1840,13 +1840,13 @@ export declare const marcoZero: {
1840
1840
  readonly thread: {
1841
1841
  account: [{
1842
1842
  readonly sourceField: string[];
1843
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1843
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
1844
1844
  readonly destSchema: "account";
1845
1845
  readonly cardinality: "one";
1846
1846
  }];
1847
1847
  labels: [{
1848
1848
  readonly sourceField: string[];
1849
- readonly destField: ("threadId" | "labelId")[];
1849
+ readonly destField: ("labelId" | "threadId")[];
1850
1850
  readonly destSchema: "threadLabel";
1851
1851
  readonly cardinality: "many";
1852
1852
  }, {
@@ -1857,13 +1857,13 @@ export declare const marcoZero: {
1857
1857
  }];
1858
1858
  messages: [{
1859
1859
  readonly sourceField: string[];
1860
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1860
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1861
1861
  readonly destSchema: "threadMessage";
1862
1862
  readonly cardinality: "many";
1863
1863
  }];
1864
1864
  user: [{
1865
1865
  readonly sourceField: string[];
1866
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
1866
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
1867
1867
  readonly destSchema: "user";
1868
1868
  readonly cardinality: "one";
1869
1869
  }];
@@ -1877,7 +1877,7 @@ export declare const marcoZero: {
1877
1877
  }];
1878
1878
  thread: [{
1879
1879
  readonly sourceField: string[];
1880
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
1880
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
1881
1881
  readonly destSchema: "thread";
1882
1882
  readonly cardinality: "one";
1883
1883
  }];
@@ -1897,7 +1897,7 @@ export declare const marcoZero: {
1897
1897
  }];
1898
1898
  thread: [{
1899
1899
  readonly sourceField: string[];
1900
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
1900
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
1901
1901
  readonly destSchema: "thread";
1902
1902
  readonly cardinality: "one";
1903
1903
  }];
@@ -1905,7 +1905,7 @@ export declare const marcoZero: {
1905
1905
  readonly threadMessageRecipient: {
1906
1906
  message: [{
1907
1907
  readonly sourceField: string[];
1908
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1908
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1909
1909
  readonly destSchema: "threadMessage";
1910
1910
  readonly cardinality: "one";
1911
1911
  }];
@@ -1913,7 +1913,7 @@ export declare const marcoZero: {
1913
1913
  readonly threadMessageAttachment: {
1914
1914
  message: [{
1915
1915
  readonly sourceField: string[];
1916
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1916
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1917
1917
  readonly destSchema: "threadMessage";
1918
1918
  readonly cardinality: "one";
1919
1919
  }];
@@ -1927,7 +1927,7 @@ export declare const marcoZero: {
1927
1927
  }];
1928
1928
  message: [{
1929
1929
  readonly sourceField: string[];
1930
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1930
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
1931
1931
  readonly destSchema: "threadMessage";
1932
1932
  readonly cardinality: "one";
1933
1933
  }];
@@ -2631,31 +2631,31 @@ export declare const marcoZero: {
2631
2631
  readonly user: {
2632
2632
  accounts: [{
2633
2633
  readonly sourceField: string[];
2634
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2634
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2635
2635
  readonly destSchema: "account";
2636
2636
  readonly cardinality: "many";
2637
2637
  }];
2638
2638
  contacts: [{
2639
2639
  readonly sourceField: string[];
2640
- readonly destField: ("id" | "name" | "emailAddress" | "userId")[];
2640
+ readonly destField: ("id" | "name" | "userId" | "emailAddress")[];
2641
2641
  readonly destSchema: "contact";
2642
2642
  readonly cardinality: "many";
2643
2643
  }];
2644
2644
  drafts: [{
2645
2645
  readonly sourceField: string[];
2646
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
2646
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
2647
2647
  readonly destSchema: "draft";
2648
2648
  readonly cardinality: "many";
2649
2649
  }];
2650
2650
  pushNotificationTokens: [{
2651
2651
  readonly sourceField: string[];
2652
- readonly destField: ("createdAt" | "id" | "token" | "userId")[];
2652
+ readonly destField: ("id" | "createdAt" | "token" | "userId")[];
2653
2653
  readonly destSchema: "userPushNotificationToken";
2654
2654
  readonly cardinality: "many";
2655
2655
  }];
2656
2656
  threads: [{
2657
2657
  readonly sourceField: string[];
2658
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
2658
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
2659
2659
  readonly destSchema: "thread";
2660
2660
  readonly cardinality: "many";
2661
2661
  }];
@@ -2663,7 +2663,7 @@ export declare const marcoZero: {
2663
2663
  readonly userPushNotificationToken: {
2664
2664
  user: [{
2665
2665
  readonly sourceField: string[];
2666
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
2666
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
2667
2667
  readonly destSchema: "user";
2668
2668
  readonly cardinality: "one";
2669
2669
  }];
@@ -2671,7 +2671,7 @@ export declare const marcoZero: {
2671
2671
  readonly contact: {
2672
2672
  user: [{
2673
2673
  readonly sourceField: string[];
2674
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
2674
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
2675
2675
  readonly destSchema: "user";
2676
2676
  readonly cardinality: "one";
2677
2677
  }];
@@ -2685,7 +2685,7 @@ export declare const marcoZero: {
2685
2685
  }];
2686
2686
  drafts: [{
2687
2687
  readonly sourceField: string[];
2688
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
2688
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
2689
2689
  readonly destSchema: "draft";
2690
2690
  readonly cardinality: "many";
2691
2691
  }];
@@ -2703,13 +2703,13 @@ export declare const marcoZero: {
2703
2703
  }];
2704
2704
  threads: [{
2705
2705
  readonly sourceField: string[];
2706
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
2706
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
2707
2707
  readonly destSchema: "thread";
2708
2708
  readonly cardinality: "many";
2709
2709
  }];
2710
2710
  user: [{
2711
2711
  readonly sourceField: string[];
2712
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
2712
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
2713
2713
  readonly destSchema: "user";
2714
2714
  readonly cardinality: "one";
2715
2715
  }];
@@ -2717,7 +2717,7 @@ export declare const marcoZero: {
2717
2717
  readonly accountAlias: {
2718
2718
  account: [{
2719
2719
  readonly sourceField: string[];
2720
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2720
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2721
2721
  readonly destSchema: "account";
2722
2722
  readonly cardinality: "one";
2723
2723
  }];
@@ -2725,7 +2725,7 @@ export declare const marcoZero: {
2725
2725
  readonly accountLabel: {
2726
2726
  account: [{
2727
2727
  readonly sourceField: string[];
2728
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2728
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2729
2729
  readonly destSchema: "account";
2730
2730
  readonly cardinality: "one";
2731
2731
  }];
@@ -2736,18 +2736,18 @@ export declare const marcoZero: {
2736
2736
  readonly cardinality: "many";
2737
2737
  }, {
2738
2738
  readonly sourceField: string[];
2739
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2739
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2740
2740
  readonly destSchema: "threadMessage";
2741
2741
  readonly cardinality: "many";
2742
2742
  }];
2743
2743
  threads: [{
2744
2744
  readonly sourceField: string[];
2745
- readonly destField: ("threadId" | "labelId")[];
2745
+ readonly destField: ("labelId" | "threadId")[];
2746
2746
  readonly destSchema: "threadLabel";
2747
2747
  readonly cardinality: "many";
2748
2748
  }, {
2749
2749
  readonly sourceField: string[];
2750
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
2750
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
2751
2751
  readonly destSchema: "thread";
2752
2752
  readonly cardinality: "many";
2753
2753
  }];
@@ -2755,13 +2755,13 @@ export declare const marcoZero: {
2755
2755
  readonly draft: {
2756
2756
  account: [{
2757
2757
  readonly sourceField: string[];
2758
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2758
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2759
2759
  readonly destSchema: "account";
2760
2760
  readonly cardinality: "one";
2761
2761
  }];
2762
2762
  attachments: [{
2763
2763
  readonly sourceField: string[];
2764
- readonly destField: ("id" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks" | "draftId")[];
2764
+ readonly destField: ("id" | "draftId" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks")[];
2765
2765
  readonly destSchema: "draftAttachment";
2766
2766
  readonly cardinality: "many";
2767
2767
  }];
@@ -2773,7 +2773,7 @@ export declare const marcoZero: {
2773
2773
  }];
2774
2774
  user: [{
2775
2775
  readonly sourceField: string[];
2776
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
2776
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
2777
2777
  readonly destSchema: "user";
2778
2778
  readonly cardinality: "one";
2779
2779
  }];
@@ -2781,7 +2781,7 @@ export declare const marcoZero: {
2781
2781
  readonly draftRecipient: {
2782
2782
  draft: [{
2783
2783
  readonly sourceField: string[];
2784
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
2784
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
2785
2785
  readonly destSchema: "draft";
2786
2786
  readonly cardinality: "one";
2787
2787
  }];
@@ -2789,7 +2789,7 @@ export declare const marcoZero: {
2789
2789
  readonly draftAttachment: {
2790
2790
  draft: [{
2791
2791
  readonly sourceField: string[];
2792
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
2792
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
2793
2793
  readonly destSchema: "draft";
2794
2794
  readonly cardinality: "one";
2795
2795
  }];
@@ -2797,13 +2797,13 @@ export declare const marcoZero: {
2797
2797
  readonly thread: {
2798
2798
  account: [{
2799
2799
  readonly sourceField: string[];
2800
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2800
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
2801
2801
  readonly destSchema: "account";
2802
2802
  readonly cardinality: "one";
2803
2803
  }];
2804
2804
  labels: [{
2805
2805
  readonly sourceField: string[];
2806
- readonly destField: ("threadId" | "labelId")[];
2806
+ readonly destField: ("labelId" | "threadId")[];
2807
2807
  readonly destSchema: "threadLabel";
2808
2808
  readonly cardinality: "many";
2809
2809
  }, {
@@ -2814,13 +2814,13 @@ export declare const marcoZero: {
2814
2814
  }];
2815
2815
  messages: [{
2816
2816
  readonly sourceField: string[];
2817
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2817
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2818
2818
  readonly destSchema: "threadMessage";
2819
2819
  readonly cardinality: "many";
2820
2820
  }];
2821
2821
  user: [{
2822
2822
  readonly sourceField: string[];
2823
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
2823
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
2824
2824
  readonly destSchema: "user";
2825
2825
  readonly cardinality: "one";
2826
2826
  }];
@@ -2834,7 +2834,7 @@ export declare const marcoZero: {
2834
2834
  }];
2835
2835
  thread: [{
2836
2836
  readonly sourceField: string[];
2837
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
2837
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
2838
2838
  readonly destSchema: "thread";
2839
2839
  readonly cardinality: "one";
2840
2840
  }];
@@ -2854,7 +2854,7 @@ export declare const marcoZero: {
2854
2854
  }];
2855
2855
  thread: [{
2856
2856
  readonly sourceField: string[];
2857
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
2857
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
2858
2858
  readonly destSchema: "thread";
2859
2859
  readonly cardinality: "one";
2860
2860
  }];
@@ -2862,7 +2862,7 @@ export declare const marcoZero: {
2862
2862
  readonly threadMessageRecipient: {
2863
2863
  message: [{
2864
2864
  readonly sourceField: string[];
2865
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2865
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2866
2866
  readonly destSchema: "threadMessage";
2867
2867
  readonly cardinality: "one";
2868
2868
  }];
@@ -2870,7 +2870,7 @@ export declare const marcoZero: {
2870
2870
  readonly threadMessageAttachment: {
2871
2871
  message: [{
2872
2872
  readonly sourceField: string[];
2873
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2873
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2874
2874
  readonly destSchema: "threadMessage";
2875
2875
  readonly cardinality: "one";
2876
2876
  }];
@@ -2884,7 +2884,7 @@ export declare const marcoZero: {
2884
2884
  }];
2885
2885
  message: [{
2886
2886
  readonly sourceField: string[];
2887
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2887
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
2888
2888
  readonly destSchema: "threadMessage";
2889
2889
  readonly cardinality: "one";
2890
2890
  }];
@@ -3627,31 +3627,31 @@ export declare const marcoZero: {
3627
3627
  readonly user: {
3628
3628
  accounts: [{
3629
3629
  readonly sourceField: string[];
3630
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3630
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3631
3631
  readonly destSchema: "account";
3632
3632
  readonly cardinality: "many";
3633
3633
  }];
3634
3634
  contacts: [{
3635
3635
  readonly sourceField: string[];
3636
- readonly destField: ("id" | "name" | "emailAddress" | "userId")[];
3636
+ readonly destField: ("id" | "name" | "userId" | "emailAddress")[];
3637
3637
  readonly destSchema: "contact";
3638
3638
  readonly cardinality: "many";
3639
3639
  }];
3640
3640
  drafts: [{
3641
3641
  readonly sourceField: string[];
3642
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
3642
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
3643
3643
  readonly destSchema: "draft";
3644
3644
  readonly cardinality: "many";
3645
3645
  }];
3646
3646
  pushNotificationTokens: [{
3647
3647
  readonly sourceField: string[];
3648
- readonly destField: ("createdAt" | "id" | "token" | "userId")[];
3648
+ readonly destField: ("id" | "createdAt" | "token" | "userId")[];
3649
3649
  readonly destSchema: "userPushNotificationToken";
3650
3650
  readonly cardinality: "many";
3651
3651
  }];
3652
3652
  threads: [{
3653
3653
  readonly sourceField: string[];
3654
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
3654
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
3655
3655
  readonly destSchema: "thread";
3656
3656
  readonly cardinality: "many";
3657
3657
  }];
@@ -3659,7 +3659,7 @@ export declare const marcoZero: {
3659
3659
  readonly userPushNotificationToken: {
3660
3660
  user: [{
3661
3661
  readonly sourceField: string[];
3662
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
3662
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
3663
3663
  readonly destSchema: "user";
3664
3664
  readonly cardinality: "one";
3665
3665
  }];
@@ -3667,7 +3667,7 @@ export declare const marcoZero: {
3667
3667
  readonly contact: {
3668
3668
  user: [{
3669
3669
  readonly sourceField: string[];
3670
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
3670
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
3671
3671
  readonly destSchema: "user";
3672
3672
  readonly cardinality: "one";
3673
3673
  }];
@@ -3681,7 +3681,7 @@ export declare const marcoZero: {
3681
3681
  }];
3682
3682
  drafts: [{
3683
3683
  readonly sourceField: string[];
3684
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
3684
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
3685
3685
  readonly destSchema: "draft";
3686
3686
  readonly cardinality: "many";
3687
3687
  }];
@@ -3699,13 +3699,13 @@ export declare const marcoZero: {
3699
3699
  }];
3700
3700
  threads: [{
3701
3701
  readonly sourceField: string[];
3702
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
3702
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
3703
3703
  readonly destSchema: "thread";
3704
3704
  readonly cardinality: "many";
3705
3705
  }];
3706
3706
  user: [{
3707
3707
  readonly sourceField: string[];
3708
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
3708
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
3709
3709
  readonly destSchema: "user";
3710
3710
  readonly cardinality: "one";
3711
3711
  }];
@@ -3713,7 +3713,7 @@ export declare const marcoZero: {
3713
3713
  readonly accountAlias: {
3714
3714
  account: [{
3715
3715
  readonly sourceField: string[];
3716
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3716
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3717
3717
  readonly destSchema: "account";
3718
3718
  readonly cardinality: "one";
3719
3719
  }];
@@ -3721,7 +3721,7 @@ export declare const marcoZero: {
3721
3721
  readonly accountLabel: {
3722
3722
  account: [{
3723
3723
  readonly sourceField: string[];
3724
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3724
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3725
3725
  readonly destSchema: "account";
3726
3726
  readonly cardinality: "one";
3727
3727
  }];
@@ -3732,18 +3732,18 @@ export declare const marcoZero: {
3732
3732
  readonly cardinality: "many";
3733
3733
  }, {
3734
3734
  readonly sourceField: string[];
3735
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3735
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3736
3736
  readonly destSchema: "threadMessage";
3737
3737
  readonly cardinality: "many";
3738
3738
  }];
3739
3739
  threads: [{
3740
3740
  readonly sourceField: string[];
3741
- readonly destField: ("threadId" | "labelId")[];
3741
+ readonly destField: ("labelId" | "threadId")[];
3742
3742
  readonly destSchema: "threadLabel";
3743
3743
  readonly cardinality: "many";
3744
3744
  }, {
3745
3745
  readonly sourceField: string[];
3746
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
3746
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
3747
3747
  readonly destSchema: "thread";
3748
3748
  readonly cardinality: "many";
3749
3749
  }];
@@ -3751,13 +3751,13 @@ export declare const marcoZero: {
3751
3751
  readonly draft: {
3752
3752
  account: [{
3753
3753
  readonly sourceField: string[];
3754
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3754
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3755
3755
  readonly destSchema: "account";
3756
3756
  readonly cardinality: "one";
3757
3757
  }];
3758
3758
  attachments: [{
3759
3759
  readonly sourceField: string[];
3760
- readonly destField: ("id" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks" | "draftId")[];
3760
+ readonly destField: ("id" | "draftId" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks")[];
3761
3761
  readonly destSchema: "draftAttachment";
3762
3762
  readonly cardinality: "many";
3763
3763
  }];
@@ -3769,7 +3769,7 @@ export declare const marcoZero: {
3769
3769
  }];
3770
3770
  user: [{
3771
3771
  readonly sourceField: string[];
3772
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
3772
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
3773
3773
  readonly destSchema: "user";
3774
3774
  readonly cardinality: "one";
3775
3775
  }];
@@ -3777,7 +3777,7 @@ export declare const marcoZero: {
3777
3777
  readonly draftRecipient: {
3778
3778
  draft: [{
3779
3779
  readonly sourceField: string[];
3780
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
3780
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
3781
3781
  readonly destSchema: "draft";
3782
3782
  readonly cardinality: "one";
3783
3783
  }];
@@ -3785,7 +3785,7 @@ export declare const marcoZero: {
3785
3785
  readonly draftAttachment: {
3786
3786
  draft: [{
3787
3787
  readonly sourceField: string[];
3788
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
3788
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
3789
3789
  readonly destSchema: "draft";
3790
3790
  readonly cardinality: "one";
3791
3791
  }];
@@ -3793,13 +3793,13 @@ export declare const marcoZero: {
3793
3793
  readonly thread: {
3794
3794
  account: [{
3795
3795
  readonly sourceField: string[];
3796
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3796
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
3797
3797
  readonly destSchema: "account";
3798
3798
  readonly cardinality: "one";
3799
3799
  }];
3800
3800
  labels: [{
3801
3801
  readonly sourceField: string[];
3802
- readonly destField: ("threadId" | "labelId")[];
3802
+ readonly destField: ("labelId" | "threadId")[];
3803
3803
  readonly destSchema: "threadLabel";
3804
3804
  readonly cardinality: "many";
3805
3805
  }, {
@@ -3810,13 +3810,13 @@ export declare const marcoZero: {
3810
3810
  }];
3811
3811
  messages: [{
3812
3812
  readonly sourceField: string[];
3813
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3813
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3814
3814
  readonly destSchema: "threadMessage";
3815
3815
  readonly cardinality: "many";
3816
3816
  }];
3817
3817
  user: [{
3818
3818
  readonly sourceField: string[];
3819
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
3819
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
3820
3820
  readonly destSchema: "user";
3821
3821
  readonly cardinality: "one";
3822
3822
  }];
@@ -3830,7 +3830,7 @@ export declare const marcoZero: {
3830
3830
  }];
3831
3831
  thread: [{
3832
3832
  readonly sourceField: string[];
3833
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
3833
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
3834
3834
  readonly destSchema: "thread";
3835
3835
  readonly cardinality: "one";
3836
3836
  }];
@@ -3850,7 +3850,7 @@ export declare const marcoZero: {
3850
3850
  }];
3851
3851
  thread: [{
3852
3852
  readonly sourceField: string[];
3853
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
3853
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
3854
3854
  readonly destSchema: "thread";
3855
3855
  readonly cardinality: "one";
3856
3856
  }];
@@ -3858,7 +3858,7 @@ export declare const marcoZero: {
3858
3858
  readonly threadMessageRecipient: {
3859
3859
  message: [{
3860
3860
  readonly sourceField: string[];
3861
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3861
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3862
3862
  readonly destSchema: "threadMessage";
3863
3863
  readonly cardinality: "one";
3864
3864
  }];
@@ -3866,7 +3866,7 @@ export declare const marcoZero: {
3866
3866
  readonly threadMessageAttachment: {
3867
3867
  message: [{
3868
3868
  readonly sourceField: string[];
3869
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3869
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3870
3870
  readonly destSchema: "threadMessage";
3871
3871
  readonly cardinality: "one";
3872
3872
  }];
@@ -3880,7 +3880,7 @@ export declare const marcoZero: {
3880
3880
  }];
3881
3881
  message: [{
3882
3882
  readonly sourceField: string[];
3883
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3883
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
3884
3884
  readonly destSchema: "threadMessage";
3885
3885
  readonly cardinality: "one";
3886
3886
  }];
@@ -4628,31 +4628,31 @@ export declare const marcoZero: {
4628
4628
  readonly user: {
4629
4629
  accounts: [{
4630
4630
  readonly sourceField: string[];
4631
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4631
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4632
4632
  readonly destSchema: "account";
4633
4633
  readonly cardinality: "many";
4634
4634
  }];
4635
4635
  contacts: [{
4636
4636
  readonly sourceField: string[];
4637
- readonly destField: ("id" | "name" | "emailAddress" | "userId")[];
4637
+ readonly destField: ("id" | "name" | "userId" | "emailAddress")[];
4638
4638
  readonly destSchema: "contact";
4639
4639
  readonly cardinality: "many";
4640
4640
  }];
4641
4641
  drafts: [{
4642
4642
  readonly sourceField: string[];
4643
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
4643
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
4644
4644
  readonly destSchema: "draft";
4645
4645
  readonly cardinality: "many";
4646
4646
  }];
4647
4647
  pushNotificationTokens: [{
4648
4648
  readonly sourceField: string[];
4649
- readonly destField: ("createdAt" | "id" | "token" | "userId")[];
4649
+ readonly destField: ("id" | "createdAt" | "token" | "userId")[];
4650
4650
  readonly destSchema: "userPushNotificationToken";
4651
4651
  readonly cardinality: "many";
4652
4652
  }];
4653
4653
  threads: [{
4654
4654
  readonly sourceField: string[];
4655
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
4655
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
4656
4656
  readonly destSchema: "thread";
4657
4657
  readonly cardinality: "many";
4658
4658
  }];
@@ -4660,7 +4660,7 @@ export declare const marcoZero: {
4660
4660
  readonly userPushNotificationToken: {
4661
4661
  user: [{
4662
4662
  readonly sourceField: string[];
4663
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
4663
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
4664
4664
  readonly destSchema: "user";
4665
4665
  readonly cardinality: "one";
4666
4666
  }];
@@ -4668,7 +4668,7 @@ export declare const marcoZero: {
4668
4668
  readonly contact: {
4669
4669
  user: [{
4670
4670
  readonly sourceField: string[];
4671
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
4671
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
4672
4672
  readonly destSchema: "user";
4673
4673
  readonly cardinality: "one";
4674
4674
  }];
@@ -4682,7 +4682,7 @@ export declare const marcoZero: {
4682
4682
  }];
4683
4683
  drafts: [{
4684
4684
  readonly sourceField: string[];
4685
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
4685
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
4686
4686
  readonly destSchema: "draft";
4687
4687
  readonly cardinality: "many";
4688
4688
  }];
@@ -4700,13 +4700,13 @@ export declare const marcoZero: {
4700
4700
  }];
4701
4701
  threads: [{
4702
4702
  readonly sourceField: string[];
4703
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
4703
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
4704
4704
  readonly destSchema: "thread";
4705
4705
  readonly cardinality: "many";
4706
4706
  }];
4707
4707
  user: [{
4708
4708
  readonly sourceField: string[];
4709
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
4709
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
4710
4710
  readonly destSchema: "user";
4711
4711
  readonly cardinality: "one";
4712
4712
  }];
@@ -4714,7 +4714,7 @@ export declare const marcoZero: {
4714
4714
  readonly accountAlias: {
4715
4715
  account: [{
4716
4716
  readonly sourceField: string[];
4717
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4717
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4718
4718
  readonly destSchema: "account";
4719
4719
  readonly cardinality: "one";
4720
4720
  }];
@@ -4722,7 +4722,7 @@ export declare const marcoZero: {
4722
4722
  readonly accountLabel: {
4723
4723
  account: [{
4724
4724
  readonly sourceField: string[];
4725
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4725
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4726
4726
  readonly destSchema: "account";
4727
4727
  readonly cardinality: "one";
4728
4728
  }];
@@ -4733,18 +4733,18 @@ export declare const marcoZero: {
4733
4733
  readonly cardinality: "many";
4734
4734
  }, {
4735
4735
  readonly sourceField: string[];
4736
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4736
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4737
4737
  readonly destSchema: "threadMessage";
4738
4738
  readonly cardinality: "many";
4739
4739
  }];
4740
4740
  threads: [{
4741
4741
  readonly sourceField: string[];
4742
- readonly destField: ("threadId" | "labelId")[];
4742
+ readonly destField: ("labelId" | "threadId")[];
4743
4743
  readonly destSchema: "threadLabel";
4744
4744
  readonly cardinality: "many";
4745
4745
  }, {
4746
4746
  readonly sourceField: string[];
4747
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
4747
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
4748
4748
  readonly destSchema: "thread";
4749
4749
  readonly cardinality: "many";
4750
4750
  }];
@@ -4752,13 +4752,13 @@ export declare const marcoZero: {
4752
4752
  readonly draft: {
4753
4753
  account: [{
4754
4754
  readonly sourceField: string[];
4755
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4755
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4756
4756
  readonly destSchema: "account";
4757
4757
  readonly cardinality: "one";
4758
4758
  }];
4759
4759
  attachments: [{
4760
4760
  readonly sourceField: string[];
4761
- readonly destField: ("id" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks" | "draftId")[];
4761
+ readonly destField: ("id" | "draftId" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks")[];
4762
4762
  readonly destSchema: "draftAttachment";
4763
4763
  readonly cardinality: "many";
4764
4764
  }];
@@ -4770,7 +4770,7 @@ export declare const marcoZero: {
4770
4770
  }];
4771
4771
  user: [{
4772
4772
  readonly sourceField: string[];
4773
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
4773
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
4774
4774
  readonly destSchema: "user";
4775
4775
  readonly cardinality: "one";
4776
4776
  }];
@@ -4778,7 +4778,7 @@ export declare const marcoZero: {
4778
4778
  readonly draftRecipient: {
4779
4779
  draft: [{
4780
4780
  readonly sourceField: string[];
4781
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
4781
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
4782
4782
  readonly destSchema: "draft";
4783
4783
  readonly cardinality: "one";
4784
4784
  }];
@@ -4786,7 +4786,7 @@ export declare const marcoZero: {
4786
4786
  readonly draftAttachment: {
4787
4787
  draft: [{
4788
4788
  readonly sourceField: string[];
4789
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
4789
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
4790
4790
  readonly destSchema: "draft";
4791
4791
  readonly cardinality: "one";
4792
4792
  }];
@@ -4794,13 +4794,13 @@ export declare const marcoZero: {
4794
4794
  readonly thread: {
4795
4795
  account: [{
4796
4796
  readonly sourceField: string[];
4797
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4797
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
4798
4798
  readonly destSchema: "account";
4799
4799
  readonly cardinality: "one";
4800
4800
  }];
4801
4801
  labels: [{
4802
4802
  readonly sourceField: string[];
4803
- readonly destField: ("threadId" | "labelId")[];
4803
+ readonly destField: ("labelId" | "threadId")[];
4804
4804
  readonly destSchema: "threadLabel";
4805
4805
  readonly cardinality: "many";
4806
4806
  }, {
@@ -4811,13 +4811,13 @@ export declare const marcoZero: {
4811
4811
  }];
4812
4812
  messages: [{
4813
4813
  readonly sourceField: string[];
4814
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4814
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4815
4815
  readonly destSchema: "threadMessage";
4816
4816
  readonly cardinality: "many";
4817
4817
  }];
4818
4818
  user: [{
4819
4819
  readonly sourceField: string[];
4820
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
4820
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
4821
4821
  readonly destSchema: "user";
4822
4822
  readonly cardinality: "one";
4823
4823
  }];
@@ -4831,7 +4831,7 @@ export declare const marcoZero: {
4831
4831
  }];
4832
4832
  thread: [{
4833
4833
  readonly sourceField: string[];
4834
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
4834
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
4835
4835
  readonly destSchema: "thread";
4836
4836
  readonly cardinality: "one";
4837
4837
  }];
@@ -4851,7 +4851,7 @@ export declare const marcoZero: {
4851
4851
  }];
4852
4852
  thread: [{
4853
4853
  readonly sourceField: string[];
4854
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
4854
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
4855
4855
  readonly destSchema: "thread";
4856
4856
  readonly cardinality: "one";
4857
4857
  }];
@@ -4859,7 +4859,7 @@ export declare const marcoZero: {
4859
4859
  readonly threadMessageRecipient: {
4860
4860
  message: [{
4861
4861
  readonly sourceField: string[];
4862
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4862
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4863
4863
  readonly destSchema: "threadMessage";
4864
4864
  readonly cardinality: "one";
4865
4865
  }];
@@ -4867,7 +4867,7 @@ export declare const marcoZero: {
4867
4867
  readonly threadMessageAttachment: {
4868
4868
  message: [{
4869
4869
  readonly sourceField: string[];
4870
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4870
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4871
4871
  readonly destSchema: "threadMessage";
4872
4872
  readonly cardinality: "one";
4873
4873
  }];
@@ -4881,7 +4881,7 @@ export declare const marcoZero: {
4881
4881
  }];
4882
4882
  message: [{
4883
4883
  readonly sourceField: string[];
4884
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4884
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
4885
4885
  readonly destSchema: "threadMessage";
4886
4886
  readonly cardinality: "one";
4887
4887
  }];
@@ -5616,31 +5616,31 @@ export declare const marcoZero: {
5616
5616
  readonly user: {
5617
5617
  accounts: [{
5618
5618
  readonly sourceField: string[];
5619
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5619
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5620
5620
  readonly destSchema: "account";
5621
5621
  readonly cardinality: "many";
5622
5622
  }];
5623
5623
  contacts: [{
5624
5624
  readonly sourceField: string[];
5625
- readonly destField: ("id" | "name" | "emailAddress" | "userId")[];
5625
+ readonly destField: ("id" | "name" | "userId" | "emailAddress")[];
5626
5626
  readonly destSchema: "contact";
5627
5627
  readonly cardinality: "many";
5628
5628
  }];
5629
5629
  drafts: [{
5630
5630
  readonly sourceField: string[];
5631
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
5631
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
5632
5632
  readonly destSchema: "draft";
5633
5633
  readonly cardinality: "many";
5634
5634
  }];
5635
5635
  pushNotificationTokens: [{
5636
5636
  readonly sourceField: string[];
5637
- readonly destField: ("createdAt" | "id" | "token" | "userId")[];
5637
+ readonly destField: ("id" | "createdAt" | "token" | "userId")[];
5638
5638
  readonly destSchema: "userPushNotificationToken";
5639
5639
  readonly cardinality: "many";
5640
5640
  }];
5641
5641
  threads: [{
5642
5642
  readonly sourceField: string[];
5643
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
5643
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
5644
5644
  readonly destSchema: "thread";
5645
5645
  readonly cardinality: "many";
5646
5646
  }];
@@ -5648,7 +5648,7 @@ export declare const marcoZero: {
5648
5648
  readonly userPushNotificationToken: {
5649
5649
  user: [{
5650
5650
  readonly sourceField: string[];
5651
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
5651
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
5652
5652
  readonly destSchema: "user";
5653
5653
  readonly cardinality: "one";
5654
5654
  }];
@@ -5656,7 +5656,7 @@ export declare const marcoZero: {
5656
5656
  readonly contact: {
5657
5657
  user: [{
5658
5658
  readonly sourceField: string[];
5659
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
5659
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
5660
5660
  readonly destSchema: "user";
5661
5661
  readonly cardinality: "one";
5662
5662
  }];
@@ -5670,7 +5670,7 @@ export declare const marcoZero: {
5670
5670
  }];
5671
5671
  drafts: [{
5672
5672
  readonly sourceField: string[];
5673
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
5673
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
5674
5674
  readonly destSchema: "draft";
5675
5675
  readonly cardinality: "many";
5676
5676
  }];
@@ -5688,13 +5688,13 @@ export declare const marcoZero: {
5688
5688
  }];
5689
5689
  threads: [{
5690
5690
  readonly sourceField: string[];
5691
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
5691
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
5692
5692
  readonly destSchema: "thread";
5693
5693
  readonly cardinality: "many";
5694
5694
  }];
5695
5695
  user: [{
5696
5696
  readonly sourceField: string[];
5697
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
5697
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
5698
5698
  readonly destSchema: "user";
5699
5699
  readonly cardinality: "one";
5700
5700
  }];
@@ -5702,7 +5702,7 @@ export declare const marcoZero: {
5702
5702
  readonly accountAlias: {
5703
5703
  account: [{
5704
5704
  readonly sourceField: string[];
5705
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5705
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5706
5706
  readonly destSchema: "account";
5707
5707
  readonly cardinality: "one";
5708
5708
  }];
@@ -5710,7 +5710,7 @@ export declare const marcoZero: {
5710
5710
  readonly accountLabel: {
5711
5711
  account: [{
5712
5712
  readonly sourceField: string[];
5713
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5713
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5714
5714
  readonly destSchema: "account";
5715
5715
  readonly cardinality: "one";
5716
5716
  }];
@@ -5721,18 +5721,18 @@ export declare const marcoZero: {
5721
5721
  readonly cardinality: "many";
5722
5722
  }, {
5723
5723
  readonly sourceField: string[];
5724
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5724
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5725
5725
  readonly destSchema: "threadMessage";
5726
5726
  readonly cardinality: "many";
5727
5727
  }];
5728
5728
  threads: [{
5729
5729
  readonly sourceField: string[];
5730
- readonly destField: ("threadId" | "labelId")[];
5730
+ readonly destField: ("labelId" | "threadId")[];
5731
5731
  readonly destSchema: "threadLabel";
5732
5732
  readonly cardinality: "many";
5733
5733
  }, {
5734
5734
  readonly sourceField: string[];
5735
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
5735
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
5736
5736
  readonly destSchema: "thread";
5737
5737
  readonly cardinality: "many";
5738
5738
  }];
@@ -5740,13 +5740,13 @@ export declare const marcoZero: {
5740
5740
  readonly draft: {
5741
5741
  account: [{
5742
5742
  readonly sourceField: string[];
5743
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5743
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5744
5744
  readonly destSchema: "account";
5745
5745
  readonly cardinality: "one";
5746
5746
  }];
5747
5747
  attachments: [{
5748
5748
  readonly sourceField: string[];
5749
- readonly destField: ("id" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks" | "draftId")[];
5749
+ readonly destField: ("id" | "draftId" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks")[];
5750
5750
  readonly destSchema: "draftAttachment";
5751
5751
  readonly cardinality: "many";
5752
5752
  }];
@@ -5758,7 +5758,7 @@ export declare const marcoZero: {
5758
5758
  }];
5759
5759
  user: [{
5760
5760
  readonly sourceField: string[];
5761
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
5761
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
5762
5762
  readonly destSchema: "user";
5763
5763
  readonly cardinality: "one";
5764
5764
  }];
@@ -5766,7 +5766,7 @@ export declare const marcoZero: {
5766
5766
  readonly draftRecipient: {
5767
5767
  draft: [{
5768
5768
  readonly sourceField: string[];
5769
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
5769
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
5770
5770
  readonly destSchema: "draft";
5771
5771
  readonly cardinality: "one";
5772
5772
  }];
@@ -5774,7 +5774,7 @@ export declare const marcoZero: {
5774
5774
  readonly draftAttachment: {
5775
5775
  draft: [{
5776
5776
  readonly sourceField: string[];
5777
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
5777
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
5778
5778
  readonly destSchema: "draft";
5779
5779
  readonly cardinality: "one";
5780
5780
  }];
@@ -5782,13 +5782,13 @@ export declare const marcoZero: {
5782
5782
  readonly thread: {
5783
5783
  account: [{
5784
5784
  readonly sourceField: string[];
5785
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5785
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
5786
5786
  readonly destSchema: "account";
5787
5787
  readonly cardinality: "one";
5788
5788
  }];
5789
5789
  labels: [{
5790
5790
  readonly sourceField: string[];
5791
- readonly destField: ("threadId" | "labelId")[];
5791
+ readonly destField: ("labelId" | "threadId")[];
5792
5792
  readonly destSchema: "threadLabel";
5793
5793
  readonly cardinality: "many";
5794
5794
  }, {
@@ -5799,13 +5799,13 @@ export declare const marcoZero: {
5799
5799
  }];
5800
5800
  messages: [{
5801
5801
  readonly sourceField: string[];
5802
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5802
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5803
5803
  readonly destSchema: "threadMessage";
5804
5804
  readonly cardinality: "many";
5805
5805
  }];
5806
5806
  user: [{
5807
5807
  readonly sourceField: string[];
5808
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
5808
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
5809
5809
  readonly destSchema: "user";
5810
5810
  readonly cardinality: "one";
5811
5811
  }];
@@ -5819,7 +5819,7 @@ export declare const marcoZero: {
5819
5819
  }];
5820
5820
  thread: [{
5821
5821
  readonly sourceField: string[];
5822
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
5822
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
5823
5823
  readonly destSchema: "thread";
5824
5824
  readonly cardinality: "one";
5825
5825
  }];
@@ -5839,7 +5839,7 @@ export declare const marcoZero: {
5839
5839
  }];
5840
5840
  thread: [{
5841
5841
  readonly sourceField: string[];
5842
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
5842
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
5843
5843
  readonly destSchema: "thread";
5844
5844
  readonly cardinality: "one";
5845
5845
  }];
@@ -5847,7 +5847,7 @@ export declare const marcoZero: {
5847
5847
  readonly threadMessageRecipient: {
5848
5848
  message: [{
5849
5849
  readonly sourceField: string[];
5850
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5850
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5851
5851
  readonly destSchema: "threadMessage";
5852
5852
  readonly cardinality: "one";
5853
5853
  }];
@@ -5855,7 +5855,7 @@ export declare const marcoZero: {
5855
5855
  readonly threadMessageAttachment: {
5856
5856
  message: [{
5857
5857
  readonly sourceField: string[];
5858
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5858
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5859
5859
  readonly destSchema: "threadMessage";
5860
5860
  readonly cardinality: "one";
5861
5861
  }];
@@ -5869,7 +5869,7 @@ export declare const marcoZero: {
5869
5869
  }];
5870
5870
  message: [{
5871
5871
  readonly sourceField: string[];
5872
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5872
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
5873
5873
  readonly destSchema: "threadMessage";
5874
5874
  readonly cardinality: "one";
5875
5875
  }];
@@ -6560,13 +6560,5 @@ export declare const marcoZero: {
6560
6560
  }>;
6561
6561
  };
6562
6562
  };
6563
- export type { AccountMutatorHandlers, DraftMutatorHandlers, MarcoZeroMutatorHandlers, MarcoZeroMutators, ThreadMutatorHandlers, UserMutatorHandlers, } from './mutators';
6564
- export { createMutators, ZeroMutatorValidationError, zeroMutatorSchemas, } from './mutators';
6565
- export { accountMutatorDefinitions } from './mutators/account';
6566
- export { draftMutatorDefinitions } from './mutators/draft';
6567
- export { threadMutatorDefinitions } from './mutators/thread';
6568
- export { userMutatorDefinitions } from './mutators/user';
6569
- export { getUser } from './queries';
6570
- export type { MarcoZeroSchema } from './schema';
6571
- export { schema, zeroTables } from './schema';
6563
+ export type { MarcoZeroMutators } from './mutators';
6572
6564
  //# sourceMappingURL=index.d.ts.map