@marcoappio/marco-config 2.0.450 → 2.0.452
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/types/{ImapConnectionStatus.d.ts → IMAPConnectionStatus.d.ts} +2 -2
- package/dist/types/IMAPConnectionStatus.d.ts.map +1 -0
- package/dist/types/IMAPSourceLocation.d.ts +7 -0
- package/dist/types/IMAPSourceLocation.d.ts.map +1 -0
- package/dist/types/IMAPSourceLocation.js +1 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +2 -1
- package/dist/zero/index.d.ts +263 -42
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/mutatorSchemas/index.d.ts +36 -0
- package/dist/zero/mutatorSchemas/index.d.ts.map +1 -1
- package/dist/zero/mutatorSchemas/thread.d.ts +36 -0
- package/dist/zero/mutatorSchemas/thread.d.ts.map +1 -1
- package/dist/zero/mutatorSchemas/thread.js +18 -7
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts +4 -2
- package/dist/zero/mutators/threadMutators/threadMutators.d.ts.map +1 -1
- package/dist/zero/mutators/threadMutators/threadMutators.js +59 -19
- package/dist/zero/mutators/threadMutators/threadMutators.test.js +18 -12
- package/dist/zero/queries/getAccounts.d.ts +34 -7
- package/dist/zero/queries/getAccounts.d.ts.map +1 -1
- package/dist/zero/queries/getContacts.d.ts +33 -7
- package/dist/zero/queries/getContacts.d.ts.map +1 -1
- package/dist/zero/queries/getDrafts.d.ts +33 -7
- package/dist/zero/queries/getDrafts.d.ts.map +1 -1
- package/dist/zero/queries/getThreads.d.ts +34 -7
- package/dist/zero/queries/getThreads.d.ts.map +1 -1
- package/dist/zero/queries/getUser.d.ts +34 -7
- package/dist/zero/queries/getUser.d.ts.map +1 -1
- package/dist/zero/queries/index.d.ts +33 -7
- package/dist/zero/queries/index.d.ts.map +1 -1
- package/dist/zero/schema.d.ts +59 -7
- package/dist/zero/schema.d.ts.map +1 -1
- package/dist/zero/schema.js +4 -0
- package/package.json +1 -1
- package/dist/types/ImapConnectionStatus.d.ts.map +0 -1
- /package/dist/types/{ImapConnectionStatus.js → IMAPConnectionStatus.js} +0 -0
|
@@ -236,6 +236,13 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
236
236
|
} & {
|
|
237
237
|
serverName: string;
|
|
238
238
|
};
|
|
239
|
+
readonly uidValidity: {
|
|
240
|
+
type: "number";
|
|
241
|
+
optional: false;
|
|
242
|
+
customType: number;
|
|
243
|
+
} & {
|
|
244
|
+
serverName: string;
|
|
245
|
+
};
|
|
239
246
|
};
|
|
240
247
|
primaryKey: readonly [string, ...string[]];
|
|
241
248
|
} & {
|
|
@@ -510,6 +517,13 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
510
517
|
} & {
|
|
511
518
|
serverName: string;
|
|
512
519
|
};
|
|
520
|
+
readonly lastSyncedAt: {
|
|
521
|
+
type: "number";
|
|
522
|
+
optional: false;
|
|
523
|
+
customType: number;
|
|
524
|
+
} & {
|
|
525
|
+
serverName: string;
|
|
526
|
+
};
|
|
513
527
|
readonly threadId: {
|
|
514
528
|
type: "string";
|
|
515
529
|
optional: false;
|
|
@@ -524,6 +538,18 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
524
538
|
} & {
|
|
525
539
|
serverName: string;
|
|
526
540
|
};
|
|
541
|
+
readonly uid: {
|
|
542
|
+
type: "number";
|
|
543
|
+
optional: false;
|
|
544
|
+
customType: number;
|
|
545
|
+
};
|
|
546
|
+
readonly uidValidity: {
|
|
547
|
+
type: "number";
|
|
548
|
+
optional: false;
|
|
549
|
+
customType: number;
|
|
550
|
+
} & {
|
|
551
|
+
serverName: string;
|
|
552
|
+
};
|
|
527
553
|
};
|
|
528
554
|
primaryKey: readonly [string, ...string[]];
|
|
529
555
|
} & {
|
|
@@ -743,7 +769,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
743
769
|
}];
|
|
744
770
|
labels: [{
|
|
745
771
|
readonly sourceField: string[];
|
|
746
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
772
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
747
773
|
readonly destSchema: "accountLabel";
|
|
748
774
|
readonly cardinality: "many";
|
|
749
775
|
}];
|
|
@@ -783,7 +809,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
783
809
|
}];
|
|
784
810
|
threads: [{
|
|
785
811
|
readonly sourceField: string[];
|
|
786
|
-
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
812
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
787
813
|
readonly destSchema: "threadLabel";
|
|
788
814
|
readonly cardinality: "many";
|
|
789
815
|
}, {
|
|
@@ -844,12 +870,12 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
844
870
|
}];
|
|
845
871
|
labels: [{
|
|
846
872
|
readonly sourceField: string[];
|
|
847
|
-
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
873
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
848
874
|
readonly destSchema: "threadLabel";
|
|
849
875
|
readonly cardinality: "many";
|
|
850
876
|
}, {
|
|
851
877
|
readonly sourceField: string[];
|
|
852
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
878
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
853
879
|
readonly destSchema: "accountLabel";
|
|
854
880
|
readonly cardinality: "many";
|
|
855
881
|
}];
|
|
@@ -869,7 +895,7 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
869
895
|
readonly threadLabel: {
|
|
870
896
|
label: [{
|
|
871
897
|
readonly sourceField: string[];
|
|
872
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
898
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
873
899
|
readonly destSchema: "accountLabel";
|
|
874
900
|
readonly cardinality: "one";
|
|
875
901
|
}];
|
|
@@ -895,12 +921,12 @@ export declare const z: import("@rocicorp/zero").SchemaQuery<{
|
|
|
895
921
|
}];
|
|
896
922
|
labels: [{
|
|
897
923
|
readonly sourceField: string[];
|
|
898
|
-
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
924
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
899
925
|
readonly destSchema: "threadLabel";
|
|
900
926
|
readonly cardinality: "many";
|
|
901
927
|
}, {
|
|
902
928
|
readonly sourceField: string[];
|
|
903
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
929
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
904
930
|
readonly destSchema: "accountLabel";
|
|
905
931
|
readonly cardinality: "many";
|
|
906
932
|
}];
|
|
@@ -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
|
@@ -236,6 +236,13 @@ export declare const schema: {
|
|
|
236
236
|
} & {
|
|
237
237
|
serverName: string;
|
|
238
238
|
};
|
|
239
|
+
readonly uidValidity: {
|
|
240
|
+
type: "number";
|
|
241
|
+
optional: false;
|
|
242
|
+
customType: number;
|
|
243
|
+
} & {
|
|
244
|
+
serverName: string;
|
|
245
|
+
};
|
|
239
246
|
};
|
|
240
247
|
primaryKey: readonly [string, ...string[]];
|
|
241
248
|
} & {
|
|
@@ -510,6 +517,13 @@ export declare const schema: {
|
|
|
510
517
|
} & {
|
|
511
518
|
serverName: string;
|
|
512
519
|
};
|
|
520
|
+
readonly lastSyncedAt: {
|
|
521
|
+
type: "number";
|
|
522
|
+
optional: false;
|
|
523
|
+
customType: number;
|
|
524
|
+
} & {
|
|
525
|
+
serverName: string;
|
|
526
|
+
};
|
|
513
527
|
readonly threadId: {
|
|
514
528
|
type: "string";
|
|
515
529
|
optional: false;
|
|
@@ -524,6 +538,18 @@ export declare const schema: {
|
|
|
524
538
|
} & {
|
|
525
539
|
serverName: string;
|
|
526
540
|
};
|
|
541
|
+
readonly uid: {
|
|
542
|
+
type: "number";
|
|
543
|
+
optional: false;
|
|
544
|
+
customType: number;
|
|
545
|
+
};
|
|
546
|
+
readonly uidValidity: {
|
|
547
|
+
type: "number";
|
|
548
|
+
optional: false;
|
|
549
|
+
customType: number;
|
|
550
|
+
} & {
|
|
551
|
+
serverName: string;
|
|
552
|
+
};
|
|
527
553
|
};
|
|
528
554
|
primaryKey: readonly [string, ...string[]];
|
|
529
555
|
} & {
|
|
@@ -743,7 +769,7 @@ export declare const schema: {
|
|
|
743
769
|
}];
|
|
744
770
|
labels: [{
|
|
745
771
|
readonly sourceField: string[];
|
|
746
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
772
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
747
773
|
readonly destSchema: "accountLabel";
|
|
748
774
|
readonly cardinality: "many";
|
|
749
775
|
}];
|
|
@@ -783,7 +809,7 @@ export declare const schema: {
|
|
|
783
809
|
}];
|
|
784
810
|
threads: [{
|
|
785
811
|
readonly sourceField: string[];
|
|
786
|
-
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
812
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
787
813
|
readonly destSchema: "threadLabel";
|
|
788
814
|
readonly cardinality: "many";
|
|
789
815
|
}, {
|
|
@@ -844,12 +870,12 @@ export declare const schema: {
|
|
|
844
870
|
}];
|
|
845
871
|
labels: [{
|
|
846
872
|
readonly sourceField: string[];
|
|
847
|
-
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
873
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
848
874
|
readonly destSchema: "threadLabel";
|
|
849
875
|
readonly cardinality: "many";
|
|
850
876
|
}, {
|
|
851
877
|
readonly sourceField: string[];
|
|
852
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
878
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
853
879
|
readonly destSchema: "accountLabel";
|
|
854
880
|
readonly cardinality: "many";
|
|
855
881
|
}];
|
|
@@ -869,7 +895,7 @@ export declare const schema: {
|
|
|
869
895
|
readonly threadLabel: {
|
|
870
896
|
label: [{
|
|
871
897
|
readonly sourceField: string[];
|
|
872
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
898
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
873
899
|
readonly destSchema: "accountLabel";
|
|
874
900
|
readonly cardinality: "one";
|
|
875
901
|
}];
|
|
@@ -895,12 +921,12 @@ export declare const schema: {
|
|
|
895
921
|
}];
|
|
896
922
|
labels: [{
|
|
897
923
|
readonly sourceField: string[];
|
|
898
|
-
readonly destField: ("accountId" | "labelId" | "threadId" | "threadMessageId")[];
|
|
924
|
+
readonly destField: ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
899
925
|
readonly destSchema: "threadLabel";
|
|
900
926
|
readonly cardinality: "many";
|
|
901
927
|
}, {
|
|
902
928
|
readonly sourceField: string[];
|
|
903
|
-
readonly destField: ("id" | "accountId" | "path" | "specialUse")[];
|
|
929
|
+
readonly destField: ("id" | "accountId" | "path" | "specialUse" | "uidValidity")[];
|
|
904
930
|
readonly destSchema: "accountLabel";
|
|
905
931
|
readonly cardinality: "many";
|
|
906
932
|
}];
|
|
@@ -1073,6 +1099,13 @@ export declare const zeroTables: {
|
|
|
1073
1099
|
} & {
|
|
1074
1100
|
serverName: string;
|
|
1075
1101
|
};
|
|
1102
|
+
readonly uidValidity: {
|
|
1103
|
+
type: "number";
|
|
1104
|
+
optional: false;
|
|
1105
|
+
customType: number;
|
|
1106
|
+
} & {
|
|
1107
|
+
serverName: string;
|
|
1108
|
+
};
|
|
1076
1109
|
};
|
|
1077
1110
|
primaryKey: readonly [string, ...string[]];
|
|
1078
1111
|
} & {
|
|
@@ -1381,6 +1414,13 @@ export declare const zeroTables: {
|
|
|
1381
1414
|
} & {
|
|
1382
1415
|
serverName: string;
|
|
1383
1416
|
};
|
|
1417
|
+
readonly lastSyncedAt: {
|
|
1418
|
+
type: "number";
|
|
1419
|
+
optional: false;
|
|
1420
|
+
customType: number;
|
|
1421
|
+
} & {
|
|
1422
|
+
serverName: string;
|
|
1423
|
+
};
|
|
1384
1424
|
readonly threadId: {
|
|
1385
1425
|
type: "string";
|
|
1386
1426
|
optional: false;
|
|
@@ -1395,6 +1435,18 @@ export declare const zeroTables: {
|
|
|
1395
1435
|
} & {
|
|
1396
1436
|
serverName: string;
|
|
1397
1437
|
};
|
|
1438
|
+
readonly uid: {
|
|
1439
|
+
type: "number";
|
|
1440
|
+
optional: false;
|
|
1441
|
+
customType: number;
|
|
1442
|
+
};
|
|
1443
|
+
readonly uidValidity: {
|
|
1444
|
+
type: "number";
|
|
1445
|
+
optional: false;
|
|
1446
|
+
customType: number;
|
|
1447
|
+
} & {
|
|
1448
|
+
serverName: string;
|
|
1449
|
+
};
|
|
1398
1450
|
};
|
|
1399
1451
|
primaryKey: readonly [string, ...string[]];
|
|
1400
1452
|
} & {
|
|
@@ -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":"AAgbA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAxVJ,MAAM;4BACX,MAAM,EAAE;4BACR,MAAM,EAAE;6BACP,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuXjB,CAAA;AAEF,MAAM,MAAM,eAAe,GAAG,OAAO,MAAM,CAAA;AAE3C,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA9XR,MAAM;wBACX,MAAM,EAAE;wBACR,MAAM,EAAE;yBACP,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0YT,CAAA"}
|
package/dist/zero/schema.js
CHANGED
|
@@ -53,6 +53,7 @@ const accountLabel = table('accountLabel')
|
|
|
53
53
|
id: string(),
|
|
54
54
|
path: string(),
|
|
55
55
|
specialUse: enumeration().optional().from('special_use'),
|
|
56
|
+
uidValidity: numeric().from('uid_validity'),
|
|
56
57
|
})
|
|
57
58
|
.primaryKey('id');
|
|
58
59
|
const draft = table('draft')
|
|
@@ -111,8 +112,11 @@ const threadLabel = table('threadLabel')
|
|
|
111
112
|
.columns({
|
|
112
113
|
accountId: string().from('account_id'),
|
|
113
114
|
labelId: string().from('label_id'),
|
|
115
|
+
lastSyncedAt: numeric().from('last_synced_at'),
|
|
114
116
|
threadId: string().from('thread_id'),
|
|
115
117
|
threadMessageId: string().from('thread_message_id'),
|
|
118
|
+
uid: numeric(),
|
|
119
|
+
uidValidity: numeric().from('uid_validity'),
|
|
116
120
|
})
|
|
117
121
|
.primaryKey('accountId', 'labelId', 'threadMessageId');
|
|
118
122
|
const threadMessage = table('threadMessage')
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ImapConnectionStatus.d.ts","sourceRoot":"","sources":["../../src/types/ImapConnectionStatus.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,wBAAwB,6OAQ3B,CAAA;AAEV,MAAM,MAAM,oBAAoB,GAAG,CAAC,OAAO,wBAAwB,CAAC,CAAC,MAAM,CAAC,CAAA"}
|
|
File without changes
|