@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/schema.d.ts
CHANGED
|
@@ -36,54 +36,6 @@ export declare const schema: {
|
|
|
36
36
|
} & {
|
|
37
37
|
primaryKey: ["id"];
|
|
38
38
|
};
|
|
39
|
-
readonly draftAttachment: {
|
|
40
|
-
name: "draftAttachment";
|
|
41
|
-
columns: {
|
|
42
|
-
readonly draftId: {
|
|
43
|
-
type: "string";
|
|
44
|
-
optional: false;
|
|
45
|
-
customType: string;
|
|
46
|
-
} & {
|
|
47
|
-
serverName: string;
|
|
48
|
-
};
|
|
49
|
-
readonly fileName: {
|
|
50
|
-
type: "string";
|
|
51
|
-
optional: false;
|
|
52
|
-
customType: string;
|
|
53
|
-
} & {
|
|
54
|
-
serverName: string;
|
|
55
|
-
};
|
|
56
|
-
readonly id: {
|
|
57
|
-
type: "string";
|
|
58
|
-
optional: false;
|
|
59
|
-
customType: string;
|
|
60
|
-
};
|
|
61
|
-
readonly mimeType: {
|
|
62
|
-
type: "string";
|
|
63
|
-
optional: false;
|
|
64
|
-
customType: string;
|
|
65
|
-
} & {
|
|
66
|
-
serverName: string;
|
|
67
|
-
};
|
|
68
|
-
readonly status: {
|
|
69
|
-
type: "string";
|
|
70
|
-
optional: false;
|
|
71
|
-
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
72
|
-
} & {
|
|
73
|
-
serverName: string;
|
|
74
|
-
};
|
|
75
|
-
readonly totalSize: {
|
|
76
|
-
type: "number";
|
|
77
|
-
optional: false;
|
|
78
|
-
customType: number;
|
|
79
|
-
} & {
|
|
80
|
-
serverName: string;
|
|
81
|
-
};
|
|
82
|
-
};
|
|
83
|
-
primaryKey: readonly [string, ...string[]];
|
|
84
|
-
} & {
|
|
85
|
-
primaryKey: ["id"];
|
|
86
|
-
};
|
|
87
39
|
readonly userPushNotificationToken: {
|
|
88
40
|
name: "userPushNotificationToken";
|
|
89
41
|
columns: {
|
|
@@ -421,6 +373,54 @@ export declare const schema: {
|
|
|
421
373
|
} & {
|
|
422
374
|
primaryKey: ["id"];
|
|
423
375
|
};
|
|
376
|
+
readonly draftAttachment: {
|
|
377
|
+
name: "draftAttachment";
|
|
378
|
+
columns: {
|
|
379
|
+
readonly draftId: {
|
|
380
|
+
type: "string";
|
|
381
|
+
optional: false;
|
|
382
|
+
customType: string;
|
|
383
|
+
} & {
|
|
384
|
+
serverName: string;
|
|
385
|
+
};
|
|
386
|
+
readonly fileName: {
|
|
387
|
+
type: "string";
|
|
388
|
+
optional: false;
|
|
389
|
+
customType: string;
|
|
390
|
+
} & {
|
|
391
|
+
serverName: string;
|
|
392
|
+
};
|
|
393
|
+
readonly id: {
|
|
394
|
+
type: "string";
|
|
395
|
+
optional: false;
|
|
396
|
+
customType: string;
|
|
397
|
+
};
|
|
398
|
+
readonly mimeType: {
|
|
399
|
+
type: "string";
|
|
400
|
+
optional: false;
|
|
401
|
+
customType: string;
|
|
402
|
+
} & {
|
|
403
|
+
serverName: string;
|
|
404
|
+
};
|
|
405
|
+
readonly status: {
|
|
406
|
+
type: "string";
|
|
407
|
+
optional: false;
|
|
408
|
+
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
409
|
+
} & {
|
|
410
|
+
serverName: string;
|
|
411
|
+
};
|
|
412
|
+
readonly totalSize: {
|
|
413
|
+
type: "number";
|
|
414
|
+
optional: false;
|
|
415
|
+
customType: number;
|
|
416
|
+
} & {
|
|
417
|
+
serverName: string;
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
primaryKey: readonly [string, ...string[]];
|
|
421
|
+
} & {
|
|
422
|
+
primaryKey: ["id"];
|
|
423
|
+
};
|
|
424
424
|
readonly thread: {
|
|
425
425
|
name: "thread";
|
|
426
426
|
columns: {
|
|
@@ -773,13 +773,13 @@ export declare const schema: {
|
|
|
773
773
|
}];
|
|
774
774
|
drafts: [{
|
|
775
775
|
readonly sourceField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
|
|
776
|
-
readonly destField: readonly ("type" | "status" | "id" | "
|
|
776
|
+
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
777
777
|
readonly destSchema: "draft";
|
|
778
778
|
readonly cardinality: "many";
|
|
779
779
|
}];
|
|
780
780
|
pushNotificationTokens: [{
|
|
781
781
|
readonly sourceField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
|
|
782
|
-
readonly destField: readonly ("
|
|
782
|
+
readonly destField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
783
783
|
readonly destSchema: "userPushNotificationToken";
|
|
784
784
|
readonly cardinality: "many";
|
|
785
785
|
}];
|
|
@@ -790,17 +790,9 @@ export declare const schema: {
|
|
|
790
790
|
readonly cardinality: "many";
|
|
791
791
|
}];
|
|
792
792
|
};
|
|
793
|
-
readonly draftAttachment: {
|
|
794
|
-
draft: [{
|
|
795
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
796
|
-
readonly destField: readonly ("type" | "status" | "id" | "updatedAt" | "body" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "error" | "subject")[];
|
|
797
|
-
readonly destSchema: "draft";
|
|
798
|
-
readonly cardinality: "one";
|
|
799
|
-
}];
|
|
800
|
-
};
|
|
801
793
|
readonly userPushNotificationToken: {
|
|
802
794
|
user: [{
|
|
803
|
-
readonly sourceField: readonly ("
|
|
795
|
+
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
804
796
|
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
|
|
805
797
|
readonly destSchema: "user";
|
|
806
798
|
readonly cardinality: "one";
|
|
@@ -823,7 +815,7 @@ export declare const schema: {
|
|
|
823
815
|
}];
|
|
824
816
|
drafts: [{
|
|
825
817
|
readonly sourceField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
826
|
-
readonly destField: readonly ("type" | "status" | "id" | "
|
|
818
|
+
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
827
819
|
readonly destSchema: "draft";
|
|
828
820
|
readonly cardinality: "many";
|
|
829
821
|
}];
|
|
@@ -869,11 +861,11 @@ export declare const schema: {
|
|
|
869
861
|
}];
|
|
870
862
|
threads: [{
|
|
871
863
|
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
872
|
-
readonly destField: readonly ("
|
|
864
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
873
865
|
readonly destSchema: "threadLabel";
|
|
874
866
|
readonly cardinality: "many";
|
|
875
867
|
}, {
|
|
876
|
-
readonly sourceField: readonly ("
|
|
868
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
877
869
|
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
878
870
|
readonly destSchema: "thread";
|
|
879
871
|
readonly cardinality: "many";
|
|
@@ -881,24 +873,32 @@ export declare const schema: {
|
|
|
881
873
|
};
|
|
882
874
|
readonly draft: {
|
|
883
875
|
account: [{
|
|
884
|
-
readonly sourceField: readonly ("type" | "status" | "id" | "
|
|
876
|
+
readonly sourceField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
885
877
|
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
886
878
|
readonly destSchema: "account";
|
|
887
879
|
readonly cardinality: "one";
|
|
888
880
|
}];
|
|
889
881
|
attachments: [{
|
|
890
|
-
readonly sourceField: readonly ("type" | "status" | "id" | "
|
|
882
|
+
readonly sourceField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
891
883
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
892
884
|
readonly destSchema: "draftAttachment";
|
|
893
885
|
readonly cardinality: "many";
|
|
894
886
|
}];
|
|
895
887
|
user: [{
|
|
896
|
-
readonly sourceField: readonly ("type" | "status" | "id" | "
|
|
888
|
+
readonly sourceField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
897
889
|
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name")[];
|
|
898
890
|
readonly destSchema: "user";
|
|
899
891
|
readonly cardinality: "one";
|
|
900
892
|
}];
|
|
901
893
|
};
|
|
894
|
+
readonly draftAttachment: {
|
|
895
|
+
draft: [{
|
|
896
|
+
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
897
|
+
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
898
|
+
readonly destSchema: "draft";
|
|
899
|
+
readonly cardinality: "one";
|
|
900
|
+
}];
|
|
901
|
+
};
|
|
902
902
|
readonly thread: {
|
|
903
903
|
account: [{
|
|
904
904
|
readonly sourceField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
@@ -908,24 +908,24 @@ export declare const schema: {
|
|
|
908
908
|
}];
|
|
909
909
|
labels: [{
|
|
910
910
|
readonly sourceField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
911
|
-
readonly destField: readonly ("
|
|
911
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
912
912
|
readonly destSchema: "threadLabel";
|
|
913
913
|
readonly cardinality: "many";
|
|
914
914
|
}, {
|
|
915
|
-
readonly sourceField: readonly ("
|
|
915
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
916
916
|
readonly destField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
917
917
|
readonly destSchema: "accountLabel";
|
|
918
918
|
readonly cardinality: "many";
|
|
919
919
|
}];
|
|
920
920
|
messages: [{
|
|
921
921
|
readonly sourceField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
922
|
-
readonly destField: readonly ("
|
|
922
|
+
readonly destField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
923
923
|
readonly destSchema: "threadMessage";
|
|
924
924
|
readonly cardinality: "many";
|
|
925
925
|
}];
|
|
926
926
|
threadByLabel: [{
|
|
927
927
|
readonly sourceField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
928
|
-
readonly destField: readonly ("
|
|
928
|
+
readonly destField: readonly ("latestMessageDate" | "labelId" | "threadId")[];
|
|
929
929
|
readonly destSchema: "threadByLabel";
|
|
930
930
|
readonly cardinality: "many";
|
|
931
931
|
}];
|
|
@@ -938,19 +938,19 @@ export declare const schema: {
|
|
|
938
938
|
};
|
|
939
939
|
readonly threadLabel: {
|
|
940
940
|
label: [{
|
|
941
|
-
readonly sourceField: readonly ("
|
|
941
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
942
942
|
readonly destField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
943
943
|
readonly destSchema: "accountLabel";
|
|
944
944
|
readonly cardinality: "one";
|
|
945
945
|
}];
|
|
946
946
|
message: [{
|
|
947
|
-
readonly sourceField: readonly ("
|
|
948
|
-
readonly destField: readonly ("
|
|
947
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
948
|
+
readonly destField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
949
949
|
readonly destSchema: "threadMessage";
|
|
950
950
|
readonly cardinality: "one";
|
|
951
951
|
}];
|
|
952
952
|
thread: [{
|
|
953
|
-
readonly sourceField: readonly ("
|
|
953
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
954
954
|
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
955
955
|
readonly destSchema: "thread";
|
|
956
956
|
readonly cardinality: "one";
|
|
@@ -958,13 +958,13 @@ export declare const schema: {
|
|
|
958
958
|
};
|
|
959
959
|
readonly threadByLabel: {
|
|
960
960
|
label: [{
|
|
961
|
-
readonly sourceField: readonly ("
|
|
961
|
+
readonly sourceField: readonly ("latestMessageDate" | "labelId" | "threadId")[];
|
|
962
962
|
readonly destField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
963
963
|
readonly destSchema: "accountLabel";
|
|
964
964
|
readonly cardinality: "one";
|
|
965
965
|
}];
|
|
966
966
|
thread: [{
|
|
967
|
-
readonly sourceField: readonly ("
|
|
967
|
+
readonly sourceField: readonly ("latestMessageDate" | "labelId" | "threadId")[];
|
|
968
968
|
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
969
969
|
readonly destSchema: "thread";
|
|
970
970
|
readonly cardinality: "one";
|
|
@@ -972,30 +972,30 @@ export declare const schema: {
|
|
|
972
972
|
};
|
|
973
973
|
readonly threadMessage: {
|
|
974
974
|
attachments: [{
|
|
975
|
-
readonly sourceField: readonly ("
|
|
975
|
+
readonly sourceField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
976
976
|
readonly destField: readonly ("id" | "fileName" | "mimeType" | "threadMessageId" | "size")[];
|
|
977
977
|
readonly destSchema: "threadMessageAttachment";
|
|
978
978
|
readonly cardinality: "many";
|
|
979
979
|
}];
|
|
980
980
|
labels: [{
|
|
981
|
-
readonly sourceField: readonly ("
|
|
982
|
-
readonly destField: readonly ("
|
|
981
|
+
readonly sourceField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
982
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
983
983
|
readonly destSchema: "threadLabel";
|
|
984
984
|
readonly cardinality: "many";
|
|
985
985
|
}, {
|
|
986
|
-
readonly sourceField: readonly ("
|
|
986
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
987
987
|
readonly destField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
988
988
|
readonly destSchema: "accountLabel";
|
|
989
989
|
readonly cardinality: "many";
|
|
990
990
|
}];
|
|
991
991
|
recipients: [{
|
|
992
|
-
readonly sourceField: readonly ("
|
|
992
|
+
readonly sourceField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
993
993
|
readonly destField: readonly ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
994
994
|
readonly destSchema: "threadMessageRecipient";
|
|
995
995
|
readonly cardinality: "many";
|
|
996
996
|
}];
|
|
997
997
|
thread: [{
|
|
998
|
-
readonly sourceField: readonly ("
|
|
998
|
+
readonly sourceField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
999
999
|
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1000
1000
|
readonly destSchema: "thread";
|
|
1001
1001
|
readonly cardinality: "one";
|
|
@@ -1004,7 +1004,7 @@ export declare const schema: {
|
|
|
1004
1004
|
readonly threadMessageRecipient: {
|
|
1005
1005
|
message: [{
|
|
1006
1006
|
readonly sourceField: readonly ("type" | "id" | "name" | "emailAddress" | "threadMessageId")[];
|
|
1007
|
-
readonly destField: readonly ("
|
|
1007
|
+
readonly destField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1008
1008
|
readonly destSchema: "threadMessage";
|
|
1009
1009
|
readonly cardinality: "one";
|
|
1010
1010
|
}];
|
|
@@ -1012,7 +1012,7 @@ export declare const schema: {
|
|
|
1012
1012
|
readonly threadMessageAttachment: {
|
|
1013
1013
|
message: [{
|
|
1014
1014
|
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "threadMessageId" | "size")[];
|
|
1015
|
-
readonly destField: readonly ("
|
|
1015
|
+
readonly destField: readonly ("id" | "accountId" | "previewText" | "senderEmail" | "senderName" | "threadId" | "envelopeDate" | "envelopeSubject")[];
|
|
1016
1016
|
readonly destSchema: "threadMessage";
|
|
1017
1017
|
readonly cardinality: "one";
|
|
1018
1018
|
}];
|
|
@@ -1021,7 +1021,6 @@ export declare const schema: {
|
|
|
1021
1021
|
enableLegacyQueries: boolean | undefined;
|
|
1022
1022
|
enableLegacyMutators: false;
|
|
1023
1023
|
};
|
|
1024
|
-
export type MarcoZeroSchema = typeof schema;
|
|
1025
1024
|
export declare const tables: {
|
|
1026
1025
|
readonly account: import("@rocicorp/zero").TableBuilderWithColumns<{
|
|
1027
1026
|
name: "account";
|
|
@@ -1780,13 +1779,4 @@ export declare const tables: {
|
|
|
1780
1779
|
primaryKey: ["id"];
|
|
1781
1780
|
}>;
|
|
1782
1781
|
};
|
|
1783
|
-
export type MarcoZeroContext = {
|
|
1784
|
-
userId: string;
|
|
1785
|
-
};
|
|
1786
|
-
declare module '@rocicorp/zero' {
|
|
1787
|
-
interface DefaultTypes {
|
|
1788
|
-
schema: typeof schema;
|
|
1789
|
-
context: MarcoZeroContext;
|
|
1790
|
-
}
|
|
1791
|
-
}
|
|
1792
1782
|
//# sourceMappingURL=schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/zero/schema.ts"],"names":[],"mappings":"AA0bA,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/zero/schema.ts"],"names":[],"mappings":"AA0bA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAjWJ,MAAM;4BACX,MAAM,EAAE;4BACR,MAAM,EAAE;6BACP,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgYjB,CAAA;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BArYJ,MAAM;wBACX,MAAM,EAAE;wBACR,MAAM,EAAE;yBACP,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiZT,CAAA"}
|