@marcoappio/marco-config 2.0.427 → 2.0.429

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 (96) 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 +164 -476
  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 +6262 -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 +27 -74
  74. package/dist/zero/queries/getAccounts.d.ts.map +1 -1
  75. package/dist/zero/queries/getContacts.d.ts +27 -74
  76. package/dist/zero/queries/getContacts.d.ts.map +1 -1
  77. package/dist/zero/queries/getDrafts.d.ts +27 -74
  78. package/dist/zero/queries/getDrafts.d.ts.map +1 -1
  79. package/dist/zero/queries/getThreads.d.ts +27 -74
  80. package/dist/zero/queries/getThreads.d.ts.map +1 -1
  81. package/dist/zero/queries/getUser.d.ts +27 -74
  82. package/dist/zero/queries/getUser.d.ts.map +1 -1
  83. package/dist/zero/queries/index.d.ts +27 -74
  84. package/dist/zero/queries/index.d.ts.map +1 -1
  85. package/dist/zero/schema.d.ts +27 -96
  86. package/dist/zero/schema.d.ts.map +1 -1
  87. package/dist/zero/schema.js +0 -31
  88. package/package.json +1 -1
  89. package/dist/zero/mutators/account.d.ts.map +0 -1
  90. package/dist/zero/mutators/thread.d.ts.map +0 -1
  91. package/dist/zero/mutators/user.d.ts.map +0 -1
  92. package/dist/zero/mutators.d.ts +0 -412
  93. package/dist/zero/mutators.d.ts.map +0 -1
  94. package/dist/zero/mutators.test.d.ts +0 -2
  95. package/dist/zero/mutators.test.d.ts.map +0 -1
  96. package/dist/zero/mutators.test.js +0 -33
@@ -658,58 +658,36 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
658
658
  } & {
659
659
  primaryKey: ["id"];
660
660
  };
661
- readonly threadMessageLabel: {
662
- name: "threadMessageLabel";
663
- columns: {
664
- readonly labelId: {
665
- type: "string";
666
- optional: false;
667
- customType: string;
668
- } & {
669
- serverName: string;
670
- };
671
- readonly threadMessageId: {
672
- type: "string";
673
- optional: false;
674
- customType: string;
675
- } & {
676
- serverName: string;
677
- };
678
- };
679
- primaryKey: readonly [string, ...string[]];
680
- } & {
681
- primaryKey: ["threadMessageId", "labelId"];
682
- };
683
661
  };
684
662
  relationships: {
685
663
  readonly user: {
686
664
  accounts: [{
687
665
  readonly sourceField: string[];
688
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
666
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
689
667
  readonly destSchema: "account";
690
668
  readonly cardinality: "many";
691
669
  }];
692
670
  contacts: [{
693
671
  readonly sourceField: string[];
694
- readonly destField: ("id" | "name" | "emailAddress" | "userId")[];
672
+ readonly destField: ("id" | "name" | "userId" | "emailAddress")[];
695
673
  readonly destSchema: "contact";
696
674
  readonly cardinality: "many";
697
675
  }];
698
676
  drafts: [{
699
677
  readonly sourceField: string[];
700
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
678
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
701
679
  readonly destSchema: "draft";
702
680
  readonly cardinality: "many";
703
681
  }];
704
682
  pushNotificationTokens: [{
705
683
  readonly sourceField: string[];
706
- readonly destField: ("createdAt" | "id" | "token" | "userId")[];
684
+ readonly destField: ("id" | "createdAt" | "token" | "userId")[];
707
685
  readonly destSchema: "userPushNotificationToken";
708
686
  readonly cardinality: "many";
709
687
  }];
710
688
  threads: [{
711
689
  readonly sourceField: string[];
712
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
690
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
713
691
  readonly destSchema: "thread";
714
692
  readonly cardinality: "many";
715
693
  }];
@@ -717,7 +695,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
717
695
  readonly userPushNotificationToken: {
718
696
  user: [{
719
697
  readonly sourceField: string[];
720
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
698
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
721
699
  readonly destSchema: "user";
722
700
  readonly cardinality: "one";
723
701
  }];
@@ -725,7 +703,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
725
703
  readonly contact: {
726
704
  user: [{
727
705
  readonly sourceField: string[];
728
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
706
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
729
707
  readonly destSchema: "user";
730
708
  readonly cardinality: "one";
731
709
  }];
@@ -739,7 +717,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
739
717
  }];
740
718
  drafts: [{
741
719
  readonly sourceField: string[];
742
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
720
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
743
721
  readonly destSchema: "draft";
744
722
  readonly cardinality: "many";
745
723
  }];
@@ -757,13 +735,13 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
757
735
  }];
758
736
  threads: [{
759
737
  readonly sourceField: string[];
760
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
738
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
761
739
  readonly destSchema: "thread";
762
740
  readonly cardinality: "many";
763
741
  }];
764
742
  user: [{
765
743
  readonly sourceField: string[];
766
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
744
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
767
745
  readonly destSchema: "user";
768
746
  readonly cardinality: "one";
769
747
  }];
@@ -771,7 +749,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
771
749
  readonly accountAlias: {
772
750
  account: [{
773
751
  readonly sourceField: string[];
774
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
752
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
775
753
  readonly destSchema: "account";
776
754
  readonly cardinality: "one";
777
755
  }];
@@ -779,29 +757,18 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
779
757
  readonly accountLabel: {
780
758
  account: [{
781
759
  readonly sourceField: string[];
782
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
760
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
783
761
  readonly destSchema: "account";
784
762
  readonly cardinality: "one";
785
763
  }];
786
- threadMessages: [{
787
- readonly sourceField: string[];
788
- readonly destField: ("labelId" | "threadMessageId")[];
789
- readonly destSchema: "threadMessageLabel";
790
- readonly cardinality: "many";
791
- }, {
792
- readonly sourceField: string[];
793
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
794
- readonly destSchema: "threadMessage";
795
- readonly cardinality: "many";
796
- }];
797
764
  threads: [{
798
765
  readonly sourceField: string[];
799
- readonly destField: ("threadId" | "labelId")[];
766
+ readonly destField: ("labelId" | "threadId")[];
800
767
  readonly destSchema: "threadLabel";
801
768
  readonly cardinality: "many";
802
769
  }, {
803
770
  readonly sourceField: string[];
804
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
771
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
805
772
  readonly destSchema: "thread";
806
773
  readonly cardinality: "many";
807
774
  }];
@@ -809,13 +776,13 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
809
776
  readonly draft: {
810
777
  account: [{
811
778
  readonly sourceField: string[];
812
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
779
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
813
780
  readonly destSchema: "account";
814
781
  readonly cardinality: "one";
815
782
  }];
816
783
  attachments: [{
817
784
  readonly sourceField: string[];
818
- readonly destField: ("id" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks" | "draftId")[];
785
+ readonly destField: ("id" | "draftId" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks")[];
819
786
  readonly destSchema: "draftAttachment";
820
787
  readonly cardinality: "many";
821
788
  }];
@@ -827,7 +794,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
827
794
  }];
828
795
  user: [{
829
796
  readonly sourceField: string[];
830
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
797
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
831
798
  readonly destSchema: "user";
832
799
  readonly cardinality: "one";
833
800
  }];
@@ -835,7 +802,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
835
802
  readonly draftRecipient: {
836
803
  draft: [{
837
804
  readonly sourceField: string[];
838
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
805
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
839
806
  readonly destSchema: "draft";
840
807
  readonly cardinality: "one";
841
808
  }];
@@ -843,7 +810,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
843
810
  readonly draftAttachment: {
844
811
  draft: [{
845
812
  readonly sourceField: string[];
846
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
813
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
847
814
  readonly destSchema: "draft";
848
815
  readonly cardinality: "one";
849
816
  }];
@@ -851,13 +818,13 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
851
818
  readonly thread: {
852
819
  account: [{
853
820
  readonly sourceField: string[];
854
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
821
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
855
822
  readonly destSchema: "account";
856
823
  readonly cardinality: "one";
857
824
  }];
858
825
  labels: [{
859
826
  readonly sourceField: string[];
860
- readonly destField: ("threadId" | "labelId")[];
827
+ readonly destField: ("labelId" | "threadId")[];
861
828
  readonly destSchema: "threadLabel";
862
829
  readonly cardinality: "many";
863
830
  }, {
@@ -868,13 +835,13 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
868
835
  }];
869
836
  messages: [{
870
837
  readonly sourceField: string[];
871
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
838
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
872
839
  readonly destSchema: "threadMessage";
873
840
  readonly cardinality: "many";
874
841
  }];
875
842
  user: [{
876
843
  readonly sourceField: string[];
877
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
844
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
878
845
  readonly destSchema: "user";
879
846
  readonly cardinality: "one";
880
847
  }];
@@ -888,7 +855,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
888
855
  }];
889
856
  thread: [{
890
857
  readonly sourceField: string[];
891
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
858
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
892
859
  readonly destSchema: "thread";
893
860
  readonly cardinality: "one";
894
861
  }];
@@ -908,7 +875,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
908
875
  }];
909
876
  thread: [{
910
877
  readonly sourceField: string[];
911
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
878
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
912
879
  readonly destSchema: "thread";
913
880
  readonly cardinality: "one";
914
881
  }];
@@ -916,7 +883,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
916
883
  readonly threadMessageRecipient: {
917
884
  message: [{
918
885
  readonly sourceField: string[];
919
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
886
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
920
887
  readonly destSchema: "threadMessage";
921
888
  readonly cardinality: "one";
922
889
  }];
@@ -924,21 +891,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
924
891
  readonly threadMessageAttachment: {
925
892
  message: [{
926
893
  readonly sourceField: string[];
927
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
928
- readonly destSchema: "threadMessage";
929
- readonly cardinality: "one";
930
- }];
931
- };
932
- readonly threadMessageLabel: {
933
- label: [{
934
- readonly sourceField: string[];
935
- readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
936
- readonly destSchema: "accountLabel";
937
- readonly cardinality: "one";
938
- }];
939
- message: [{
940
- readonly sourceField: string[];
941
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
894
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
942
895
  readonly destSchema: "threadMessage";
943
896
  readonly cardinality: "one";
944
897
  }];
@@ -1 +1 @@
1
- {"version":3,"file":"getUser.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/getUser.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAGlE,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKnB,CAAA"}
1
+ {"version":3,"file":"getUser.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/getUser.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAGlE,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKnB,CAAA"}
@@ -657,58 +657,36 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
657
657
  } & {
658
658
  primaryKey: ["id"];
659
659
  };
660
- readonly threadMessageLabel: {
661
- name: "threadMessageLabel";
662
- columns: {
663
- readonly labelId: {
664
- type: "string";
665
- optional: false;
666
- customType: string;
667
- } & {
668
- serverName: string;
669
- };
670
- readonly threadMessageId: {
671
- type: "string";
672
- optional: false;
673
- customType: string;
674
- } & {
675
- serverName: string;
676
- };
677
- };
678
- primaryKey: readonly [string, ...string[]];
679
- } & {
680
- primaryKey: ["threadMessageId", "labelId"];
681
- };
682
660
  };
683
661
  relationships: {
684
662
  readonly user: {
685
663
  accounts: [{
686
664
  readonly sourceField: string[];
687
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
665
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
688
666
  readonly destSchema: "account";
689
667
  readonly cardinality: "many";
690
668
  }];
691
669
  contacts: [{
692
670
  readonly sourceField: string[];
693
- readonly destField: ("id" | "name" | "emailAddress" | "userId")[];
671
+ readonly destField: ("id" | "name" | "userId" | "emailAddress")[];
694
672
  readonly destSchema: "contact";
695
673
  readonly cardinality: "many";
696
674
  }];
697
675
  drafts: [{
698
676
  readonly sourceField: string[];
699
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
677
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
700
678
  readonly destSchema: "draft";
701
679
  readonly cardinality: "many";
702
680
  }];
703
681
  pushNotificationTokens: [{
704
682
  readonly sourceField: string[];
705
- readonly destField: ("createdAt" | "id" | "token" | "userId")[];
683
+ readonly destField: ("id" | "createdAt" | "token" | "userId")[];
706
684
  readonly destSchema: "userPushNotificationToken";
707
685
  readonly cardinality: "many";
708
686
  }];
709
687
  threads: [{
710
688
  readonly sourceField: string[];
711
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
689
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
712
690
  readonly destSchema: "thread";
713
691
  readonly cardinality: "many";
714
692
  }];
@@ -716,7 +694,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
716
694
  readonly userPushNotificationToken: {
717
695
  user: [{
718
696
  readonly sourceField: string[];
719
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
697
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
720
698
  readonly destSchema: "user";
721
699
  readonly cardinality: "one";
722
700
  }];
@@ -724,7 +702,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
724
702
  readonly contact: {
725
703
  user: [{
726
704
  readonly sourceField: string[];
727
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
705
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
728
706
  readonly destSchema: "user";
729
707
  readonly cardinality: "one";
730
708
  }];
@@ -738,7 +716,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
738
716
  }];
739
717
  drafts: [{
740
718
  readonly sourceField: string[];
741
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
719
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
742
720
  readonly destSchema: "draft";
743
721
  readonly cardinality: "many";
744
722
  }];
@@ -756,13 +734,13 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
756
734
  }];
757
735
  threads: [{
758
736
  readonly sourceField: string[];
759
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
737
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
760
738
  readonly destSchema: "thread";
761
739
  readonly cardinality: "many";
762
740
  }];
763
741
  user: [{
764
742
  readonly sourceField: string[];
765
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
743
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
766
744
  readonly destSchema: "user";
767
745
  readonly cardinality: "one";
768
746
  }];
@@ -770,7 +748,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
770
748
  readonly accountAlias: {
771
749
  account: [{
772
750
  readonly sourceField: string[];
773
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
751
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
774
752
  readonly destSchema: "account";
775
753
  readonly cardinality: "one";
776
754
  }];
@@ -778,29 +756,18 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
778
756
  readonly accountLabel: {
779
757
  account: [{
780
758
  readonly sourceField: string[];
781
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
759
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
782
760
  readonly destSchema: "account";
783
761
  readonly cardinality: "one";
784
762
  }];
785
- threadMessages: [{
786
- readonly sourceField: string[];
787
- readonly destField: ("labelId" | "threadMessageId")[];
788
- readonly destSchema: "threadMessageLabel";
789
- readonly cardinality: "many";
790
- }, {
791
- readonly sourceField: string[];
792
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
793
- readonly destSchema: "threadMessage";
794
- readonly cardinality: "many";
795
- }];
796
763
  threads: [{
797
764
  readonly sourceField: string[];
798
- readonly destField: ("threadId" | "labelId")[];
765
+ readonly destField: ("labelId" | "threadId")[];
799
766
  readonly destSchema: "threadLabel";
800
767
  readonly cardinality: "many";
801
768
  }, {
802
769
  readonly sourceField: string[];
803
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
770
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
804
771
  readonly destSchema: "thread";
805
772
  readonly cardinality: "many";
806
773
  }];
@@ -808,13 +775,13 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
808
775
  readonly draft: {
809
776
  account: [{
810
777
  readonly sourceField: string[];
811
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
778
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
812
779
  readonly destSchema: "account";
813
780
  readonly cardinality: "one";
814
781
  }];
815
782
  attachments: [{
816
783
  readonly sourceField: string[];
817
- readonly destField: ("id" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks" | "draftId")[];
784
+ readonly destField: ("id" | "draftId" | "failed" | "fileName" | "mimeType" | "totalChunks" | "totalSize" | "uploadedChunks")[];
818
785
  readonly destSchema: "draftAttachment";
819
786
  readonly cardinality: "many";
820
787
  }];
@@ -826,7 +793,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
826
793
  }];
827
794
  user: [{
828
795
  readonly sourceField: string[];
829
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
796
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
830
797
  readonly destSchema: "user";
831
798
  readonly cardinality: "one";
832
799
  }];
@@ -834,7 +801,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
834
801
  readonly draftRecipient: {
835
802
  draft: [{
836
803
  readonly sourceField: string[];
837
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
804
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
838
805
  readonly destSchema: "draft";
839
806
  readonly cardinality: "one";
840
807
  }];
@@ -842,7 +809,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
842
809
  readonly draftAttachment: {
843
810
  draft: [{
844
811
  readonly sourceField: string[];
845
- readonly destField: ("type" | "status" | "id" | "updatedAt" | "body" | "accountId" | "subject" | "scheduledFor" | "error" | "fromName" | "referencedMessageId" | "userId" | "fromAliasId" | "fromEmail")[];
812
+ readonly destField: ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
846
813
  readonly destSchema: "draft";
847
814
  readonly cardinality: "one";
848
815
  }];
@@ -850,13 +817,13 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
850
817
  readonly thread: {
851
818
  account: [{
852
819
  readonly sourceField: string[];
853
- readonly destField: ("id" | "color" | "userId" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
820
+ readonly destField: ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
854
821
  readonly destSchema: "account";
855
822
  readonly cardinality: "one";
856
823
  }];
857
824
  labels: [{
858
825
  readonly sourceField: string[];
859
- readonly destField: ("threadId" | "labelId")[];
826
+ readonly destField: ("labelId" | "threadId")[];
860
827
  readonly destSchema: "threadLabel";
861
828
  readonly cardinality: "many";
862
829
  }, {
@@ -867,13 +834,13 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
867
834
  }];
868
835
  messages: [{
869
836
  readonly sourceField: string[];
870
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
837
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
871
838
  readonly destSchema: "threadMessage";
872
839
  readonly cardinality: "many";
873
840
  }];
874
841
  user: [{
875
842
  readonly sourceField: string[];
876
- readonly destField: ("id" | "name" | "profilePicture" | "undoSendEnabled")[];
843
+ readonly destField: ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
877
844
  readonly destSchema: "user";
878
845
  readonly cardinality: "one";
879
846
  }];
@@ -887,7 +854,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
887
854
  }];
888
855
  thread: [{
889
856
  readonly sourceField: string[];
890
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
857
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
891
858
  readonly destSchema: "thread";
892
859
  readonly cardinality: "one";
893
860
  }];
@@ -907,7 +874,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
907
874
  }];
908
875
  thread: [{
909
876
  readonly sourceField: string[];
910
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "userId" | "latestMessageDate" | "words")[];
877
+ readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
911
878
  readonly destSchema: "thread";
912
879
  readonly cardinality: "one";
913
880
  }];
@@ -915,7 +882,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
915
882
  readonly threadMessageRecipient: {
916
883
  message: [{
917
884
  readonly sourceField: string[];
918
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
885
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
919
886
  readonly destSchema: "threadMessage";
920
887
  readonly cardinality: "one";
921
888
  }];
@@ -923,21 +890,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
923
890
  readonly threadMessageAttachment: {
924
891
  message: [{
925
892
  readonly sourceField: string[];
926
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
927
- readonly destSchema: "threadMessage";
928
- readonly cardinality: "one";
929
- }];
930
- };
931
- readonly threadMessageLabel: {
932
- label: [{
933
- readonly sourceField: string[];
934
- readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
935
- readonly destSchema: "accountLabel";
936
- readonly cardinality: "one";
937
- }];
938
- message: [{
939
- readonly sourceField: string[];
940
- readonly destField: ("threadId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
893
+ readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
941
894
  readonly destSchema: "threadMessage";
942
895
  readonly cardinality: "one";
943
896
  }];
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAwB,CAAA;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAwB,CAAA;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA"}