@marcoappio/marco-config 2.0.448 → 2.0.450
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 +148 -49
- 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 +4 -0
- package/dist/zero/mutators/threadMutators/threadMutators.test.js +10 -0
- package/dist/zero/queries/getAccounts.d.ts +22 -8
- package/dist/zero/queries/getAccounts.d.ts.map +1 -1
- package/dist/zero/queries/getContacts.d.ts +22 -8
- package/dist/zero/queries/getContacts.d.ts.map +1 -1
- package/dist/zero/queries/getDrafts.d.ts +22 -8
- package/dist/zero/queries/getDrafts.d.ts.map +1 -1
- package/dist/zero/queries/getThreads.d.ts +23 -8
- package/dist/zero/queries/getThreads.d.ts.map +1 -1
- package/dist/zero/queries/getUser.d.ts +22 -8
- package/dist/zero/queries/getUser.d.ts.map +1 -1
- package/dist/zero/queries/index.d.ts +22 -8
- package/dist/zero/queries/index.d.ts.map +1 -1
- package/dist/zero/schema.d.ts +37 -9
- package/dist/zero/schema.d.ts.map +1 -1
- package/dist/zero/schema.js +3 -1
- package/package.json +1 -1
|
@@ -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"}
|
|
@@ -496,6 +496,13 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
496
496
|
readonly threadLabel: {
|
|
497
497
|
name: "threadLabel";
|
|
498
498
|
columns: {
|
|
499
|
+
readonly accountId: {
|
|
500
|
+
type: "string";
|
|
501
|
+
optional: false;
|
|
502
|
+
customType: string;
|
|
503
|
+
} & {
|
|
504
|
+
serverName: string;
|
|
505
|
+
};
|
|
499
506
|
readonly labelId: {
|
|
500
507
|
type: "string";
|
|
501
508
|
optional: false;
|
|
@@ -520,11 +527,18 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
520
527
|
};
|
|
521
528
|
primaryKey: readonly [string, ...string[]];
|
|
522
529
|
} & {
|
|
523
|
-
primaryKey: ["
|
|
530
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
524
531
|
};
|
|
525
532
|
readonly threadMessage: {
|
|
526
533
|
name: "threadMessage";
|
|
527
534
|
columns: {
|
|
535
|
+
readonly accountId: {
|
|
536
|
+
type: "string";
|
|
537
|
+
optional: false;
|
|
538
|
+
customType: string;
|
|
539
|
+
} & {
|
|
540
|
+
serverName: string;
|
|
541
|
+
};
|
|
528
542
|
readonly envelopeDate: {
|
|
529
543
|
type: "number";
|
|
530
544
|
optional: false;
|
|
@@ -769,7 +783,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
769
783
|
}];
|
|
770
784
|
threads: [{
|
|
771
785
|
readonly sourceField: string[];
|
|
772
|
-
readonly destField: ("labelId" | "threadId" | "threadMessageId")[];
|
|
786
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
773
787
|
readonly destSchema: "threadLabel";
|
|
774
788
|
readonly cardinality: "many";
|
|
775
789
|
}, {
|
|
@@ -830,7 +844,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
830
844
|
}];
|
|
831
845
|
labels: [{
|
|
832
846
|
readonly sourceField: string[];
|
|
833
|
-
readonly destField: ("labelId" | "threadId" | "threadMessageId")[];
|
|
847
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
834
848
|
readonly destSchema: "threadLabel";
|
|
835
849
|
readonly cardinality: "many";
|
|
836
850
|
}, {
|
|
@@ -841,7 +855,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
841
855
|
}];
|
|
842
856
|
messages: [{
|
|
843
857
|
readonly sourceField: string[];
|
|
844
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
858
|
+
readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
845
859
|
readonly destSchema: "threadMessage";
|
|
846
860
|
readonly cardinality: "many";
|
|
847
861
|
}];
|
|
@@ -861,7 +875,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
861
875
|
}];
|
|
862
876
|
message: [{
|
|
863
877
|
readonly sourceField: string[];
|
|
864
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
878
|
+
readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
865
879
|
readonly destSchema: "threadMessage";
|
|
866
880
|
readonly cardinality: "one";
|
|
867
881
|
}];
|
|
@@ -881,7 +895,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
881
895
|
}];
|
|
882
896
|
labels: [{
|
|
883
897
|
readonly sourceField: string[];
|
|
884
|
-
readonly destField: ("labelId" | "threadId" | "threadMessageId")[];
|
|
898
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
885
899
|
readonly destSchema: "threadLabel";
|
|
886
900
|
readonly cardinality: "many";
|
|
887
901
|
}, {
|
|
@@ -906,7 +920,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
906
920
|
readonly threadMessageRecipient: {
|
|
907
921
|
message: [{
|
|
908
922
|
readonly sourceField: string[];
|
|
909
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
923
|
+
readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
910
924
|
readonly destSchema: "threadMessage";
|
|
911
925
|
readonly cardinality: "one";
|
|
912
926
|
}];
|
|
@@ -914,7 +928,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
914
928
|
readonly threadMessageAttachment: {
|
|
915
929
|
message: [{
|
|
916
930
|
readonly sourceField: string[];
|
|
917
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
931
|
+
readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
918
932
|
readonly destSchema: "threadMessage";
|
|
919
933
|
readonly cardinality: "one";
|
|
920
934
|
}];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/zero/queries/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,CAAC
|
|
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"}
|
package/dist/zero/schema.d.ts
CHANGED
|
@@ -496,6 +496,13 @@ export declare const schema: {
|
|
|
496
496
|
readonly threadLabel: {
|
|
497
497
|
name: "threadLabel";
|
|
498
498
|
columns: {
|
|
499
|
+
readonly accountId: {
|
|
500
|
+
type: "string";
|
|
501
|
+
optional: false;
|
|
502
|
+
customType: string;
|
|
503
|
+
} & {
|
|
504
|
+
serverName: string;
|
|
505
|
+
};
|
|
499
506
|
readonly labelId: {
|
|
500
507
|
type: "string";
|
|
501
508
|
optional: false;
|
|
@@ -520,11 +527,18 @@ export declare const schema: {
|
|
|
520
527
|
};
|
|
521
528
|
primaryKey: readonly [string, ...string[]];
|
|
522
529
|
} & {
|
|
523
|
-
primaryKey: ["
|
|
530
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
524
531
|
};
|
|
525
532
|
readonly threadMessage: {
|
|
526
533
|
name: "threadMessage";
|
|
527
534
|
columns: {
|
|
535
|
+
readonly accountId: {
|
|
536
|
+
type: "string";
|
|
537
|
+
optional: false;
|
|
538
|
+
customType: string;
|
|
539
|
+
} & {
|
|
540
|
+
serverName: string;
|
|
541
|
+
};
|
|
528
542
|
readonly envelopeDate: {
|
|
529
543
|
type: "number";
|
|
530
544
|
optional: false;
|
|
@@ -769,7 +783,7 @@ export declare const schema: {
|
|
|
769
783
|
}];
|
|
770
784
|
threads: [{
|
|
771
785
|
readonly sourceField: string[];
|
|
772
|
-
readonly destField: ("labelId" | "threadId" | "threadMessageId")[];
|
|
786
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
773
787
|
readonly destSchema: "threadLabel";
|
|
774
788
|
readonly cardinality: "many";
|
|
775
789
|
}, {
|
|
@@ -830,7 +844,7 @@ export declare const schema: {
|
|
|
830
844
|
}];
|
|
831
845
|
labels: [{
|
|
832
846
|
readonly sourceField: string[];
|
|
833
|
-
readonly destField: ("labelId" | "threadId" | "threadMessageId")[];
|
|
847
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
834
848
|
readonly destSchema: "threadLabel";
|
|
835
849
|
readonly cardinality: "many";
|
|
836
850
|
}, {
|
|
@@ -841,7 +855,7 @@ export declare const schema: {
|
|
|
841
855
|
}];
|
|
842
856
|
messages: [{
|
|
843
857
|
readonly sourceField: string[];
|
|
844
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
858
|
+
readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
845
859
|
readonly destSchema: "threadMessage";
|
|
846
860
|
readonly cardinality: "many";
|
|
847
861
|
}];
|
|
@@ -861,7 +875,7 @@ export declare const schema: {
|
|
|
861
875
|
}];
|
|
862
876
|
message: [{
|
|
863
877
|
readonly sourceField: string[];
|
|
864
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
878
|
+
readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
865
879
|
readonly destSchema: "threadMessage";
|
|
866
880
|
readonly cardinality: "one";
|
|
867
881
|
}];
|
|
@@ -881,7 +895,7 @@ export declare const schema: {
|
|
|
881
895
|
}];
|
|
882
896
|
labels: [{
|
|
883
897
|
readonly sourceField: string[];
|
|
884
|
-
readonly destField: ("labelId" | "threadId" | "threadMessageId")[];
|
|
898
|
+
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
885
899
|
readonly destSchema: "threadLabel";
|
|
886
900
|
readonly cardinality: "many";
|
|
887
901
|
}, {
|
|
@@ -906,7 +920,7 @@ export declare const schema: {
|
|
|
906
920
|
readonly threadMessageRecipient: {
|
|
907
921
|
message: [{
|
|
908
922
|
readonly sourceField: string[];
|
|
909
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
923
|
+
readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
910
924
|
readonly destSchema: "threadMessage";
|
|
911
925
|
readonly cardinality: "one";
|
|
912
926
|
}];
|
|
@@ -914,7 +928,7 @@ export declare const schema: {
|
|
|
914
928
|
readonly threadMessageAttachment: {
|
|
915
929
|
message: [{
|
|
916
930
|
readonly sourceField: string[];
|
|
917
|
-
readonly destField: ("id" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
931
|
+
readonly destField: ("id" | "accountId" | "threadId" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName")[];
|
|
918
932
|
readonly destSchema: "threadMessage";
|
|
919
933
|
readonly cardinality: "one";
|
|
920
934
|
}];
|
|
@@ -1353,6 +1367,13 @@ export declare const zeroTables: {
|
|
|
1353
1367
|
readonly threadLabel: import("@rocicorp/zero").TableBuilderWithColumns<{
|
|
1354
1368
|
name: "threadLabel";
|
|
1355
1369
|
columns: {
|
|
1370
|
+
readonly accountId: {
|
|
1371
|
+
type: "string";
|
|
1372
|
+
optional: false;
|
|
1373
|
+
customType: string;
|
|
1374
|
+
} & {
|
|
1375
|
+
serverName: string;
|
|
1376
|
+
};
|
|
1356
1377
|
readonly labelId: {
|
|
1357
1378
|
type: "string";
|
|
1358
1379
|
optional: false;
|
|
@@ -1377,11 +1398,18 @@ export declare const zeroTables: {
|
|
|
1377
1398
|
};
|
|
1378
1399
|
primaryKey: readonly [string, ...string[]];
|
|
1379
1400
|
} & {
|
|
1380
|
-
primaryKey: ["
|
|
1401
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
1381
1402
|
}>;
|
|
1382
1403
|
readonly threadMessage: import("@rocicorp/zero").TableBuilderWithColumns<{
|
|
1383
1404
|
name: "threadMessage";
|
|
1384
1405
|
columns: {
|
|
1406
|
+
readonly accountId: {
|
|
1407
|
+
type: "string";
|
|
1408
|
+
optional: false;
|
|
1409
|
+
customType: string;
|
|
1410
|
+
} & {
|
|
1411
|
+
serverName: string;
|
|
1412
|
+
};
|
|
1385
1413
|
readonly envelopeDate: {
|
|
1386
1414
|
type: "number";
|
|
1387
1415
|
optional: false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/zero/schema.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/zero/schema.ts"],"names":[],"mappings":"AA4aA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCArVJ,MAAM;4BACX,MAAM,EAAE;4BACR,MAAM,EAAE;6BACP,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoXjB,CAAA;AAEF,MAAM,MAAM,eAAe,GAAG,OAAO,MAAM,CAAA;AAE3C,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA3XR,MAAM;wBACX,MAAM,EAAE;wBACR,MAAM,EAAE;yBACP,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuYT,CAAA"}
|
package/dist/zero/schema.js
CHANGED
|
@@ -109,14 +109,16 @@ const thread = table('thread')
|
|
|
109
109
|
const threadLabel = table('threadLabel')
|
|
110
110
|
.from('thread_label')
|
|
111
111
|
.columns({
|
|
112
|
+
accountId: string().from('account_id'),
|
|
112
113
|
labelId: string().from('label_id'),
|
|
113
114
|
threadId: string().from('thread_id'),
|
|
114
115
|
threadMessageId: string().from('thread_message_id'),
|
|
115
116
|
})
|
|
116
|
-
.primaryKey('
|
|
117
|
+
.primaryKey('accountId', 'labelId', 'threadMessageId');
|
|
117
118
|
const threadMessage = table('threadMessage')
|
|
118
119
|
.from('thread_message')
|
|
119
120
|
.columns({
|
|
121
|
+
accountId: string().from('account_id'),
|
|
120
122
|
envelopeDate: numeric().from('envelope_date'),
|
|
121
123
|
envelopeSubject: string().optional().from('envelope_subject'),
|
|
122
124
|
id: string(),
|