@marcoappio/marco-config 2.0.511 → 2.0.513
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/Zero.d.ts +12 -0
- package/dist/types/Zero.d.ts.map +1 -1
- package/dist/zero/index.d.ts +510 -249
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/index.js +2 -0
- package/dist/zero/mutatorSchemas.d.ts +263 -0
- package/dist/zero/mutatorSchemas.d.ts.map +1 -0
- package/dist/zero/mutatorSchemas.js +176 -0
- package/dist/zero/mutators.d.ts +83 -83
- package/dist/zero/mutators.d.ts.map +1 -1
- package/dist/zero/mutators.js +33 -167
- package/dist/zero/queries.d.ts +83 -83
- package/dist/zero/queries.d.ts.map +1 -1
- package/dist/zero/queries.js +1 -1
- package/dist/zero/schema.d.ts +83 -93
- package/dist/zero/schema.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/zero/mutators.d.ts
CHANGED
|
@@ -474,54 +474,6 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
474
474
|
} & {
|
|
475
475
|
primaryKey: ["id"];
|
|
476
476
|
};
|
|
477
|
-
readonly draftAttachment: {
|
|
478
|
-
name: "draftAttachment";
|
|
479
|
-
columns: {
|
|
480
|
-
readonly draftId: {
|
|
481
|
-
type: "string";
|
|
482
|
-
optional: false;
|
|
483
|
-
customType: string;
|
|
484
|
-
} & {
|
|
485
|
-
serverName: string;
|
|
486
|
-
};
|
|
487
|
-
readonly fileName: {
|
|
488
|
-
type: "string";
|
|
489
|
-
optional: false;
|
|
490
|
-
customType: string;
|
|
491
|
-
} & {
|
|
492
|
-
serverName: string;
|
|
493
|
-
};
|
|
494
|
-
readonly id: {
|
|
495
|
-
type: "string";
|
|
496
|
-
optional: false;
|
|
497
|
-
customType: string;
|
|
498
|
-
};
|
|
499
|
-
readonly mimeType: {
|
|
500
|
-
type: "string";
|
|
501
|
-
optional: false;
|
|
502
|
-
customType: string;
|
|
503
|
-
} & {
|
|
504
|
-
serverName: string;
|
|
505
|
-
};
|
|
506
|
-
readonly status: {
|
|
507
|
-
type: "string";
|
|
508
|
-
optional: false;
|
|
509
|
-
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
510
|
-
} & {
|
|
511
|
-
serverName: string;
|
|
512
|
-
};
|
|
513
|
-
readonly totalSize: {
|
|
514
|
-
type: "number";
|
|
515
|
-
optional: false;
|
|
516
|
-
customType: number;
|
|
517
|
-
} & {
|
|
518
|
-
serverName: string;
|
|
519
|
-
};
|
|
520
|
-
};
|
|
521
|
-
primaryKey: readonly [string, ...string[]];
|
|
522
|
-
} & {
|
|
523
|
-
primaryKey: ["id"];
|
|
524
|
-
};
|
|
525
477
|
readonly userPushNotificationToken: {
|
|
526
478
|
name: "userPushNotificationToken";
|
|
527
479
|
columns: {
|
|
@@ -859,6 +811,54 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
859
811
|
} & {
|
|
860
812
|
primaryKey: ["id"];
|
|
861
813
|
};
|
|
814
|
+
readonly draftAttachment: {
|
|
815
|
+
name: "draftAttachment";
|
|
816
|
+
columns: {
|
|
817
|
+
readonly draftId: {
|
|
818
|
+
type: "string";
|
|
819
|
+
optional: false;
|
|
820
|
+
customType: string;
|
|
821
|
+
} & {
|
|
822
|
+
serverName: string;
|
|
823
|
+
};
|
|
824
|
+
readonly fileName: {
|
|
825
|
+
type: "string";
|
|
826
|
+
optional: false;
|
|
827
|
+
customType: string;
|
|
828
|
+
} & {
|
|
829
|
+
serverName: string;
|
|
830
|
+
};
|
|
831
|
+
readonly id: {
|
|
832
|
+
type: "string";
|
|
833
|
+
optional: false;
|
|
834
|
+
customType: string;
|
|
835
|
+
};
|
|
836
|
+
readonly mimeType: {
|
|
837
|
+
type: "string";
|
|
838
|
+
optional: false;
|
|
839
|
+
customType: string;
|
|
840
|
+
} & {
|
|
841
|
+
serverName: string;
|
|
842
|
+
};
|
|
843
|
+
readonly status: {
|
|
844
|
+
type: "string";
|
|
845
|
+
optional: false;
|
|
846
|
+
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
847
|
+
} & {
|
|
848
|
+
serverName: string;
|
|
849
|
+
};
|
|
850
|
+
readonly totalSize: {
|
|
851
|
+
type: "number";
|
|
852
|
+
optional: false;
|
|
853
|
+
customType: number;
|
|
854
|
+
} & {
|
|
855
|
+
serverName: string;
|
|
856
|
+
};
|
|
857
|
+
};
|
|
858
|
+
primaryKey: readonly [string, ...string[]];
|
|
859
|
+
} & {
|
|
860
|
+
primaryKey: ["id"];
|
|
861
|
+
};
|
|
862
862
|
readonly thread: {
|
|
863
863
|
name: "thread";
|
|
864
864
|
columns: {
|
|
@@ -1211,13 +1211,13 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1211
1211
|
}];
|
|
1212
1212
|
drafts: [{
|
|
1213
1213
|
readonly sourceField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
|
|
1214
|
-
readonly destField: readonly ("type" | "status" | "id" | "
|
|
1214
|
+
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
1215
1215
|
readonly destSchema: "draft";
|
|
1216
1216
|
readonly cardinality: "many";
|
|
1217
1217
|
}];
|
|
1218
1218
|
pushNotificationTokens: [{
|
|
1219
1219
|
readonly sourceField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
|
|
1220
|
-
readonly destField: readonly ("
|
|
1220
|
+
readonly destField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
1221
1221
|
readonly destSchema: "userPushNotificationToken";
|
|
1222
1222
|
readonly cardinality: "many";
|
|
1223
1223
|
}];
|
|
@@ -1228,17 +1228,9 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1228
1228
|
readonly cardinality: "many";
|
|
1229
1229
|
}];
|
|
1230
1230
|
};
|
|
1231
|
-
readonly draftAttachment: {
|
|
1232
|
-
draft: [{
|
|
1233
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1234
|
-
readonly destField: readonly ("type" | "status" | "id" | "updatedAt" | "body" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "error" | "subject")[];
|
|
1235
|
-
readonly destSchema: "draft";
|
|
1236
|
-
readonly cardinality: "one";
|
|
1237
|
-
}];
|
|
1238
|
-
};
|
|
1239
1231
|
readonly userPushNotificationToken: {
|
|
1240
1232
|
user: [{
|
|
1241
|
-
readonly sourceField: readonly ("
|
|
1233
|
+
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
1242
1234
|
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
|
|
1243
1235
|
readonly destSchema: "user";
|
|
1244
1236
|
readonly cardinality: "one";
|
|
@@ -1261,7 +1253,7 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1261
1253
|
}];
|
|
1262
1254
|
drafts: [{
|
|
1263
1255
|
readonly sourceField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1264
|
-
readonly destField: readonly ("type" | "status" | "id" | "
|
|
1256
|
+
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
1265
1257
|
readonly destSchema: "draft";
|
|
1266
1258
|
readonly cardinality: "many";
|
|
1267
1259
|
}];
|
|
@@ -1307,11 +1299,11 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1307
1299
|
}];
|
|
1308
1300
|
threads: [{
|
|
1309
1301
|
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1310
|
-
readonly destField: readonly ("
|
|
1302
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1311
1303
|
readonly destSchema: "threadLabel";
|
|
1312
1304
|
readonly cardinality: "many";
|
|
1313
1305
|
}, {
|
|
1314
|
-
readonly sourceField: readonly ("
|
|
1306
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1315
1307
|
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1316
1308
|
readonly destSchema: "thread";
|
|
1317
1309
|
readonly cardinality: "many";
|
|
@@ -1319,24 +1311,32 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1319
1311
|
};
|
|
1320
1312
|
readonly draft: {
|
|
1321
1313
|
account: [{
|
|
1322
|
-
readonly sourceField: readonly ("type" | "status" | "id" | "
|
|
1314
|
+
readonly sourceField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
1323
1315
|
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1324
1316
|
readonly destSchema: "account";
|
|
1325
1317
|
readonly cardinality: "one";
|
|
1326
1318
|
}];
|
|
1327
1319
|
attachments: [{
|
|
1328
|
-
readonly sourceField: readonly ("type" | "status" | "id" | "
|
|
1320
|
+
readonly sourceField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
1329
1321
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1330
1322
|
readonly destSchema: "draftAttachment";
|
|
1331
1323
|
readonly cardinality: "many";
|
|
1332
1324
|
}];
|
|
1333
1325
|
user: [{
|
|
1334
|
-
readonly sourceField: readonly ("type" | "status" | "id" | "
|
|
1326
|
+
readonly sourceField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
1335
1327
|
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
|
|
1336
1328
|
readonly destSchema: "user";
|
|
1337
1329
|
readonly cardinality: "one";
|
|
1338
1330
|
}];
|
|
1339
1331
|
};
|
|
1332
|
+
readonly draftAttachment: {
|
|
1333
|
+
draft: [{
|
|
1334
|
+
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1335
|
+
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
1336
|
+
readonly destSchema: "draft";
|
|
1337
|
+
readonly cardinality: "one";
|
|
1338
|
+
}];
|
|
1339
|
+
};
|
|
1340
1340
|
readonly thread: {
|
|
1341
1341
|
account: [{
|
|
1342
1342
|
readonly sourceField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
@@ -1346,24 +1346,24 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1346
1346
|
}];
|
|
1347
1347
|
labels: [{
|
|
1348
1348
|
readonly sourceField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1349
|
-
readonly destField: readonly ("
|
|
1349
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1350
1350
|
readonly destSchema: "threadLabel";
|
|
1351
1351
|
readonly cardinality: "many";
|
|
1352
1352
|
}, {
|
|
1353
|
-
readonly sourceField: readonly ("
|
|
1353
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1354
1354
|
readonly destField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1355
1355
|
readonly destSchema: "accountLabel";
|
|
1356
1356
|
readonly cardinality: "many";
|
|
1357
1357
|
}];
|
|
1358
1358
|
messages: [{
|
|
1359
1359
|
readonly sourceField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1360
|
-
readonly destField: readonly ("
|
|
1360
|
+
readonly destField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1361
1361
|
readonly destSchema: "threadMessage";
|
|
1362
1362
|
readonly cardinality: "many";
|
|
1363
1363
|
}];
|
|
1364
1364
|
threadByLabel: [{
|
|
1365
1365
|
readonly sourceField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1366
|
-
readonly destField: readonly ("
|
|
1366
|
+
readonly destField: readonly ("latestMessageDate" | "labelId" | "threadId")[];
|
|
1367
1367
|
readonly destSchema: "threadByLabel";
|
|
1368
1368
|
readonly cardinality: "many";
|
|
1369
1369
|
}];
|
|
@@ -1376,19 +1376,19 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1376
1376
|
};
|
|
1377
1377
|
readonly threadLabel: {
|
|
1378
1378
|
label: [{
|
|
1379
|
-
readonly sourceField: readonly ("
|
|
1379
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1380
1380
|
readonly destField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1381
1381
|
readonly destSchema: "accountLabel";
|
|
1382
1382
|
readonly cardinality: "one";
|
|
1383
1383
|
}];
|
|
1384
1384
|
message: [{
|
|
1385
|
-
readonly sourceField: readonly ("
|
|
1386
|
-
readonly destField: readonly ("
|
|
1385
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1386
|
+
readonly destField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1387
1387
|
readonly destSchema: "threadMessage";
|
|
1388
1388
|
readonly cardinality: "one";
|
|
1389
1389
|
}];
|
|
1390
1390
|
thread: [{
|
|
1391
|
-
readonly sourceField: readonly ("
|
|
1391
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1392
1392
|
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1393
1393
|
readonly destSchema: "thread";
|
|
1394
1394
|
readonly cardinality: "one";
|
|
@@ -1396,13 +1396,13 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1396
1396
|
};
|
|
1397
1397
|
readonly threadByLabel: {
|
|
1398
1398
|
label: [{
|
|
1399
|
-
readonly sourceField: readonly ("
|
|
1399
|
+
readonly sourceField: readonly ("latestMessageDate" | "labelId" | "threadId")[];
|
|
1400
1400
|
readonly destField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1401
1401
|
readonly destSchema: "accountLabel";
|
|
1402
1402
|
readonly cardinality: "one";
|
|
1403
1403
|
}];
|
|
1404
1404
|
thread: [{
|
|
1405
|
-
readonly sourceField: readonly ("
|
|
1405
|
+
readonly sourceField: readonly ("latestMessageDate" | "labelId" | "threadId")[];
|
|
1406
1406
|
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1407
1407
|
readonly destSchema: "thread";
|
|
1408
1408
|
readonly cardinality: "one";
|
|
@@ -1410,30 +1410,30 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1410
1410
|
};
|
|
1411
1411
|
readonly threadMessage: {
|
|
1412
1412
|
attachments: [{
|
|
1413
|
-
readonly sourceField: readonly ("
|
|
1413
|
+
readonly sourceField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1414
1414
|
readonly destField: readonly ("id" | "fileName" | "mimeType" | "threadMessageId" | "size")[];
|
|
1415
1415
|
readonly destSchema: "threadMessageAttachment";
|
|
1416
1416
|
readonly cardinality: "many";
|
|
1417
1417
|
}];
|
|
1418
1418
|
labels: [{
|
|
1419
|
-
readonly sourceField: readonly ("
|
|
1420
|
-
readonly destField: readonly ("
|
|
1419
|
+
readonly sourceField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1420
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1421
1421
|
readonly destSchema: "threadLabel";
|
|
1422
1422
|
readonly cardinality: "many";
|
|
1423
1423
|
}, {
|
|
1424
|
-
readonly sourceField: readonly ("
|
|
1424
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1425
1425
|
readonly destField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1426
1426
|
readonly destSchema: "accountLabel";
|
|
1427
1427
|
readonly cardinality: "many";
|
|
1428
1428
|
}];
|
|
1429
1429
|
recipients: [{
|
|
1430
|
-
readonly sourceField: readonly ("
|
|
1430
|
+
readonly sourceField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1431
1431
|
readonly destField: readonly ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
1432
1432
|
readonly destSchema: "threadMessageRecipient";
|
|
1433
1433
|
readonly cardinality: "many";
|
|
1434
1434
|
}];
|
|
1435
1435
|
thread: [{
|
|
1436
|
-
readonly sourceField: readonly ("
|
|
1436
|
+
readonly sourceField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1437
1437
|
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1438
1438
|
readonly destSchema: "thread";
|
|
1439
1439
|
readonly cardinality: "one";
|
|
@@ -1442,7 +1442,7 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1442
1442
|
readonly threadMessageRecipient: {
|
|
1443
1443
|
message: [{
|
|
1444
1444
|
readonly sourceField: readonly ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
1445
|
-
readonly destField: readonly ("
|
|
1445
|
+
readonly destField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1446
1446
|
readonly destSchema: "threadMessage";
|
|
1447
1447
|
readonly cardinality: "one";
|
|
1448
1448
|
}];
|
|
@@ -1450,7 +1450,7 @@ export declare const mutators: import("@rocicorp/zero").MutatorRegistry<{
|
|
|
1450
1450
|
readonly threadMessageAttachment: {
|
|
1451
1451
|
message: [{
|
|
1452
1452
|
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "threadMessageId" | "size")[];
|
|
1453
|
-
readonly destField: readonly ("
|
|
1453
|
+
readonly destField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1454
1454
|
readonly destSchema: "threadMessage";
|
|
1455
1455
|
readonly cardinality: "one";
|
|
1456
1456
|
}];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mutators.d.ts","sourceRoot":"","sources":["../../src/zero/mutators.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"mutators.d.ts","sourceRoot":"","sources":["../../src/zero/mutators.ts"],"names":[],"mappings":"AASA,KAAK,OAAO,GAAG;IAAE,MAAM,EAAE,MAAM,CAAA;CAAE,CAAA;AAyGjC,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0iBnB,CAAA"}
|