@marcoappio/marco-config 2.0.447 → 2.0.449
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/zero/index.d.ts +359 -37
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.js +35 -17
- package/dist/zero/mutators/threadMutators/threadMutators.test.js +79 -12
- package/dist/zero/queries/getAccounts.d.ts +54 -6
- package/dist/zero/queries/getAccounts.d.ts.map +1 -1
- package/dist/zero/queries/getContacts.d.ts +54 -6
- package/dist/zero/queries/getContacts.d.ts.map +1 -1
- package/dist/zero/queries/getDrafts.d.ts +54 -6
- package/dist/zero/queries/getDrafts.d.ts.map +1 -1
- package/dist/zero/queries/getThreads.d.ts +57 -6
- package/dist/zero/queries/getThreads.d.ts.map +1 -1
- package/dist/zero/queries/getUser.d.ts +54 -6
- package/dist/zero/queries/getUser.d.ts.map +1 -1
- package/dist/zero/queries/index.d.ts +54 -6
- package/dist/zero/queries/index.d.ts.map +1 -1
- package/dist/zero/schema.d.ts +86 -7
- package/dist/zero/schema.d.ts.map +1 -1
- package/dist/zero/schema.js +20 -1
- package/package.json +1 -1
|
@@ -506,6 +506,13 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
506
506
|
readonly threadLabel: {
|
|
507
507
|
name: "threadLabel";
|
|
508
508
|
columns: {
|
|
509
|
+
readonly accountId: {
|
|
510
|
+
type: "string";
|
|
511
|
+
optional: false;
|
|
512
|
+
customType: string;
|
|
513
|
+
} & {
|
|
514
|
+
serverName: string;
|
|
515
|
+
};
|
|
509
516
|
readonly labelId: {
|
|
510
517
|
type: "string";
|
|
511
518
|
optional: false;
|
|
@@ -520,14 +527,28 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
520
527
|
} & {
|
|
521
528
|
serverName: string;
|
|
522
529
|
};
|
|
530
|
+
readonly threadMessageId: {
|
|
531
|
+
type: "string";
|
|
532
|
+
optional: false;
|
|
533
|
+
customType: string;
|
|
534
|
+
} & {
|
|
535
|
+
serverName: string;
|
|
536
|
+
};
|
|
523
537
|
};
|
|
524
538
|
primaryKey: readonly [string, ...string[]];
|
|
525
539
|
} & {
|
|
526
|
-
primaryKey: ["
|
|
540
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
527
541
|
};
|
|
528
542
|
readonly threadMessage: {
|
|
529
543
|
name: "threadMessage";
|
|
530
544
|
columns: {
|
|
545
|
+
readonly accountId: {
|
|
546
|
+
type: "string";
|
|
547
|
+
optional: false;
|
|
548
|
+
customType: string;
|
|
549
|
+
} & {
|
|
550
|
+
serverName: string;
|
|
551
|
+
};
|
|
531
552
|
readonly envelopeDate: {
|
|
532
553
|
type: "number";
|
|
533
554
|
optional: false;
|
|
@@ -544,6 +565,11 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
544
565
|
} & {
|
|
545
566
|
serverName: string;
|
|
546
567
|
};
|
|
568
|
+
readonly flagged: {
|
|
569
|
+
type: "boolean";
|
|
570
|
+
optional: false;
|
|
571
|
+
customType: boolean;
|
|
572
|
+
};
|
|
547
573
|
readonly id: {
|
|
548
574
|
type: "string";
|
|
549
575
|
optional: false;
|
|
@@ -556,6 +582,11 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
556
582
|
} & {
|
|
557
583
|
serverName: string;
|
|
558
584
|
};
|
|
585
|
+
readonly seen: {
|
|
586
|
+
type: "boolean";
|
|
587
|
+
optional: false;
|
|
588
|
+
customType: boolean;
|
|
589
|
+
};
|
|
559
590
|
readonly senderEmail: {
|
|
560
591
|
type: "string";
|
|
561
592
|
optional: false;
|
|
@@ -772,7 +803,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
772
803
|
}];
|
|
773
804
|
threads: [{
|
|
774
805
|
readonly sourceField: string[];
|
|
775
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
806
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
776
807
|
readonly destSchema: "threadLabel";
|
|
777
808
|
readonly cardinality: "many";
|
|
778
809
|
}, {
|
|
@@ -833,7 +864,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
833
864
|
}];
|
|
834
865
|
labels: [{
|
|
835
866
|
readonly sourceField: string[];
|
|
836
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
867
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
837
868
|
readonly destSchema: "threadLabel";
|
|
838
869
|
readonly cardinality: "many";
|
|
839
870
|
}, {
|
|
@@ -844,7 +875,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
844
875
|
}];
|
|
845
876
|
messages: [{
|
|
846
877
|
readonly sourceField: string[];
|
|
847
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
878
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
848
879
|
readonly destSchema: "threadMessage";
|
|
849
880
|
readonly cardinality: "many";
|
|
850
881
|
}];
|
|
@@ -862,6 +893,12 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
862
893
|
readonly destSchema: "accountLabel";
|
|
863
894
|
readonly cardinality: "one";
|
|
864
895
|
}];
|
|
896
|
+
message: [{
|
|
897
|
+
readonly sourceField: string[];
|
|
898
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
899
|
+
readonly destSchema: "threadMessage";
|
|
900
|
+
readonly cardinality: "one";
|
|
901
|
+
}];
|
|
865
902
|
thread: [{
|
|
866
903
|
readonly sourceField: string[];
|
|
867
904
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -876,6 +913,17 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
876
913
|
readonly destSchema: "threadMessageAttachment";
|
|
877
914
|
readonly cardinality: "many";
|
|
878
915
|
}];
|
|
916
|
+
labels: [{
|
|
917
|
+
readonly sourceField: string[];
|
|
918
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
919
|
+
readonly destSchema: "threadLabel";
|
|
920
|
+
readonly cardinality: "many";
|
|
921
|
+
}, {
|
|
922
|
+
readonly sourceField: string[];
|
|
923
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
924
|
+
readonly destSchema: "accountLabel";
|
|
925
|
+
readonly cardinality: "many";
|
|
926
|
+
}];
|
|
879
927
|
recipients: [{
|
|
880
928
|
readonly sourceField: string[];
|
|
881
929
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -892,7 +940,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
892
940
|
readonly threadMessageRecipient: {
|
|
893
941
|
message: [{
|
|
894
942
|
readonly sourceField: string[];
|
|
895
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
943
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
896
944
|
readonly destSchema: "threadMessage";
|
|
897
945
|
readonly cardinality: "one";
|
|
898
946
|
}];
|
|
@@ -900,7 +948,7 @@ export declare const getContacts: import("@rocicorp/zero").SyncedQuery<"getConta
|
|
|
900
948
|
readonly threadMessageAttachment: {
|
|
901
949
|
message: [{
|
|
902
950
|
readonly sourceField: string[];
|
|
903
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
951
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
904
952
|
readonly destSchema: "threadMessage";
|
|
905
953
|
readonly cardinality: "one";
|
|
906
954
|
}];
|
|
@@ -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
|
|
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"}
|
|
@@ -503,6 +503,13 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
503
503
|
readonly threadLabel: {
|
|
504
504
|
name: "threadLabel";
|
|
505
505
|
columns: {
|
|
506
|
+
readonly accountId: {
|
|
507
|
+
type: "string";
|
|
508
|
+
optional: false;
|
|
509
|
+
customType: string;
|
|
510
|
+
} & {
|
|
511
|
+
serverName: string;
|
|
512
|
+
};
|
|
506
513
|
readonly labelId: {
|
|
507
514
|
type: "string";
|
|
508
515
|
optional: false;
|
|
@@ -517,14 +524,28 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
517
524
|
} & {
|
|
518
525
|
serverName: string;
|
|
519
526
|
};
|
|
527
|
+
readonly threadMessageId: {
|
|
528
|
+
type: "string";
|
|
529
|
+
optional: false;
|
|
530
|
+
customType: string;
|
|
531
|
+
} & {
|
|
532
|
+
serverName: string;
|
|
533
|
+
};
|
|
520
534
|
};
|
|
521
535
|
primaryKey: readonly [string, ...string[]];
|
|
522
536
|
} & {
|
|
523
|
-
primaryKey: ["
|
|
537
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
524
538
|
};
|
|
525
539
|
readonly threadMessage: {
|
|
526
540
|
name: "threadMessage";
|
|
527
541
|
columns: {
|
|
542
|
+
readonly accountId: {
|
|
543
|
+
type: "string";
|
|
544
|
+
optional: false;
|
|
545
|
+
customType: string;
|
|
546
|
+
} & {
|
|
547
|
+
serverName: string;
|
|
548
|
+
};
|
|
528
549
|
readonly envelopeDate: {
|
|
529
550
|
type: "number";
|
|
530
551
|
optional: false;
|
|
@@ -541,6 +562,11 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
541
562
|
} & {
|
|
542
563
|
serverName: string;
|
|
543
564
|
};
|
|
565
|
+
readonly flagged: {
|
|
566
|
+
type: "boolean";
|
|
567
|
+
optional: false;
|
|
568
|
+
customType: boolean;
|
|
569
|
+
};
|
|
544
570
|
readonly id: {
|
|
545
571
|
type: "string";
|
|
546
572
|
optional: false;
|
|
@@ -553,6 +579,11 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
553
579
|
} & {
|
|
554
580
|
serverName: string;
|
|
555
581
|
};
|
|
582
|
+
readonly seen: {
|
|
583
|
+
type: "boolean";
|
|
584
|
+
optional: false;
|
|
585
|
+
customType: boolean;
|
|
586
|
+
};
|
|
556
587
|
readonly senderEmail: {
|
|
557
588
|
type: "string";
|
|
558
589
|
optional: false;
|
|
@@ -769,7 +800,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
769
800
|
}];
|
|
770
801
|
threads: [{
|
|
771
802
|
readonly sourceField: string[];
|
|
772
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
803
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
773
804
|
readonly destSchema: "threadLabel";
|
|
774
805
|
readonly cardinality: "many";
|
|
775
806
|
}, {
|
|
@@ -830,7 +861,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
830
861
|
}];
|
|
831
862
|
labels: [{
|
|
832
863
|
readonly sourceField: string[];
|
|
833
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
864
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
834
865
|
readonly destSchema: "threadLabel";
|
|
835
866
|
readonly cardinality: "many";
|
|
836
867
|
}, {
|
|
@@ -841,7 +872,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
841
872
|
}];
|
|
842
873
|
messages: [{
|
|
843
874
|
readonly sourceField: string[];
|
|
844
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
875
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
845
876
|
readonly destSchema: "threadMessage";
|
|
846
877
|
readonly cardinality: "many";
|
|
847
878
|
}];
|
|
@@ -859,6 +890,12 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
859
890
|
readonly destSchema: "accountLabel";
|
|
860
891
|
readonly cardinality: "one";
|
|
861
892
|
}];
|
|
893
|
+
message: [{
|
|
894
|
+
readonly sourceField: string[];
|
|
895
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
896
|
+
readonly destSchema: "threadMessage";
|
|
897
|
+
readonly cardinality: "one";
|
|
898
|
+
}];
|
|
862
899
|
thread: [{
|
|
863
900
|
readonly sourceField: string[];
|
|
864
901
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -873,6 +910,17 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
873
910
|
readonly destSchema: "threadMessageAttachment";
|
|
874
911
|
readonly cardinality: "many";
|
|
875
912
|
}];
|
|
913
|
+
labels: [{
|
|
914
|
+
readonly sourceField: string[];
|
|
915
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
916
|
+
readonly destSchema: "threadLabel";
|
|
917
|
+
readonly cardinality: "many";
|
|
918
|
+
}, {
|
|
919
|
+
readonly sourceField: string[];
|
|
920
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
921
|
+
readonly destSchema: "accountLabel";
|
|
922
|
+
readonly cardinality: "many";
|
|
923
|
+
}];
|
|
876
924
|
recipients: [{
|
|
877
925
|
readonly sourceField: string[];
|
|
878
926
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -889,7 +937,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
889
937
|
readonly threadMessageRecipient: {
|
|
890
938
|
message: [{
|
|
891
939
|
readonly sourceField: string[];
|
|
892
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
940
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
893
941
|
readonly destSchema: "threadMessage";
|
|
894
942
|
readonly cardinality: "one";
|
|
895
943
|
}];
|
|
@@ -897,7 +945,7 @@ export declare const getDrafts: import("@rocicorp/zero").SyncedQuery<"getDrafts"
|
|
|
897
945
|
readonly threadMessageAttachment: {
|
|
898
946
|
message: [{
|
|
899
947
|
readonly sourceField: string[];
|
|
900
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
948
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
901
949
|
readonly destSchema: "threadMessage";
|
|
902
950
|
readonly cardinality: "one";
|
|
903
951
|
}];
|
|
@@ -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
|
|
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"}
|
|
@@ -509,6 +509,13 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
509
509
|
readonly threadLabel: {
|
|
510
510
|
name: "threadLabel";
|
|
511
511
|
columns: {
|
|
512
|
+
readonly accountId: {
|
|
513
|
+
type: "string";
|
|
514
|
+
optional: false;
|
|
515
|
+
customType: string;
|
|
516
|
+
} & {
|
|
517
|
+
serverName: string;
|
|
518
|
+
};
|
|
512
519
|
readonly labelId: {
|
|
513
520
|
type: "string";
|
|
514
521
|
optional: false;
|
|
@@ -523,14 +530,28 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
523
530
|
} & {
|
|
524
531
|
serverName: string;
|
|
525
532
|
};
|
|
533
|
+
readonly threadMessageId: {
|
|
534
|
+
type: "string";
|
|
535
|
+
optional: false;
|
|
536
|
+
customType: string;
|
|
537
|
+
} & {
|
|
538
|
+
serverName: string;
|
|
539
|
+
};
|
|
526
540
|
};
|
|
527
541
|
primaryKey: readonly [string, ...string[]];
|
|
528
542
|
} & {
|
|
529
|
-
primaryKey: ["
|
|
543
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
530
544
|
};
|
|
531
545
|
readonly threadMessage: {
|
|
532
546
|
name: "threadMessage";
|
|
533
547
|
columns: {
|
|
548
|
+
readonly accountId: {
|
|
549
|
+
type: "string";
|
|
550
|
+
optional: false;
|
|
551
|
+
customType: string;
|
|
552
|
+
} & {
|
|
553
|
+
serverName: string;
|
|
554
|
+
};
|
|
534
555
|
readonly envelopeDate: {
|
|
535
556
|
type: "number";
|
|
536
557
|
optional: false;
|
|
@@ -547,6 +568,11 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
547
568
|
} & {
|
|
548
569
|
serverName: string;
|
|
549
570
|
};
|
|
571
|
+
readonly flagged: {
|
|
572
|
+
type: "boolean";
|
|
573
|
+
optional: false;
|
|
574
|
+
customType: boolean;
|
|
575
|
+
};
|
|
550
576
|
readonly id: {
|
|
551
577
|
type: "string";
|
|
552
578
|
optional: false;
|
|
@@ -559,6 +585,11 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
559
585
|
} & {
|
|
560
586
|
serverName: string;
|
|
561
587
|
};
|
|
588
|
+
readonly seen: {
|
|
589
|
+
type: "boolean";
|
|
590
|
+
optional: false;
|
|
591
|
+
customType: boolean;
|
|
592
|
+
};
|
|
562
593
|
readonly senderEmail: {
|
|
563
594
|
type: "string";
|
|
564
595
|
optional: false;
|
|
@@ -775,7 +806,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
775
806
|
}];
|
|
776
807
|
threads: [{
|
|
777
808
|
readonly sourceField: string[];
|
|
778
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
809
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
779
810
|
readonly destSchema: "threadLabel";
|
|
780
811
|
readonly cardinality: "many";
|
|
781
812
|
}, {
|
|
@@ -836,7 +867,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
836
867
|
}];
|
|
837
868
|
labels: [{
|
|
838
869
|
readonly sourceField: string[];
|
|
839
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
870
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
840
871
|
readonly destSchema: "threadLabel";
|
|
841
872
|
readonly cardinality: "many";
|
|
842
873
|
}, {
|
|
@@ -847,7 +878,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
847
878
|
}];
|
|
848
879
|
messages: [{
|
|
849
880
|
readonly sourceField: string[];
|
|
850
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
881
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
851
882
|
readonly destSchema: "threadMessage";
|
|
852
883
|
readonly cardinality: "many";
|
|
853
884
|
}];
|
|
@@ -865,6 +896,12 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
865
896
|
readonly destSchema: "accountLabel";
|
|
866
897
|
readonly cardinality: "one";
|
|
867
898
|
}];
|
|
899
|
+
message: [{
|
|
900
|
+
readonly sourceField: string[];
|
|
901
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
902
|
+
readonly destSchema: "threadMessage";
|
|
903
|
+
readonly cardinality: "one";
|
|
904
|
+
}];
|
|
868
905
|
thread: [{
|
|
869
906
|
readonly sourceField: string[];
|
|
870
907
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -879,6 +916,17 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
879
916
|
readonly destSchema: "threadMessageAttachment";
|
|
880
917
|
readonly cardinality: "many";
|
|
881
918
|
}];
|
|
919
|
+
labels: [{
|
|
920
|
+
readonly sourceField: string[];
|
|
921
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
922
|
+
readonly destSchema: "threadLabel";
|
|
923
|
+
readonly cardinality: "many";
|
|
924
|
+
}, {
|
|
925
|
+
readonly sourceField: string[];
|
|
926
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
927
|
+
readonly destSchema: "accountLabel";
|
|
928
|
+
readonly cardinality: "many";
|
|
929
|
+
}];
|
|
882
930
|
recipients: [{
|
|
883
931
|
readonly sourceField: string[];
|
|
884
932
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -895,7 +943,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
895
943
|
readonly threadMessageRecipient: {
|
|
896
944
|
message: [{
|
|
897
945
|
readonly sourceField: string[];
|
|
898
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
946
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
899
947
|
readonly destSchema: "threadMessage";
|
|
900
948
|
readonly cardinality: "one";
|
|
901
949
|
}];
|
|
@@ -903,7 +951,7 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
903
951
|
readonly threadMessageAttachment: {
|
|
904
952
|
message: [{
|
|
905
953
|
readonly sourceField: string[];
|
|
906
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
954
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
907
955
|
readonly destSchema: "threadMessage";
|
|
908
956
|
readonly cardinality: "one";
|
|
909
957
|
}];
|
|
@@ -921,10 +969,13 @@ export declare const getThreads: import("@rocicorp/zero").SyncedQuery<"getThread
|
|
|
921
969
|
readonly words: string;
|
|
922
970
|
} & {
|
|
923
971
|
readonly messages: readonly ({
|
|
972
|
+
readonly accountId: string;
|
|
924
973
|
readonly envelopeDate: number;
|
|
925
974
|
readonly envelopeSubject: string | null;
|
|
975
|
+
readonly flagged: boolean;
|
|
926
976
|
readonly id: string;
|
|
927
977
|
readonly previewText: string;
|
|
978
|
+
readonly seen: boolean;
|
|
928
979
|
readonly senderEmail: string;
|
|
929
980
|
readonly senderName: string | null;
|
|
930
981
|
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
|
|
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"}
|
|
@@ -497,6 +497,13 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
497
497
|
readonly threadLabel: {
|
|
498
498
|
name: "threadLabel";
|
|
499
499
|
columns: {
|
|
500
|
+
readonly accountId: {
|
|
501
|
+
type: "string";
|
|
502
|
+
optional: false;
|
|
503
|
+
customType: string;
|
|
504
|
+
} & {
|
|
505
|
+
serverName: string;
|
|
506
|
+
};
|
|
500
507
|
readonly labelId: {
|
|
501
508
|
type: "string";
|
|
502
509
|
optional: false;
|
|
@@ -511,14 +518,28 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
511
518
|
} & {
|
|
512
519
|
serverName: string;
|
|
513
520
|
};
|
|
521
|
+
readonly threadMessageId: {
|
|
522
|
+
type: "string";
|
|
523
|
+
optional: false;
|
|
524
|
+
customType: string;
|
|
525
|
+
} & {
|
|
526
|
+
serverName: string;
|
|
527
|
+
};
|
|
514
528
|
};
|
|
515
529
|
primaryKey: readonly [string, ...string[]];
|
|
516
530
|
} & {
|
|
517
|
-
primaryKey: ["
|
|
531
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
518
532
|
};
|
|
519
533
|
readonly threadMessage: {
|
|
520
534
|
name: "threadMessage";
|
|
521
535
|
columns: {
|
|
536
|
+
readonly accountId: {
|
|
537
|
+
type: "string";
|
|
538
|
+
optional: false;
|
|
539
|
+
customType: string;
|
|
540
|
+
} & {
|
|
541
|
+
serverName: string;
|
|
542
|
+
};
|
|
522
543
|
readonly envelopeDate: {
|
|
523
544
|
type: "number";
|
|
524
545
|
optional: false;
|
|
@@ -535,6 +556,11 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
535
556
|
} & {
|
|
536
557
|
serverName: string;
|
|
537
558
|
};
|
|
559
|
+
readonly flagged: {
|
|
560
|
+
type: "boolean";
|
|
561
|
+
optional: false;
|
|
562
|
+
customType: boolean;
|
|
563
|
+
};
|
|
538
564
|
readonly id: {
|
|
539
565
|
type: "string";
|
|
540
566
|
optional: false;
|
|
@@ -547,6 +573,11 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
547
573
|
} & {
|
|
548
574
|
serverName: string;
|
|
549
575
|
};
|
|
576
|
+
readonly seen: {
|
|
577
|
+
type: "boolean";
|
|
578
|
+
optional: false;
|
|
579
|
+
customType: boolean;
|
|
580
|
+
};
|
|
550
581
|
readonly senderEmail: {
|
|
551
582
|
type: "string";
|
|
552
583
|
optional: false;
|
|
@@ -763,7 +794,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
763
794
|
}];
|
|
764
795
|
threads: [{
|
|
765
796
|
readonly sourceField: string[];
|
|
766
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
797
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
767
798
|
readonly destSchema: "threadLabel";
|
|
768
799
|
readonly cardinality: "many";
|
|
769
800
|
}, {
|
|
@@ -824,7 +855,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
824
855
|
}];
|
|
825
856
|
labels: [{
|
|
826
857
|
readonly sourceField: string[];
|
|
827
|
-
readonly destField: ("labelId" | "threadId")[];
|
|
858
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
828
859
|
readonly destSchema: "threadLabel";
|
|
829
860
|
readonly cardinality: "many";
|
|
830
861
|
}, {
|
|
@@ -835,7 +866,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
835
866
|
}];
|
|
836
867
|
messages: [{
|
|
837
868
|
readonly sourceField: string[];
|
|
838
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
869
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
839
870
|
readonly destSchema: "threadMessage";
|
|
840
871
|
readonly cardinality: "many";
|
|
841
872
|
}];
|
|
@@ -853,6 +884,12 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
853
884
|
readonly destSchema: "accountLabel";
|
|
854
885
|
readonly cardinality: "one";
|
|
855
886
|
}];
|
|
887
|
+
message: [{
|
|
888
|
+
readonly sourceField: string[];
|
|
889
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
890
|
+
readonly destSchema: "threadMessage";
|
|
891
|
+
readonly cardinality: "one";
|
|
892
|
+
}];
|
|
856
893
|
thread: [{
|
|
857
894
|
readonly sourceField: string[];
|
|
858
895
|
readonly destField: ("id" | "userId" | "accountId" | "flagged" | "latestMessageDate" | "seen" | "words")[];
|
|
@@ -867,6 +904,17 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
867
904
|
readonly destSchema: "threadMessageAttachment";
|
|
868
905
|
readonly cardinality: "many";
|
|
869
906
|
}];
|
|
907
|
+
labels: [{
|
|
908
|
+
readonly sourceField: string[];
|
|
909
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
910
|
+
readonly destSchema: "threadLabel";
|
|
911
|
+
readonly cardinality: "many";
|
|
912
|
+
}, {
|
|
913
|
+
readonly sourceField: string[];
|
|
914
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
915
|
+
readonly destSchema: "accountLabel";
|
|
916
|
+
readonly cardinality: "many";
|
|
917
|
+
}];
|
|
870
918
|
recipients: [{
|
|
871
919
|
readonly sourceField: string[];
|
|
872
920
|
readonly destField: ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
@@ -883,7 +931,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
883
931
|
readonly threadMessageRecipient: {
|
|
884
932
|
message: [{
|
|
885
933
|
readonly sourceField: string[];
|
|
886
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
934
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
887
935
|
readonly destSchema: "threadMessage";
|
|
888
936
|
readonly cardinality: "one";
|
|
889
937
|
}];
|
|
@@ -891,7 +939,7 @@ export declare const getUser: import("@rocicorp/zero").SyncedQuery<"getUser", Ma
|
|
|
891
939
|
readonly threadMessageAttachment: {
|
|
892
940
|
message: [{
|
|
893
941
|
readonly sourceField: string[];
|
|
894
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
942
|
+
readonly destField: ("id" | "accountId" | "flagged" | "seen" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
895
943
|
readonly destSchema: "threadMessage";
|
|
896
944
|
readonly cardinality: "one";
|
|
897
945
|
}];
|
|
@@ -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
|
|
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"}
|