@marcoappio/marco-config 2.0.535 → 2.0.537
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/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/marcoPublicConfig.d.ts +5 -0
- package/dist/marcoPublicConfig.d.ts.map +1 -1
- package/dist/marcoPublicConfig.js +15 -0
- package/dist/schemas/boolean.d.ts +5 -0
- package/dist/schemas/boolean.d.ts.map +1 -0
- package/dist/schemas/boolean.js +4 -0
- package/dist/schemas/index.d.ts +257 -0
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +23 -0
- package/dist/schemas/models/account.d.ts +54 -0
- package/dist/schemas/models/account.d.ts.map +1 -0
- package/dist/schemas/models/account.js +33 -0
- package/dist/schemas/models/contact.d.ts +9 -0
- package/dist/schemas/models/contact.d.ts.map +1 -0
- package/dist/schemas/models/contact.js +8 -0
- package/dist/schemas/models/draft.d.ts +48 -0
- package/dist/schemas/models/draft.d.ts.map +1 -0
- package/dist/schemas/models/draft.js +35 -0
- package/dist/schemas/models/index.d.ts +6 -0
- package/dist/schemas/models/index.d.ts.map +1 -0
- package/dist/schemas/models/index.js +5 -0
- package/dist/schemas/models/thread.d.ts +122 -0
- package/dist/schemas/models/thread.d.ts.map +1 -0
- package/dist/schemas/models/thread.js +55 -0
- package/dist/schemas/models/user.d.ts +35 -0
- package/dist/schemas/models/user.d.ts.map +1 -0
- package/dist/schemas/models/user.js +24 -0
- package/dist/schemas/number.d.ts +2 -0
- package/dist/schemas/number.d.ts.map +1 -1
- package/dist/schemas/number.js +2 -0
- package/dist/schemas/paginatedResponse.d.ts +10 -0
- package/dist/schemas/paginatedResponse.d.ts.map +1 -0
- package/dist/schemas/paginatedResponse.js +5 -0
- package/dist/schemas/websocket.d.ts +12 -0
- package/dist/schemas/websocket.d.ts.map +1 -0
- package/dist/schemas/websocket.js +9 -0
- package/dist/sdk/endpoints/index.d.ts +14 -0
- package/dist/sdk/endpoints/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +14 -0
- package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.js +4 -0
- package/dist/sdk/endpoints/private/models/account/getAccounts.d.ts +68 -0
- package/dist/sdk/endpoints/private/models/account/getAccounts.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/account/getAccounts.js +26 -0
- package/dist/sdk/endpoints/private/models/account/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/account/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/account/index.js +1 -0
- package/dist/sdk/endpoints/private/models/contact/getContacts.d.ts +41 -0
- package/dist/sdk/endpoints/private/models/contact/getContacts.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/contact/getContacts.js +26 -0
- package/dist/sdk/endpoints/private/models/contact/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/contact/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/contact/index.js +1 -0
- package/dist/sdk/endpoints/private/models/draft/getDrafts.d.ts +62 -0
- package/dist/sdk/endpoints/private/models/draft/getDrafts.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/draft/getDrafts.js +25 -0
- package/dist/sdk/endpoints/private/models/draft/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/draft/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/draft/index.js +1 -0
- package/dist/sdk/endpoints/private/models/index.d.ts +15 -0
- package/dist/sdk/endpoints/private/models/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/index.js +14 -0
- package/dist/sdk/endpoints/private/models/label/getLabels.d.ts +44 -0
- package/dist/sdk/endpoints/private/models/label/getLabels.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/label/getLabels.js +27 -0
- package/dist/sdk/endpoints/private/models/label/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/label/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/label/index.js +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThread.d.ts +62 -0
- package/dist/sdk/endpoints/private/models/thread/getThread.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThread.js +17 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadByMessageId.d.ts +62 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadByMessageId.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadByMessageId.js +17 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadList.d.ts +55 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadList.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThreadList.js +30 -0
- package/dist/sdk/endpoints/private/models/thread/getThreads.d.ts +75 -0
- package/dist/sdk/endpoints/private/models/thread/getThreads.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/getThreads.js +25 -0
- package/dist/sdk/endpoints/private/models/thread/index.d.ts +5 -0
- package/dist/sdk/endpoints/private/models/thread/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/thread/index.js +4 -0
- package/dist/sdk/endpoints/private/models/user/getUser.d.ts +33 -0
- package/dist/sdk/endpoints/private/models/user/getUser.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/user/getUser.js +16 -0
- package/dist/sdk/endpoints/private/models/user/index.d.ts +2 -0
- package/dist/sdk/endpoints/private/models/user/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/models/user/index.js +1 -0
- package/dist/sdk/endpoints/private/mutations/account/createAccount.d.ts +35 -0
- package/dist/sdk/endpoints/private/mutations/account/createAccount.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/createAccount.js +18 -0
- package/dist/sdk/endpoints/private/mutations/account/createAlias.d.ts +42 -0
- package/dist/sdk/endpoints/private/mutations/account/createAlias.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/createAlias.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAccount.d.ts +27 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAccount.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAccount.js +18 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAlias.d.ts +33 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAlias.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/deleteAlias.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/index.d.ts +10 -0
- package/dist/sdk/endpoints/private/mutations/account/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/index.js +9 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasName.d.ts +44 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasName.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasName.js +20 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasPrimary.d.ts +33 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasPrimary.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setAliasPrimary.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigImap.d.ts +49 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigImap.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigImap.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigOauth.d.ts +42 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigOauth.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigOauth.js +19 -0
- package/dist/sdk/endpoints/private/mutations/account/setSettings.d.ts +39 -0
- package/dist/sdk/endpoints/private/mutations/account/setSettings.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/account/setSettings.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/cancelSend.d.ts +28 -0
- package/dist/sdk/endpoints/private/mutations/draft/cancelSend.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/cancelSend.js +18 -0
- package/dist/sdk/endpoints/private/mutations/draft/createAttachment.d.ts +45 -0
- package/dist/sdk/endpoints/private/mutations/draft/createAttachment.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/createAttachment.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/createDraft.d.ts +60 -0
- package/dist/sdk/endpoints/private/mutations/draft/createDraft.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/createDraft.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteAttachment.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteAttachment.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteAttachment.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteDraft.d.ts +27 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteDraft.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/deleteDraft.js +18 -0
- package/dist/sdk/endpoints/private/mutations/draft/index.d.ts +10 -0
- package/dist/sdk/endpoints/private/mutations/draft/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/index.js +9 -0
- package/dist/sdk/endpoints/private/mutations/draft/scheduleSend.d.ts +45 -0
- package/dist/sdk/endpoints/private/mutations/draft/scheduleSend.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/scheduleSend.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/setContent.d.ts +43 -0
- package/dist/sdk/endpoints/private/mutations/draft/setContent.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/setContent.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/setEnvelope.d.ts +85 -0
- package/dist/sdk/endpoints/private/mutations/draft/setEnvelope.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/setEnvelope.js +19 -0
- package/dist/sdk/endpoints/private/mutations/draft/setFrom.d.ts +47 -0
- package/dist/sdk/endpoints/private/mutations/draft/setFrom.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/draft/setFrom.js +20 -0
- package/dist/sdk/endpoints/private/mutations/index.d.ts +11 -0
- package/dist/sdk/endpoints/private/mutations/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/index.js +10 -0
- package/dist/sdk/endpoints/private/mutations/thread/addLabel.d.ts +40 -0
- package/dist/sdk/endpoints/private/mutations/thread/addLabel.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/addLabel.js +19 -0
- package/dist/sdk/endpoints/private/mutations/thread/deleteThreads.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/deleteThreads.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/deleteThreads.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/index.d.ts +10 -0
- package/dist/sdk/endpoints/private/mutations/thread/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/index.js +9 -0
- package/dist/sdk/endpoints/private/mutations/thread/removeLabel.d.ts +40 -0
- package/dist/sdk/endpoints/private/mutations/thread/removeLabel.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/removeLabel.js +19 -0
- package/dist/sdk/endpoints/private/mutations/thread/setArchive.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/setArchive.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setArchive.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setFlagged.d.ts +35 -0
- package/dist/sdk/endpoints/private/mutations/thread/setFlagged.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setFlagged.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setInbox.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/setInbox.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setInbox.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSeen.d.ts +35 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSeen.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSeen.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSpam.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSpam.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setSpam.js +18 -0
- package/dist/sdk/endpoints/private/mutations/thread/setTrash.d.ts +34 -0
- package/dist/sdk/endpoints/private/mutations/thread/setTrash.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/thread/setTrash.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/createView.d.ts +38 -0
- package/dist/sdk/endpoints/private/mutations/user/createView.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/createView.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/deletePushToken.d.ts +23 -0
- package/dist/sdk/endpoints/private/mutations/user/deletePushToken.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/deletePushToken.js +17 -0
- package/dist/sdk/endpoints/private/mutations/user/deleteView.d.ts +28 -0
- package/dist/sdk/endpoints/private/mutations/user/deleteView.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/deleteView.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/index.d.ts +7 -0
- package/dist/sdk/endpoints/private/mutations/user/index.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/index.js +6 -0
- package/dist/sdk/endpoints/private/mutations/user/setPushToken.d.ts +37 -0
- package/dist/sdk/endpoints/private/mutations/user/setPushToken.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/setPushToken.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/setSettingsName.d.ts +33 -0
- package/dist/sdk/endpoints/private/mutations/user/setSettingsName.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/setSettingsName.js +18 -0
- package/dist/sdk/endpoints/private/mutations/user/updateView.d.ts +43 -0
- package/dist/sdk/endpoints/private/mutations/user/updateView.d.ts.map +1 -0
- package/dist/sdk/endpoints/private/mutations/user/updateView.js +19 -0
- package/dist/sdk/index.d.ts +50 -0
- package/dist/sdk/index.d.ts.map +1 -1
- package/dist/sdk/validation/errors.d.ts +72 -0
- package/dist/sdk/validation/errors.d.ts.map +1 -1
- package/dist/sdk/validation/errors.js +30 -0
- package/dist/sdk/validation/index.d.ts +36 -0
- package/dist/sdk/validation/index.d.ts.map +1 -1
- package/dist/types/PokeEvent.d.ts +6 -0
- package/dist/types/PokeEvent.d.ts.map +1 -0
- package/dist/types/PokeEvent.js +1 -0
- package/dist/types/SDKError.d.ts +1 -1
- package/dist/types/SDKError.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -0
- package/dist/zero/index.d.ts +935 -925
- package/dist/zero/index.d.ts.map +1 -1
- package/dist/zero/index.js +1 -0
- package/dist/zero/mutatorSchemas.d.ts +1 -1
- package/dist/zero/mutators.d.ts +281 -281
- package/dist/zero/queries.d.ts +290 -282
- package/dist/zero/queries.d.ts.map +1 -1
- package/dist/zero/queries.js +14 -8
- package/dist/zero/schema.d.ts +281 -281
- package/dist/zero/schema.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/zero/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { mutatorSchemas } from './mutatorSchemas';
|
|
2
|
+
export { mutatorSchemas };
|
|
1
3
|
export declare const marcoZero: {
|
|
2
4
|
readonly mutatorSchemas: {
|
|
3
5
|
account: {
|
|
@@ -137,7 +139,7 @@ export declare const marcoZero: {
|
|
|
137
139
|
readonly content: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 384000, undefined>]>;
|
|
138
140
|
readonly subject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
139
141
|
readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RfcEmailAction<string, undefined>]>, undefined>, undefined>;
|
|
140
|
-
}, undefined>, "~
|
|
142
|
+
}, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
|
|
141
143
|
readonly entries: Omit<{
|
|
142
144
|
readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RfcEmailAction<string, undefined>]>, undefined>, undefined>;
|
|
143
145
|
readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").RfcEmailAction<string, undefined>]>, undefined>, undefined>;
|
|
@@ -872,72 +874,6 @@ export declare const marcoZero: {
|
|
|
872
874
|
} & {
|
|
873
875
|
primaryKey: ["id"];
|
|
874
876
|
};
|
|
875
|
-
readonly userPushNotificationToken: {
|
|
876
|
-
name: "userPushNotificationToken";
|
|
877
|
-
columns: {
|
|
878
|
-
readonly createdAt: {
|
|
879
|
-
type: "number";
|
|
880
|
-
optional: false;
|
|
881
|
-
customType: number;
|
|
882
|
-
} & {
|
|
883
|
-
serverName: string;
|
|
884
|
-
};
|
|
885
|
-
readonly id: {
|
|
886
|
-
type: "string";
|
|
887
|
-
optional: false;
|
|
888
|
-
customType: string;
|
|
889
|
-
};
|
|
890
|
-
readonly token: {
|
|
891
|
-
type: "string";
|
|
892
|
-
optional: false;
|
|
893
|
-
customType: string;
|
|
894
|
-
};
|
|
895
|
-
readonly userId: {
|
|
896
|
-
type: "string";
|
|
897
|
-
optional: false;
|
|
898
|
-
customType: string;
|
|
899
|
-
} & {
|
|
900
|
-
serverName: string;
|
|
901
|
-
};
|
|
902
|
-
};
|
|
903
|
-
primaryKey: readonly [string, ...string[]];
|
|
904
|
-
} & {
|
|
905
|
-
primaryKey: ["id"];
|
|
906
|
-
};
|
|
907
|
-
readonly contact: {
|
|
908
|
-
name: "contact";
|
|
909
|
-
columns: {
|
|
910
|
-
readonly emailAddress: {
|
|
911
|
-
type: "string";
|
|
912
|
-
optional: false;
|
|
913
|
-
customType: string;
|
|
914
|
-
} & {
|
|
915
|
-
serverName: string;
|
|
916
|
-
};
|
|
917
|
-
readonly id: {
|
|
918
|
-
type: "string";
|
|
919
|
-
optional: false;
|
|
920
|
-
customType: string;
|
|
921
|
-
};
|
|
922
|
-
readonly name: Omit<{
|
|
923
|
-
type: "string";
|
|
924
|
-
optional: false;
|
|
925
|
-
customType: string;
|
|
926
|
-
}, "optional"> & {
|
|
927
|
-
optional: true;
|
|
928
|
-
};
|
|
929
|
-
readonly userId: {
|
|
930
|
-
type: "string";
|
|
931
|
-
optional: false;
|
|
932
|
-
customType: string;
|
|
933
|
-
} & {
|
|
934
|
-
serverName: string;
|
|
935
|
-
};
|
|
936
|
-
};
|
|
937
|
-
primaryKey: readonly [string, ...string[]];
|
|
938
|
-
} & {
|
|
939
|
-
primaryKey: ["id"];
|
|
940
|
-
};
|
|
941
877
|
readonly account: {
|
|
942
878
|
name: "account";
|
|
943
879
|
columns: {
|
|
@@ -1002,16 +938,9 @@ export declare const marcoZero: {
|
|
|
1002
938
|
} & {
|
|
1003
939
|
primaryKey: ["id"];
|
|
1004
940
|
};
|
|
1005
|
-
readonly
|
|
1006
|
-
name: "
|
|
941
|
+
readonly contact: {
|
|
942
|
+
name: "contact";
|
|
1007
943
|
columns: {
|
|
1008
|
-
readonly accountId: {
|
|
1009
|
-
type: "string";
|
|
1010
|
-
optional: false;
|
|
1011
|
-
customType: string;
|
|
1012
|
-
} & {
|
|
1013
|
-
serverName: string;
|
|
1014
|
-
};
|
|
1015
944
|
readonly emailAddress: {
|
|
1016
945
|
type: "string";
|
|
1017
946
|
optional: false;
|
|
@@ -1024,40 +953,6 @@ export declare const marcoZero: {
|
|
|
1024
953
|
optional: false;
|
|
1025
954
|
customType: string;
|
|
1026
955
|
};
|
|
1027
|
-
readonly isPrimary: {
|
|
1028
|
-
type: "boolean";
|
|
1029
|
-
optional: false;
|
|
1030
|
-
customType: boolean;
|
|
1031
|
-
} & {
|
|
1032
|
-
serverName: string;
|
|
1033
|
-
};
|
|
1034
|
-
readonly name: Omit<{
|
|
1035
|
-
type: "string";
|
|
1036
|
-
optional: false;
|
|
1037
|
-
customType: string;
|
|
1038
|
-
}, "optional"> & {
|
|
1039
|
-
optional: true;
|
|
1040
|
-
};
|
|
1041
|
-
};
|
|
1042
|
-
primaryKey: readonly [string, ...string[]];
|
|
1043
|
-
} & {
|
|
1044
|
-
primaryKey: ["id"];
|
|
1045
|
-
};
|
|
1046
|
-
readonly accountLabel: {
|
|
1047
|
-
name: "accountLabel";
|
|
1048
|
-
columns: {
|
|
1049
|
-
readonly accountId: {
|
|
1050
|
-
type: "string";
|
|
1051
|
-
optional: false;
|
|
1052
|
-
customType: string;
|
|
1053
|
-
} & {
|
|
1054
|
-
serverName: string;
|
|
1055
|
-
};
|
|
1056
|
-
readonly id: {
|
|
1057
|
-
type: "string";
|
|
1058
|
-
optional: false;
|
|
1059
|
-
customType: string;
|
|
1060
|
-
};
|
|
1061
956
|
readonly name: Omit<{
|
|
1062
957
|
type: "string";
|
|
1063
958
|
optional: false;
|
|
@@ -1065,31 +960,10 @@ export declare const marcoZero: {
|
|
|
1065
960
|
}, "optional"> & {
|
|
1066
961
|
optional: true;
|
|
1067
962
|
};
|
|
1068
|
-
readonly
|
|
963
|
+
readonly userId: {
|
|
1069
964
|
type: "string";
|
|
1070
965
|
optional: false;
|
|
1071
966
|
customType: string;
|
|
1072
|
-
};
|
|
1073
|
-
readonly specialUse: Omit<{
|
|
1074
|
-
type: "string";
|
|
1075
|
-
optional: false;
|
|
1076
|
-
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
1077
|
-
}, "optional"> & {
|
|
1078
|
-
optional: true;
|
|
1079
|
-
} & {
|
|
1080
|
-
serverName: string;
|
|
1081
|
-
};
|
|
1082
|
-
readonly uidValidity: {
|
|
1083
|
-
type: "number";
|
|
1084
|
-
optional: false;
|
|
1085
|
-
customType: number;
|
|
1086
|
-
} & {
|
|
1087
|
-
serverName: string;
|
|
1088
|
-
};
|
|
1089
|
-
readonly unreadCount: {
|
|
1090
|
-
type: "number";
|
|
1091
|
-
optional: false;
|
|
1092
|
-
customType: number;
|
|
1093
967
|
} & {
|
|
1094
968
|
serverName: string;
|
|
1095
969
|
};
|
|
@@ -1209,54 +1083,6 @@ export declare const marcoZero: {
|
|
|
1209
1083
|
} & {
|
|
1210
1084
|
primaryKey: ["id"];
|
|
1211
1085
|
};
|
|
1212
|
-
readonly draftAttachment: {
|
|
1213
|
-
name: "draftAttachment";
|
|
1214
|
-
columns: {
|
|
1215
|
-
readonly draftId: {
|
|
1216
|
-
type: "string";
|
|
1217
|
-
optional: false;
|
|
1218
|
-
customType: string;
|
|
1219
|
-
} & {
|
|
1220
|
-
serverName: string;
|
|
1221
|
-
};
|
|
1222
|
-
readonly fileName: {
|
|
1223
|
-
type: "string";
|
|
1224
|
-
optional: false;
|
|
1225
|
-
customType: string;
|
|
1226
|
-
} & {
|
|
1227
|
-
serverName: string;
|
|
1228
|
-
};
|
|
1229
|
-
readonly id: {
|
|
1230
|
-
type: "string";
|
|
1231
|
-
optional: false;
|
|
1232
|
-
customType: string;
|
|
1233
|
-
};
|
|
1234
|
-
readonly mimeType: {
|
|
1235
|
-
type: "string";
|
|
1236
|
-
optional: false;
|
|
1237
|
-
customType: string;
|
|
1238
|
-
} & {
|
|
1239
|
-
serverName: string;
|
|
1240
|
-
};
|
|
1241
|
-
readonly status: {
|
|
1242
|
-
type: "string";
|
|
1243
|
-
optional: false;
|
|
1244
|
-
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
1245
|
-
} & {
|
|
1246
|
-
serverName: string;
|
|
1247
|
-
};
|
|
1248
|
-
readonly totalSize: {
|
|
1249
|
-
type: "number";
|
|
1250
|
-
optional: false;
|
|
1251
|
-
customType: number;
|
|
1252
|
-
} & {
|
|
1253
|
-
serverName: string;
|
|
1254
|
-
};
|
|
1255
|
-
};
|
|
1256
|
-
primaryKey: readonly [string, ...string[]];
|
|
1257
|
-
} & {
|
|
1258
|
-
primaryKey: ["id"];
|
|
1259
|
-
};
|
|
1260
1086
|
readonly thread: {
|
|
1261
1087
|
name: "thread";
|
|
1262
1088
|
columns: {
|
|
@@ -1364,92 +1190,81 @@ export declare const marcoZero: {
|
|
|
1364
1190
|
} & {
|
|
1365
1191
|
primaryKey: ["id"];
|
|
1366
1192
|
};
|
|
1367
|
-
readonly
|
|
1368
|
-
name: "
|
|
1193
|
+
readonly userPushNotificationToken: {
|
|
1194
|
+
name: "userPushNotificationToken";
|
|
1369
1195
|
columns: {
|
|
1370
|
-
readonly
|
|
1371
|
-
type: "string";
|
|
1372
|
-
optional: false;
|
|
1373
|
-
customType: string;
|
|
1374
|
-
} & {
|
|
1375
|
-
serverName: string;
|
|
1376
|
-
};
|
|
1377
|
-
readonly labelId: {
|
|
1378
|
-
type: "string";
|
|
1379
|
-
optional: false;
|
|
1380
|
-
customType: string;
|
|
1381
|
-
} & {
|
|
1382
|
-
serverName: string;
|
|
1383
|
-
};
|
|
1384
|
-
readonly lastSyncedAt: {
|
|
1196
|
+
readonly createdAt: {
|
|
1385
1197
|
type: "number";
|
|
1386
1198
|
optional: false;
|
|
1387
1199
|
customType: number;
|
|
1388
1200
|
} & {
|
|
1389
1201
|
serverName: string;
|
|
1390
1202
|
};
|
|
1391
|
-
readonly
|
|
1203
|
+
readonly id: {
|
|
1392
1204
|
type: "string";
|
|
1393
1205
|
optional: false;
|
|
1394
1206
|
customType: string;
|
|
1395
|
-
} & {
|
|
1396
|
-
serverName: string;
|
|
1397
1207
|
};
|
|
1398
|
-
readonly
|
|
1208
|
+
readonly token: {
|
|
1399
1209
|
type: "string";
|
|
1400
1210
|
optional: false;
|
|
1401
1211
|
customType: string;
|
|
1402
|
-
} & {
|
|
1403
|
-
serverName: string;
|
|
1404
|
-
};
|
|
1405
|
-
readonly uid: {
|
|
1406
|
-
type: "number";
|
|
1407
|
-
optional: false;
|
|
1408
|
-
customType: number;
|
|
1409
1212
|
};
|
|
1410
|
-
readonly
|
|
1411
|
-
type: "
|
|
1213
|
+
readonly userId: {
|
|
1214
|
+
type: "string";
|
|
1412
1215
|
optional: false;
|
|
1413
|
-
customType:
|
|
1216
|
+
customType: string;
|
|
1414
1217
|
} & {
|
|
1415
1218
|
serverName: string;
|
|
1416
1219
|
};
|
|
1417
1220
|
};
|
|
1418
1221
|
primaryKey: readonly [string, ...string[]];
|
|
1419
1222
|
} & {
|
|
1420
|
-
primaryKey: ["
|
|
1223
|
+
primaryKey: ["id"];
|
|
1421
1224
|
};
|
|
1422
|
-
readonly
|
|
1423
|
-
name: "
|
|
1225
|
+
readonly accountAlias: {
|
|
1226
|
+
name: "accountAlias";
|
|
1424
1227
|
columns: {
|
|
1425
|
-
readonly
|
|
1228
|
+
readonly accountId: {
|
|
1426
1229
|
type: "string";
|
|
1427
1230
|
optional: false;
|
|
1428
1231
|
customType: string;
|
|
1429
1232
|
} & {
|
|
1430
1233
|
serverName: string;
|
|
1431
1234
|
};
|
|
1432
|
-
readonly
|
|
1433
|
-
type: "
|
|
1235
|
+
readonly emailAddress: {
|
|
1236
|
+
type: "string";
|
|
1434
1237
|
optional: false;
|
|
1435
|
-
customType:
|
|
1238
|
+
customType: string;
|
|
1436
1239
|
} & {
|
|
1437
1240
|
serverName: string;
|
|
1438
1241
|
};
|
|
1439
|
-
readonly
|
|
1242
|
+
readonly id: {
|
|
1440
1243
|
type: "string";
|
|
1441
1244
|
optional: false;
|
|
1442
1245
|
customType: string;
|
|
1246
|
+
};
|
|
1247
|
+
readonly isPrimary: {
|
|
1248
|
+
type: "boolean";
|
|
1249
|
+
optional: false;
|
|
1250
|
+
customType: boolean;
|
|
1443
1251
|
} & {
|
|
1444
1252
|
serverName: string;
|
|
1445
1253
|
};
|
|
1254
|
+
readonly name: Omit<{
|
|
1255
|
+
type: "string";
|
|
1256
|
+
optional: false;
|
|
1257
|
+
customType: string;
|
|
1258
|
+
}, "optional"> & {
|
|
1259
|
+
optional: true;
|
|
1260
|
+
};
|
|
1446
1261
|
};
|
|
1447
1262
|
primaryKey: readonly [string, ...string[]];
|
|
1448
1263
|
} & {
|
|
1449
|
-
primaryKey: ["
|
|
1264
|
+
primaryKey: ["id"];
|
|
1450
1265
|
};
|
|
1451
|
-
readonly
|
|
1452
|
-
name: "
|
|
1266
|
+
readonly accountLabel: {
|
|
1267
|
+
name: "accountLabel";
|
|
1453
1268
|
columns: {
|
|
1454
1269
|
readonly accountId: {
|
|
1455
1270
|
type: "string";
|
|
@@ -1458,7 +1273,194 @@ export declare const marcoZero: {
|
|
|
1458
1273
|
} & {
|
|
1459
1274
|
serverName: string;
|
|
1460
1275
|
};
|
|
1461
|
-
readonly
|
|
1276
|
+
readonly id: {
|
|
1277
|
+
type: "string";
|
|
1278
|
+
optional: false;
|
|
1279
|
+
customType: string;
|
|
1280
|
+
};
|
|
1281
|
+
readonly name: Omit<{
|
|
1282
|
+
type: "string";
|
|
1283
|
+
optional: false;
|
|
1284
|
+
customType: string;
|
|
1285
|
+
}, "optional"> & {
|
|
1286
|
+
optional: true;
|
|
1287
|
+
};
|
|
1288
|
+
readonly path: {
|
|
1289
|
+
type: "string";
|
|
1290
|
+
optional: false;
|
|
1291
|
+
customType: string;
|
|
1292
|
+
};
|
|
1293
|
+
readonly specialUse: Omit<{
|
|
1294
|
+
type: "string";
|
|
1295
|
+
optional: false;
|
|
1296
|
+
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
1297
|
+
}, "optional"> & {
|
|
1298
|
+
optional: true;
|
|
1299
|
+
} & {
|
|
1300
|
+
serverName: string;
|
|
1301
|
+
};
|
|
1302
|
+
readonly uidValidity: {
|
|
1303
|
+
type: "number";
|
|
1304
|
+
optional: false;
|
|
1305
|
+
customType: number;
|
|
1306
|
+
} & {
|
|
1307
|
+
serverName: string;
|
|
1308
|
+
};
|
|
1309
|
+
readonly unreadCount: {
|
|
1310
|
+
type: "number";
|
|
1311
|
+
optional: false;
|
|
1312
|
+
customType: number;
|
|
1313
|
+
} & {
|
|
1314
|
+
serverName: string;
|
|
1315
|
+
};
|
|
1316
|
+
};
|
|
1317
|
+
primaryKey: readonly [string, ...string[]];
|
|
1318
|
+
} & {
|
|
1319
|
+
primaryKey: ["id"];
|
|
1320
|
+
};
|
|
1321
|
+
readonly draftAttachment: {
|
|
1322
|
+
name: "draftAttachment";
|
|
1323
|
+
columns: {
|
|
1324
|
+
readonly draftId: {
|
|
1325
|
+
type: "string";
|
|
1326
|
+
optional: false;
|
|
1327
|
+
customType: string;
|
|
1328
|
+
} & {
|
|
1329
|
+
serverName: string;
|
|
1330
|
+
};
|
|
1331
|
+
readonly fileName: {
|
|
1332
|
+
type: "string";
|
|
1333
|
+
optional: false;
|
|
1334
|
+
customType: string;
|
|
1335
|
+
} & {
|
|
1336
|
+
serverName: string;
|
|
1337
|
+
};
|
|
1338
|
+
readonly id: {
|
|
1339
|
+
type: "string";
|
|
1340
|
+
optional: false;
|
|
1341
|
+
customType: string;
|
|
1342
|
+
};
|
|
1343
|
+
readonly mimeType: {
|
|
1344
|
+
type: "string";
|
|
1345
|
+
optional: false;
|
|
1346
|
+
customType: string;
|
|
1347
|
+
} & {
|
|
1348
|
+
serverName: string;
|
|
1349
|
+
};
|
|
1350
|
+
readonly status: {
|
|
1351
|
+
type: "string";
|
|
1352
|
+
optional: false;
|
|
1353
|
+
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
1354
|
+
} & {
|
|
1355
|
+
serverName: string;
|
|
1356
|
+
};
|
|
1357
|
+
readonly totalSize: {
|
|
1358
|
+
type: "number";
|
|
1359
|
+
optional: false;
|
|
1360
|
+
customType: number;
|
|
1361
|
+
} & {
|
|
1362
|
+
serverName: string;
|
|
1363
|
+
};
|
|
1364
|
+
};
|
|
1365
|
+
primaryKey: readonly [string, ...string[]];
|
|
1366
|
+
} & {
|
|
1367
|
+
primaryKey: ["id"];
|
|
1368
|
+
};
|
|
1369
|
+
readonly threadLabel: {
|
|
1370
|
+
name: "threadLabel";
|
|
1371
|
+
columns: {
|
|
1372
|
+
readonly accountId: {
|
|
1373
|
+
type: "string";
|
|
1374
|
+
optional: false;
|
|
1375
|
+
customType: string;
|
|
1376
|
+
} & {
|
|
1377
|
+
serverName: string;
|
|
1378
|
+
};
|
|
1379
|
+
readonly labelId: {
|
|
1380
|
+
type: "string";
|
|
1381
|
+
optional: false;
|
|
1382
|
+
customType: string;
|
|
1383
|
+
} & {
|
|
1384
|
+
serverName: string;
|
|
1385
|
+
};
|
|
1386
|
+
readonly lastSyncedAt: {
|
|
1387
|
+
type: "number";
|
|
1388
|
+
optional: false;
|
|
1389
|
+
customType: number;
|
|
1390
|
+
} & {
|
|
1391
|
+
serverName: string;
|
|
1392
|
+
};
|
|
1393
|
+
readonly threadId: {
|
|
1394
|
+
type: "string";
|
|
1395
|
+
optional: false;
|
|
1396
|
+
customType: string;
|
|
1397
|
+
} & {
|
|
1398
|
+
serverName: string;
|
|
1399
|
+
};
|
|
1400
|
+
readonly threadMessageId: {
|
|
1401
|
+
type: "string";
|
|
1402
|
+
optional: false;
|
|
1403
|
+
customType: string;
|
|
1404
|
+
} & {
|
|
1405
|
+
serverName: string;
|
|
1406
|
+
};
|
|
1407
|
+
readonly uid: {
|
|
1408
|
+
type: "number";
|
|
1409
|
+
optional: false;
|
|
1410
|
+
customType: number;
|
|
1411
|
+
};
|
|
1412
|
+
readonly uidValidity: {
|
|
1413
|
+
type: "number";
|
|
1414
|
+
optional: false;
|
|
1415
|
+
customType: number;
|
|
1416
|
+
} & {
|
|
1417
|
+
serverName: string;
|
|
1418
|
+
};
|
|
1419
|
+
};
|
|
1420
|
+
primaryKey: readonly [string, ...string[]];
|
|
1421
|
+
} & {
|
|
1422
|
+
primaryKey: ["accountId", "labelId", "threadMessageId"];
|
|
1423
|
+
};
|
|
1424
|
+
readonly threadByLabel: {
|
|
1425
|
+
name: "threadByLabel";
|
|
1426
|
+
columns: {
|
|
1427
|
+
readonly labelId: {
|
|
1428
|
+
type: "string";
|
|
1429
|
+
optional: false;
|
|
1430
|
+
customType: string;
|
|
1431
|
+
} & {
|
|
1432
|
+
serverName: string;
|
|
1433
|
+
};
|
|
1434
|
+
readonly latestMessageDate: {
|
|
1435
|
+
type: "number";
|
|
1436
|
+
optional: false;
|
|
1437
|
+
customType: number;
|
|
1438
|
+
} & {
|
|
1439
|
+
serverName: string;
|
|
1440
|
+
};
|
|
1441
|
+
readonly threadId: {
|
|
1442
|
+
type: "string";
|
|
1443
|
+
optional: false;
|
|
1444
|
+
customType: string;
|
|
1445
|
+
} & {
|
|
1446
|
+
serverName: string;
|
|
1447
|
+
};
|
|
1448
|
+
};
|
|
1449
|
+
primaryKey: readonly [string, ...string[]];
|
|
1450
|
+
} & {
|
|
1451
|
+
primaryKey: ["labelId", "threadId"];
|
|
1452
|
+
};
|
|
1453
|
+
readonly threadMessage: {
|
|
1454
|
+
name: "threadMessage";
|
|
1455
|
+
columns: {
|
|
1456
|
+
readonly accountId: {
|
|
1457
|
+
type: "string";
|
|
1458
|
+
optional: false;
|
|
1459
|
+
customType: string;
|
|
1460
|
+
} & {
|
|
1461
|
+
serverName: string;
|
|
1462
|
+
};
|
|
1463
|
+
readonly envelopeDate: {
|
|
1462
1464
|
type: "number";
|
|
1463
1465
|
optional: false;
|
|
1464
1466
|
customType: number;
|
|
@@ -1605,259 +1607,259 @@ export declare const marcoZero: {
|
|
|
1605
1607
|
relationships: {
|
|
1606
1608
|
readonly user: {
|
|
1607
1609
|
accounts: [{
|
|
1608
|
-
readonly sourceField: readonly ("id" | "
|
|
1609
|
-
readonly destField: readonly ("id" | "
|
|
1610
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1611
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1610
1612
|
readonly destSchema: "account";
|
|
1611
1613
|
readonly cardinality: "many";
|
|
1612
1614
|
}];
|
|
1613
1615
|
contacts: [{
|
|
1614
|
-
readonly sourceField: readonly ("id" | "
|
|
1615
|
-
readonly destField: readonly ("
|
|
1616
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1617
|
+
readonly destField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
1616
1618
|
readonly destSchema: "contact";
|
|
1617
1619
|
readonly cardinality: "many";
|
|
1618
1620
|
}];
|
|
1619
1621
|
drafts: [{
|
|
1620
|
-
readonly sourceField: readonly ("id" | "
|
|
1621
|
-
readonly destField: readonly ("type" | "status" | "
|
|
1622
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1623
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1622
1624
|
readonly destSchema: "draft";
|
|
1623
1625
|
readonly cardinality: "many";
|
|
1624
1626
|
}];
|
|
1625
1627
|
pushNotificationTokens: [{
|
|
1626
|
-
readonly sourceField: readonly ("id" | "
|
|
1627
|
-
readonly destField: readonly ("id" | "
|
|
1628
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1629
|
+
readonly destField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
1628
1630
|
readonly destSchema: "userPushNotificationToken";
|
|
1629
1631
|
readonly cardinality: "many";
|
|
1630
1632
|
}];
|
|
1631
1633
|
threads: [{
|
|
1632
|
-
readonly sourceField: readonly ("id" | "
|
|
1633
|
-
readonly destField: readonly ("
|
|
1634
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1635
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1634
1636
|
readonly destSchema: "thread";
|
|
1635
1637
|
readonly cardinality: "many";
|
|
1636
1638
|
}];
|
|
1637
1639
|
};
|
|
1638
|
-
readonly userPushNotificationToken: {
|
|
1639
|
-
user: [{
|
|
1640
|
-
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
1641
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
1642
|
-
readonly destSchema: "user";
|
|
1643
|
-
readonly cardinality: "one";
|
|
1644
|
-
}];
|
|
1645
|
-
};
|
|
1646
|
-
readonly contact: {
|
|
1647
|
-
user: [{
|
|
1648
|
-
readonly sourceField: readonly ("id" | "name" | "userId" | "emailAddress")[];
|
|
1649
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
1650
|
-
readonly destSchema: "user";
|
|
1651
|
-
readonly cardinality: "one";
|
|
1652
|
-
}];
|
|
1653
|
-
};
|
|
1654
1640
|
readonly account: {
|
|
1655
1641
|
aliases: [{
|
|
1656
|
-
readonly sourceField: readonly ("id" | "
|
|
1657
|
-
readonly destField: readonly ("
|
|
1642
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1643
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
1658
1644
|
readonly destSchema: "accountAlias";
|
|
1659
1645
|
readonly cardinality: "many";
|
|
1660
1646
|
}];
|
|
1661
1647
|
drafts: [{
|
|
1662
|
-
readonly sourceField: readonly ("id" | "
|
|
1663
|
-
readonly destField: readonly ("type" | "status" | "
|
|
1648
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1649
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1664
1650
|
readonly destSchema: "draft";
|
|
1665
1651
|
readonly cardinality: "many";
|
|
1666
1652
|
}];
|
|
1667
1653
|
labels: [{
|
|
1668
|
-
readonly sourceField: readonly ("id" | "
|
|
1669
|
-
readonly destField: readonly ("
|
|
1654
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1655
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1670
1656
|
readonly destSchema: "accountLabel";
|
|
1671
1657
|
readonly cardinality: "many";
|
|
1672
1658
|
}];
|
|
1673
1659
|
primaryAlias: [{
|
|
1674
|
-
readonly sourceField: readonly ("id" | "
|
|
1675
|
-
readonly destField: readonly ("
|
|
1660
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1661
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
1676
1662
|
readonly destSchema: "accountAlias";
|
|
1677
1663
|
readonly cardinality: "one";
|
|
1678
1664
|
}];
|
|
1679
1665
|
threads: [{
|
|
1680
|
-
readonly sourceField: readonly ("id" | "
|
|
1681
|
-
readonly destField: readonly ("
|
|
1666
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1667
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1682
1668
|
readonly destSchema: "thread";
|
|
1683
1669
|
readonly cardinality: "many";
|
|
1684
1670
|
}];
|
|
1685
1671
|
user: [{
|
|
1686
|
-
readonly sourceField: readonly ("id" | "
|
|
1687
|
-
readonly destField: readonly ("id" | "
|
|
1672
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1673
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1688
1674
|
readonly destSchema: "user";
|
|
1689
1675
|
readonly cardinality: "one";
|
|
1690
1676
|
}];
|
|
1691
1677
|
};
|
|
1692
|
-
readonly
|
|
1693
|
-
|
|
1694
|
-
readonly sourceField: readonly ("
|
|
1695
|
-
readonly destField: readonly ("id" | "
|
|
1696
|
-
readonly destSchema: "
|
|
1697
|
-
readonly cardinality: "one";
|
|
1698
|
-
}];
|
|
1699
|
-
};
|
|
1700
|
-
readonly accountLabel: {
|
|
1701
|
-
account: [{
|
|
1702
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1703
|
-
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
1704
|
-
readonly destSchema: "account";
|
|
1678
|
+
readonly contact: {
|
|
1679
|
+
user: [{
|
|
1680
|
+
readonly sourceField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
1681
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1682
|
+
readonly destSchema: "user";
|
|
1705
1683
|
readonly cardinality: "one";
|
|
1706
1684
|
}];
|
|
1707
|
-
threads: [{
|
|
1708
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
1709
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1710
|
-
readonly destSchema: "threadLabel";
|
|
1711
|
-
readonly cardinality: "many";
|
|
1712
|
-
}, {
|
|
1713
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
1714
|
-
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
1715
|
-
readonly destSchema: "thread";
|
|
1716
|
-
readonly cardinality: "many";
|
|
1717
|
-
}];
|
|
1718
1685
|
};
|
|
1719
1686
|
readonly draft: {
|
|
1720
1687
|
account: [{
|
|
1721
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
1722
|
-
readonly destField: readonly ("id" | "
|
|
1688
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1689
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1723
1690
|
readonly destSchema: "account";
|
|
1724
1691
|
readonly cardinality: "one";
|
|
1725
1692
|
}];
|
|
1726
1693
|
attachments: [{
|
|
1727
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
1694
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1728
1695
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1729
1696
|
readonly destSchema: "draftAttachment";
|
|
1730
1697
|
readonly cardinality: "many";
|
|
1731
1698
|
}];
|
|
1732
1699
|
user: [{
|
|
1733
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
1734
|
-
readonly destField: readonly ("id" | "
|
|
1700
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1701
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1735
1702
|
readonly destSchema: "user";
|
|
1736
1703
|
readonly cardinality: "one";
|
|
1737
1704
|
}];
|
|
1738
1705
|
};
|
|
1739
|
-
readonly draftAttachment: {
|
|
1740
|
-
draft: [{
|
|
1741
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1742
|
-
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
1743
|
-
readonly destSchema: "draft";
|
|
1744
|
-
readonly cardinality: "one";
|
|
1745
|
-
}];
|
|
1746
|
-
};
|
|
1747
1706
|
readonly thread: {
|
|
1748
1707
|
account: [{
|
|
1749
|
-
readonly sourceField: readonly ("
|
|
1750
|
-
readonly destField: readonly ("id" | "
|
|
1708
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1709
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1751
1710
|
readonly destSchema: "account";
|
|
1752
1711
|
readonly cardinality: "one";
|
|
1753
1712
|
}];
|
|
1754
1713
|
labels: [{
|
|
1755
|
-
readonly sourceField: readonly ("
|
|
1756
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
1714
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1715
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1757
1716
|
readonly destSchema: "threadLabel";
|
|
1758
1717
|
readonly cardinality: "many";
|
|
1759
1718
|
}, {
|
|
1760
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1761
|
-
readonly destField: readonly ("
|
|
1719
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1720
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1762
1721
|
readonly destSchema: "accountLabel";
|
|
1763
1722
|
readonly cardinality: "many";
|
|
1764
1723
|
}];
|
|
1765
1724
|
messages: [{
|
|
1766
|
-
readonly sourceField: readonly ("
|
|
1767
|
-
readonly destField: readonly ("
|
|
1725
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1726
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1768
1727
|
readonly destSchema: "threadMessage";
|
|
1769
1728
|
readonly cardinality: "many";
|
|
1770
1729
|
}];
|
|
1771
1730
|
threadByLabel: [{
|
|
1772
|
-
readonly sourceField: readonly ("
|
|
1773
|
-
readonly destField: readonly ("
|
|
1731
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1732
|
+
readonly destField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
1774
1733
|
readonly destSchema: "threadByLabel";
|
|
1775
1734
|
readonly cardinality: "many";
|
|
1776
1735
|
}];
|
|
1777
1736
|
user: [{
|
|
1778
|
-
readonly sourceField: readonly ("
|
|
1779
|
-
readonly destField: readonly ("id" | "
|
|
1737
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1738
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1739
|
+
readonly destSchema: "user";
|
|
1740
|
+
readonly cardinality: "one";
|
|
1741
|
+
}];
|
|
1742
|
+
};
|
|
1743
|
+
readonly userPushNotificationToken: {
|
|
1744
|
+
user: [{
|
|
1745
|
+
readonly sourceField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
1746
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
1780
1747
|
readonly destSchema: "user";
|
|
1781
1748
|
readonly cardinality: "one";
|
|
1782
1749
|
}];
|
|
1783
1750
|
};
|
|
1751
|
+
readonly accountAlias: {
|
|
1752
|
+
account: [{
|
|
1753
|
+
readonly sourceField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
1754
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1755
|
+
readonly destSchema: "account";
|
|
1756
|
+
readonly cardinality: "one";
|
|
1757
|
+
}];
|
|
1758
|
+
};
|
|
1759
|
+
readonly accountLabel: {
|
|
1760
|
+
account: [{
|
|
1761
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1762
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
1763
|
+
readonly destSchema: "account";
|
|
1764
|
+
readonly cardinality: "one";
|
|
1765
|
+
}];
|
|
1766
|
+
threads: [{
|
|
1767
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1768
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1769
|
+
readonly destSchema: "threadLabel";
|
|
1770
|
+
readonly cardinality: "many";
|
|
1771
|
+
}, {
|
|
1772
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1773
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1774
|
+
readonly destSchema: "thread";
|
|
1775
|
+
readonly cardinality: "many";
|
|
1776
|
+
}];
|
|
1777
|
+
};
|
|
1778
|
+
readonly draftAttachment: {
|
|
1779
|
+
draft: [{
|
|
1780
|
+
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
1781
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
1782
|
+
readonly destSchema: "draft";
|
|
1783
|
+
readonly cardinality: "one";
|
|
1784
|
+
}];
|
|
1785
|
+
};
|
|
1784
1786
|
readonly threadLabel: {
|
|
1785
1787
|
label: [{
|
|
1786
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1787
|
-
readonly destField: readonly ("
|
|
1788
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1789
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1788
1790
|
readonly destSchema: "accountLabel";
|
|
1789
1791
|
readonly cardinality: "one";
|
|
1790
1792
|
}];
|
|
1791
1793
|
message: [{
|
|
1792
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1793
|
-
readonly destField: readonly ("
|
|
1794
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1795
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1794
1796
|
readonly destSchema: "threadMessage";
|
|
1795
1797
|
readonly cardinality: "one";
|
|
1796
1798
|
}];
|
|
1797
1799
|
thread: [{
|
|
1798
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1799
|
-
readonly destField: readonly ("
|
|
1800
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1801
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1800
1802
|
readonly destSchema: "thread";
|
|
1801
1803
|
readonly cardinality: "one";
|
|
1802
1804
|
}];
|
|
1803
1805
|
};
|
|
1804
1806
|
readonly threadByLabel: {
|
|
1805
1807
|
label: [{
|
|
1806
|
-
readonly sourceField: readonly ("
|
|
1807
|
-
readonly destField: readonly ("
|
|
1808
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
1809
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1808
1810
|
readonly destSchema: "accountLabel";
|
|
1809
1811
|
readonly cardinality: "one";
|
|
1810
1812
|
}];
|
|
1811
1813
|
thread: [{
|
|
1812
|
-
readonly sourceField: readonly ("
|
|
1813
|
-
readonly destField: readonly ("
|
|
1814
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
1815
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1814
1816
|
readonly destSchema: "thread";
|
|
1815
1817
|
readonly cardinality: "one";
|
|
1816
1818
|
}];
|
|
1817
1819
|
};
|
|
1818
1820
|
readonly threadMessage: {
|
|
1819
1821
|
attachments: [{
|
|
1820
|
-
readonly sourceField: readonly ("
|
|
1821
|
-
readonly destField: readonly ("id" | "fileName" | "mimeType" | "
|
|
1822
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1823
|
+
readonly destField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
1822
1824
|
readonly destSchema: "threadMessageAttachment";
|
|
1823
1825
|
readonly cardinality: "many";
|
|
1824
1826
|
}];
|
|
1825
1827
|
labels: [{
|
|
1826
|
-
readonly sourceField: readonly ("
|
|
1827
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
1828
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1829
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1828
1830
|
readonly destSchema: "threadLabel";
|
|
1829
1831
|
readonly cardinality: "many";
|
|
1830
1832
|
}, {
|
|
1831
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1832
|
-
readonly destField: readonly ("
|
|
1833
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1834
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1833
1835
|
readonly destSchema: "accountLabel";
|
|
1834
1836
|
readonly cardinality: "many";
|
|
1835
1837
|
}];
|
|
1836
1838
|
recipients: [{
|
|
1837
|
-
readonly sourceField: readonly ("
|
|
1838
|
-
readonly destField: readonly ("type" | "
|
|
1839
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1840
|
+
readonly destField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
1839
1841
|
readonly destSchema: "threadMessageRecipient";
|
|
1840
1842
|
readonly cardinality: "many";
|
|
1841
1843
|
}];
|
|
1842
1844
|
thread: [{
|
|
1843
|
-
readonly sourceField: readonly ("
|
|
1844
|
-
readonly destField: readonly ("
|
|
1845
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1846
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1845
1847
|
readonly destSchema: "thread";
|
|
1846
1848
|
readonly cardinality: "one";
|
|
1847
1849
|
}];
|
|
1848
1850
|
};
|
|
1849
1851
|
readonly threadMessageRecipient: {
|
|
1850
1852
|
message: [{
|
|
1851
|
-
readonly sourceField: readonly ("type" | "
|
|
1852
|
-
readonly destField: readonly ("
|
|
1853
|
+
readonly sourceField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
1854
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1853
1855
|
readonly destSchema: "threadMessage";
|
|
1854
1856
|
readonly cardinality: "one";
|
|
1855
1857
|
}];
|
|
1856
1858
|
};
|
|
1857
1859
|
readonly threadMessageAttachment: {
|
|
1858
1860
|
message: [{
|
|
1859
|
-
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "
|
|
1860
|
-
readonly destField: readonly ("
|
|
1861
|
+
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
1862
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1861
1863
|
readonly destSchema: "threadMessage";
|
|
1862
1864
|
readonly cardinality: "one";
|
|
1863
1865
|
}];
|
|
@@ -2139,7 +2141,15 @@ export declare const marcoZero: {
|
|
|
2139
2141
|
}, {
|
|
2140
2142
|
userId: string;
|
|
2141
2143
|
}>;
|
|
2142
|
-
readonly getUser: import("@rocicorp/zero").QueryDefinition<"user",
|
|
2144
|
+
readonly getUser: import("@rocicorp/zero").QueryDefinition<"user", {
|
|
2145
|
+
aliasesLimit?: number | undefined;
|
|
2146
|
+
labelsLimit?: number | undefined;
|
|
2147
|
+
pushNotificationTokensLimit?: number | undefined;
|
|
2148
|
+
} | undefined, {
|
|
2149
|
+
aliasesLimit: number;
|
|
2150
|
+
labelsLimit: number;
|
|
2151
|
+
pushNotificationTokensLimit: number;
|
|
2152
|
+
}, {
|
|
2143
2153
|
readonly id: string;
|
|
2144
2154
|
readonly name: string | null;
|
|
2145
2155
|
readonly profilePicture: string | null;
|
|
@@ -2245,72 +2255,6 @@ export declare const marcoZero: {
|
|
|
2245
2255
|
} & {
|
|
2246
2256
|
primaryKey: ["id"];
|
|
2247
2257
|
};
|
|
2248
|
-
readonly userPushNotificationToken: {
|
|
2249
|
-
name: "userPushNotificationToken";
|
|
2250
|
-
columns: {
|
|
2251
|
-
readonly createdAt: {
|
|
2252
|
-
type: "number";
|
|
2253
|
-
optional: false;
|
|
2254
|
-
customType: number;
|
|
2255
|
-
} & {
|
|
2256
|
-
serverName: string;
|
|
2257
|
-
};
|
|
2258
|
-
readonly id: {
|
|
2259
|
-
type: "string";
|
|
2260
|
-
optional: false;
|
|
2261
|
-
customType: string;
|
|
2262
|
-
};
|
|
2263
|
-
readonly token: {
|
|
2264
|
-
type: "string";
|
|
2265
|
-
optional: false;
|
|
2266
|
-
customType: string;
|
|
2267
|
-
};
|
|
2268
|
-
readonly userId: {
|
|
2269
|
-
type: "string";
|
|
2270
|
-
optional: false;
|
|
2271
|
-
customType: string;
|
|
2272
|
-
} & {
|
|
2273
|
-
serverName: string;
|
|
2274
|
-
};
|
|
2275
|
-
};
|
|
2276
|
-
primaryKey: readonly [string, ...string[]];
|
|
2277
|
-
} & {
|
|
2278
|
-
primaryKey: ["id"];
|
|
2279
|
-
};
|
|
2280
|
-
readonly contact: {
|
|
2281
|
-
name: "contact";
|
|
2282
|
-
columns: {
|
|
2283
|
-
readonly emailAddress: {
|
|
2284
|
-
type: "string";
|
|
2285
|
-
optional: false;
|
|
2286
|
-
customType: string;
|
|
2287
|
-
} & {
|
|
2288
|
-
serverName: string;
|
|
2289
|
-
};
|
|
2290
|
-
readonly id: {
|
|
2291
|
-
type: "string";
|
|
2292
|
-
optional: false;
|
|
2293
|
-
customType: string;
|
|
2294
|
-
};
|
|
2295
|
-
readonly name: Omit<{
|
|
2296
|
-
type: "string";
|
|
2297
|
-
optional: false;
|
|
2298
|
-
customType: string;
|
|
2299
|
-
}, "optional"> & {
|
|
2300
|
-
optional: true;
|
|
2301
|
-
};
|
|
2302
|
-
readonly userId: {
|
|
2303
|
-
type: "string";
|
|
2304
|
-
optional: false;
|
|
2305
|
-
customType: string;
|
|
2306
|
-
} & {
|
|
2307
|
-
serverName: string;
|
|
2308
|
-
};
|
|
2309
|
-
};
|
|
2310
|
-
primaryKey: readonly [string, ...string[]];
|
|
2311
|
-
} & {
|
|
2312
|
-
primaryKey: ["id"];
|
|
2313
|
-
};
|
|
2314
2258
|
readonly account: {
|
|
2315
2259
|
name: "account";
|
|
2316
2260
|
columns: {
|
|
@@ -2363,63 +2307,22 @@ export declare const marcoZero: {
|
|
|
2363
2307
|
} & {
|
|
2364
2308
|
serverName: string;
|
|
2365
2309
|
};
|
|
2366
|
-
readonly userId: {
|
|
2367
|
-
type: "string";
|
|
2368
|
-
optional: false;
|
|
2369
|
-
customType: string;
|
|
2370
|
-
} & {
|
|
2371
|
-
serverName: string;
|
|
2372
|
-
};
|
|
2373
|
-
};
|
|
2374
|
-
primaryKey: readonly [string, ...string[]];
|
|
2375
|
-
} & {
|
|
2376
|
-
primaryKey: ["id"];
|
|
2377
|
-
};
|
|
2378
|
-
readonly accountAlias: {
|
|
2379
|
-
name: "accountAlias";
|
|
2380
|
-
columns: {
|
|
2381
|
-
readonly accountId: {
|
|
2382
|
-
type: "string";
|
|
2383
|
-
optional: false;
|
|
2384
|
-
customType: string;
|
|
2385
|
-
} & {
|
|
2386
|
-
serverName: string;
|
|
2387
|
-
};
|
|
2388
|
-
readonly emailAddress: {
|
|
2389
|
-
type: "string";
|
|
2390
|
-
optional: false;
|
|
2391
|
-
customType: string;
|
|
2392
|
-
} & {
|
|
2393
|
-
serverName: string;
|
|
2394
|
-
};
|
|
2395
|
-
readonly id: {
|
|
2396
|
-
type: "string";
|
|
2397
|
-
optional: false;
|
|
2398
|
-
customType: string;
|
|
2399
|
-
};
|
|
2400
|
-
readonly isPrimary: {
|
|
2401
|
-
type: "boolean";
|
|
2402
|
-
optional: false;
|
|
2403
|
-
customType: boolean;
|
|
2404
|
-
} & {
|
|
2405
|
-
serverName: string;
|
|
2406
|
-
};
|
|
2407
|
-
readonly name: Omit<{
|
|
2310
|
+
readonly userId: {
|
|
2408
2311
|
type: "string";
|
|
2409
2312
|
optional: false;
|
|
2410
2313
|
customType: string;
|
|
2411
|
-
}
|
|
2412
|
-
|
|
2314
|
+
} & {
|
|
2315
|
+
serverName: string;
|
|
2413
2316
|
};
|
|
2414
2317
|
};
|
|
2415
2318
|
primaryKey: readonly [string, ...string[]];
|
|
2416
2319
|
} & {
|
|
2417
2320
|
primaryKey: ["id"];
|
|
2418
2321
|
};
|
|
2419
|
-
readonly
|
|
2420
|
-
name: "
|
|
2322
|
+
readonly contact: {
|
|
2323
|
+
name: "contact";
|
|
2421
2324
|
columns: {
|
|
2422
|
-
readonly
|
|
2325
|
+
readonly emailAddress: {
|
|
2423
2326
|
type: "string";
|
|
2424
2327
|
optional: false;
|
|
2425
2328
|
customType: string;
|
|
@@ -2438,31 +2341,10 @@ export declare const marcoZero: {
|
|
|
2438
2341
|
}, "optional"> & {
|
|
2439
2342
|
optional: true;
|
|
2440
2343
|
};
|
|
2441
|
-
readonly
|
|
2344
|
+
readonly userId: {
|
|
2442
2345
|
type: "string";
|
|
2443
2346
|
optional: false;
|
|
2444
2347
|
customType: string;
|
|
2445
|
-
};
|
|
2446
|
-
readonly specialUse: Omit<{
|
|
2447
|
-
type: "string";
|
|
2448
|
-
optional: false;
|
|
2449
|
-
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
2450
|
-
}, "optional"> & {
|
|
2451
|
-
optional: true;
|
|
2452
|
-
} & {
|
|
2453
|
-
serverName: string;
|
|
2454
|
-
};
|
|
2455
|
-
readonly uidValidity: {
|
|
2456
|
-
type: "number";
|
|
2457
|
-
optional: false;
|
|
2458
|
-
customType: number;
|
|
2459
|
-
} & {
|
|
2460
|
-
serverName: string;
|
|
2461
|
-
};
|
|
2462
|
-
readonly unreadCount: {
|
|
2463
|
-
type: "number";
|
|
2464
|
-
optional: false;
|
|
2465
|
-
customType: number;
|
|
2466
2348
|
} & {
|
|
2467
2349
|
serverName: string;
|
|
2468
2350
|
};
|
|
@@ -2582,20 +2464,25 @@ export declare const marcoZero: {
|
|
|
2582
2464
|
} & {
|
|
2583
2465
|
primaryKey: ["id"];
|
|
2584
2466
|
};
|
|
2585
|
-
readonly
|
|
2586
|
-
name: "
|
|
2467
|
+
readonly thread: {
|
|
2468
|
+
name: "thread";
|
|
2587
2469
|
columns: {
|
|
2588
|
-
readonly
|
|
2470
|
+
readonly accountId: {
|
|
2589
2471
|
type: "string";
|
|
2590
2472
|
optional: false;
|
|
2591
2473
|
customType: string;
|
|
2592
2474
|
} & {
|
|
2593
2475
|
serverName: string;
|
|
2594
2476
|
};
|
|
2595
|
-
readonly
|
|
2596
|
-
type: "
|
|
2477
|
+
readonly flagged: {
|
|
2478
|
+
type: "boolean";
|
|
2597
2479
|
optional: false;
|
|
2598
|
-
customType:
|
|
2480
|
+
customType: boolean;
|
|
2481
|
+
};
|
|
2482
|
+
readonly hasAttachments: {
|
|
2483
|
+
type: "boolean";
|
|
2484
|
+
optional: false;
|
|
2485
|
+
customType: boolean;
|
|
2599
2486
|
} & {
|
|
2600
2487
|
serverName: string;
|
|
2601
2488
|
};
|
|
@@ -2604,133 +2491,256 @@ export declare const marcoZero: {
|
|
|
2604
2491
|
optional: false;
|
|
2605
2492
|
customType: string;
|
|
2606
2493
|
};
|
|
2607
|
-
readonly
|
|
2494
|
+
readonly labelIdList: {
|
|
2608
2495
|
type: "string";
|
|
2609
2496
|
optional: false;
|
|
2610
2497
|
customType: string;
|
|
2611
2498
|
} & {
|
|
2612
2499
|
serverName: string;
|
|
2613
2500
|
};
|
|
2614
|
-
readonly
|
|
2501
|
+
readonly latestMessageDate: {
|
|
2502
|
+
type: "number";
|
|
2503
|
+
optional: false;
|
|
2504
|
+
customType: number;
|
|
2505
|
+
} & {
|
|
2506
|
+
serverName: string;
|
|
2507
|
+
};
|
|
2508
|
+
readonly latestMessageId: {
|
|
2615
2509
|
type: "string";
|
|
2616
2510
|
optional: false;
|
|
2617
|
-
customType:
|
|
2511
|
+
customType: string;
|
|
2618
2512
|
} & {
|
|
2619
2513
|
serverName: string;
|
|
2620
2514
|
};
|
|
2621
|
-
readonly
|
|
2515
|
+
readonly messageCount: {
|
|
2622
2516
|
type: "number";
|
|
2623
2517
|
optional: false;
|
|
2624
2518
|
customType: number;
|
|
2625
2519
|
} & {
|
|
2626
2520
|
serverName: string;
|
|
2627
2521
|
};
|
|
2628
|
-
|
|
2629
|
-
primaryKey: readonly [string, ...string[]];
|
|
2630
|
-
} & {
|
|
2631
|
-
primaryKey: ["id"];
|
|
2632
|
-
};
|
|
2633
|
-
readonly thread: {
|
|
2634
|
-
name: "thread";
|
|
2635
|
-
columns: {
|
|
2636
|
-
readonly accountId: {
|
|
2522
|
+
readonly previewText: {
|
|
2637
2523
|
type: "string";
|
|
2638
2524
|
optional: false;
|
|
2639
2525
|
customType: string;
|
|
2640
2526
|
} & {
|
|
2641
2527
|
serverName: string;
|
|
2642
2528
|
};
|
|
2643
|
-
readonly
|
|
2529
|
+
readonly seen: {
|
|
2644
2530
|
type: "boolean";
|
|
2645
2531
|
optional: false;
|
|
2646
2532
|
customType: boolean;
|
|
2647
2533
|
};
|
|
2648
|
-
readonly
|
|
2649
|
-
type: "
|
|
2534
|
+
readonly senderEmail: {
|
|
2535
|
+
type: "string";
|
|
2650
2536
|
optional: false;
|
|
2651
|
-
customType:
|
|
2537
|
+
customType: string;
|
|
2652
2538
|
} & {
|
|
2653
2539
|
serverName: string;
|
|
2654
2540
|
};
|
|
2655
|
-
readonly
|
|
2541
|
+
readonly senderName: Omit<{
|
|
2656
2542
|
type: "string";
|
|
2657
2543
|
optional: false;
|
|
2658
2544
|
customType: string;
|
|
2545
|
+
}, "optional"> & {
|
|
2546
|
+
optional: true;
|
|
2547
|
+
} & {
|
|
2548
|
+
serverName: string;
|
|
2659
2549
|
};
|
|
2660
|
-
readonly
|
|
2550
|
+
readonly subject: Omit<{
|
|
2551
|
+
type: "string";
|
|
2552
|
+
optional: false;
|
|
2553
|
+
customType: string;
|
|
2554
|
+
}, "optional"> & {
|
|
2555
|
+
optional: true;
|
|
2556
|
+
};
|
|
2557
|
+
readonly userId: {
|
|
2661
2558
|
type: "string";
|
|
2662
2559
|
optional: false;
|
|
2663
2560
|
customType: string;
|
|
2664
2561
|
} & {
|
|
2665
2562
|
serverName: string;
|
|
2666
2563
|
};
|
|
2667
|
-
readonly
|
|
2564
|
+
readonly words: {
|
|
2565
|
+
type: "string";
|
|
2566
|
+
optional: false;
|
|
2567
|
+
customType: string;
|
|
2568
|
+
};
|
|
2569
|
+
};
|
|
2570
|
+
primaryKey: readonly [string, ...string[]];
|
|
2571
|
+
} & {
|
|
2572
|
+
primaryKey: ["id"];
|
|
2573
|
+
};
|
|
2574
|
+
readonly userPushNotificationToken: {
|
|
2575
|
+
name: "userPushNotificationToken";
|
|
2576
|
+
columns: {
|
|
2577
|
+
readonly createdAt: {
|
|
2668
2578
|
type: "number";
|
|
2669
2579
|
optional: false;
|
|
2670
2580
|
customType: number;
|
|
2671
2581
|
} & {
|
|
2672
2582
|
serverName: string;
|
|
2673
2583
|
};
|
|
2674
|
-
readonly
|
|
2584
|
+
readonly id: {
|
|
2585
|
+
type: "string";
|
|
2586
|
+
optional: false;
|
|
2587
|
+
customType: string;
|
|
2588
|
+
};
|
|
2589
|
+
readonly token: {
|
|
2590
|
+
type: "string";
|
|
2591
|
+
optional: false;
|
|
2592
|
+
customType: string;
|
|
2593
|
+
};
|
|
2594
|
+
readonly userId: {
|
|
2675
2595
|
type: "string";
|
|
2676
2596
|
optional: false;
|
|
2677
2597
|
customType: string;
|
|
2678
2598
|
} & {
|
|
2679
2599
|
serverName: string;
|
|
2680
2600
|
};
|
|
2681
|
-
|
|
2682
|
-
|
|
2601
|
+
};
|
|
2602
|
+
primaryKey: readonly [string, ...string[]];
|
|
2603
|
+
} & {
|
|
2604
|
+
primaryKey: ["id"];
|
|
2605
|
+
};
|
|
2606
|
+
readonly accountAlias: {
|
|
2607
|
+
name: "accountAlias";
|
|
2608
|
+
columns: {
|
|
2609
|
+
readonly accountId: {
|
|
2610
|
+
type: "string";
|
|
2683
2611
|
optional: false;
|
|
2684
|
-
customType:
|
|
2612
|
+
customType: string;
|
|
2685
2613
|
} & {
|
|
2686
2614
|
serverName: string;
|
|
2687
2615
|
};
|
|
2688
|
-
readonly
|
|
2616
|
+
readonly emailAddress: {
|
|
2689
2617
|
type: "string";
|
|
2690
2618
|
optional: false;
|
|
2691
2619
|
customType: string;
|
|
2692
2620
|
} & {
|
|
2693
2621
|
serverName: string;
|
|
2694
2622
|
};
|
|
2695
|
-
readonly
|
|
2623
|
+
readonly id: {
|
|
2624
|
+
type: "string";
|
|
2625
|
+
optional: false;
|
|
2626
|
+
customType: string;
|
|
2627
|
+
};
|
|
2628
|
+
readonly isPrimary: {
|
|
2696
2629
|
type: "boolean";
|
|
2697
2630
|
optional: false;
|
|
2698
2631
|
customType: boolean;
|
|
2632
|
+
} & {
|
|
2633
|
+
serverName: string;
|
|
2699
2634
|
};
|
|
2700
|
-
readonly
|
|
2635
|
+
readonly name: Omit<{
|
|
2636
|
+
type: "string";
|
|
2637
|
+
optional: false;
|
|
2638
|
+
customType: string;
|
|
2639
|
+
}, "optional"> & {
|
|
2640
|
+
optional: true;
|
|
2641
|
+
};
|
|
2642
|
+
};
|
|
2643
|
+
primaryKey: readonly [string, ...string[]];
|
|
2644
|
+
} & {
|
|
2645
|
+
primaryKey: ["id"];
|
|
2646
|
+
};
|
|
2647
|
+
readonly accountLabel: {
|
|
2648
|
+
name: "accountLabel";
|
|
2649
|
+
columns: {
|
|
2650
|
+
readonly accountId: {
|
|
2701
2651
|
type: "string";
|
|
2702
2652
|
optional: false;
|
|
2703
2653
|
customType: string;
|
|
2704
2654
|
} & {
|
|
2705
2655
|
serverName: string;
|
|
2706
2656
|
};
|
|
2707
|
-
readonly
|
|
2657
|
+
readonly id: {
|
|
2658
|
+
type: "string";
|
|
2659
|
+
optional: false;
|
|
2660
|
+
customType: string;
|
|
2661
|
+
};
|
|
2662
|
+
readonly name: Omit<{
|
|
2708
2663
|
type: "string";
|
|
2709
2664
|
optional: false;
|
|
2710
2665
|
customType: string;
|
|
2711
2666
|
}, "optional"> & {
|
|
2712
2667
|
optional: true;
|
|
2713
|
-
} & {
|
|
2714
|
-
serverName: string;
|
|
2715
2668
|
};
|
|
2716
|
-
readonly
|
|
2669
|
+
readonly path: {
|
|
2717
2670
|
type: "string";
|
|
2718
2671
|
optional: false;
|
|
2719
2672
|
customType: string;
|
|
2673
|
+
};
|
|
2674
|
+
readonly specialUse: Omit<{
|
|
2675
|
+
type: "string";
|
|
2676
|
+
optional: false;
|
|
2677
|
+
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
2720
2678
|
}, "optional"> & {
|
|
2721
2679
|
optional: true;
|
|
2680
|
+
} & {
|
|
2681
|
+
serverName: string;
|
|
2722
2682
|
};
|
|
2723
|
-
readonly
|
|
2683
|
+
readonly uidValidity: {
|
|
2684
|
+
type: "number";
|
|
2685
|
+
optional: false;
|
|
2686
|
+
customType: number;
|
|
2687
|
+
} & {
|
|
2688
|
+
serverName: string;
|
|
2689
|
+
};
|
|
2690
|
+
readonly unreadCount: {
|
|
2691
|
+
type: "number";
|
|
2692
|
+
optional: false;
|
|
2693
|
+
customType: number;
|
|
2694
|
+
} & {
|
|
2695
|
+
serverName: string;
|
|
2696
|
+
};
|
|
2697
|
+
};
|
|
2698
|
+
primaryKey: readonly [string, ...string[]];
|
|
2699
|
+
} & {
|
|
2700
|
+
primaryKey: ["id"];
|
|
2701
|
+
};
|
|
2702
|
+
readonly draftAttachment: {
|
|
2703
|
+
name: "draftAttachment";
|
|
2704
|
+
columns: {
|
|
2705
|
+
readonly draftId: {
|
|
2724
2706
|
type: "string";
|
|
2725
2707
|
optional: false;
|
|
2726
2708
|
customType: string;
|
|
2727
2709
|
} & {
|
|
2728
2710
|
serverName: string;
|
|
2729
2711
|
};
|
|
2730
|
-
readonly
|
|
2712
|
+
readonly fileName: {
|
|
2713
|
+
type: "string";
|
|
2714
|
+
optional: false;
|
|
2715
|
+
customType: string;
|
|
2716
|
+
} & {
|
|
2717
|
+
serverName: string;
|
|
2718
|
+
};
|
|
2719
|
+
readonly id: {
|
|
2720
|
+
type: "string";
|
|
2721
|
+
optional: false;
|
|
2722
|
+
customType: string;
|
|
2723
|
+
};
|
|
2724
|
+
readonly mimeType: {
|
|
2731
2725
|
type: "string";
|
|
2732
2726
|
optional: false;
|
|
2733
2727
|
customType: string;
|
|
2728
|
+
} & {
|
|
2729
|
+
serverName: string;
|
|
2730
|
+
};
|
|
2731
|
+
readonly status: {
|
|
2732
|
+
type: "string";
|
|
2733
|
+
optional: false;
|
|
2734
|
+
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
2735
|
+
} & {
|
|
2736
|
+
serverName: string;
|
|
2737
|
+
};
|
|
2738
|
+
readonly totalSize: {
|
|
2739
|
+
type: "number";
|
|
2740
|
+
optional: false;
|
|
2741
|
+
customType: number;
|
|
2742
|
+
} & {
|
|
2743
|
+
serverName: string;
|
|
2734
2744
|
};
|
|
2735
2745
|
};
|
|
2736
2746
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2978,259 +2988,259 @@ export declare const marcoZero: {
|
|
|
2978
2988
|
relationships: {
|
|
2979
2989
|
readonly user: {
|
|
2980
2990
|
accounts: [{
|
|
2981
|
-
readonly sourceField: readonly ("id" | "
|
|
2982
|
-
readonly destField: readonly ("id" | "
|
|
2991
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
2992
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
2983
2993
|
readonly destSchema: "account";
|
|
2984
2994
|
readonly cardinality: "many";
|
|
2985
2995
|
}];
|
|
2986
2996
|
contacts: [{
|
|
2987
|
-
readonly sourceField: readonly ("id" | "
|
|
2988
|
-
readonly destField: readonly ("
|
|
2997
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
2998
|
+
readonly destField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
2989
2999
|
readonly destSchema: "contact";
|
|
2990
3000
|
readonly cardinality: "many";
|
|
2991
3001
|
}];
|
|
2992
3002
|
drafts: [{
|
|
2993
|
-
readonly sourceField: readonly ("id" | "
|
|
2994
|
-
readonly destField: readonly ("type" | "status" | "
|
|
3003
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
3004
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
2995
3005
|
readonly destSchema: "draft";
|
|
2996
3006
|
readonly cardinality: "many";
|
|
2997
3007
|
}];
|
|
2998
3008
|
pushNotificationTokens: [{
|
|
2999
|
-
readonly sourceField: readonly ("id" | "
|
|
3000
|
-
readonly destField: readonly ("id" | "
|
|
3009
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
3010
|
+
readonly destField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
3001
3011
|
readonly destSchema: "userPushNotificationToken";
|
|
3002
3012
|
readonly cardinality: "many";
|
|
3003
3013
|
}];
|
|
3004
|
-
threads: [{
|
|
3005
|
-
readonly sourceField: readonly ("id" | "
|
|
3006
|
-
readonly destField: readonly ("
|
|
3007
|
-
readonly destSchema: "thread";
|
|
3008
|
-
readonly cardinality: "many";
|
|
3009
|
-
}];
|
|
3010
|
-
};
|
|
3011
|
-
readonly userPushNotificationToken: {
|
|
3012
|
-
user: [{
|
|
3013
|
-
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
3014
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
3015
|
-
readonly destSchema: "user";
|
|
3016
|
-
readonly cardinality: "one";
|
|
3017
|
-
}];
|
|
3018
|
-
};
|
|
3019
|
-
readonly contact: {
|
|
3020
|
-
user: [{
|
|
3021
|
-
readonly sourceField: readonly ("id" | "name" | "userId" | "emailAddress")[];
|
|
3022
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
3023
|
-
readonly destSchema: "user";
|
|
3024
|
-
readonly cardinality: "one";
|
|
3025
|
-
}];
|
|
3014
|
+
threads: [{
|
|
3015
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
3016
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3017
|
+
readonly destSchema: "thread";
|
|
3018
|
+
readonly cardinality: "many";
|
|
3019
|
+
}];
|
|
3026
3020
|
};
|
|
3027
3021
|
readonly account: {
|
|
3028
3022
|
aliases: [{
|
|
3029
|
-
readonly sourceField: readonly ("id" | "
|
|
3030
|
-
readonly destField: readonly ("
|
|
3023
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3024
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
3031
3025
|
readonly destSchema: "accountAlias";
|
|
3032
3026
|
readonly cardinality: "many";
|
|
3033
3027
|
}];
|
|
3034
3028
|
drafts: [{
|
|
3035
|
-
readonly sourceField: readonly ("id" | "
|
|
3036
|
-
readonly destField: readonly ("type" | "status" | "
|
|
3029
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3030
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
3037
3031
|
readonly destSchema: "draft";
|
|
3038
3032
|
readonly cardinality: "many";
|
|
3039
3033
|
}];
|
|
3040
3034
|
labels: [{
|
|
3041
|
-
readonly sourceField: readonly ("id" | "
|
|
3042
|
-
readonly destField: readonly ("
|
|
3035
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3036
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
3043
3037
|
readonly destSchema: "accountLabel";
|
|
3044
3038
|
readonly cardinality: "many";
|
|
3045
3039
|
}];
|
|
3046
3040
|
primaryAlias: [{
|
|
3047
|
-
readonly sourceField: readonly ("id" | "
|
|
3048
|
-
readonly destField: readonly ("
|
|
3041
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3042
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
3049
3043
|
readonly destSchema: "accountAlias";
|
|
3050
3044
|
readonly cardinality: "one";
|
|
3051
3045
|
}];
|
|
3052
3046
|
threads: [{
|
|
3053
|
-
readonly sourceField: readonly ("id" | "
|
|
3054
|
-
readonly destField: readonly ("
|
|
3047
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3048
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3055
3049
|
readonly destSchema: "thread";
|
|
3056
3050
|
readonly cardinality: "many";
|
|
3057
3051
|
}];
|
|
3058
3052
|
user: [{
|
|
3059
|
-
readonly sourceField: readonly ("id" | "
|
|
3060
|
-
readonly destField: readonly ("id" | "
|
|
3053
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3054
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
3061
3055
|
readonly destSchema: "user";
|
|
3062
3056
|
readonly cardinality: "one";
|
|
3063
3057
|
}];
|
|
3064
3058
|
};
|
|
3065
|
-
readonly
|
|
3066
|
-
|
|
3067
|
-
readonly sourceField: readonly ("
|
|
3068
|
-
readonly destField: readonly ("id" | "
|
|
3069
|
-
readonly destSchema: "
|
|
3070
|
-
readonly cardinality: "one";
|
|
3071
|
-
}];
|
|
3072
|
-
};
|
|
3073
|
-
readonly accountLabel: {
|
|
3074
|
-
account: [{
|
|
3075
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
3076
|
-
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3077
|
-
readonly destSchema: "account";
|
|
3059
|
+
readonly contact: {
|
|
3060
|
+
user: [{
|
|
3061
|
+
readonly sourceField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
3062
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
3063
|
+
readonly destSchema: "user";
|
|
3078
3064
|
readonly cardinality: "one";
|
|
3079
3065
|
}];
|
|
3080
|
-
threads: [{
|
|
3081
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
3082
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
3083
|
-
readonly destSchema: "threadLabel";
|
|
3084
|
-
readonly cardinality: "many";
|
|
3085
|
-
}, {
|
|
3086
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
3087
|
-
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
3088
|
-
readonly destSchema: "thread";
|
|
3089
|
-
readonly cardinality: "many";
|
|
3090
|
-
}];
|
|
3091
3066
|
};
|
|
3092
3067
|
readonly draft: {
|
|
3093
3068
|
account: [{
|
|
3094
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
3095
|
-
readonly destField: readonly ("id" | "
|
|
3069
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
3070
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3096
3071
|
readonly destSchema: "account";
|
|
3097
3072
|
readonly cardinality: "one";
|
|
3098
3073
|
}];
|
|
3099
3074
|
attachments: [{
|
|
3100
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
3075
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
3101
3076
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
3102
3077
|
readonly destSchema: "draftAttachment";
|
|
3103
3078
|
readonly cardinality: "many";
|
|
3104
3079
|
}];
|
|
3105
3080
|
user: [{
|
|
3106
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
3107
|
-
readonly destField: readonly ("id" | "
|
|
3081
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
3082
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
3108
3083
|
readonly destSchema: "user";
|
|
3109
3084
|
readonly cardinality: "one";
|
|
3110
3085
|
}];
|
|
3111
3086
|
};
|
|
3112
|
-
readonly draftAttachment: {
|
|
3113
|
-
draft: [{
|
|
3114
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
3115
|
-
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
3116
|
-
readonly destSchema: "draft";
|
|
3117
|
-
readonly cardinality: "one";
|
|
3118
|
-
}];
|
|
3119
|
-
};
|
|
3120
3087
|
readonly thread: {
|
|
3121
3088
|
account: [{
|
|
3122
|
-
readonly sourceField: readonly ("
|
|
3123
|
-
readonly destField: readonly ("id" | "
|
|
3089
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3090
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3124
3091
|
readonly destSchema: "account";
|
|
3125
3092
|
readonly cardinality: "one";
|
|
3126
3093
|
}];
|
|
3127
3094
|
labels: [{
|
|
3128
|
-
readonly sourceField: readonly ("
|
|
3129
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
3095
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3096
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
3130
3097
|
readonly destSchema: "threadLabel";
|
|
3131
3098
|
readonly cardinality: "many";
|
|
3132
3099
|
}, {
|
|
3133
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3134
|
-
readonly destField: readonly ("
|
|
3100
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
3101
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
3135
3102
|
readonly destSchema: "accountLabel";
|
|
3136
3103
|
readonly cardinality: "many";
|
|
3137
3104
|
}];
|
|
3138
3105
|
messages: [{
|
|
3139
|
-
readonly sourceField: readonly ("
|
|
3140
|
-
readonly destField: readonly ("
|
|
3106
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3107
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
3141
3108
|
readonly destSchema: "threadMessage";
|
|
3142
3109
|
readonly cardinality: "many";
|
|
3143
3110
|
}];
|
|
3144
3111
|
threadByLabel: [{
|
|
3145
|
-
readonly sourceField: readonly ("
|
|
3146
|
-
readonly destField: readonly ("
|
|
3112
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3113
|
+
readonly destField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
3147
3114
|
readonly destSchema: "threadByLabel";
|
|
3148
3115
|
readonly cardinality: "many";
|
|
3149
3116
|
}];
|
|
3150
3117
|
user: [{
|
|
3151
|
-
readonly sourceField: readonly ("
|
|
3152
|
-
readonly destField: readonly ("id" | "
|
|
3118
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3119
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
3120
|
+
readonly destSchema: "user";
|
|
3121
|
+
readonly cardinality: "one";
|
|
3122
|
+
}];
|
|
3123
|
+
};
|
|
3124
|
+
readonly userPushNotificationToken: {
|
|
3125
|
+
user: [{
|
|
3126
|
+
readonly sourceField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
3127
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
3153
3128
|
readonly destSchema: "user";
|
|
3154
3129
|
readonly cardinality: "one";
|
|
3155
3130
|
}];
|
|
3156
3131
|
};
|
|
3132
|
+
readonly accountAlias: {
|
|
3133
|
+
account: [{
|
|
3134
|
+
readonly sourceField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
3135
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3136
|
+
readonly destSchema: "account";
|
|
3137
|
+
readonly cardinality: "one";
|
|
3138
|
+
}];
|
|
3139
|
+
};
|
|
3140
|
+
readonly accountLabel: {
|
|
3141
|
+
account: [{
|
|
3142
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
3143
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3144
|
+
readonly destSchema: "account";
|
|
3145
|
+
readonly cardinality: "one";
|
|
3146
|
+
}];
|
|
3147
|
+
threads: [{
|
|
3148
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
3149
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
3150
|
+
readonly destSchema: "threadLabel";
|
|
3151
|
+
readonly cardinality: "many";
|
|
3152
|
+
}, {
|
|
3153
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
3154
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3155
|
+
readonly destSchema: "thread";
|
|
3156
|
+
readonly cardinality: "many";
|
|
3157
|
+
}];
|
|
3158
|
+
};
|
|
3159
|
+
readonly draftAttachment: {
|
|
3160
|
+
draft: [{
|
|
3161
|
+
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
3162
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
3163
|
+
readonly destSchema: "draft";
|
|
3164
|
+
readonly cardinality: "one";
|
|
3165
|
+
}];
|
|
3166
|
+
};
|
|
3157
3167
|
readonly threadLabel: {
|
|
3158
3168
|
label: [{
|
|
3159
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3160
|
-
readonly destField: readonly ("
|
|
3169
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
3170
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
3161
3171
|
readonly destSchema: "accountLabel";
|
|
3162
3172
|
readonly cardinality: "one";
|
|
3163
3173
|
}];
|
|
3164
3174
|
message: [{
|
|
3165
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3166
|
-
readonly destField: readonly ("
|
|
3175
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
3176
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
3167
3177
|
readonly destSchema: "threadMessage";
|
|
3168
3178
|
readonly cardinality: "one";
|
|
3169
3179
|
}];
|
|
3170
3180
|
thread: [{
|
|
3171
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3172
|
-
readonly destField: readonly ("
|
|
3181
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
3182
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3173
3183
|
readonly destSchema: "thread";
|
|
3174
3184
|
readonly cardinality: "one";
|
|
3175
3185
|
}];
|
|
3176
3186
|
};
|
|
3177
3187
|
readonly threadByLabel: {
|
|
3178
3188
|
label: [{
|
|
3179
|
-
readonly sourceField: readonly ("
|
|
3180
|
-
readonly destField: readonly ("
|
|
3189
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
3190
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
3181
3191
|
readonly destSchema: "accountLabel";
|
|
3182
3192
|
readonly cardinality: "one";
|
|
3183
3193
|
}];
|
|
3184
3194
|
thread: [{
|
|
3185
|
-
readonly sourceField: readonly ("
|
|
3186
|
-
readonly destField: readonly ("
|
|
3195
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
3196
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3187
3197
|
readonly destSchema: "thread";
|
|
3188
3198
|
readonly cardinality: "one";
|
|
3189
3199
|
}];
|
|
3190
3200
|
};
|
|
3191
3201
|
readonly threadMessage: {
|
|
3192
3202
|
attachments: [{
|
|
3193
|
-
readonly sourceField: readonly ("
|
|
3194
|
-
readonly destField: readonly ("id" | "fileName" | "mimeType" | "
|
|
3203
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
3204
|
+
readonly destField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
3195
3205
|
readonly destSchema: "threadMessageAttachment";
|
|
3196
3206
|
readonly cardinality: "many";
|
|
3197
3207
|
}];
|
|
3198
3208
|
labels: [{
|
|
3199
|
-
readonly sourceField: readonly ("
|
|
3200
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
3209
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
3210
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
3201
3211
|
readonly destSchema: "threadLabel";
|
|
3202
3212
|
readonly cardinality: "many";
|
|
3203
3213
|
}, {
|
|
3204
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3205
|
-
readonly destField: readonly ("
|
|
3214
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
3215
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
3206
3216
|
readonly destSchema: "accountLabel";
|
|
3207
3217
|
readonly cardinality: "many";
|
|
3208
3218
|
}];
|
|
3209
3219
|
recipients: [{
|
|
3210
|
-
readonly sourceField: readonly ("
|
|
3211
|
-
readonly destField: readonly ("type" | "
|
|
3220
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
3221
|
+
readonly destField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
3212
3222
|
readonly destSchema: "threadMessageRecipient";
|
|
3213
3223
|
readonly cardinality: "many";
|
|
3214
3224
|
}];
|
|
3215
3225
|
thread: [{
|
|
3216
|
-
readonly sourceField: readonly ("
|
|
3217
|
-
readonly destField: readonly ("
|
|
3226
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
3227
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
3218
3228
|
readonly destSchema: "thread";
|
|
3219
3229
|
readonly cardinality: "one";
|
|
3220
3230
|
}];
|
|
3221
3231
|
};
|
|
3222
3232
|
readonly threadMessageRecipient: {
|
|
3223
3233
|
message: [{
|
|
3224
|
-
readonly sourceField: readonly ("type" | "
|
|
3225
|
-
readonly destField: readonly ("
|
|
3234
|
+
readonly sourceField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
3235
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
3226
3236
|
readonly destSchema: "threadMessage";
|
|
3227
3237
|
readonly cardinality: "one";
|
|
3228
3238
|
}];
|
|
3229
3239
|
};
|
|
3230
3240
|
readonly threadMessageAttachment: {
|
|
3231
3241
|
message: [{
|
|
3232
|
-
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "
|
|
3233
|
-
readonly destField: readonly ("
|
|
3242
|
+
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
3243
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
3234
3244
|
readonly destSchema: "threadMessage";
|
|
3235
3245
|
readonly cardinality: "one";
|
|
3236
3246
|
}];
|
|
@@ -3287,72 +3297,6 @@ export declare const marcoZero: {
|
|
|
3287
3297
|
} & {
|
|
3288
3298
|
primaryKey: ["id"];
|
|
3289
3299
|
};
|
|
3290
|
-
readonly userPushNotificationToken: {
|
|
3291
|
-
name: "userPushNotificationToken";
|
|
3292
|
-
columns: {
|
|
3293
|
-
readonly createdAt: {
|
|
3294
|
-
type: "number";
|
|
3295
|
-
optional: false;
|
|
3296
|
-
customType: number;
|
|
3297
|
-
} & {
|
|
3298
|
-
serverName: string;
|
|
3299
|
-
};
|
|
3300
|
-
readonly id: {
|
|
3301
|
-
type: "string";
|
|
3302
|
-
optional: false;
|
|
3303
|
-
customType: string;
|
|
3304
|
-
};
|
|
3305
|
-
readonly token: {
|
|
3306
|
-
type: "string";
|
|
3307
|
-
optional: false;
|
|
3308
|
-
customType: string;
|
|
3309
|
-
};
|
|
3310
|
-
readonly userId: {
|
|
3311
|
-
type: "string";
|
|
3312
|
-
optional: false;
|
|
3313
|
-
customType: string;
|
|
3314
|
-
} & {
|
|
3315
|
-
serverName: string;
|
|
3316
|
-
};
|
|
3317
|
-
};
|
|
3318
|
-
primaryKey: readonly [string, ...string[]];
|
|
3319
|
-
} & {
|
|
3320
|
-
primaryKey: ["id"];
|
|
3321
|
-
};
|
|
3322
|
-
readonly contact: {
|
|
3323
|
-
name: "contact";
|
|
3324
|
-
columns: {
|
|
3325
|
-
readonly emailAddress: {
|
|
3326
|
-
type: "string";
|
|
3327
|
-
optional: false;
|
|
3328
|
-
customType: string;
|
|
3329
|
-
} & {
|
|
3330
|
-
serverName: string;
|
|
3331
|
-
};
|
|
3332
|
-
readonly id: {
|
|
3333
|
-
type: "string";
|
|
3334
|
-
optional: false;
|
|
3335
|
-
customType: string;
|
|
3336
|
-
};
|
|
3337
|
-
readonly name: Omit<{
|
|
3338
|
-
type: "string";
|
|
3339
|
-
optional: false;
|
|
3340
|
-
customType: string;
|
|
3341
|
-
}, "optional"> & {
|
|
3342
|
-
optional: true;
|
|
3343
|
-
};
|
|
3344
|
-
readonly userId: {
|
|
3345
|
-
type: "string";
|
|
3346
|
-
optional: false;
|
|
3347
|
-
customType: string;
|
|
3348
|
-
} & {
|
|
3349
|
-
serverName: string;
|
|
3350
|
-
};
|
|
3351
|
-
};
|
|
3352
|
-
primaryKey: readonly [string, ...string[]];
|
|
3353
|
-
} & {
|
|
3354
|
-
primaryKey: ["id"];
|
|
3355
|
-
};
|
|
3356
3300
|
readonly account: {
|
|
3357
3301
|
name: "account";
|
|
3358
3302
|
columns: {
|
|
@@ -3417,16 +3361,9 @@ export declare const marcoZero: {
|
|
|
3417
3361
|
} & {
|
|
3418
3362
|
primaryKey: ["id"];
|
|
3419
3363
|
};
|
|
3420
|
-
readonly
|
|
3421
|
-
name: "
|
|
3364
|
+
readonly contact: {
|
|
3365
|
+
name: "contact";
|
|
3422
3366
|
columns: {
|
|
3423
|
-
readonly accountId: {
|
|
3424
|
-
type: "string";
|
|
3425
|
-
optional: false;
|
|
3426
|
-
customType: string;
|
|
3427
|
-
} & {
|
|
3428
|
-
serverName: string;
|
|
3429
|
-
};
|
|
3430
3367
|
readonly emailAddress: {
|
|
3431
3368
|
type: "string";
|
|
3432
3369
|
optional: false;
|
|
@@ -3439,13 +3376,6 @@ export declare const marcoZero: {
|
|
|
3439
3376
|
optional: false;
|
|
3440
3377
|
customType: string;
|
|
3441
3378
|
};
|
|
3442
|
-
readonly isPrimary: {
|
|
3443
|
-
type: "boolean";
|
|
3444
|
-
optional: false;
|
|
3445
|
-
customType: boolean;
|
|
3446
|
-
} & {
|
|
3447
|
-
serverName: string;
|
|
3448
|
-
};
|
|
3449
3379
|
readonly name: Omit<{
|
|
3450
3380
|
type: "string";
|
|
3451
3381
|
optional: false;
|
|
@@ -3453,13 +3383,20 @@ export declare const marcoZero: {
|
|
|
3453
3383
|
}, "optional"> & {
|
|
3454
3384
|
optional: true;
|
|
3455
3385
|
};
|
|
3386
|
+
readonly userId: {
|
|
3387
|
+
type: "string";
|
|
3388
|
+
optional: false;
|
|
3389
|
+
customType: string;
|
|
3390
|
+
} & {
|
|
3391
|
+
serverName: string;
|
|
3392
|
+
};
|
|
3456
3393
|
};
|
|
3457
3394
|
primaryKey: readonly [string, ...string[]];
|
|
3458
3395
|
} & {
|
|
3459
3396
|
primaryKey: ["id"];
|
|
3460
3397
|
};
|
|
3461
|
-
readonly
|
|
3462
|
-
name: "
|
|
3398
|
+
readonly draft: {
|
|
3399
|
+
name: "draft";
|
|
3463
3400
|
columns: {
|
|
3464
3401
|
readonly accountId: {
|
|
3465
3402
|
type: "string";
|
|
@@ -3468,53 +3405,109 @@ export declare const marcoZero: {
|
|
|
3468
3405
|
} & {
|
|
3469
3406
|
serverName: string;
|
|
3470
3407
|
};
|
|
3471
|
-
readonly
|
|
3408
|
+
readonly body: {
|
|
3409
|
+
type: "json";
|
|
3410
|
+
optional: false;
|
|
3411
|
+
customType: {
|
|
3412
|
+
content: string;
|
|
3413
|
+
to: string[];
|
|
3414
|
+
cc: string[];
|
|
3415
|
+
bcc: string[];
|
|
3416
|
+
};
|
|
3417
|
+
};
|
|
3418
|
+
readonly error: Omit<{
|
|
3472
3419
|
type: "string";
|
|
3473
3420
|
optional: false;
|
|
3474
3421
|
customType: string;
|
|
3422
|
+
}, "optional"> & {
|
|
3423
|
+
optional: true;
|
|
3475
3424
|
};
|
|
3476
|
-
readonly
|
|
3425
|
+
readonly fromAliasId: Omit<{
|
|
3477
3426
|
type: "string";
|
|
3478
3427
|
optional: false;
|
|
3479
3428
|
customType: string;
|
|
3480
3429
|
}, "optional"> & {
|
|
3481
3430
|
optional: true;
|
|
3431
|
+
} & {
|
|
3432
|
+
serverName: string;
|
|
3482
3433
|
};
|
|
3483
|
-
readonly
|
|
3434
|
+
readonly fromEmail: {
|
|
3484
3435
|
type: "string";
|
|
3485
3436
|
optional: false;
|
|
3486
3437
|
customType: string;
|
|
3438
|
+
} & {
|
|
3439
|
+
serverName: string;
|
|
3487
3440
|
};
|
|
3488
|
-
readonly
|
|
3441
|
+
readonly fromName: Omit<{
|
|
3489
3442
|
type: "string";
|
|
3490
3443
|
optional: false;
|
|
3491
|
-
customType:
|
|
3444
|
+
customType: string;
|
|
3492
3445
|
}, "optional"> & {
|
|
3493
3446
|
optional: true;
|
|
3494
3447
|
} & {
|
|
3495
3448
|
serverName: string;
|
|
3496
3449
|
};
|
|
3497
|
-
readonly
|
|
3450
|
+
readonly id: {
|
|
3451
|
+
type: "string";
|
|
3452
|
+
optional: false;
|
|
3453
|
+
customType: string;
|
|
3454
|
+
};
|
|
3455
|
+
readonly referencedMessageId: Omit<{
|
|
3456
|
+
type: "string";
|
|
3457
|
+
optional: false;
|
|
3458
|
+
customType: string;
|
|
3459
|
+
}, "optional"> & {
|
|
3460
|
+
optional: true;
|
|
3461
|
+
} & {
|
|
3462
|
+
serverName: string;
|
|
3463
|
+
};
|
|
3464
|
+
readonly scheduledFor: Omit<{
|
|
3498
3465
|
type: "number";
|
|
3499
3466
|
optional: false;
|
|
3500
3467
|
customType: number;
|
|
3468
|
+
}, "optional"> & {
|
|
3469
|
+
optional: true;
|
|
3501
3470
|
} & {
|
|
3502
3471
|
serverName: string;
|
|
3503
3472
|
};
|
|
3504
|
-
readonly
|
|
3473
|
+
readonly status: {
|
|
3474
|
+
type: "string";
|
|
3475
|
+
optional: false;
|
|
3476
|
+
customType: "DRAFT" | "SEND_REQUESTED" | "SEND_IN_PROGRESS" | "SEND_CONFIRMED" | "SEND_FAILED";
|
|
3477
|
+
};
|
|
3478
|
+
readonly subject: Omit<{
|
|
3479
|
+
type: "string";
|
|
3480
|
+
optional: false;
|
|
3481
|
+
customType: string;
|
|
3482
|
+
}, "optional"> & {
|
|
3483
|
+
optional: true;
|
|
3484
|
+
};
|
|
3485
|
+
readonly type: {
|
|
3486
|
+
type: "string";
|
|
3487
|
+
optional: false;
|
|
3488
|
+
customType: "NEW" | "REPLY" | "FORWARD";
|
|
3489
|
+
};
|
|
3490
|
+
readonly updatedAt: {
|
|
3505
3491
|
type: "number";
|
|
3506
3492
|
optional: false;
|
|
3507
3493
|
customType: number;
|
|
3508
3494
|
} & {
|
|
3509
3495
|
serverName: string;
|
|
3510
3496
|
};
|
|
3497
|
+
readonly userId: {
|
|
3498
|
+
type: "string";
|
|
3499
|
+
optional: false;
|
|
3500
|
+
customType: string;
|
|
3501
|
+
} & {
|
|
3502
|
+
serverName: string;
|
|
3503
|
+
};
|
|
3511
3504
|
};
|
|
3512
3505
|
primaryKey: readonly [string, ...string[]];
|
|
3513
3506
|
} & {
|
|
3514
3507
|
primaryKey: ["id"];
|
|
3515
3508
|
};
|
|
3516
|
-
readonly
|
|
3517
|
-
name: "
|
|
3509
|
+
readonly thread: {
|
|
3510
|
+
name: "thread";
|
|
3518
3511
|
columns: {
|
|
3519
3512
|
readonly accountId: {
|
|
3520
3513
|
type: "string";
|
|
@@ -3523,76 +3516,79 @@ export declare const marcoZero: {
|
|
|
3523
3516
|
} & {
|
|
3524
3517
|
serverName: string;
|
|
3525
3518
|
};
|
|
3526
|
-
readonly
|
|
3527
|
-
type: "
|
|
3519
|
+
readonly flagged: {
|
|
3520
|
+
type: "boolean";
|
|
3528
3521
|
optional: false;
|
|
3529
|
-
customType:
|
|
3530
|
-
content: string;
|
|
3531
|
-
to: string[];
|
|
3532
|
-
cc: string[];
|
|
3533
|
-
bcc: string[];
|
|
3534
|
-
};
|
|
3522
|
+
customType: boolean;
|
|
3535
3523
|
};
|
|
3536
|
-
readonly
|
|
3524
|
+
readonly hasAttachments: {
|
|
3525
|
+
type: "boolean";
|
|
3526
|
+
optional: false;
|
|
3527
|
+
customType: boolean;
|
|
3528
|
+
} & {
|
|
3529
|
+
serverName: string;
|
|
3530
|
+
};
|
|
3531
|
+
readonly id: {
|
|
3532
|
+
type: "string";
|
|
3533
|
+
optional: false;
|
|
3534
|
+
customType: string;
|
|
3535
|
+
};
|
|
3536
|
+
readonly labelIdList: {
|
|
3537
3537
|
type: "string";
|
|
3538
3538
|
optional: false;
|
|
3539
3539
|
customType: string;
|
|
3540
|
-
}
|
|
3541
|
-
|
|
3540
|
+
} & {
|
|
3541
|
+
serverName: string;
|
|
3542
3542
|
};
|
|
3543
|
-
readonly
|
|
3544
|
-
type: "
|
|
3543
|
+
readonly latestMessageDate: {
|
|
3544
|
+
type: "number";
|
|
3545
3545
|
optional: false;
|
|
3546
|
-
customType:
|
|
3547
|
-
}, "optional"> & {
|
|
3548
|
-
optional: true;
|
|
3546
|
+
customType: number;
|
|
3549
3547
|
} & {
|
|
3550
3548
|
serverName: string;
|
|
3551
3549
|
};
|
|
3552
|
-
readonly
|
|
3550
|
+
readonly latestMessageId: {
|
|
3553
3551
|
type: "string";
|
|
3554
3552
|
optional: false;
|
|
3555
3553
|
customType: string;
|
|
3556
3554
|
} & {
|
|
3557
3555
|
serverName: string;
|
|
3558
3556
|
};
|
|
3559
|
-
readonly
|
|
3560
|
-
type: "
|
|
3557
|
+
readonly messageCount: {
|
|
3558
|
+
type: "number";
|
|
3561
3559
|
optional: false;
|
|
3562
|
-
customType:
|
|
3563
|
-
}, "optional"> & {
|
|
3564
|
-
optional: true;
|
|
3560
|
+
customType: number;
|
|
3565
3561
|
} & {
|
|
3566
3562
|
serverName: string;
|
|
3567
3563
|
};
|
|
3568
|
-
readonly
|
|
3564
|
+
readonly previewText: {
|
|
3569
3565
|
type: "string";
|
|
3570
3566
|
optional: false;
|
|
3571
3567
|
customType: string;
|
|
3568
|
+
} & {
|
|
3569
|
+
serverName: string;
|
|
3572
3570
|
};
|
|
3573
|
-
readonly
|
|
3571
|
+
readonly seen: {
|
|
3572
|
+
type: "boolean";
|
|
3573
|
+
optional: false;
|
|
3574
|
+
customType: boolean;
|
|
3575
|
+
};
|
|
3576
|
+
readonly senderEmail: {
|
|
3574
3577
|
type: "string";
|
|
3575
3578
|
optional: false;
|
|
3576
3579
|
customType: string;
|
|
3577
|
-
}, "optional"> & {
|
|
3578
|
-
optional: true;
|
|
3579
3580
|
} & {
|
|
3580
3581
|
serverName: string;
|
|
3581
3582
|
};
|
|
3582
|
-
readonly
|
|
3583
|
-
type: "
|
|
3583
|
+
readonly senderName: Omit<{
|
|
3584
|
+
type: "string";
|
|
3584
3585
|
optional: false;
|
|
3585
|
-
customType:
|
|
3586
|
+
customType: string;
|
|
3586
3587
|
}, "optional"> & {
|
|
3587
3588
|
optional: true;
|
|
3588
3589
|
} & {
|
|
3589
3590
|
serverName: string;
|
|
3590
3591
|
};
|
|
3591
|
-
readonly status: {
|
|
3592
|
-
type: "string";
|
|
3593
|
-
optional: false;
|
|
3594
|
-
customType: "DRAFT" | "SEND_REQUESTED" | "SEND_IN_PROGRESS" | "SEND_CONFIRMED" | "SEND_FAILED";
|
|
3595
|
-
};
|
|
3596
3592
|
readonly subject: Omit<{
|
|
3597
3593
|
type: "string";
|
|
3598
3594
|
optional: false;
|
|
@@ -3600,18 +3596,43 @@ export declare const marcoZero: {
|
|
|
3600
3596
|
}, "optional"> & {
|
|
3601
3597
|
optional: true;
|
|
3602
3598
|
};
|
|
3603
|
-
readonly
|
|
3599
|
+
readonly userId: {
|
|
3604
3600
|
type: "string";
|
|
3605
3601
|
optional: false;
|
|
3606
|
-
customType:
|
|
3602
|
+
customType: string;
|
|
3603
|
+
} & {
|
|
3604
|
+
serverName: string;
|
|
3607
3605
|
};
|
|
3608
|
-
readonly
|
|
3606
|
+
readonly words: {
|
|
3607
|
+
type: "string";
|
|
3608
|
+
optional: false;
|
|
3609
|
+
customType: string;
|
|
3610
|
+
};
|
|
3611
|
+
};
|
|
3612
|
+
primaryKey: readonly [string, ...string[]];
|
|
3613
|
+
} & {
|
|
3614
|
+
primaryKey: ["id"];
|
|
3615
|
+
};
|
|
3616
|
+
readonly userPushNotificationToken: {
|
|
3617
|
+
name: "userPushNotificationToken";
|
|
3618
|
+
columns: {
|
|
3619
|
+
readonly createdAt: {
|
|
3609
3620
|
type: "number";
|
|
3610
3621
|
optional: false;
|
|
3611
3622
|
customType: number;
|
|
3612
3623
|
} & {
|
|
3613
3624
|
serverName: string;
|
|
3614
3625
|
};
|
|
3626
|
+
readonly id: {
|
|
3627
|
+
type: "string";
|
|
3628
|
+
optional: false;
|
|
3629
|
+
customType: string;
|
|
3630
|
+
};
|
|
3631
|
+
readonly token: {
|
|
3632
|
+
type: "string";
|
|
3633
|
+
optional: false;
|
|
3634
|
+
customType: string;
|
|
3635
|
+
};
|
|
3615
3636
|
readonly userId: {
|
|
3616
3637
|
type: "string";
|
|
3617
3638
|
optional: false;
|
|
@@ -3624,17 +3645,17 @@ export declare const marcoZero: {
|
|
|
3624
3645
|
} & {
|
|
3625
3646
|
primaryKey: ["id"];
|
|
3626
3647
|
};
|
|
3627
|
-
readonly
|
|
3628
|
-
name: "
|
|
3648
|
+
readonly accountAlias: {
|
|
3649
|
+
name: "accountAlias";
|
|
3629
3650
|
columns: {
|
|
3630
|
-
readonly
|
|
3651
|
+
readonly accountId: {
|
|
3631
3652
|
type: "string";
|
|
3632
3653
|
optional: false;
|
|
3633
3654
|
customType: string;
|
|
3634
3655
|
} & {
|
|
3635
3656
|
serverName: string;
|
|
3636
3657
|
};
|
|
3637
|
-
readonly
|
|
3658
|
+
readonly emailAddress: {
|
|
3638
3659
|
type: "string";
|
|
3639
3660
|
optional: false;
|
|
3640
3661
|
customType: string;
|
|
@@ -3646,34 +3667,27 @@ export declare const marcoZero: {
|
|
|
3646
3667
|
optional: false;
|
|
3647
3668
|
customType: string;
|
|
3648
3669
|
};
|
|
3649
|
-
readonly
|
|
3650
|
-
type: "
|
|
3670
|
+
readonly isPrimary: {
|
|
3671
|
+
type: "boolean";
|
|
3651
3672
|
optional: false;
|
|
3652
|
-
customType:
|
|
3673
|
+
customType: boolean;
|
|
3653
3674
|
} & {
|
|
3654
3675
|
serverName: string;
|
|
3655
3676
|
};
|
|
3656
|
-
readonly
|
|
3677
|
+
readonly name: Omit<{
|
|
3657
3678
|
type: "string";
|
|
3658
3679
|
optional: false;
|
|
3659
|
-
customType:
|
|
3660
|
-
} & {
|
|
3661
|
-
|
|
3662
|
-
};
|
|
3663
|
-
readonly totalSize: {
|
|
3664
|
-
type: "number";
|
|
3665
|
-
optional: false;
|
|
3666
|
-
customType: number;
|
|
3667
|
-
} & {
|
|
3668
|
-
serverName: string;
|
|
3680
|
+
customType: string;
|
|
3681
|
+
}, "optional"> & {
|
|
3682
|
+
optional: true;
|
|
3669
3683
|
};
|
|
3670
3684
|
};
|
|
3671
3685
|
primaryKey: readonly [string, ...string[]];
|
|
3672
3686
|
} & {
|
|
3673
3687
|
primaryKey: ["id"];
|
|
3674
3688
|
};
|
|
3675
|
-
readonly
|
|
3676
|
-
name: "
|
|
3689
|
+
readonly accountLabel: {
|
|
3690
|
+
name: "accountLabel";
|
|
3677
3691
|
columns: {
|
|
3678
3692
|
readonly accountId: {
|
|
3679
3693
|
type: "string";
|
|
@@ -3682,97 +3696,93 @@ export declare const marcoZero: {
|
|
|
3682
3696
|
} & {
|
|
3683
3697
|
serverName: string;
|
|
3684
3698
|
};
|
|
3685
|
-
readonly
|
|
3686
|
-
type: "
|
|
3699
|
+
readonly id: {
|
|
3700
|
+
type: "string";
|
|
3687
3701
|
optional: false;
|
|
3688
|
-
customType:
|
|
3702
|
+
customType: string;
|
|
3689
3703
|
};
|
|
3690
|
-
readonly
|
|
3691
|
-
type: "
|
|
3704
|
+
readonly name: Omit<{
|
|
3705
|
+
type: "string";
|
|
3692
3706
|
optional: false;
|
|
3693
|
-
customType:
|
|
3694
|
-
} & {
|
|
3695
|
-
|
|
3707
|
+
customType: string;
|
|
3708
|
+
}, "optional"> & {
|
|
3709
|
+
optional: true;
|
|
3696
3710
|
};
|
|
3697
|
-
readonly
|
|
3711
|
+
readonly path: {
|
|
3698
3712
|
type: "string";
|
|
3699
3713
|
optional: false;
|
|
3700
3714
|
customType: string;
|
|
3701
3715
|
};
|
|
3702
|
-
readonly
|
|
3716
|
+
readonly specialUse: Omit<{
|
|
3703
3717
|
type: "string";
|
|
3704
3718
|
optional: false;
|
|
3705
|
-
customType:
|
|
3719
|
+
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
3720
|
+
}, "optional"> & {
|
|
3721
|
+
optional: true;
|
|
3706
3722
|
} & {
|
|
3707
3723
|
serverName: string;
|
|
3708
3724
|
};
|
|
3709
|
-
readonly
|
|
3725
|
+
readonly uidValidity: {
|
|
3710
3726
|
type: "number";
|
|
3711
3727
|
optional: false;
|
|
3712
3728
|
customType: number;
|
|
3713
3729
|
} & {
|
|
3714
3730
|
serverName: string;
|
|
3715
3731
|
};
|
|
3716
|
-
readonly
|
|
3717
|
-
type: "string";
|
|
3718
|
-
optional: false;
|
|
3719
|
-
customType: string;
|
|
3720
|
-
} & {
|
|
3721
|
-
serverName: string;
|
|
3722
|
-
};
|
|
3723
|
-
readonly messageCount: {
|
|
3732
|
+
readonly unreadCount: {
|
|
3724
3733
|
type: "number";
|
|
3725
3734
|
optional: false;
|
|
3726
3735
|
customType: number;
|
|
3727
3736
|
} & {
|
|
3728
3737
|
serverName: string;
|
|
3729
3738
|
};
|
|
3730
|
-
|
|
3739
|
+
};
|
|
3740
|
+
primaryKey: readonly [string, ...string[]];
|
|
3741
|
+
} & {
|
|
3742
|
+
primaryKey: ["id"];
|
|
3743
|
+
};
|
|
3744
|
+
readonly draftAttachment: {
|
|
3745
|
+
name: "draftAttachment";
|
|
3746
|
+
columns: {
|
|
3747
|
+
readonly draftId: {
|
|
3731
3748
|
type: "string";
|
|
3732
3749
|
optional: false;
|
|
3733
3750
|
customType: string;
|
|
3734
3751
|
} & {
|
|
3735
3752
|
serverName: string;
|
|
3736
3753
|
};
|
|
3737
|
-
readonly
|
|
3738
|
-
type: "boolean";
|
|
3739
|
-
optional: false;
|
|
3740
|
-
customType: boolean;
|
|
3741
|
-
};
|
|
3742
|
-
readonly senderEmail: {
|
|
3754
|
+
readonly fileName: {
|
|
3743
3755
|
type: "string";
|
|
3744
3756
|
optional: false;
|
|
3745
3757
|
customType: string;
|
|
3746
3758
|
} & {
|
|
3747
3759
|
serverName: string;
|
|
3748
3760
|
};
|
|
3749
|
-
readonly
|
|
3761
|
+
readonly id: {
|
|
3750
3762
|
type: "string";
|
|
3751
3763
|
optional: false;
|
|
3752
3764
|
customType: string;
|
|
3753
|
-
}, "optional"> & {
|
|
3754
|
-
optional: true;
|
|
3755
|
-
} & {
|
|
3756
|
-
serverName: string;
|
|
3757
3765
|
};
|
|
3758
|
-
readonly
|
|
3766
|
+
readonly mimeType: {
|
|
3759
3767
|
type: "string";
|
|
3760
3768
|
optional: false;
|
|
3761
3769
|
customType: string;
|
|
3762
|
-
}
|
|
3763
|
-
|
|
3770
|
+
} & {
|
|
3771
|
+
serverName: string;
|
|
3764
3772
|
};
|
|
3765
|
-
readonly
|
|
3773
|
+
readonly status: {
|
|
3766
3774
|
type: "string";
|
|
3767
3775
|
optional: false;
|
|
3768
|
-
customType:
|
|
3776
|
+
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
3769
3777
|
} & {
|
|
3770
3778
|
serverName: string;
|
|
3771
3779
|
};
|
|
3772
|
-
readonly
|
|
3773
|
-
type: "
|
|
3780
|
+
readonly totalSize: {
|
|
3781
|
+
type: "number";
|
|
3774
3782
|
optional: false;
|
|
3775
|
-
customType:
|
|
3783
|
+
customType: number;
|
|
3784
|
+
} & {
|
|
3785
|
+
serverName: string;
|
|
3776
3786
|
};
|
|
3777
3787
|
};
|
|
3778
3788
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4020,259 +4030,259 @@ export declare const marcoZero: {
|
|
|
4020
4030
|
relationships: {
|
|
4021
4031
|
readonly user: {
|
|
4022
4032
|
accounts: [{
|
|
4023
|
-
readonly sourceField: readonly ("id" | "
|
|
4024
|
-
readonly destField: readonly ("id" | "
|
|
4033
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4034
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4025
4035
|
readonly destSchema: "account";
|
|
4026
4036
|
readonly cardinality: "many";
|
|
4027
4037
|
}];
|
|
4028
4038
|
contacts: [{
|
|
4029
|
-
readonly sourceField: readonly ("id" | "
|
|
4030
|
-
readonly destField: readonly ("
|
|
4039
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4040
|
+
readonly destField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
4031
4041
|
readonly destSchema: "contact";
|
|
4032
4042
|
readonly cardinality: "many";
|
|
4033
4043
|
}];
|
|
4034
4044
|
drafts: [{
|
|
4035
|
-
readonly sourceField: readonly ("id" | "
|
|
4036
|
-
readonly destField: readonly ("type" | "status" | "
|
|
4045
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4046
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
4037
4047
|
readonly destSchema: "draft";
|
|
4038
4048
|
readonly cardinality: "many";
|
|
4039
4049
|
}];
|
|
4040
4050
|
pushNotificationTokens: [{
|
|
4041
|
-
readonly sourceField: readonly ("id" | "
|
|
4042
|
-
readonly destField: readonly ("id" | "
|
|
4051
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4052
|
+
readonly destField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
4043
4053
|
readonly destSchema: "userPushNotificationToken";
|
|
4044
4054
|
readonly cardinality: "many";
|
|
4045
4055
|
}];
|
|
4046
4056
|
threads: [{
|
|
4047
|
-
readonly sourceField: readonly ("id" | "
|
|
4048
|
-
readonly destField: readonly ("
|
|
4057
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4058
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4049
4059
|
readonly destSchema: "thread";
|
|
4050
4060
|
readonly cardinality: "many";
|
|
4051
4061
|
}];
|
|
4052
4062
|
};
|
|
4053
|
-
readonly userPushNotificationToken: {
|
|
4054
|
-
user: [{
|
|
4055
|
-
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
4056
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
4057
|
-
readonly destSchema: "user";
|
|
4058
|
-
readonly cardinality: "one";
|
|
4059
|
-
}];
|
|
4060
|
-
};
|
|
4061
|
-
readonly contact: {
|
|
4062
|
-
user: [{
|
|
4063
|
-
readonly sourceField: readonly ("id" | "name" | "userId" | "emailAddress")[];
|
|
4064
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
4065
|
-
readonly destSchema: "user";
|
|
4066
|
-
readonly cardinality: "one";
|
|
4067
|
-
}];
|
|
4068
|
-
};
|
|
4069
4063
|
readonly account: {
|
|
4070
4064
|
aliases: [{
|
|
4071
|
-
readonly sourceField: readonly ("id" | "
|
|
4072
|
-
readonly destField: readonly ("
|
|
4065
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4066
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
4073
4067
|
readonly destSchema: "accountAlias";
|
|
4074
4068
|
readonly cardinality: "many";
|
|
4075
4069
|
}];
|
|
4076
4070
|
drafts: [{
|
|
4077
|
-
readonly sourceField: readonly ("id" | "
|
|
4078
|
-
readonly destField: readonly ("type" | "status" | "
|
|
4071
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4072
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
4079
4073
|
readonly destSchema: "draft";
|
|
4080
4074
|
readonly cardinality: "many";
|
|
4081
4075
|
}];
|
|
4082
4076
|
labels: [{
|
|
4083
|
-
readonly sourceField: readonly ("id" | "
|
|
4084
|
-
readonly destField: readonly ("
|
|
4077
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4078
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
4085
4079
|
readonly destSchema: "accountLabel";
|
|
4086
4080
|
readonly cardinality: "many";
|
|
4087
4081
|
}];
|
|
4088
4082
|
primaryAlias: [{
|
|
4089
|
-
readonly sourceField: readonly ("id" | "
|
|
4090
|
-
readonly destField: readonly ("
|
|
4083
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4084
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
4091
4085
|
readonly destSchema: "accountAlias";
|
|
4092
4086
|
readonly cardinality: "one";
|
|
4093
4087
|
}];
|
|
4094
4088
|
threads: [{
|
|
4095
|
-
readonly sourceField: readonly ("id" | "
|
|
4096
|
-
readonly destField: readonly ("
|
|
4089
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4090
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4097
4091
|
readonly destSchema: "thread";
|
|
4098
4092
|
readonly cardinality: "many";
|
|
4099
4093
|
}];
|
|
4100
4094
|
user: [{
|
|
4101
|
-
readonly sourceField: readonly ("id" | "
|
|
4102
|
-
readonly destField: readonly ("id" | "
|
|
4095
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4096
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4103
4097
|
readonly destSchema: "user";
|
|
4104
4098
|
readonly cardinality: "one";
|
|
4105
4099
|
}];
|
|
4106
4100
|
};
|
|
4107
|
-
readonly
|
|
4108
|
-
|
|
4109
|
-
readonly sourceField: readonly ("
|
|
4110
|
-
readonly destField: readonly ("id" | "
|
|
4111
|
-
readonly destSchema: "
|
|
4112
|
-
readonly cardinality: "one";
|
|
4113
|
-
}];
|
|
4114
|
-
};
|
|
4115
|
-
readonly accountLabel: {
|
|
4116
|
-
account: [{
|
|
4117
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
4118
|
-
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4119
|
-
readonly destSchema: "account";
|
|
4101
|
+
readonly contact: {
|
|
4102
|
+
user: [{
|
|
4103
|
+
readonly sourceField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
4104
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4105
|
+
readonly destSchema: "user";
|
|
4120
4106
|
readonly cardinality: "one";
|
|
4121
4107
|
}];
|
|
4122
|
-
threads: [{
|
|
4123
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
4124
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
4125
|
-
readonly destSchema: "threadLabel";
|
|
4126
|
-
readonly cardinality: "many";
|
|
4127
|
-
}, {
|
|
4128
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
4129
|
-
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
4130
|
-
readonly destSchema: "thread";
|
|
4131
|
-
readonly cardinality: "many";
|
|
4132
|
-
}];
|
|
4133
4108
|
};
|
|
4134
4109
|
readonly draft: {
|
|
4135
4110
|
account: [{
|
|
4136
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
4137
|
-
readonly destField: readonly ("id" | "
|
|
4111
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
4112
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4138
4113
|
readonly destSchema: "account";
|
|
4139
4114
|
readonly cardinality: "one";
|
|
4140
4115
|
}];
|
|
4141
4116
|
attachments: [{
|
|
4142
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
4117
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
4143
4118
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
4144
4119
|
readonly destSchema: "draftAttachment";
|
|
4145
4120
|
readonly cardinality: "many";
|
|
4146
4121
|
}];
|
|
4147
4122
|
user: [{
|
|
4148
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
4149
|
-
readonly destField: readonly ("id" | "
|
|
4123
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
4124
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4150
4125
|
readonly destSchema: "user";
|
|
4151
4126
|
readonly cardinality: "one";
|
|
4152
4127
|
}];
|
|
4153
4128
|
};
|
|
4154
|
-
readonly draftAttachment: {
|
|
4155
|
-
draft: [{
|
|
4156
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
4157
|
-
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
4158
|
-
readonly destSchema: "draft";
|
|
4159
|
-
readonly cardinality: "one";
|
|
4160
|
-
}];
|
|
4161
|
-
};
|
|
4162
4129
|
readonly thread: {
|
|
4163
4130
|
account: [{
|
|
4164
|
-
readonly sourceField: readonly ("
|
|
4165
|
-
readonly destField: readonly ("id" | "
|
|
4131
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4132
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4166
4133
|
readonly destSchema: "account";
|
|
4167
4134
|
readonly cardinality: "one";
|
|
4168
4135
|
}];
|
|
4169
4136
|
labels: [{
|
|
4170
|
-
readonly sourceField: readonly ("
|
|
4171
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
4137
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4138
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
4172
4139
|
readonly destSchema: "threadLabel";
|
|
4173
4140
|
readonly cardinality: "many";
|
|
4174
4141
|
}, {
|
|
4175
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4176
|
-
readonly destField: readonly ("
|
|
4142
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
4143
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
4177
4144
|
readonly destSchema: "accountLabel";
|
|
4178
4145
|
readonly cardinality: "many";
|
|
4179
4146
|
}];
|
|
4180
4147
|
messages: [{
|
|
4181
|
-
readonly sourceField: readonly ("
|
|
4182
|
-
readonly destField: readonly ("
|
|
4148
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4149
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
4183
4150
|
readonly destSchema: "threadMessage";
|
|
4184
4151
|
readonly cardinality: "many";
|
|
4185
4152
|
}];
|
|
4186
4153
|
threadByLabel: [{
|
|
4187
|
-
readonly sourceField: readonly ("
|
|
4188
|
-
readonly destField: readonly ("
|
|
4154
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4155
|
+
readonly destField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
4189
4156
|
readonly destSchema: "threadByLabel";
|
|
4190
4157
|
readonly cardinality: "many";
|
|
4191
4158
|
}];
|
|
4192
4159
|
user: [{
|
|
4193
|
-
readonly sourceField: readonly ("
|
|
4194
|
-
readonly destField: readonly ("id" | "
|
|
4160
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4161
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4195
4162
|
readonly destSchema: "user";
|
|
4196
4163
|
readonly cardinality: "one";
|
|
4197
4164
|
}];
|
|
4198
4165
|
};
|
|
4166
|
+
readonly userPushNotificationToken: {
|
|
4167
|
+
user: [{
|
|
4168
|
+
readonly sourceField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
4169
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4170
|
+
readonly destSchema: "user";
|
|
4171
|
+
readonly cardinality: "one";
|
|
4172
|
+
}];
|
|
4173
|
+
};
|
|
4174
|
+
readonly accountAlias: {
|
|
4175
|
+
account: [{
|
|
4176
|
+
readonly sourceField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
4177
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4178
|
+
readonly destSchema: "account";
|
|
4179
|
+
readonly cardinality: "one";
|
|
4180
|
+
}];
|
|
4181
|
+
};
|
|
4182
|
+
readonly accountLabel: {
|
|
4183
|
+
account: [{
|
|
4184
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
4185
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4186
|
+
readonly destSchema: "account";
|
|
4187
|
+
readonly cardinality: "one";
|
|
4188
|
+
}];
|
|
4189
|
+
threads: [{
|
|
4190
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
4191
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
4192
|
+
readonly destSchema: "threadLabel";
|
|
4193
|
+
readonly cardinality: "many";
|
|
4194
|
+
}, {
|
|
4195
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
4196
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4197
|
+
readonly destSchema: "thread";
|
|
4198
|
+
readonly cardinality: "many";
|
|
4199
|
+
}];
|
|
4200
|
+
};
|
|
4201
|
+
readonly draftAttachment: {
|
|
4202
|
+
draft: [{
|
|
4203
|
+
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
4204
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
4205
|
+
readonly destSchema: "draft";
|
|
4206
|
+
readonly cardinality: "one";
|
|
4207
|
+
}];
|
|
4208
|
+
};
|
|
4199
4209
|
readonly threadLabel: {
|
|
4200
4210
|
label: [{
|
|
4201
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4202
|
-
readonly destField: readonly ("
|
|
4211
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
4212
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
4203
4213
|
readonly destSchema: "accountLabel";
|
|
4204
4214
|
readonly cardinality: "one";
|
|
4205
4215
|
}];
|
|
4206
4216
|
message: [{
|
|
4207
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4208
|
-
readonly destField: readonly ("
|
|
4217
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
4218
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
4209
4219
|
readonly destSchema: "threadMessage";
|
|
4210
4220
|
readonly cardinality: "one";
|
|
4211
4221
|
}];
|
|
4212
4222
|
thread: [{
|
|
4213
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4214
|
-
readonly destField: readonly ("
|
|
4223
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
4224
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4215
4225
|
readonly destSchema: "thread";
|
|
4216
4226
|
readonly cardinality: "one";
|
|
4217
4227
|
}];
|
|
4218
4228
|
};
|
|
4219
4229
|
readonly threadByLabel: {
|
|
4220
4230
|
label: [{
|
|
4221
|
-
readonly sourceField: readonly ("
|
|
4222
|
-
readonly destField: readonly ("
|
|
4231
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
4232
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
4223
4233
|
readonly destSchema: "accountLabel";
|
|
4224
4234
|
readonly cardinality: "one";
|
|
4225
4235
|
}];
|
|
4226
4236
|
thread: [{
|
|
4227
|
-
readonly sourceField: readonly ("
|
|
4228
|
-
readonly destField: readonly ("
|
|
4237
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
4238
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4229
4239
|
readonly destSchema: "thread";
|
|
4230
4240
|
readonly cardinality: "one";
|
|
4231
4241
|
}];
|
|
4232
4242
|
};
|
|
4233
4243
|
readonly threadMessage: {
|
|
4234
4244
|
attachments: [{
|
|
4235
|
-
readonly sourceField: readonly ("
|
|
4236
|
-
readonly destField: readonly ("id" | "fileName" | "mimeType" | "
|
|
4245
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
4246
|
+
readonly destField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
4237
4247
|
readonly destSchema: "threadMessageAttachment";
|
|
4238
4248
|
readonly cardinality: "many";
|
|
4239
4249
|
}];
|
|
4240
4250
|
labels: [{
|
|
4241
|
-
readonly sourceField: readonly ("
|
|
4242
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
4251
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
4252
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
4243
4253
|
readonly destSchema: "threadLabel";
|
|
4244
4254
|
readonly cardinality: "many";
|
|
4245
4255
|
}, {
|
|
4246
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4247
|
-
readonly destField: readonly ("
|
|
4256
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
4257
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
4248
4258
|
readonly destSchema: "accountLabel";
|
|
4249
4259
|
readonly cardinality: "many";
|
|
4250
4260
|
}];
|
|
4251
4261
|
recipients: [{
|
|
4252
|
-
readonly sourceField: readonly ("
|
|
4253
|
-
readonly destField: readonly ("type" | "
|
|
4262
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
4263
|
+
readonly destField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
4254
4264
|
readonly destSchema: "threadMessageRecipient";
|
|
4255
4265
|
readonly cardinality: "many";
|
|
4256
4266
|
}];
|
|
4257
4267
|
thread: [{
|
|
4258
|
-
readonly sourceField: readonly ("
|
|
4259
|
-
readonly destField: readonly ("
|
|
4268
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
4269
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
4260
4270
|
readonly destSchema: "thread";
|
|
4261
4271
|
readonly cardinality: "one";
|
|
4262
4272
|
}];
|
|
4263
4273
|
};
|
|
4264
4274
|
readonly threadMessageRecipient: {
|
|
4265
4275
|
message: [{
|
|
4266
|
-
readonly sourceField: readonly ("type" | "
|
|
4267
|
-
readonly destField: readonly ("
|
|
4276
|
+
readonly sourceField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
4277
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
4268
4278
|
readonly destSchema: "threadMessage";
|
|
4269
4279
|
readonly cardinality: "one";
|
|
4270
4280
|
}];
|
|
4271
4281
|
};
|
|
4272
4282
|
readonly threadMessageAttachment: {
|
|
4273
4283
|
message: [{
|
|
4274
|
-
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "
|
|
4275
|
-
readonly destField: readonly ("
|
|
4284
|
+
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
4285
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
4276
4286
|
readonly destSchema: "threadMessage";
|
|
4277
4287
|
readonly cardinality: "one";
|
|
4278
4288
|
}];
|