@marcoappio/marco-config 2.0.449 → 2.0.451

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 (37) hide show
  1. package/dist/types/{ImapConnectionStatus.d.ts → IMAPConnectionStatus.d.ts} +2 -2
  2. package/dist/types/IMAPConnectionStatus.d.ts.map +1 -0
  3. package/dist/types/IMAPSourceLocation.d.ts +7 -0
  4. package/dist/types/IMAPSourceLocation.d.ts.map +1 -0
  5. package/dist/types/IMAPSourceLocation.js +1 -0
  6. package/dist/types/index.d.ts +2 -1
  7. package/dist/types/index.d.ts.map +1 -1
  8. package/dist/types/index.js +2 -1
  9. package/dist/zero/index.d.ts +190 -114
  10. package/dist/zero/index.d.ts.map +1 -1
  11. package/dist/zero/mutatorSchemas/index.d.ts +36 -0
  12. package/dist/zero/mutatorSchemas/index.d.ts.map +1 -1
  13. package/dist/zero/mutatorSchemas/thread.d.ts +36 -0
  14. package/dist/zero/mutatorSchemas/thread.d.ts.map +1 -1
  15. package/dist/zero/mutatorSchemas/thread.js +18 -7
  16. package/dist/zero/mutators/threadMutators/threadMutators.d.ts +2 -2
  17. package/dist/zero/mutators/threadMutators/threadMutators.d.ts.map +1 -1
  18. package/dist/zero/mutators/threadMutators/threadMutators.js +43 -10
  19. package/dist/zero/mutators/threadMutators/threadMutators.test.js +6 -0
  20. package/dist/zero/queries/getAccounts.d.ts +23 -17
  21. package/dist/zero/queries/getAccounts.d.ts.map +1 -1
  22. package/dist/zero/queries/getContacts.d.ts +23 -17
  23. package/dist/zero/queries/getContacts.d.ts.map +1 -1
  24. package/dist/zero/queries/getDrafts.d.ts +23 -17
  25. package/dist/zero/queries/getDrafts.d.ts.map +1 -1
  26. package/dist/zero/queries/getThreads.d.ts +23 -19
  27. package/dist/zero/queries/getThreads.d.ts.map +1 -1
  28. package/dist/zero/queries/getUser.d.ts +23 -17
  29. package/dist/zero/queries/getUser.d.ts.map +1 -1
  30. package/dist/zero/queries/index.d.ts +23 -17
  31. package/dist/zero/queries/index.d.ts.map +1 -1
  32. package/dist/zero/schema.d.ts +39 -27
  33. package/dist/zero/schema.d.ts.map +1 -1
  34. package/dist/zero/schema.js +2 -2
  35. package/package.json +1 -1
  36. package/dist/types/ImapConnectionStatus.d.ts.map +0 -1
  37. /package/dist/types/{ImapConnectionStatus.js → IMAPConnectionStatus.js} +0 -0
@@ -534,6 +534,22 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
534
534
  } & {
535
535
  serverName: string;
536
536
  };
537
+ readonly uid: Omit<{
538
+ type: "number";
539
+ optional: false;
540
+ customType: number;
541
+ }, "optional"> & {
542
+ optional: true;
543
+ };
544
+ readonly uidValidity: Omit<{
545
+ type: "number";
546
+ optional: false;
547
+ customType: number;
548
+ }, "optional"> & {
549
+ optional: true;
550
+ } & {
551
+ serverName: string;
552
+ };
537
553
  };
538
554
  primaryKey: readonly [string, ...string[]];
539
555
  } & {
@@ -565,11 +581,6 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
565
581
  } & {
566
582
  serverName: string;
567
583
  };
568
- readonly flagged: {
569
- type: "boolean";
570
- optional: false;
571
- customType: boolean;
572
- };
573
584
  readonly id: {
574
585
  type: "string";
575
586
  optional: false;
@@ -582,11 +593,6 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
582
593
  } & {
583
594
  serverName: string;
584
595
  };
585
- readonly seen: {
586
- type: "boolean";
587
- optional: false;
588
- customType: boolean;
589
- };
590
596
  readonly senderEmail: {
591
597
  type: "string";
592
598
  optional: false;
@@ -803,7 +809,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
803
809
  }];
804
810
  threads: [{
805
811
  readonly sourceField: string[];
806
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
812
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
807
813
  readonly destSchema: "threadLabel";
808
814
  readonly cardinality: "many";
809
815
  }, {
@@ -864,7 +870,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
864
870
  }];
865
871
  labels: [{
866
872
  readonly sourceField: string[];
867
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
873
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
868
874
  readonly destSchema: "threadLabel";
869
875
  readonly cardinality: "many";
870
876
  }, {
@@ -875,7 +881,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
875
881
  }];
876
882
  messages: [{
877
883
  readonly sourceField: string[];
878
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
884
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
879
885
  readonly destSchema: "threadMessage";
880
886
  readonly cardinality: "many";
881
887
  }];
@@ -895,7 +901,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
895
901
  }];
896
902
  message: [{
897
903
  readonly sourceField: string[];
898
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
904
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
899
905
  readonly destSchema: "threadMessage";
900
906
  readonly cardinality: "one";
901
907
  }];
@@ -915,7 +921,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
915
921
  }];
916
922
  labels: [{
917
923
  readonly sourceField: string[];
918
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
924
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
919
925
  readonly destSchema: "threadLabel";
920
926
  readonly cardinality: "many";
921
927
  }, {
@@ -940,7 +946,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
940
946
  readonly threadMessageRecipient: {
941
947
  message: [{
942
948
  readonly sourceField: string[];
943
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
949
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
944
950
  readonly destSchema: "threadMessage";
945
951
  readonly cardinality: "one";
946
952
  }];
@@ -948,7 +954,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
948
954
  readonly threadMessageAttachment: {
949
955
  message: [{
950
956
  readonly sourceField: string[];
951
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
957
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
952
958
  readonly destSchema: "threadMessage";
953
959
  readonly cardinality: "one";
954
960
  }];
@@ -1 +1 @@
1
- {"version":3,"file":"getContacts.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/getContacts.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAMlE,KAAK,eAAe,GAAG;IACrB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE;QACN,YAAY,CAAC,EAAE,MAAM,CAAA;QACrB,GAAG,CAAC,EAAE,MAAM,EAAE,CAAA;QACd,IAAI,CAAC,EAAE,MAAM,CAAA;KACd,CAAA;CACF,CAAA;AAiBD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BvB,CAAA"}
1
+ {"version":3,"file":"getContacts.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/getContacts.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAMlE,KAAK,eAAe,GAAG;IACrB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE;QACN,YAAY,CAAC,EAAE,MAAM,CAAA;QACrB,GAAG,CAAC,EAAE,MAAM,EAAE,CAAA;QACd,IAAI,CAAC,EAAE,MAAM,CAAA;KACd,CAAA;CACF,CAAA;AAiBD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BvB,CAAA"}
@@ -531,6 +531,22 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
531
531
  } & {
532
532
  serverName: string;
533
533
  };
534
+ readonly uid: Omit<{
535
+ type: "number";
536
+ optional: false;
537
+ customType: number;
538
+ }, "optional"> & {
539
+ optional: true;
540
+ };
541
+ readonly uidValidity: Omit<{
542
+ type: "number";
543
+ optional: false;
544
+ customType: number;
545
+ }, "optional"> & {
546
+ optional: true;
547
+ } & {
548
+ serverName: string;
549
+ };
534
550
  };
535
551
  primaryKey: readonly [string, ...string[]];
536
552
  } & {
@@ -562,11 +578,6 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
562
578
  } & {
563
579
  serverName: string;
564
580
  };
565
- readonly flagged: {
566
- type: "boolean";
567
- optional: false;
568
- customType: boolean;
569
- };
570
581
  readonly id: {
571
582
  type: "string";
572
583
  optional: false;
@@ -579,11 +590,6 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
579
590
  } & {
580
591
  serverName: string;
581
592
  };
582
- readonly seen: {
583
- type: "boolean";
584
- optional: false;
585
- customType: boolean;
586
- };
587
593
  readonly senderEmail: {
588
594
  type: "string";
589
595
  optional: false;
@@ -800,7 +806,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
800
806
  }];
801
807
  threads: [{
802
808
  readonly sourceField: string[];
803
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
809
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
804
810
  readonly destSchema: "threadLabel";
805
811
  readonly cardinality: "many";
806
812
  }, {
@@ -861,7 +867,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
861
867
  }];
862
868
  labels: [{
863
869
  readonly sourceField: string[];
864
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
870
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
865
871
  readonly destSchema: "threadLabel";
866
872
  readonly cardinality: "many";
867
873
  }, {
@@ -872,7 +878,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
872
878
  }];
873
879
  messages: [{
874
880
  readonly sourceField: string[];
875
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
881
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
876
882
  readonly destSchema: "threadMessage";
877
883
  readonly cardinality: "many";
878
884
  }];
@@ -892,7 +898,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
892
898
  }];
893
899
  message: [{
894
900
  readonly sourceField: string[];
895
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
901
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
896
902
  readonly destSchema: "threadMessage";
897
903
  readonly cardinality: "one";
898
904
  }];
@@ -912,7 +918,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
912
918
  }];
913
919
  labels: [{
914
920
  readonly sourceField: string[];
915
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
921
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
916
922
  readonly destSchema: "threadLabel";
917
923
  readonly cardinality: "many";
918
924
  }, {
@@ -937,7 +943,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
937
943
  readonly threadMessageRecipient: {
938
944
  message: [{
939
945
  readonly sourceField: string[];
940
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
946
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
941
947
  readonly destSchema: "threadMessage";
942
948
  readonly cardinality: "one";
943
949
  }];
@@ -945,7 +951,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
945
951
  readonly threadMessageAttachment: {
946
952
  message: [{
947
953
  readonly sourceField: string[];
948
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
954
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
949
955
  readonly destSchema: "threadMessage";
950
956
  readonly cardinality: "one";
951
957
  }];
@@ -1 +1 @@
1
- {"version":3,"file":"getDrafts.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/getDrafts.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AAMpD,KAAK,aAAa,GAAG;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAA;CACzC,CAAA;AAWD,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoBrB,CAAA"}
1
+ {"version":3,"file":"getDrafts.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/getDrafts.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AAMpD,KAAK,aAAa,GAAG;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAA;CACzC,CAAA;AAWD,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoBrB,CAAA"}
@@ -537,6 +537,22 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
537
537
  } & {
538
538
  serverName: string;
539
539
  };
540
+ readonly uid: Omit<{
541
+ type: "number";
542
+ optional: false;
543
+ customType: number;
544
+ }, "optional"> & {
545
+ optional: true;
546
+ };
547
+ readonly uidValidity: Omit<{
548
+ type: "number";
549
+ optional: false;
550
+ customType: number;
551
+ }, "optional"> & {
552
+ optional: true;
553
+ } & {
554
+ serverName: string;
555
+ };
540
556
  };
541
557
  primaryKey: readonly [string, ...string[]];
542
558
  } & {
@@ -568,11 +584,6 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
568
584
  } & {
569
585
  serverName: string;
570
586
  };
571
- readonly flagged: {
572
- type: "boolean";
573
- optional: false;
574
- customType: boolean;
575
- };
576
587
  readonly id: {
577
588
  type: "string";
578
589
  optional: false;
@@ -585,11 +596,6 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
585
596
  } & {
586
597
  serverName: string;
587
598
  };
588
- readonly seen: {
589
- type: "boolean";
590
- optional: false;
591
- customType: boolean;
592
- };
593
599
  readonly senderEmail: {
594
600
  type: "string";
595
601
  optional: false;
@@ -806,7 +812,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
806
812
  }];
807
813
  threads: [{
808
814
  readonly sourceField: string[];
809
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
815
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
810
816
  readonly destSchema: "threadLabel";
811
817
  readonly cardinality: "many";
812
818
  }, {
@@ -867,7 +873,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
867
873
  }];
868
874
  labels: [{
869
875
  readonly sourceField: string[];
870
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
876
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
871
877
  readonly destSchema: "threadLabel";
872
878
  readonly cardinality: "many";
873
879
  }, {
@@ -878,7 +884,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
878
884
  }];
879
885
  messages: [{
880
886
  readonly sourceField: string[];
881
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
887
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
882
888
  readonly destSchema: "threadMessage";
883
889
  readonly cardinality: "many";
884
890
  }];
@@ -898,7 +904,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
898
904
  }];
899
905
  message: [{
900
906
  readonly sourceField: string[];
901
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
907
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
902
908
  readonly destSchema: "threadMessage";
903
909
  readonly cardinality: "one";
904
910
  }];
@@ -918,7 +924,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
918
924
  }];
919
925
  labels: [{
920
926
  readonly sourceField: string[];
921
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
927
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
922
928
  readonly destSchema: "threadLabel";
923
929
  readonly cardinality: "many";
924
930
  }, {
@@ -943,7 +949,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
943
949
  readonly threadMessageRecipient: {
944
950
  message: [{
945
951
  readonly sourceField: string[];
946
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
952
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
947
953
  readonly destSchema: "threadMessage";
948
954
  readonly cardinality: "one";
949
955
  }];
@@ -951,7 +957,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
951
957
  readonly threadMessageAttachment: {
952
958
  message: [{
953
959
  readonly sourceField: string[];
954
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
960
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
955
961
  readonly destSchema: "threadMessage";
956
962
  readonly cardinality: "one";
957
963
  }];
@@ -972,10 +978,8 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
972
978
  readonly accountId: string;
973
979
  readonly envelopeDate: number;
974
980
  readonly envelopeSubject: string | null;
975
- readonly flagged: boolean;
976
981
  readonly id: string;
977
982
  readonly previewText: string;
978
- readonly seen: boolean;
979
983
  readonly senderEmail: string;
980
984
  readonly senderName: string | null;
981
985
  readonly threadId: string;
@@ -1 +1 @@
1
- {"version":3,"file":"getThreads.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/getThreads.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAMlE,KAAK,cAAc,GAAG;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE;QACN,OAAO,CAAC,EAAE,OAAO,CAAA;QACjB,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAA;QACnB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAA;QACrB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAA;QACvB,IAAI,CAAC,EAAE,OAAO,CAAA;KACf,CAAA;CACF,CAAA;AAoBD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqDtB,CAAA"}
1
+ {"version":3,"file":"getThreads.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/getThreads.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAMlE,KAAK,cAAc,GAAG;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE;QACN,OAAO,CAAC,EAAE,OAAO,CAAA;QACjB,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAA;QACnB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAA;QACrB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAA;QACvB,IAAI,CAAC,EAAE,OAAO,CAAA;KACf,CAAA;CACF,CAAA;AAoBD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqDtB,CAAA"}
@@ -525,6 +525,22 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
525
525
  } & {
526
526
  serverName: string;
527
527
  };
528
+ readonly uid: Omit<{
529
+ type: "number";
530
+ optional: false;
531
+ customType: number;
532
+ }, "optional"> & {
533
+ optional: true;
534
+ };
535
+ readonly uidValidity: Omit<{
536
+ type: "number";
537
+ optional: false;
538
+ customType: number;
539
+ }, "optional"> & {
540
+ optional: true;
541
+ } & {
542
+ serverName: string;
543
+ };
528
544
  };
529
545
  primaryKey: readonly [string, ...string[]];
530
546
  } & {
@@ -556,11 +572,6 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
556
572
  } & {
557
573
  serverName: string;
558
574
  };
559
- readonly flagged: {
560
- type: "boolean";
561
- optional: false;
562
- customType: boolean;
563
- };
564
575
  readonly id: {
565
576
  type: "string";
566
577
  optional: false;
@@ -573,11 +584,6 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
573
584
  } & {
574
585
  serverName: string;
575
586
  };
576
- readonly seen: {
577
- type: "boolean";
578
- optional: false;
579
- customType: boolean;
580
- };
581
587
  readonly senderEmail: {
582
588
  type: "string";
583
589
  optional: false;
@@ -794,7 +800,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
794
800
  }];
795
801
  threads: [{
796
802
  readonly sourceField: string[];
797
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
803
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
798
804
  readonly destSchema: "threadLabel";
799
805
  readonly cardinality: "many";
800
806
  }, {
@@ -855,7 +861,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
855
861
  }];
856
862
  labels: [{
857
863
  readonly sourceField: string[];
858
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
864
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
859
865
  readonly destSchema: "threadLabel";
860
866
  readonly cardinality: "many";
861
867
  }, {
@@ -866,7 +872,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
866
872
  }];
867
873
  messages: [{
868
874
  readonly sourceField: string[];
869
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
875
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
870
876
  readonly destSchema: "threadMessage";
871
877
  readonly cardinality: "many";
872
878
  }];
@@ -886,7 +892,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
886
892
  }];
887
893
  message: [{
888
894
  readonly sourceField: string[];
889
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
895
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
890
896
  readonly destSchema: "threadMessage";
891
897
  readonly cardinality: "one";
892
898
  }];
@@ -906,7 +912,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
906
912
  }];
907
913
  labels: [{
908
914
  readonly sourceField: string[];
909
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
915
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
910
916
  readonly destSchema: "threadLabel";
911
917
  readonly cardinality: "many";
912
918
  }, {
@@ -931,7 +937,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
931
937
  readonly threadMessageRecipient: {
932
938
  message: [{
933
939
  readonly sourceField: string[];
934
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
940
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
935
941
  readonly destSchema: "threadMessage";
936
942
  readonly cardinality: "one";
937
943
  }];
@@ -939,7 +945,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
939
945
  readonly threadMessageAttachment: {
940
946
  message: [{
941
947
  readonly sourceField: string[];
942
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
948
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
943
949
  readonly destSchema: "threadMessage";
944
950
  readonly cardinality: "one";
945
951
  }];
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMnB,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMnB,CAAA"}
@@ -524,6 +524,22 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
524
524
  } & {
525
525
  serverName: string;
526
526
  };
527
+ readonly uid: Omit<{
528
+ type: "number";
529
+ optional: false;
530
+ customType: number;
531
+ }, "optional"> & {
532
+ optional: true;
533
+ };
534
+ readonly uidValidity: Omit<{
535
+ type: "number";
536
+ optional: false;
537
+ customType: number;
538
+ }, "optional"> & {
539
+ optional: true;
540
+ } & {
541
+ serverName: string;
542
+ };
527
543
  };
528
544
  primaryKey: readonly [string, ...string[]];
529
545
  } & {
@@ -555,11 +571,6 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
555
571
  } & {
556
572
  serverName: string;
557
573
  };
558
- readonly flagged: {
559
- type: "boolean";
560
- optional: false;
561
- customType: boolean;
562
- };
563
574
  readonly id: {
564
575
  type: "string";
565
576
  optional: false;
@@ -572,11 +583,6 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
572
583
  } & {
573
584
  serverName: string;
574
585
  };
575
- readonly seen: {
576
- type: "boolean";
577
- optional: false;
578
- customType: boolean;
579
- };
580
586
  readonly senderEmail: {
581
587
  type: "string";
582
588
  optional: false;
@@ -793,7 +799,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
793
799
  }];
794
800
  threads: [{
795
801
  readonly sourceField: string[];
796
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
802
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
797
803
  readonly destSchema: "threadLabel";
798
804
  readonly cardinality: "many";
799
805
  }, {
@@ -854,7 +860,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
854
860
  }];
855
861
  labels: [{
856
862
  readonly sourceField: string[];
857
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
863
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
858
864
  readonly destSchema: "threadLabel";
859
865
  readonly cardinality: "many";
860
866
  }, {
@@ -865,7 +871,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
865
871
  }];
866
872
  messages: [{
867
873
  readonly sourceField: string[];
868
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
874
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
869
875
  readonly destSchema: "threadMessage";
870
876
  readonly cardinality: "many";
871
877
  }];
@@ -885,7 +891,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
885
891
  }];
886
892
  message: [{
887
893
  readonly sourceField: string[];
888
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
894
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
889
895
  readonly destSchema: "threadMessage";
890
896
  readonly cardinality: "one";
891
897
  }];
@@ -905,7 +911,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
905
911
  }];
906
912
  labels: [{
907
913
  readonly sourceField: string[];
908
- readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
914
+ readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId" | "uidValidity" | "uid")[];
909
915
  readonly destSchema: "threadLabel";
910
916
  readonly cardinality: "many";
911
917
  }, {
@@ -930,7 +936,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
930
936
  readonly threadMessageRecipient: {
931
937
  message: [{
932
938
  readonly sourceField: string[];
933
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
939
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
934
940
  readonly destSchema: "threadMessage";
935
941
  readonly cardinality: "one";
936
942
  }];
@@ -938,7 +944,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
938
944
  readonly threadMessageAttachment: {
939
945
  message: [{
940
946
  readonly sourceField: string[];
941
- readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
947
+ readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
942
948
  readonly destSchema: "threadMessage";
943
949
  readonly cardinality: "one";
944
950
  }];
@@ -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"}