@marcoappio/marco-config 2.0.536 → 2.0.538
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 +926 -924
- 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 +281 -281
- 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
|
}];
|
|
@@ -2253,72 +2255,6 @@ export declare const marcoZero: {
|
|
|
2253
2255
|
} & {
|
|
2254
2256
|
primaryKey: ["id"];
|
|
2255
2257
|
};
|
|
2256
|
-
readonly userPushNotificationToken: {
|
|
2257
|
-
name: "userPushNotificationToken";
|
|
2258
|
-
columns: {
|
|
2259
|
-
readonly createdAt: {
|
|
2260
|
-
type: "number";
|
|
2261
|
-
optional: false;
|
|
2262
|
-
customType: number;
|
|
2263
|
-
} & {
|
|
2264
|
-
serverName: string;
|
|
2265
|
-
};
|
|
2266
|
-
readonly id: {
|
|
2267
|
-
type: "string";
|
|
2268
|
-
optional: false;
|
|
2269
|
-
customType: string;
|
|
2270
|
-
};
|
|
2271
|
-
readonly token: {
|
|
2272
|
-
type: "string";
|
|
2273
|
-
optional: false;
|
|
2274
|
-
customType: string;
|
|
2275
|
-
};
|
|
2276
|
-
readonly userId: {
|
|
2277
|
-
type: "string";
|
|
2278
|
-
optional: false;
|
|
2279
|
-
customType: string;
|
|
2280
|
-
} & {
|
|
2281
|
-
serverName: string;
|
|
2282
|
-
};
|
|
2283
|
-
};
|
|
2284
|
-
primaryKey: readonly [string, ...string[]];
|
|
2285
|
-
} & {
|
|
2286
|
-
primaryKey: ["id"];
|
|
2287
|
-
};
|
|
2288
|
-
readonly contact: {
|
|
2289
|
-
name: "contact";
|
|
2290
|
-
columns: {
|
|
2291
|
-
readonly emailAddress: {
|
|
2292
|
-
type: "string";
|
|
2293
|
-
optional: false;
|
|
2294
|
-
customType: string;
|
|
2295
|
-
} & {
|
|
2296
|
-
serverName: string;
|
|
2297
|
-
};
|
|
2298
|
-
readonly id: {
|
|
2299
|
-
type: "string";
|
|
2300
|
-
optional: false;
|
|
2301
|
-
customType: string;
|
|
2302
|
-
};
|
|
2303
|
-
readonly name: Omit<{
|
|
2304
|
-
type: "string";
|
|
2305
|
-
optional: false;
|
|
2306
|
-
customType: string;
|
|
2307
|
-
}, "optional"> & {
|
|
2308
|
-
optional: true;
|
|
2309
|
-
};
|
|
2310
|
-
readonly userId: {
|
|
2311
|
-
type: "string";
|
|
2312
|
-
optional: false;
|
|
2313
|
-
customType: string;
|
|
2314
|
-
} & {
|
|
2315
|
-
serverName: string;
|
|
2316
|
-
};
|
|
2317
|
-
};
|
|
2318
|
-
primaryKey: readonly [string, ...string[]];
|
|
2319
|
-
} & {
|
|
2320
|
-
primaryKey: ["id"];
|
|
2321
|
-
};
|
|
2322
2258
|
readonly account: {
|
|
2323
2259
|
name: "account";
|
|
2324
2260
|
columns: {
|
|
@@ -2371,63 +2307,22 @@ export declare const marcoZero: {
|
|
|
2371
2307
|
} & {
|
|
2372
2308
|
serverName: string;
|
|
2373
2309
|
};
|
|
2374
|
-
readonly userId: {
|
|
2375
|
-
type: "string";
|
|
2376
|
-
optional: false;
|
|
2377
|
-
customType: string;
|
|
2378
|
-
} & {
|
|
2379
|
-
serverName: string;
|
|
2380
|
-
};
|
|
2381
|
-
};
|
|
2382
|
-
primaryKey: readonly [string, ...string[]];
|
|
2383
|
-
} & {
|
|
2384
|
-
primaryKey: ["id"];
|
|
2385
|
-
};
|
|
2386
|
-
readonly accountAlias: {
|
|
2387
|
-
name: "accountAlias";
|
|
2388
|
-
columns: {
|
|
2389
|
-
readonly accountId: {
|
|
2390
|
-
type: "string";
|
|
2391
|
-
optional: false;
|
|
2392
|
-
customType: string;
|
|
2393
|
-
} & {
|
|
2394
|
-
serverName: string;
|
|
2395
|
-
};
|
|
2396
|
-
readonly emailAddress: {
|
|
2397
|
-
type: "string";
|
|
2398
|
-
optional: false;
|
|
2399
|
-
customType: string;
|
|
2400
|
-
} & {
|
|
2401
|
-
serverName: string;
|
|
2402
|
-
};
|
|
2403
|
-
readonly id: {
|
|
2404
|
-
type: "string";
|
|
2405
|
-
optional: false;
|
|
2406
|
-
customType: string;
|
|
2407
|
-
};
|
|
2408
|
-
readonly isPrimary: {
|
|
2409
|
-
type: "boolean";
|
|
2410
|
-
optional: false;
|
|
2411
|
-
customType: boolean;
|
|
2412
|
-
} & {
|
|
2413
|
-
serverName: string;
|
|
2414
|
-
};
|
|
2415
|
-
readonly name: Omit<{
|
|
2310
|
+
readonly userId: {
|
|
2416
2311
|
type: "string";
|
|
2417
2312
|
optional: false;
|
|
2418
2313
|
customType: string;
|
|
2419
|
-
}
|
|
2420
|
-
|
|
2314
|
+
} & {
|
|
2315
|
+
serverName: string;
|
|
2421
2316
|
};
|
|
2422
2317
|
};
|
|
2423
2318
|
primaryKey: readonly [string, ...string[]];
|
|
2424
2319
|
} & {
|
|
2425
2320
|
primaryKey: ["id"];
|
|
2426
2321
|
};
|
|
2427
|
-
readonly
|
|
2428
|
-
name: "
|
|
2322
|
+
readonly contact: {
|
|
2323
|
+
name: "contact";
|
|
2429
2324
|
columns: {
|
|
2430
|
-
readonly
|
|
2325
|
+
readonly emailAddress: {
|
|
2431
2326
|
type: "string";
|
|
2432
2327
|
optional: false;
|
|
2433
2328
|
customType: string;
|
|
@@ -2446,31 +2341,10 @@ export declare const marcoZero: {
|
|
|
2446
2341
|
}, "optional"> & {
|
|
2447
2342
|
optional: true;
|
|
2448
2343
|
};
|
|
2449
|
-
readonly
|
|
2344
|
+
readonly userId: {
|
|
2450
2345
|
type: "string";
|
|
2451
2346
|
optional: false;
|
|
2452
2347
|
customType: string;
|
|
2453
|
-
};
|
|
2454
|
-
readonly specialUse: Omit<{
|
|
2455
|
-
type: "string";
|
|
2456
|
-
optional: false;
|
|
2457
|
-
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
2458
|
-
}, "optional"> & {
|
|
2459
|
-
optional: true;
|
|
2460
|
-
} & {
|
|
2461
|
-
serverName: string;
|
|
2462
|
-
};
|
|
2463
|
-
readonly uidValidity: {
|
|
2464
|
-
type: "number";
|
|
2465
|
-
optional: false;
|
|
2466
|
-
customType: number;
|
|
2467
|
-
} & {
|
|
2468
|
-
serverName: string;
|
|
2469
|
-
};
|
|
2470
|
-
readonly unreadCount: {
|
|
2471
|
-
type: "number";
|
|
2472
|
-
optional: false;
|
|
2473
|
-
customType: number;
|
|
2474
2348
|
} & {
|
|
2475
2349
|
serverName: string;
|
|
2476
2350
|
};
|
|
@@ -2590,20 +2464,25 @@ export declare const marcoZero: {
|
|
|
2590
2464
|
} & {
|
|
2591
2465
|
primaryKey: ["id"];
|
|
2592
2466
|
};
|
|
2593
|
-
readonly
|
|
2594
|
-
name: "
|
|
2467
|
+
readonly thread: {
|
|
2468
|
+
name: "thread";
|
|
2595
2469
|
columns: {
|
|
2596
|
-
readonly
|
|
2470
|
+
readonly accountId: {
|
|
2597
2471
|
type: "string";
|
|
2598
2472
|
optional: false;
|
|
2599
2473
|
customType: string;
|
|
2600
2474
|
} & {
|
|
2601
2475
|
serverName: string;
|
|
2602
2476
|
};
|
|
2603
|
-
readonly
|
|
2604
|
-
type: "
|
|
2477
|
+
readonly flagged: {
|
|
2478
|
+
type: "boolean";
|
|
2605
2479
|
optional: false;
|
|
2606
|
-
customType:
|
|
2480
|
+
customType: boolean;
|
|
2481
|
+
};
|
|
2482
|
+
readonly hasAttachments: {
|
|
2483
|
+
type: "boolean";
|
|
2484
|
+
optional: false;
|
|
2485
|
+
customType: boolean;
|
|
2607
2486
|
} & {
|
|
2608
2487
|
serverName: string;
|
|
2609
2488
|
};
|
|
@@ -2612,133 +2491,256 @@ export declare const marcoZero: {
|
|
|
2612
2491
|
optional: false;
|
|
2613
2492
|
customType: string;
|
|
2614
2493
|
};
|
|
2615
|
-
readonly
|
|
2494
|
+
readonly labelIdList: {
|
|
2616
2495
|
type: "string";
|
|
2617
2496
|
optional: false;
|
|
2618
2497
|
customType: string;
|
|
2619
2498
|
} & {
|
|
2620
2499
|
serverName: string;
|
|
2621
2500
|
};
|
|
2622
|
-
readonly
|
|
2501
|
+
readonly latestMessageDate: {
|
|
2502
|
+
type: "number";
|
|
2503
|
+
optional: false;
|
|
2504
|
+
customType: number;
|
|
2505
|
+
} & {
|
|
2506
|
+
serverName: string;
|
|
2507
|
+
};
|
|
2508
|
+
readonly latestMessageId: {
|
|
2623
2509
|
type: "string";
|
|
2624
2510
|
optional: false;
|
|
2625
|
-
customType:
|
|
2511
|
+
customType: string;
|
|
2626
2512
|
} & {
|
|
2627
2513
|
serverName: string;
|
|
2628
2514
|
};
|
|
2629
|
-
readonly
|
|
2515
|
+
readonly messageCount: {
|
|
2630
2516
|
type: "number";
|
|
2631
2517
|
optional: false;
|
|
2632
2518
|
customType: number;
|
|
2633
2519
|
} & {
|
|
2634
2520
|
serverName: string;
|
|
2635
2521
|
};
|
|
2636
|
-
|
|
2637
|
-
primaryKey: readonly [string, ...string[]];
|
|
2638
|
-
} & {
|
|
2639
|
-
primaryKey: ["id"];
|
|
2640
|
-
};
|
|
2641
|
-
readonly thread: {
|
|
2642
|
-
name: "thread";
|
|
2643
|
-
columns: {
|
|
2644
|
-
readonly accountId: {
|
|
2522
|
+
readonly previewText: {
|
|
2645
2523
|
type: "string";
|
|
2646
2524
|
optional: false;
|
|
2647
2525
|
customType: string;
|
|
2648
2526
|
} & {
|
|
2649
2527
|
serverName: string;
|
|
2650
2528
|
};
|
|
2651
|
-
readonly
|
|
2529
|
+
readonly seen: {
|
|
2652
2530
|
type: "boolean";
|
|
2653
2531
|
optional: false;
|
|
2654
2532
|
customType: boolean;
|
|
2655
2533
|
};
|
|
2656
|
-
readonly
|
|
2657
|
-
type: "
|
|
2534
|
+
readonly senderEmail: {
|
|
2535
|
+
type: "string";
|
|
2658
2536
|
optional: false;
|
|
2659
|
-
customType:
|
|
2537
|
+
customType: string;
|
|
2660
2538
|
} & {
|
|
2661
2539
|
serverName: string;
|
|
2662
2540
|
};
|
|
2663
|
-
readonly
|
|
2541
|
+
readonly senderName: Omit<{
|
|
2664
2542
|
type: "string";
|
|
2665
2543
|
optional: false;
|
|
2666
2544
|
customType: string;
|
|
2545
|
+
}, "optional"> & {
|
|
2546
|
+
optional: true;
|
|
2547
|
+
} & {
|
|
2548
|
+
serverName: string;
|
|
2667
2549
|
};
|
|
2668
|
-
readonly
|
|
2550
|
+
readonly subject: Omit<{
|
|
2551
|
+
type: "string";
|
|
2552
|
+
optional: false;
|
|
2553
|
+
customType: string;
|
|
2554
|
+
}, "optional"> & {
|
|
2555
|
+
optional: true;
|
|
2556
|
+
};
|
|
2557
|
+
readonly userId: {
|
|
2669
2558
|
type: "string";
|
|
2670
2559
|
optional: false;
|
|
2671
2560
|
customType: string;
|
|
2672
2561
|
} & {
|
|
2673
2562
|
serverName: string;
|
|
2674
2563
|
};
|
|
2675
|
-
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: {
|
|
2676
2578
|
type: "number";
|
|
2677
2579
|
optional: false;
|
|
2678
2580
|
customType: number;
|
|
2679
2581
|
} & {
|
|
2680
2582
|
serverName: string;
|
|
2681
2583
|
};
|
|
2682
|
-
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: {
|
|
2683
2595
|
type: "string";
|
|
2684
2596
|
optional: false;
|
|
2685
2597
|
customType: string;
|
|
2686
2598
|
} & {
|
|
2687
2599
|
serverName: string;
|
|
2688
2600
|
};
|
|
2689
|
-
|
|
2690
|
-
|
|
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";
|
|
2691
2611
|
optional: false;
|
|
2692
|
-
customType:
|
|
2612
|
+
customType: string;
|
|
2693
2613
|
} & {
|
|
2694
2614
|
serverName: string;
|
|
2695
2615
|
};
|
|
2696
|
-
readonly
|
|
2616
|
+
readonly emailAddress: {
|
|
2697
2617
|
type: "string";
|
|
2698
2618
|
optional: false;
|
|
2699
2619
|
customType: string;
|
|
2700
2620
|
} & {
|
|
2701
2621
|
serverName: string;
|
|
2702
2622
|
};
|
|
2703
|
-
readonly
|
|
2623
|
+
readonly id: {
|
|
2624
|
+
type: "string";
|
|
2625
|
+
optional: false;
|
|
2626
|
+
customType: string;
|
|
2627
|
+
};
|
|
2628
|
+
readonly isPrimary: {
|
|
2704
2629
|
type: "boolean";
|
|
2705
2630
|
optional: false;
|
|
2706
2631
|
customType: boolean;
|
|
2632
|
+
} & {
|
|
2633
|
+
serverName: string;
|
|
2707
2634
|
};
|
|
2708
|
-
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: {
|
|
2709
2651
|
type: "string";
|
|
2710
2652
|
optional: false;
|
|
2711
2653
|
customType: string;
|
|
2712
2654
|
} & {
|
|
2713
2655
|
serverName: string;
|
|
2714
2656
|
};
|
|
2715
|
-
readonly
|
|
2657
|
+
readonly id: {
|
|
2658
|
+
type: "string";
|
|
2659
|
+
optional: false;
|
|
2660
|
+
customType: string;
|
|
2661
|
+
};
|
|
2662
|
+
readonly name: Omit<{
|
|
2716
2663
|
type: "string";
|
|
2717
2664
|
optional: false;
|
|
2718
2665
|
customType: string;
|
|
2719
2666
|
}, "optional"> & {
|
|
2720
2667
|
optional: true;
|
|
2721
|
-
} & {
|
|
2722
|
-
serverName: string;
|
|
2723
2668
|
};
|
|
2724
|
-
readonly
|
|
2669
|
+
readonly path: {
|
|
2725
2670
|
type: "string";
|
|
2726
2671
|
optional: false;
|
|
2727
2672
|
customType: string;
|
|
2673
|
+
};
|
|
2674
|
+
readonly specialUse: Omit<{
|
|
2675
|
+
type: "string";
|
|
2676
|
+
optional: false;
|
|
2677
|
+
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
2728
2678
|
}, "optional"> & {
|
|
2729
2679
|
optional: true;
|
|
2680
|
+
} & {
|
|
2681
|
+
serverName: string;
|
|
2730
2682
|
};
|
|
2731
|
-
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: {
|
|
2732
2706
|
type: "string";
|
|
2733
2707
|
optional: false;
|
|
2734
2708
|
customType: string;
|
|
2735
2709
|
} & {
|
|
2736
2710
|
serverName: string;
|
|
2737
2711
|
};
|
|
2738
|
-
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: {
|
|
2739
2725
|
type: "string";
|
|
2740
2726
|
optional: false;
|
|
2741
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;
|
|
2742
2744
|
};
|
|
2743
2745
|
};
|
|
2744
2746
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -2986,259 +2988,259 @@ export declare const marcoZero: {
|
|
|
2986
2988
|
relationships: {
|
|
2987
2989
|
readonly user: {
|
|
2988
2990
|
accounts: [{
|
|
2989
|
-
readonly sourceField: readonly ("id" | "
|
|
2990
|
-
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")[];
|
|
2991
2993
|
readonly destSchema: "account";
|
|
2992
2994
|
readonly cardinality: "many";
|
|
2993
2995
|
}];
|
|
2994
2996
|
contacts: [{
|
|
2995
|
-
readonly sourceField: readonly ("id" | "
|
|
2996
|
-
readonly destField: readonly ("
|
|
2997
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
2998
|
+
readonly destField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
2997
2999
|
readonly destSchema: "contact";
|
|
2998
3000
|
readonly cardinality: "many";
|
|
2999
3001
|
}];
|
|
3000
3002
|
drafts: [{
|
|
3001
|
-
readonly sourceField: readonly ("id" | "
|
|
3002
|
-
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")[];
|
|
3003
3005
|
readonly destSchema: "draft";
|
|
3004
3006
|
readonly cardinality: "many";
|
|
3005
3007
|
}];
|
|
3006
3008
|
pushNotificationTokens: [{
|
|
3007
|
-
readonly sourceField: readonly ("id" | "
|
|
3008
|
-
readonly destField: readonly ("id" | "
|
|
3009
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
3010
|
+
readonly destField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
3009
3011
|
readonly destSchema: "userPushNotificationToken";
|
|
3010
3012
|
readonly cardinality: "many";
|
|
3011
3013
|
}];
|
|
3012
|
-
threads: [{
|
|
3013
|
-
readonly sourceField: readonly ("id" | "
|
|
3014
|
-
readonly destField: readonly ("
|
|
3015
|
-
readonly destSchema: "thread";
|
|
3016
|
-
readonly cardinality: "many";
|
|
3017
|
-
}];
|
|
3018
|
-
};
|
|
3019
|
-
readonly userPushNotificationToken: {
|
|
3020
|
-
user: [{
|
|
3021
|
-
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
3022
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
3023
|
-
readonly destSchema: "user";
|
|
3024
|
-
readonly cardinality: "one";
|
|
3025
|
-
}];
|
|
3026
|
-
};
|
|
3027
|
-
readonly contact: {
|
|
3028
|
-
user: [{
|
|
3029
|
-
readonly sourceField: readonly ("id" | "name" | "userId" | "emailAddress")[];
|
|
3030
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
3031
|
-
readonly destSchema: "user";
|
|
3032
|
-
readonly cardinality: "one";
|
|
3033
|
-
}];
|
|
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
|
+
}];
|
|
3034
3020
|
};
|
|
3035
3021
|
readonly account: {
|
|
3036
3022
|
aliases: [{
|
|
3037
|
-
readonly sourceField: readonly ("id" | "
|
|
3038
|
-
readonly destField: readonly ("
|
|
3023
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3024
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
3039
3025
|
readonly destSchema: "accountAlias";
|
|
3040
3026
|
readonly cardinality: "many";
|
|
3041
3027
|
}];
|
|
3042
3028
|
drafts: [{
|
|
3043
|
-
readonly sourceField: readonly ("id" | "
|
|
3044
|
-
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")[];
|
|
3045
3031
|
readonly destSchema: "draft";
|
|
3046
3032
|
readonly cardinality: "many";
|
|
3047
3033
|
}];
|
|
3048
3034
|
labels: [{
|
|
3049
|
-
readonly sourceField: readonly ("id" | "
|
|
3050
|
-
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")[];
|
|
3051
3037
|
readonly destSchema: "accountLabel";
|
|
3052
3038
|
readonly cardinality: "many";
|
|
3053
3039
|
}];
|
|
3054
3040
|
primaryAlias: [{
|
|
3055
|
-
readonly sourceField: readonly ("id" | "
|
|
3056
|
-
readonly destField: readonly ("
|
|
3041
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
3042
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
3057
3043
|
readonly destSchema: "accountAlias";
|
|
3058
3044
|
readonly cardinality: "one";
|
|
3059
3045
|
}];
|
|
3060
3046
|
threads: [{
|
|
3061
|
-
readonly sourceField: readonly ("id" | "
|
|
3062
|
-
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")[];
|
|
3063
3049
|
readonly destSchema: "thread";
|
|
3064
3050
|
readonly cardinality: "many";
|
|
3065
3051
|
}];
|
|
3066
3052
|
user: [{
|
|
3067
|
-
readonly sourceField: readonly ("id" | "
|
|
3068
|
-
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")[];
|
|
3069
3055
|
readonly destSchema: "user";
|
|
3070
3056
|
readonly cardinality: "one";
|
|
3071
3057
|
}];
|
|
3072
3058
|
};
|
|
3073
|
-
readonly
|
|
3074
|
-
|
|
3075
|
-
readonly sourceField: readonly ("
|
|
3076
|
-
readonly destField: readonly ("id" | "
|
|
3077
|
-
readonly destSchema: "
|
|
3078
|
-
readonly cardinality: "one";
|
|
3079
|
-
}];
|
|
3080
|
-
};
|
|
3081
|
-
readonly accountLabel: {
|
|
3082
|
-
account: [{
|
|
3083
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
3084
|
-
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
3085
|
-
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";
|
|
3086
3064
|
readonly cardinality: "one";
|
|
3087
3065
|
}];
|
|
3088
|
-
threads: [{
|
|
3089
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
3090
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
3091
|
-
readonly destSchema: "threadLabel";
|
|
3092
|
-
readonly cardinality: "many";
|
|
3093
|
-
}, {
|
|
3094
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
3095
|
-
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
3096
|
-
readonly destSchema: "thread";
|
|
3097
|
-
readonly cardinality: "many";
|
|
3098
|
-
}];
|
|
3099
3066
|
};
|
|
3100
3067
|
readonly draft: {
|
|
3101
3068
|
account: [{
|
|
3102
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
3103
|
-
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")[];
|
|
3104
3071
|
readonly destSchema: "account";
|
|
3105
3072
|
readonly cardinality: "one";
|
|
3106
3073
|
}];
|
|
3107
3074
|
attachments: [{
|
|
3108
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
3075
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
3109
3076
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
3110
3077
|
readonly destSchema: "draftAttachment";
|
|
3111
3078
|
readonly cardinality: "many";
|
|
3112
3079
|
}];
|
|
3113
3080
|
user: [{
|
|
3114
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
3115
|
-
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")[];
|
|
3116
3083
|
readonly destSchema: "user";
|
|
3117
3084
|
readonly cardinality: "one";
|
|
3118
3085
|
}];
|
|
3119
3086
|
};
|
|
3120
|
-
readonly draftAttachment: {
|
|
3121
|
-
draft: [{
|
|
3122
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
3123
|
-
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
3124
|
-
readonly destSchema: "draft";
|
|
3125
|
-
readonly cardinality: "one";
|
|
3126
|
-
}];
|
|
3127
|
-
};
|
|
3128
3087
|
readonly thread: {
|
|
3129
3088
|
account: [{
|
|
3130
|
-
readonly sourceField: readonly ("
|
|
3131
|
-
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")[];
|
|
3132
3091
|
readonly destSchema: "account";
|
|
3133
3092
|
readonly cardinality: "one";
|
|
3134
3093
|
}];
|
|
3135
3094
|
labels: [{
|
|
3136
|
-
readonly sourceField: readonly ("
|
|
3137
|
-
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")[];
|
|
3138
3097
|
readonly destSchema: "threadLabel";
|
|
3139
3098
|
readonly cardinality: "many";
|
|
3140
3099
|
}, {
|
|
3141
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3142
|
-
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")[];
|
|
3143
3102
|
readonly destSchema: "accountLabel";
|
|
3144
3103
|
readonly cardinality: "many";
|
|
3145
3104
|
}];
|
|
3146
3105
|
messages: [{
|
|
3147
|
-
readonly sourceField: readonly ("
|
|
3148
|
-
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")[];
|
|
3149
3108
|
readonly destSchema: "threadMessage";
|
|
3150
3109
|
readonly cardinality: "many";
|
|
3151
3110
|
}];
|
|
3152
3111
|
threadByLabel: [{
|
|
3153
|
-
readonly sourceField: readonly ("
|
|
3154
|
-
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")[];
|
|
3155
3114
|
readonly destSchema: "threadByLabel";
|
|
3156
3115
|
readonly cardinality: "many";
|
|
3157
3116
|
}];
|
|
3158
3117
|
user: [{
|
|
3159
|
-
readonly sourceField: readonly ("
|
|
3160
|
-
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")[];
|
|
3161
3128
|
readonly destSchema: "user";
|
|
3162
3129
|
readonly cardinality: "one";
|
|
3163
3130
|
}];
|
|
3164
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
|
+
};
|
|
3165
3167
|
readonly threadLabel: {
|
|
3166
3168
|
label: [{
|
|
3167
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3168
|
-
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")[];
|
|
3169
3171
|
readonly destSchema: "accountLabel";
|
|
3170
3172
|
readonly cardinality: "one";
|
|
3171
3173
|
}];
|
|
3172
3174
|
message: [{
|
|
3173
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3174
|
-
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")[];
|
|
3175
3177
|
readonly destSchema: "threadMessage";
|
|
3176
3178
|
readonly cardinality: "one";
|
|
3177
3179
|
}];
|
|
3178
3180
|
thread: [{
|
|
3179
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3180
|
-
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")[];
|
|
3181
3183
|
readonly destSchema: "thread";
|
|
3182
3184
|
readonly cardinality: "one";
|
|
3183
3185
|
}];
|
|
3184
3186
|
};
|
|
3185
3187
|
readonly threadByLabel: {
|
|
3186
3188
|
label: [{
|
|
3187
|
-
readonly sourceField: readonly ("
|
|
3188
|
-
readonly destField: readonly ("
|
|
3189
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
3190
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
3189
3191
|
readonly destSchema: "accountLabel";
|
|
3190
3192
|
readonly cardinality: "one";
|
|
3191
3193
|
}];
|
|
3192
3194
|
thread: [{
|
|
3193
|
-
readonly sourceField: readonly ("
|
|
3194
|
-
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")[];
|
|
3195
3197
|
readonly destSchema: "thread";
|
|
3196
3198
|
readonly cardinality: "one";
|
|
3197
3199
|
}];
|
|
3198
3200
|
};
|
|
3199
3201
|
readonly threadMessage: {
|
|
3200
3202
|
attachments: [{
|
|
3201
|
-
readonly sourceField: readonly ("
|
|
3202
|
-
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")[];
|
|
3203
3205
|
readonly destSchema: "threadMessageAttachment";
|
|
3204
3206
|
readonly cardinality: "many";
|
|
3205
3207
|
}];
|
|
3206
3208
|
labels: [{
|
|
3207
|
-
readonly sourceField: readonly ("
|
|
3208
|
-
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")[];
|
|
3209
3211
|
readonly destSchema: "threadLabel";
|
|
3210
3212
|
readonly cardinality: "many";
|
|
3211
3213
|
}, {
|
|
3212
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
3213
|
-
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")[];
|
|
3214
3216
|
readonly destSchema: "accountLabel";
|
|
3215
3217
|
readonly cardinality: "many";
|
|
3216
3218
|
}];
|
|
3217
3219
|
recipients: [{
|
|
3218
|
-
readonly sourceField: readonly ("
|
|
3219
|
-
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")[];
|
|
3220
3222
|
readonly destSchema: "threadMessageRecipient";
|
|
3221
3223
|
readonly cardinality: "many";
|
|
3222
3224
|
}];
|
|
3223
3225
|
thread: [{
|
|
3224
|
-
readonly sourceField: readonly ("
|
|
3225
|
-
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")[];
|
|
3226
3228
|
readonly destSchema: "thread";
|
|
3227
3229
|
readonly cardinality: "one";
|
|
3228
3230
|
}];
|
|
3229
3231
|
};
|
|
3230
3232
|
readonly threadMessageRecipient: {
|
|
3231
3233
|
message: [{
|
|
3232
|
-
readonly sourceField: readonly ("type" | "
|
|
3233
|
-
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")[];
|
|
3234
3236
|
readonly destSchema: "threadMessage";
|
|
3235
3237
|
readonly cardinality: "one";
|
|
3236
3238
|
}];
|
|
3237
3239
|
};
|
|
3238
3240
|
readonly threadMessageAttachment: {
|
|
3239
3241
|
message: [{
|
|
3240
|
-
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "
|
|
3241
|
-
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")[];
|
|
3242
3244
|
readonly destSchema: "threadMessage";
|
|
3243
3245
|
readonly cardinality: "one";
|
|
3244
3246
|
}];
|
|
@@ -3295,72 +3297,6 @@ export declare const marcoZero: {
|
|
|
3295
3297
|
} & {
|
|
3296
3298
|
primaryKey: ["id"];
|
|
3297
3299
|
};
|
|
3298
|
-
readonly userPushNotificationToken: {
|
|
3299
|
-
name: "userPushNotificationToken";
|
|
3300
|
-
columns: {
|
|
3301
|
-
readonly createdAt: {
|
|
3302
|
-
type: "number";
|
|
3303
|
-
optional: false;
|
|
3304
|
-
customType: number;
|
|
3305
|
-
} & {
|
|
3306
|
-
serverName: string;
|
|
3307
|
-
};
|
|
3308
|
-
readonly id: {
|
|
3309
|
-
type: "string";
|
|
3310
|
-
optional: false;
|
|
3311
|
-
customType: string;
|
|
3312
|
-
};
|
|
3313
|
-
readonly token: {
|
|
3314
|
-
type: "string";
|
|
3315
|
-
optional: false;
|
|
3316
|
-
customType: string;
|
|
3317
|
-
};
|
|
3318
|
-
readonly userId: {
|
|
3319
|
-
type: "string";
|
|
3320
|
-
optional: false;
|
|
3321
|
-
customType: string;
|
|
3322
|
-
} & {
|
|
3323
|
-
serverName: string;
|
|
3324
|
-
};
|
|
3325
|
-
};
|
|
3326
|
-
primaryKey: readonly [string, ...string[]];
|
|
3327
|
-
} & {
|
|
3328
|
-
primaryKey: ["id"];
|
|
3329
|
-
};
|
|
3330
|
-
readonly contact: {
|
|
3331
|
-
name: "contact";
|
|
3332
|
-
columns: {
|
|
3333
|
-
readonly emailAddress: {
|
|
3334
|
-
type: "string";
|
|
3335
|
-
optional: false;
|
|
3336
|
-
customType: string;
|
|
3337
|
-
} & {
|
|
3338
|
-
serverName: string;
|
|
3339
|
-
};
|
|
3340
|
-
readonly id: {
|
|
3341
|
-
type: "string";
|
|
3342
|
-
optional: false;
|
|
3343
|
-
customType: string;
|
|
3344
|
-
};
|
|
3345
|
-
readonly name: Omit<{
|
|
3346
|
-
type: "string";
|
|
3347
|
-
optional: false;
|
|
3348
|
-
customType: string;
|
|
3349
|
-
}, "optional"> & {
|
|
3350
|
-
optional: true;
|
|
3351
|
-
};
|
|
3352
|
-
readonly userId: {
|
|
3353
|
-
type: "string";
|
|
3354
|
-
optional: false;
|
|
3355
|
-
customType: string;
|
|
3356
|
-
} & {
|
|
3357
|
-
serverName: string;
|
|
3358
|
-
};
|
|
3359
|
-
};
|
|
3360
|
-
primaryKey: readonly [string, ...string[]];
|
|
3361
|
-
} & {
|
|
3362
|
-
primaryKey: ["id"];
|
|
3363
|
-
};
|
|
3364
3300
|
readonly account: {
|
|
3365
3301
|
name: "account";
|
|
3366
3302
|
columns: {
|
|
@@ -3425,16 +3361,9 @@ export declare const marcoZero: {
|
|
|
3425
3361
|
} & {
|
|
3426
3362
|
primaryKey: ["id"];
|
|
3427
3363
|
};
|
|
3428
|
-
readonly
|
|
3429
|
-
name: "
|
|
3364
|
+
readonly contact: {
|
|
3365
|
+
name: "contact";
|
|
3430
3366
|
columns: {
|
|
3431
|
-
readonly accountId: {
|
|
3432
|
-
type: "string";
|
|
3433
|
-
optional: false;
|
|
3434
|
-
customType: string;
|
|
3435
|
-
} & {
|
|
3436
|
-
serverName: string;
|
|
3437
|
-
};
|
|
3438
3367
|
readonly emailAddress: {
|
|
3439
3368
|
type: "string";
|
|
3440
3369
|
optional: false;
|
|
@@ -3447,13 +3376,6 @@ export declare const marcoZero: {
|
|
|
3447
3376
|
optional: false;
|
|
3448
3377
|
customType: string;
|
|
3449
3378
|
};
|
|
3450
|
-
readonly isPrimary: {
|
|
3451
|
-
type: "boolean";
|
|
3452
|
-
optional: false;
|
|
3453
|
-
customType: boolean;
|
|
3454
|
-
} & {
|
|
3455
|
-
serverName: string;
|
|
3456
|
-
};
|
|
3457
3379
|
readonly name: Omit<{
|
|
3458
3380
|
type: "string";
|
|
3459
3381
|
optional: false;
|
|
@@ -3461,13 +3383,20 @@ export declare const marcoZero: {
|
|
|
3461
3383
|
}, "optional"> & {
|
|
3462
3384
|
optional: true;
|
|
3463
3385
|
};
|
|
3386
|
+
readonly userId: {
|
|
3387
|
+
type: "string";
|
|
3388
|
+
optional: false;
|
|
3389
|
+
customType: string;
|
|
3390
|
+
} & {
|
|
3391
|
+
serverName: string;
|
|
3392
|
+
};
|
|
3464
3393
|
};
|
|
3465
3394
|
primaryKey: readonly [string, ...string[]];
|
|
3466
3395
|
} & {
|
|
3467
3396
|
primaryKey: ["id"];
|
|
3468
3397
|
};
|
|
3469
|
-
readonly
|
|
3470
|
-
name: "
|
|
3398
|
+
readonly draft: {
|
|
3399
|
+
name: "draft";
|
|
3471
3400
|
columns: {
|
|
3472
3401
|
readonly accountId: {
|
|
3473
3402
|
type: "string";
|
|
@@ -3476,53 +3405,109 @@ export declare const marcoZero: {
|
|
|
3476
3405
|
} & {
|
|
3477
3406
|
serverName: string;
|
|
3478
3407
|
};
|
|
3479
|
-
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<{
|
|
3480
3419
|
type: "string";
|
|
3481
3420
|
optional: false;
|
|
3482
3421
|
customType: string;
|
|
3422
|
+
}, "optional"> & {
|
|
3423
|
+
optional: true;
|
|
3483
3424
|
};
|
|
3484
|
-
readonly
|
|
3425
|
+
readonly fromAliasId: Omit<{
|
|
3485
3426
|
type: "string";
|
|
3486
3427
|
optional: false;
|
|
3487
3428
|
customType: string;
|
|
3488
3429
|
}, "optional"> & {
|
|
3489
3430
|
optional: true;
|
|
3431
|
+
} & {
|
|
3432
|
+
serverName: string;
|
|
3490
3433
|
};
|
|
3491
|
-
readonly
|
|
3434
|
+
readonly fromEmail: {
|
|
3492
3435
|
type: "string";
|
|
3493
3436
|
optional: false;
|
|
3494
3437
|
customType: string;
|
|
3438
|
+
} & {
|
|
3439
|
+
serverName: string;
|
|
3495
3440
|
};
|
|
3496
|
-
readonly
|
|
3441
|
+
readonly fromName: Omit<{
|
|
3497
3442
|
type: "string";
|
|
3498
3443
|
optional: false;
|
|
3499
|
-
customType:
|
|
3444
|
+
customType: string;
|
|
3500
3445
|
}, "optional"> & {
|
|
3501
3446
|
optional: true;
|
|
3502
3447
|
} & {
|
|
3503
3448
|
serverName: string;
|
|
3504
3449
|
};
|
|
3505
|
-
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<{
|
|
3506
3465
|
type: "number";
|
|
3507
3466
|
optional: false;
|
|
3508
3467
|
customType: number;
|
|
3468
|
+
}, "optional"> & {
|
|
3469
|
+
optional: true;
|
|
3509
3470
|
} & {
|
|
3510
3471
|
serverName: string;
|
|
3511
3472
|
};
|
|
3512
|
-
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: {
|
|
3513
3491
|
type: "number";
|
|
3514
3492
|
optional: false;
|
|
3515
3493
|
customType: number;
|
|
3516
3494
|
} & {
|
|
3517
3495
|
serverName: string;
|
|
3518
3496
|
};
|
|
3497
|
+
readonly userId: {
|
|
3498
|
+
type: "string";
|
|
3499
|
+
optional: false;
|
|
3500
|
+
customType: string;
|
|
3501
|
+
} & {
|
|
3502
|
+
serverName: string;
|
|
3503
|
+
};
|
|
3519
3504
|
};
|
|
3520
3505
|
primaryKey: readonly [string, ...string[]];
|
|
3521
3506
|
} & {
|
|
3522
3507
|
primaryKey: ["id"];
|
|
3523
3508
|
};
|
|
3524
|
-
readonly
|
|
3525
|
-
name: "
|
|
3509
|
+
readonly thread: {
|
|
3510
|
+
name: "thread";
|
|
3526
3511
|
columns: {
|
|
3527
3512
|
readonly accountId: {
|
|
3528
3513
|
type: "string";
|
|
@@ -3531,76 +3516,79 @@ export declare const marcoZero: {
|
|
|
3531
3516
|
} & {
|
|
3532
3517
|
serverName: string;
|
|
3533
3518
|
};
|
|
3534
|
-
readonly
|
|
3535
|
-
type: "
|
|
3519
|
+
readonly flagged: {
|
|
3520
|
+
type: "boolean";
|
|
3536
3521
|
optional: false;
|
|
3537
|
-
customType:
|
|
3538
|
-
content: string;
|
|
3539
|
-
to: string[];
|
|
3540
|
-
cc: string[];
|
|
3541
|
-
bcc: string[];
|
|
3542
|
-
};
|
|
3522
|
+
customType: boolean;
|
|
3543
3523
|
};
|
|
3544
|
-
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: {
|
|
3545
3537
|
type: "string";
|
|
3546
3538
|
optional: false;
|
|
3547
3539
|
customType: string;
|
|
3548
|
-
}
|
|
3549
|
-
|
|
3540
|
+
} & {
|
|
3541
|
+
serverName: string;
|
|
3550
3542
|
};
|
|
3551
|
-
readonly
|
|
3552
|
-
type: "
|
|
3543
|
+
readonly latestMessageDate: {
|
|
3544
|
+
type: "number";
|
|
3553
3545
|
optional: false;
|
|
3554
|
-
customType:
|
|
3555
|
-
}, "optional"> & {
|
|
3556
|
-
optional: true;
|
|
3546
|
+
customType: number;
|
|
3557
3547
|
} & {
|
|
3558
3548
|
serverName: string;
|
|
3559
3549
|
};
|
|
3560
|
-
readonly
|
|
3550
|
+
readonly latestMessageId: {
|
|
3561
3551
|
type: "string";
|
|
3562
3552
|
optional: false;
|
|
3563
3553
|
customType: string;
|
|
3564
3554
|
} & {
|
|
3565
3555
|
serverName: string;
|
|
3566
3556
|
};
|
|
3567
|
-
readonly
|
|
3568
|
-
type: "
|
|
3557
|
+
readonly messageCount: {
|
|
3558
|
+
type: "number";
|
|
3569
3559
|
optional: false;
|
|
3570
|
-
customType:
|
|
3571
|
-
}, "optional"> & {
|
|
3572
|
-
optional: true;
|
|
3560
|
+
customType: number;
|
|
3573
3561
|
} & {
|
|
3574
3562
|
serverName: string;
|
|
3575
3563
|
};
|
|
3576
|
-
readonly
|
|
3564
|
+
readonly previewText: {
|
|
3577
3565
|
type: "string";
|
|
3578
3566
|
optional: false;
|
|
3579
3567
|
customType: string;
|
|
3568
|
+
} & {
|
|
3569
|
+
serverName: string;
|
|
3580
3570
|
};
|
|
3581
|
-
readonly
|
|
3571
|
+
readonly seen: {
|
|
3572
|
+
type: "boolean";
|
|
3573
|
+
optional: false;
|
|
3574
|
+
customType: boolean;
|
|
3575
|
+
};
|
|
3576
|
+
readonly senderEmail: {
|
|
3582
3577
|
type: "string";
|
|
3583
3578
|
optional: false;
|
|
3584
3579
|
customType: string;
|
|
3585
|
-
}, "optional"> & {
|
|
3586
|
-
optional: true;
|
|
3587
3580
|
} & {
|
|
3588
3581
|
serverName: string;
|
|
3589
3582
|
};
|
|
3590
|
-
readonly
|
|
3591
|
-
type: "
|
|
3583
|
+
readonly senderName: Omit<{
|
|
3584
|
+
type: "string";
|
|
3592
3585
|
optional: false;
|
|
3593
|
-
customType:
|
|
3586
|
+
customType: string;
|
|
3594
3587
|
}, "optional"> & {
|
|
3595
3588
|
optional: true;
|
|
3596
3589
|
} & {
|
|
3597
3590
|
serverName: string;
|
|
3598
3591
|
};
|
|
3599
|
-
readonly status: {
|
|
3600
|
-
type: "string";
|
|
3601
|
-
optional: false;
|
|
3602
|
-
customType: "DRAFT" | "SEND_REQUESTED" | "SEND_IN_PROGRESS" | "SEND_CONFIRMED" | "SEND_FAILED";
|
|
3603
|
-
};
|
|
3604
3592
|
readonly subject: Omit<{
|
|
3605
3593
|
type: "string";
|
|
3606
3594
|
optional: false;
|
|
@@ -3608,18 +3596,43 @@ export declare const marcoZero: {
|
|
|
3608
3596
|
}, "optional"> & {
|
|
3609
3597
|
optional: true;
|
|
3610
3598
|
};
|
|
3611
|
-
readonly
|
|
3599
|
+
readonly userId: {
|
|
3612
3600
|
type: "string";
|
|
3613
3601
|
optional: false;
|
|
3614
|
-
customType:
|
|
3602
|
+
customType: string;
|
|
3603
|
+
} & {
|
|
3604
|
+
serverName: string;
|
|
3615
3605
|
};
|
|
3616
|
-
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: {
|
|
3617
3620
|
type: "number";
|
|
3618
3621
|
optional: false;
|
|
3619
3622
|
customType: number;
|
|
3620
3623
|
} & {
|
|
3621
3624
|
serverName: string;
|
|
3622
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
|
+
};
|
|
3623
3636
|
readonly userId: {
|
|
3624
3637
|
type: "string";
|
|
3625
3638
|
optional: false;
|
|
@@ -3632,17 +3645,17 @@ export declare const marcoZero: {
|
|
|
3632
3645
|
} & {
|
|
3633
3646
|
primaryKey: ["id"];
|
|
3634
3647
|
};
|
|
3635
|
-
readonly
|
|
3636
|
-
name: "
|
|
3648
|
+
readonly accountAlias: {
|
|
3649
|
+
name: "accountAlias";
|
|
3637
3650
|
columns: {
|
|
3638
|
-
readonly
|
|
3651
|
+
readonly accountId: {
|
|
3639
3652
|
type: "string";
|
|
3640
3653
|
optional: false;
|
|
3641
3654
|
customType: string;
|
|
3642
3655
|
} & {
|
|
3643
3656
|
serverName: string;
|
|
3644
3657
|
};
|
|
3645
|
-
readonly
|
|
3658
|
+
readonly emailAddress: {
|
|
3646
3659
|
type: "string";
|
|
3647
3660
|
optional: false;
|
|
3648
3661
|
customType: string;
|
|
@@ -3654,34 +3667,27 @@ export declare const marcoZero: {
|
|
|
3654
3667
|
optional: false;
|
|
3655
3668
|
customType: string;
|
|
3656
3669
|
};
|
|
3657
|
-
readonly
|
|
3658
|
-
type: "
|
|
3670
|
+
readonly isPrimary: {
|
|
3671
|
+
type: "boolean";
|
|
3659
3672
|
optional: false;
|
|
3660
|
-
customType:
|
|
3673
|
+
customType: boolean;
|
|
3661
3674
|
} & {
|
|
3662
3675
|
serverName: string;
|
|
3663
3676
|
};
|
|
3664
|
-
readonly
|
|
3677
|
+
readonly name: Omit<{
|
|
3665
3678
|
type: "string";
|
|
3666
3679
|
optional: false;
|
|
3667
|
-
customType:
|
|
3668
|
-
} & {
|
|
3669
|
-
|
|
3670
|
-
};
|
|
3671
|
-
readonly totalSize: {
|
|
3672
|
-
type: "number";
|
|
3673
|
-
optional: false;
|
|
3674
|
-
customType: number;
|
|
3675
|
-
} & {
|
|
3676
|
-
serverName: string;
|
|
3680
|
+
customType: string;
|
|
3681
|
+
}, "optional"> & {
|
|
3682
|
+
optional: true;
|
|
3677
3683
|
};
|
|
3678
3684
|
};
|
|
3679
3685
|
primaryKey: readonly [string, ...string[]];
|
|
3680
3686
|
} & {
|
|
3681
3687
|
primaryKey: ["id"];
|
|
3682
3688
|
};
|
|
3683
|
-
readonly
|
|
3684
|
-
name: "
|
|
3689
|
+
readonly accountLabel: {
|
|
3690
|
+
name: "accountLabel";
|
|
3685
3691
|
columns: {
|
|
3686
3692
|
readonly accountId: {
|
|
3687
3693
|
type: "string";
|
|
@@ -3690,97 +3696,93 @@ export declare const marcoZero: {
|
|
|
3690
3696
|
} & {
|
|
3691
3697
|
serverName: string;
|
|
3692
3698
|
};
|
|
3693
|
-
readonly
|
|
3694
|
-
type: "
|
|
3699
|
+
readonly id: {
|
|
3700
|
+
type: "string";
|
|
3695
3701
|
optional: false;
|
|
3696
|
-
customType:
|
|
3702
|
+
customType: string;
|
|
3697
3703
|
};
|
|
3698
|
-
readonly
|
|
3699
|
-
type: "
|
|
3704
|
+
readonly name: Omit<{
|
|
3705
|
+
type: "string";
|
|
3700
3706
|
optional: false;
|
|
3701
|
-
customType:
|
|
3702
|
-
} & {
|
|
3703
|
-
|
|
3707
|
+
customType: string;
|
|
3708
|
+
}, "optional"> & {
|
|
3709
|
+
optional: true;
|
|
3704
3710
|
};
|
|
3705
|
-
readonly
|
|
3711
|
+
readonly path: {
|
|
3706
3712
|
type: "string";
|
|
3707
3713
|
optional: false;
|
|
3708
3714
|
customType: string;
|
|
3709
3715
|
};
|
|
3710
|
-
readonly
|
|
3716
|
+
readonly specialUse: Omit<{
|
|
3711
3717
|
type: "string";
|
|
3712
3718
|
optional: false;
|
|
3713
|
-
customType:
|
|
3719
|
+
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
3720
|
+
}, "optional"> & {
|
|
3721
|
+
optional: true;
|
|
3714
3722
|
} & {
|
|
3715
3723
|
serverName: string;
|
|
3716
3724
|
};
|
|
3717
|
-
readonly
|
|
3725
|
+
readonly uidValidity: {
|
|
3718
3726
|
type: "number";
|
|
3719
3727
|
optional: false;
|
|
3720
3728
|
customType: number;
|
|
3721
3729
|
} & {
|
|
3722
3730
|
serverName: string;
|
|
3723
3731
|
};
|
|
3724
|
-
readonly
|
|
3725
|
-
type: "string";
|
|
3726
|
-
optional: false;
|
|
3727
|
-
customType: string;
|
|
3728
|
-
} & {
|
|
3729
|
-
serverName: string;
|
|
3730
|
-
};
|
|
3731
|
-
readonly messageCount: {
|
|
3732
|
+
readonly unreadCount: {
|
|
3732
3733
|
type: "number";
|
|
3733
3734
|
optional: false;
|
|
3734
3735
|
customType: number;
|
|
3735
3736
|
} & {
|
|
3736
3737
|
serverName: string;
|
|
3737
3738
|
};
|
|
3738
|
-
|
|
3739
|
+
};
|
|
3740
|
+
primaryKey: readonly [string, ...string[]];
|
|
3741
|
+
} & {
|
|
3742
|
+
primaryKey: ["id"];
|
|
3743
|
+
};
|
|
3744
|
+
readonly draftAttachment: {
|
|
3745
|
+
name: "draftAttachment";
|
|
3746
|
+
columns: {
|
|
3747
|
+
readonly draftId: {
|
|
3739
3748
|
type: "string";
|
|
3740
3749
|
optional: false;
|
|
3741
3750
|
customType: string;
|
|
3742
3751
|
} & {
|
|
3743
3752
|
serverName: string;
|
|
3744
3753
|
};
|
|
3745
|
-
readonly
|
|
3746
|
-
type: "boolean";
|
|
3747
|
-
optional: false;
|
|
3748
|
-
customType: boolean;
|
|
3749
|
-
};
|
|
3750
|
-
readonly senderEmail: {
|
|
3754
|
+
readonly fileName: {
|
|
3751
3755
|
type: "string";
|
|
3752
3756
|
optional: false;
|
|
3753
3757
|
customType: string;
|
|
3754
3758
|
} & {
|
|
3755
3759
|
serverName: string;
|
|
3756
3760
|
};
|
|
3757
|
-
readonly
|
|
3761
|
+
readonly id: {
|
|
3758
3762
|
type: "string";
|
|
3759
3763
|
optional: false;
|
|
3760
3764
|
customType: string;
|
|
3761
|
-
}, "optional"> & {
|
|
3762
|
-
optional: true;
|
|
3763
|
-
} & {
|
|
3764
|
-
serverName: string;
|
|
3765
3765
|
};
|
|
3766
|
-
readonly
|
|
3766
|
+
readonly mimeType: {
|
|
3767
3767
|
type: "string";
|
|
3768
3768
|
optional: false;
|
|
3769
3769
|
customType: string;
|
|
3770
|
-
}
|
|
3771
|
-
|
|
3770
|
+
} & {
|
|
3771
|
+
serverName: string;
|
|
3772
3772
|
};
|
|
3773
|
-
readonly
|
|
3773
|
+
readonly status: {
|
|
3774
3774
|
type: "string";
|
|
3775
3775
|
optional: false;
|
|
3776
|
-
customType:
|
|
3776
|
+
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
3777
3777
|
} & {
|
|
3778
3778
|
serverName: string;
|
|
3779
3779
|
};
|
|
3780
|
-
readonly
|
|
3781
|
-
type: "
|
|
3780
|
+
readonly totalSize: {
|
|
3781
|
+
type: "number";
|
|
3782
3782
|
optional: false;
|
|
3783
|
-
customType:
|
|
3783
|
+
customType: number;
|
|
3784
|
+
} & {
|
|
3785
|
+
serverName: string;
|
|
3784
3786
|
};
|
|
3785
3787
|
};
|
|
3786
3788
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -4028,259 +4030,259 @@ export declare const marcoZero: {
|
|
|
4028
4030
|
relationships: {
|
|
4029
4031
|
readonly user: {
|
|
4030
4032
|
accounts: [{
|
|
4031
|
-
readonly sourceField: readonly ("id" | "
|
|
4032
|
-
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")[];
|
|
4033
4035
|
readonly destSchema: "account";
|
|
4034
4036
|
readonly cardinality: "many";
|
|
4035
4037
|
}];
|
|
4036
4038
|
contacts: [{
|
|
4037
|
-
readonly sourceField: readonly ("id" | "
|
|
4038
|
-
readonly destField: readonly ("
|
|
4039
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4040
|
+
readonly destField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
4039
4041
|
readonly destSchema: "contact";
|
|
4040
4042
|
readonly cardinality: "many";
|
|
4041
4043
|
}];
|
|
4042
4044
|
drafts: [{
|
|
4043
|
-
readonly sourceField: readonly ("id" | "
|
|
4044
|
-
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")[];
|
|
4045
4047
|
readonly destSchema: "draft";
|
|
4046
4048
|
readonly cardinality: "many";
|
|
4047
4049
|
}];
|
|
4048
4050
|
pushNotificationTokens: [{
|
|
4049
|
-
readonly sourceField: readonly ("id" | "
|
|
4050
|
-
readonly destField: readonly ("id" | "
|
|
4051
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
4052
|
+
readonly destField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
4051
4053
|
readonly destSchema: "userPushNotificationToken";
|
|
4052
4054
|
readonly cardinality: "many";
|
|
4053
4055
|
}];
|
|
4054
4056
|
threads: [{
|
|
4055
|
-
readonly sourceField: readonly ("id" | "
|
|
4056
|
-
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")[];
|
|
4057
4059
|
readonly destSchema: "thread";
|
|
4058
4060
|
readonly cardinality: "many";
|
|
4059
4061
|
}];
|
|
4060
4062
|
};
|
|
4061
|
-
readonly userPushNotificationToken: {
|
|
4062
|
-
user: [{
|
|
4063
|
-
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
4064
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
4065
|
-
readonly destSchema: "user";
|
|
4066
|
-
readonly cardinality: "one";
|
|
4067
|
-
}];
|
|
4068
|
-
};
|
|
4069
|
-
readonly contact: {
|
|
4070
|
-
user: [{
|
|
4071
|
-
readonly sourceField: readonly ("id" | "name" | "userId" | "emailAddress")[];
|
|
4072
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
4073
|
-
readonly destSchema: "user";
|
|
4074
|
-
readonly cardinality: "one";
|
|
4075
|
-
}];
|
|
4076
|
-
};
|
|
4077
4063
|
readonly account: {
|
|
4078
4064
|
aliases: [{
|
|
4079
|
-
readonly sourceField: readonly ("id" | "
|
|
4080
|
-
readonly destField: readonly ("
|
|
4065
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4066
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
4081
4067
|
readonly destSchema: "accountAlias";
|
|
4082
4068
|
readonly cardinality: "many";
|
|
4083
4069
|
}];
|
|
4084
4070
|
drafts: [{
|
|
4085
|
-
readonly sourceField: readonly ("id" | "
|
|
4086
|
-
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")[];
|
|
4087
4073
|
readonly destSchema: "draft";
|
|
4088
4074
|
readonly cardinality: "many";
|
|
4089
4075
|
}];
|
|
4090
4076
|
labels: [{
|
|
4091
|
-
readonly sourceField: readonly ("id" | "
|
|
4092
|
-
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")[];
|
|
4093
4079
|
readonly destSchema: "accountLabel";
|
|
4094
4080
|
readonly cardinality: "many";
|
|
4095
4081
|
}];
|
|
4096
4082
|
primaryAlias: [{
|
|
4097
|
-
readonly sourceField: readonly ("id" | "
|
|
4098
|
-
readonly destField: readonly ("
|
|
4083
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
4084
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
4099
4085
|
readonly destSchema: "accountAlias";
|
|
4100
4086
|
readonly cardinality: "one";
|
|
4101
4087
|
}];
|
|
4102
4088
|
threads: [{
|
|
4103
|
-
readonly sourceField: readonly ("id" | "
|
|
4104
|
-
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")[];
|
|
4105
4091
|
readonly destSchema: "thread";
|
|
4106
4092
|
readonly cardinality: "many";
|
|
4107
4093
|
}];
|
|
4108
4094
|
user: [{
|
|
4109
|
-
readonly sourceField: readonly ("id" | "
|
|
4110
|
-
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")[];
|
|
4111
4097
|
readonly destSchema: "user";
|
|
4112
4098
|
readonly cardinality: "one";
|
|
4113
4099
|
}];
|
|
4114
4100
|
};
|
|
4115
|
-
readonly
|
|
4116
|
-
|
|
4117
|
-
readonly sourceField: readonly ("
|
|
4118
|
-
readonly destField: readonly ("id" | "
|
|
4119
|
-
readonly destSchema: "
|
|
4120
|
-
readonly cardinality: "one";
|
|
4121
|
-
}];
|
|
4122
|
-
};
|
|
4123
|
-
readonly accountLabel: {
|
|
4124
|
-
account: [{
|
|
4125
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
4126
|
-
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
4127
|
-
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";
|
|
4128
4106
|
readonly cardinality: "one";
|
|
4129
4107
|
}];
|
|
4130
|
-
threads: [{
|
|
4131
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
4132
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
4133
|
-
readonly destSchema: "threadLabel";
|
|
4134
|
-
readonly cardinality: "many";
|
|
4135
|
-
}, {
|
|
4136
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
4137
|
-
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
4138
|
-
readonly destSchema: "thread";
|
|
4139
|
-
readonly cardinality: "many";
|
|
4140
|
-
}];
|
|
4141
4108
|
};
|
|
4142
4109
|
readonly draft: {
|
|
4143
4110
|
account: [{
|
|
4144
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
4145
|
-
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")[];
|
|
4146
4113
|
readonly destSchema: "account";
|
|
4147
4114
|
readonly cardinality: "one";
|
|
4148
4115
|
}];
|
|
4149
4116
|
attachments: [{
|
|
4150
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
4117
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
4151
4118
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
4152
4119
|
readonly destSchema: "draftAttachment";
|
|
4153
4120
|
readonly cardinality: "many";
|
|
4154
4121
|
}];
|
|
4155
4122
|
user: [{
|
|
4156
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
4157
|
-
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")[];
|
|
4158
4125
|
readonly destSchema: "user";
|
|
4159
4126
|
readonly cardinality: "one";
|
|
4160
4127
|
}];
|
|
4161
4128
|
};
|
|
4162
|
-
readonly draftAttachment: {
|
|
4163
|
-
draft: [{
|
|
4164
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
4165
|
-
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
4166
|
-
readonly destSchema: "draft";
|
|
4167
|
-
readonly cardinality: "one";
|
|
4168
|
-
}];
|
|
4169
|
-
};
|
|
4170
4129
|
readonly thread: {
|
|
4171
4130
|
account: [{
|
|
4172
|
-
readonly sourceField: readonly ("
|
|
4173
|
-
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")[];
|
|
4174
4133
|
readonly destSchema: "account";
|
|
4175
4134
|
readonly cardinality: "one";
|
|
4176
4135
|
}];
|
|
4177
4136
|
labels: [{
|
|
4178
|
-
readonly sourceField: readonly ("
|
|
4179
|
-
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")[];
|
|
4180
4139
|
readonly destSchema: "threadLabel";
|
|
4181
4140
|
readonly cardinality: "many";
|
|
4182
4141
|
}, {
|
|
4183
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4184
|
-
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")[];
|
|
4185
4144
|
readonly destSchema: "accountLabel";
|
|
4186
4145
|
readonly cardinality: "many";
|
|
4187
4146
|
}];
|
|
4188
4147
|
messages: [{
|
|
4189
|
-
readonly sourceField: readonly ("
|
|
4190
|
-
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")[];
|
|
4191
4150
|
readonly destSchema: "threadMessage";
|
|
4192
4151
|
readonly cardinality: "many";
|
|
4193
4152
|
}];
|
|
4194
4153
|
threadByLabel: [{
|
|
4195
|
-
readonly sourceField: readonly ("
|
|
4196
|
-
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")[];
|
|
4197
4156
|
readonly destSchema: "threadByLabel";
|
|
4198
4157
|
readonly cardinality: "many";
|
|
4199
4158
|
}];
|
|
4200
4159
|
user: [{
|
|
4201
|
-
readonly sourceField: readonly ("
|
|
4202
|
-
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")[];
|
|
4203
4162
|
readonly destSchema: "user";
|
|
4204
4163
|
readonly cardinality: "one";
|
|
4205
4164
|
}];
|
|
4206
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
|
+
};
|
|
4207
4209
|
readonly threadLabel: {
|
|
4208
4210
|
label: [{
|
|
4209
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4210
|
-
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")[];
|
|
4211
4213
|
readonly destSchema: "accountLabel";
|
|
4212
4214
|
readonly cardinality: "one";
|
|
4213
4215
|
}];
|
|
4214
4216
|
message: [{
|
|
4215
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4216
|
-
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")[];
|
|
4217
4219
|
readonly destSchema: "threadMessage";
|
|
4218
4220
|
readonly cardinality: "one";
|
|
4219
4221
|
}];
|
|
4220
4222
|
thread: [{
|
|
4221
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4222
|
-
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")[];
|
|
4223
4225
|
readonly destSchema: "thread";
|
|
4224
4226
|
readonly cardinality: "one";
|
|
4225
4227
|
}];
|
|
4226
4228
|
};
|
|
4227
4229
|
readonly threadByLabel: {
|
|
4228
4230
|
label: [{
|
|
4229
|
-
readonly sourceField: readonly ("
|
|
4230
|
-
readonly destField: readonly ("
|
|
4231
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
4232
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
4231
4233
|
readonly destSchema: "accountLabel";
|
|
4232
4234
|
readonly cardinality: "one";
|
|
4233
4235
|
}];
|
|
4234
4236
|
thread: [{
|
|
4235
|
-
readonly sourceField: readonly ("
|
|
4236
|
-
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")[];
|
|
4237
4239
|
readonly destSchema: "thread";
|
|
4238
4240
|
readonly cardinality: "one";
|
|
4239
4241
|
}];
|
|
4240
4242
|
};
|
|
4241
4243
|
readonly threadMessage: {
|
|
4242
4244
|
attachments: [{
|
|
4243
|
-
readonly sourceField: readonly ("
|
|
4244
|
-
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")[];
|
|
4245
4247
|
readonly destSchema: "threadMessageAttachment";
|
|
4246
4248
|
readonly cardinality: "many";
|
|
4247
4249
|
}];
|
|
4248
4250
|
labels: [{
|
|
4249
|
-
readonly sourceField: readonly ("
|
|
4250
|
-
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")[];
|
|
4251
4253
|
readonly destSchema: "threadLabel";
|
|
4252
4254
|
readonly cardinality: "many";
|
|
4253
4255
|
}, {
|
|
4254
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
4255
|
-
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")[];
|
|
4256
4258
|
readonly destSchema: "accountLabel";
|
|
4257
4259
|
readonly cardinality: "many";
|
|
4258
4260
|
}];
|
|
4259
4261
|
recipients: [{
|
|
4260
|
-
readonly sourceField: readonly ("
|
|
4261
|
-
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")[];
|
|
4262
4264
|
readonly destSchema: "threadMessageRecipient";
|
|
4263
4265
|
readonly cardinality: "many";
|
|
4264
4266
|
}];
|
|
4265
4267
|
thread: [{
|
|
4266
|
-
readonly sourceField: readonly ("
|
|
4267
|
-
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")[];
|
|
4268
4270
|
readonly destSchema: "thread";
|
|
4269
4271
|
readonly cardinality: "one";
|
|
4270
4272
|
}];
|
|
4271
4273
|
};
|
|
4272
4274
|
readonly threadMessageRecipient: {
|
|
4273
4275
|
message: [{
|
|
4274
|
-
readonly sourceField: readonly ("type" | "
|
|
4275
|
-
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")[];
|
|
4276
4278
|
readonly destSchema: "threadMessage";
|
|
4277
4279
|
readonly cardinality: "one";
|
|
4278
4280
|
}];
|
|
4279
4281
|
};
|
|
4280
4282
|
readonly threadMessageAttachment: {
|
|
4281
4283
|
message: [{
|
|
4282
|
-
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "
|
|
4283
|
-
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")[];
|
|
4284
4286
|
readonly destSchema: "threadMessage";
|
|
4285
4287
|
readonly cardinality: "one";
|
|
4286
4288
|
}];
|