@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/schema.d.ts
CHANGED
|
@@ -47,72 +47,6 @@ export declare const schema: {
|
|
|
47
47
|
} & {
|
|
48
48
|
primaryKey: ["id"];
|
|
49
49
|
};
|
|
50
|
-
readonly userPushNotificationToken: {
|
|
51
|
-
name: "userPushNotificationToken";
|
|
52
|
-
columns: {
|
|
53
|
-
readonly createdAt: {
|
|
54
|
-
type: "number";
|
|
55
|
-
optional: false;
|
|
56
|
-
customType: number;
|
|
57
|
-
} & {
|
|
58
|
-
serverName: string;
|
|
59
|
-
};
|
|
60
|
-
readonly id: {
|
|
61
|
-
type: "string";
|
|
62
|
-
optional: false;
|
|
63
|
-
customType: string;
|
|
64
|
-
};
|
|
65
|
-
readonly token: {
|
|
66
|
-
type: "string";
|
|
67
|
-
optional: false;
|
|
68
|
-
customType: string;
|
|
69
|
-
};
|
|
70
|
-
readonly userId: {
|
|
71
|
-
type: "string";
|
|
72
|
-
optional: false;
|
|
73
|
-
customType: string;
|
|
74
|
-
} & {
|
|
75
|
-
serverName: string;
|
|
76
|
-
};
|
|
77
|
-
};
|
|
78
|
-
primaryKey: readonly [string, ...string[]];
|
|
79
|
-
} & {
|
|
80
|
-
primaryKey: ["id"];
|
|
81
|
-
};
|
|
82
|
-
readonly contact: {
|
|
83
|
-
name: "contact";
|
|
84
|
-
columns: {
|
|
85
|
-
readonly emailAddress: {
|
|
86
|
-
type: "string";
|
|
87
|
-
optional: false;
|
|
88
|
-
customType: string;
|
|
89
|
-
} & {
|
|
90
|
-
serverName: string;
|
|
91
|
-
};
|
|
92
|
-
readonly id: {
|
|
93
|
-
type: "string";
|
|
94
|
-
optional: false;
|
|
95
|
-
customType: string;
|
|
96
|
-
};
|
|
97
|
-
readonly name: Omit<{
|
|
98
|
-
type: "string";
|
|
99
|
-
optional: false;
|
|
100
|
-
customType: string;
|
|
101
|
-
}, "optional"> & {
|
|
102
|
-
optional: true;
|
|
103
|
-
};
|
|
104
|
-
readonly userId: {
|
|
105
|
-
type: "string";
|
|
106
|
-
optional: false;
|
|
107
|
-
customType: string;
|
|
108
|
-
} & {
|
|
109
|
-
serverName: string;
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
primaryKey: readonly [string, ...string[]];
|
|
113
|
-
} & {
|
|
114
|
-
primaryKey: ["id"];
|
|
115
|
-
};
|
|
116
50
|
readonly account: {
|
|
117
51
|
name: "account";
|
|
118
52
|
columns: {
|
|
@@ -177,16 +111,9 @@ export declare const schema: {
|
|
|
177
111
|
} & {
|
|
178
112
|
primaryKey: ["id"];
|
|
179
113
|
};
|
|
180
|
-
readonly
|
|
181
|
-
name: "
|
|
114
|
+
readonly contact: {
|
|
115
|
+
name: "contact";
|
|
182
116
|
columns: {
|
|
183
|
-
readonly accountId: {
|
|
184
|
-
type: "string";
|
|
185
|
-
optional: false;
|
|
186
|
-
customType: string;
|
|
187
|
-
} & {
|
|
188
|
-
serverName: string;
|
|
189
|
-
};
|
|
190
117
|
readonly emailAddress: {
|
|
191
118
|
type: "string";
|
|
192
119
|
optional: false;
|
|
@@ -199,13 +126,6 @@ export declare const schema: {
|
|
|
199
126
|
optional: false;
|
|
200
127
|
customType: string;
|
|
201
128
|
};
|
|
202
|
-
readonly isPrimary: {
|
|
203
|
-
type: "boolean";
|
|
204
|
-
optional: false;
|
|
205
|
-
customType: boolean;
|
|
206
|
-
} & {
|
|
207
|
-
serverName: string;
|
|
208
|
-
};
|
|
209
129
|
readonly name: Omit<{
|
|
210
130
|
type: "string";
|
|
211
131
|
optional: false;
|
|
@@ -213,58 +133,10 @@ export declare const schema: {
|
|
|
213
133
|
}, "optional"> & {
|
|
214
134
|
optional: true;
|
|
215
135
|
};
|
|
216
|
-
|
|
217
|
-
primaryKey: readonly [string, ...string[]];
|
|
218
|
-
} & {
|
|
219
|
-
primaryKey: ["id"];
|
|
220
|
-
};
|
|
221
|
-
readonly accountLabel: {
|
|
222
|
-
name: "accountLabel";
|
|
223
|
-
columns: {
|
|
224
|
-
readonly accountId: {
|
|
225
|
-
type: "string";
|
|
226
|
-
optional: false;
|
|
227
|
-
customType: string;
|
|
228
|
-
} & {
|
|
229
|
-
serverName: string;
|
|
230
|
-
};
|
|
231
|
-
readonly id: {
|
|
232
|
-
type: "string";
|
|
233
|
-
optional: false;
|
|
234
|
-
customType: string;
|
|
235
|
-
};
|
|
236
|
-
readonly name: Omit<{
|
|
237
|
-
type: "string";
|
|
238
|
-
optional: false;
|
|
239
|
-
customType: string;
|
|
240
|
-
}, "optional"> & {
|
|
241
|
-
optional: true;
|
|
242
|
-
};
|
|
243
|
-
readonly path: {
|
|
136
|
+
readonly userId: {
|
|
244
137
|
type: "string";
|
|
245
138
|
optional: false;
|
|
246
139
|
customType: string;
|
|
247
|
-
};
|
|
248
|
-
readonly specialUse: Omit<{
|
|
249
|
-
type: "string";
|
|
250
|
-
optional: false;
|
|
251
|
-
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
252
|
-
}, "optional"> & {
|
|
253
|
-
optional: true;
|
|
254
|
-
} & {
|
|
255
|
-
serverName: string;
|
|
256
|
-
};
|
|
257
|
-
readonly uidValidity: {
|
|
258
|
-
type: "number";
|
|
259
|
-
optional: false;
|
|
260
|
-
customType: number;
|
|
261
|
-
} & {
|
|
262
|
-
serverName: string;
|
|
263
|
-
};
|
|
264
|
-
readonly unreadCount: {
|
|
265
|
-
type: "number";
|
|
266
|
-
optional: false;
|
|
267
|
-
customType: number;
|
|
268
140
|
} & {
|
|
269
141
|
serverName: string;
|
|
270
142
|
};
|
|
@@ -384,20 +256,25 @@ export declare const schema: {
|
|
|
384
256
|
} & {
|
|
385
257
|
primaryKey: ["id"];
|
|
386
258
|
};
|
|
387
|
-
readonly
|
|
388
|
-
name: "
|
|
259
|
+
readonly thread: {
|
|
260
|
+
name: "thread";
|
|
389
261
|
columns: {
|
|
390
|
-
readonly
|
|
262
|
+
readonly accountId: {
|
|
391
263
|
type: "string";
|
|
392
264
|
optional: false;
|
|
393
265
|
customType: string;
|
|
394
266
|
} & {
|
|
395
267
|
serverName: string;
|
|
396
268
|
};
|
|
397
|
-
readonly
|
|
398
|
-
type: "
|
|
269
|
+
readonly flagged: {
|
|
270
|
+
type: "boolean";
|
|
399
271
|
optional: false;
|
|
400
|
-
customType:
|
|
272
|
+
customType: boolean;
|
|
273
|
+
};
|
|
274
|
+
readonly hasAttachments: {
|
|
275
|
+
type: "boolean";
|
|
276
|
+
optional: false;
|
|
277
|
+
customType: boolean;
|
|
401
278
|
} & {
|
|
402
279
|
serverName: string;
|
|
403
280
|
};
|
|
@@ -406,133 +283,256 @@ export declare const schema: {
|
|
|
406
283
|
optional: false;
|
|
407
284
|
customType: string;
|
|
408
285
|
};
|
|
409
|
-
readonly
|
|
286
|
+
readonly labelIdList: {
|
|
410
287
|
type: "string";
|
|
411
288
|
optional: false;
|
|
412
289
|
customType: string;
|
|
413
290
|
} & {
|
|
414
291
|
serverName: string;
|
|
415
292
|
};
|
|
416
|
-
readonly
|
|
293
|
+
readonly latestMessageDate: {
|
|
294
|
+
type: "number";
|
|
295
|
+
optional: false;
|
|
296
|
+
customType: number;
|
|
297
|
+
} & {
|
|
298
|
+
serverName: string;
|
|
299
|
+
};
|
|
300
|
+
readonly latestMessageId: {
|
|
417
301
|
type: "string";
|
|
418
302
|
optional: false;
|
|
419
|
-
customType:
|
|
303
|
+
customType: string;
|
|
420
304
|
} & {
|
|
421
305
|
serverName: string;
|
|
422
306
|
};
|
|
423
|
-
readonly
|
|
307
|
+
readonly messageCount: {
|
|
424
308
|
type: "number";
|
|
425
309
|
optional: false;
|
|
426
310
|
customType: number;
|
|
427
311
|
} & {
|
|
428
312
|
serverName: string;
|
|
429
313
|
};
|
|
430
|
-
|
|
431
|
-
primaryKey: readonly [string, ...string[]];
|
|
432
|
-
} & {
|
|
433
|
-
primaryKey: ["id"];
|
|
434
|
-
};
|
|
435
|
-
readonly thread: {
|
|
436
|
-
name: "thread";
|
|
437
|
-
columns: {
|
|
438
|
-
readonly accountId: {
|
|
314
|
+
readonly previewText: {
|
|
439
315
|
type: "string";
|
|
440
316
|
optional: false;
|
|
441
317
|
customType: string;
|
|
442
318
|
} & {
|
|
443
319
|
serverName: string;
|
|
444
320
|
};
|
|
445
|
-
readonly
|
|
321
|
+
readonly seen: {
|
|
446
322
|
type: "boolean";
|
|
447
323
|
optional: false;
|
|
448
324
|
customType: boolean;
|
|
449
325
|
};
|
|
450
|
-
readonly
|
|
451
|
-
type: "
|
|
326
|
+
readonly senderEmail: {
|
|
327
|
+
type: "string";
|
|
452
328
|
optional: false;
|
|
453
|
-
customType:
|
|
329
|
+
customType: string;
|
|
454
330
|
} & {
|
|
455
331
|
serverName: string;
|
|
456
332
|
};
|
|
457
|
-
readonly
|
|
333
|
+
readonly senderName: Omit<{
|
|
458
334
|
type: "string";
|
|
459
335
|
optional: false;
|
|
460
336
|
customType: string;
|
|
337
|
+
}, "optional"> & {
|
|
338
|
+
optional: true;
|
|
339
|
+
} & {
|
|
340
|
+
serverName: string;
|
|
461
341
|
};
|
|
462
|
-
readonly
|
|
342
|
+
readonly subject: Omit<{
|
|
343
|
+
type: "string";
|
|
344
|
+
optional: false;
|
|
345
|
+
customType: string;
|
|
346
|
+
}, "optional"> & {
|
|
347
|
+
optional: true;
|
|
348
|
+
};
|
|
349
|
+
readonly userId: {
|
|
463
350
|
type: "string";
|
|
464
351
|
optional: false;
|
|
465
352
|
customType: string;
|
|
466
353
|
} & {
|
|
467
354
|
serverName: string;
|
|
468
355
|
};
|
|
469
|
-
readonly
|
|
356
|
+
readonly words: {
|
|
357
|
+
type: "string";
|
|
358
|
+
optional: false;
|
|
359
|
+
customType: string;
|
|
360
|
+
};
|
|
361
|
+
};
|
|
362
|
+
primaryKey: readonly [string, ...string[]];
|
|
363
|
+
} & {
|
|
364
|
+
primaryKey: ["id"];
|
|
365
|
+
};
|
|
366
|
+
readonly userPushNotificationToken: {
|
|
367
|
+
name: "userPushNotificationToken";
|
|
368
|
+
columns: {
|
|
369
|
+
readonly createdAt: {
|
|
470
370
|
type: "number";
|
|
471
371
|
optional: false;
|
|
472
372
|
customType: number;
|
|
473
373
|
} & {
|
|
474
374
|
serverName: string;
|
|
475
375
|
};
|
|
476
|
-
readonly
|
|
376
|
+
readonly id: {
|
|
377
|
+
type: "string";
|
|
378
|
+
optional: false;
|
|
379
|
+
customType: string;
|
|
380
|
+
};
|
|
381
|
+
readonly token: {
|
|
382
|
+
type: "string";
|
|
383
|
+
optional: false;
|
|
384
|
+
customType: string;
|
|
385
|
+
};
|
|
386
|
+
readonly userId: {
|
|
477
387
|
type: "string";
|
|
478
388
|
optional: false;
|
|
479
389
|
customType: string;
|
|
480
390
|
} & {
|
|
481
391
|
serverName: string;
|
|
482
392
|
};
|
|
483
|
-
|
|
484
|
-
|
|
393
|
+
};
|
|
394
|
+
primaryKey: readonly [string, ...string[]];
|
|
395
|
+
} & {
|
|
396
|
+
primaryKey: ["id"];
|
|
397
|
+
};
|
|
398
|
+
readonly accountAlias: {
|
|
399
|
+
name: "accountAlias";
|
|
400
|
+
columns: {
|
|
401
|
+
readonly accountId: {
|
|
402
|
+
type: "string";
|
|
485
403
|
optional: false;
|
|
486
|
-
customType:
|
|
404
|
+
customType: string;
|
|
487
405
|
} & {
|
|
488
406
|
serverName: string;
|
|
489
407
|
};
|
|
490
|
-
readonly
|
|
408
|
+
readonly emailAddress: {
|
|
491
409
|
type: "string";
|
|
492
410
|
optional: false;
|
|
493
411
|
customType: string;
|
|
494
412
|
} & {
|
|
495
413
|
serverName: string;
|
|
496
414
|
};
|
|
497
|
-
readonly
|
|
415
|
+
readonly id: {
|
|
416
|
+
type: "string";
|
|
417
|
+
optional: false;
|
|
418
|
+
customType: string;
|
|
419
|
+
};
|
|
420
|
+
readonly isPrimary: {
|
|
498
421
|
type: "boolean";
|
|
499
422
|
optional: false;
|
|
500
423
|
customType: boolean;
|
|
424
|
+
} & {
|
|
425
|
+
serverName: string;
|
|
501
426
|
};
|
|
502
|
-
readonly
|
|
427
|
+
readonly name: Omit<{
|
|
428
|
+
type: "string";
|
|
429
|
+
optional: false;
|
|
430
|
+
customType: string;
|
|
431
|
+
}, "optional"> & {
|
|
432
|
+
optional: true;
|
|
433
|
+
};
|
|
434
|
+
};
|
|
435
|
+
primaryKey: readonly [string, ...string[]];
|
|
436
|
+
} & {
|
|
437
|
+
primaryKey: ["id"];
|
|
438
|
+
};
|
|
439
|
+
readonly accountLabel: {
|
|
440
|
+
name: "accountLabel";
|
|
441
|
+
columns: {
|
|
442
|
+
readonly accountId: {
|
|
503
443
|
type: "string";
|
|
504
444
|
optional: false;
|
|
505
445
|
customType: string;
|
|
506
446
|
} & {
|
|
507
447
|
serverName: string;
|
|
508
448
|
};
|
|
509
|
-
readonly
|
|
449
|
+
readonly id: {
|
|
450
|
+
type: "string";
|
|
451
|
+
optional: false;
|
|
452
|
+
customType: string;
|
|
453
|
+
};
|
|
454
|
+
readonly name: Omit<{
|
|
510
455
|
type: "string";
|
|
511
456
|
optional: false;
|
|
512
457
|
customType: string;
|
|
513
458
|
}, "optional"> & {
|
|
514
459
|
optional: true;
|
|
515
|
-
} & {
|
|
516
|
-
serverName: string;
|
|
517
460
|
};
|
|
518
|
-
readonly
|
|
461
|
+
readonly path: {
|
|
519
462
|
type: "string";
|
|
520
463
|
optional: false;
|
|
521
464
|
customType: string;
|
|
465
|
+
};
|
|
466
|
+
readonly specialUse: Omit<{
|
|
467
|
+
type: "string";
|
|
468
|
+
optional: false;
|
|
469
|
+
customType: "ARCHIVE" | "INBOX" | "SENT" | "SPAM" | "TRASH";
|
|
522
470
|
}, "optional"> & {
|
|
523
471
|
optional: true;
|
|
472
|
+
} & {
|
|
473
|
+
serverName: string;
|
|
524
474
|
};
|
|
525
|
-
readonly
|
|
475
|
+
readonly uidValidity: {
|
|
476
|
+
type: "number";
|
|
477
|
+
optional: false;
|
|
478
|
+
customType: number;
|
|
479
|
+
} & {
|
|
480
|
+
serverName: string;
|
|
481
|
+
};
|
|
482
|
+
readonly unreadCount: {
|
|
483
|
+
type: "number";
|
|
484
|
+
optional: false;
|
|
485
|
+
customType: number;
|
|
486
|
+
} & {
|
|
487
|
+
serverName: string;
|
|
488
|
+
};
|
|
489
|
+
};
|
|
490
|
+
primaryKey: readonly [string, ...string[]];
|
|
491
|
+
} & {
|
|
492
|
+
primaryKey: ["id"];
|
|
493
|
+
};
|
|
494
|
+
readonly draftAttachment: {
|
|
495
|
+
name: "draftAttachment";
|
|
496
|
+
columns: {
|
|
497
|
+
readonly draftId: {
|
|
526
498
|
type: "string";
|
|
527
499
|
optional: false;
|
|
528
500
|
customType: string;
|
|
529
501
|
} & {
|
|
530
502
|
serverName: string;
|
|
531
503
|
};
|
|
532
|
-
readonly
|
|
504
|
+
readonly fileName: {
|
|
505
|
+
type: "string";
|
|
506
|
+
optional: false;
|
|
507
|
+
customType: string;
|
|
508
|
+
} & {
|
|
509
|
+
serverName: string;
|
|
510
|
+
};
|
|
511
|
+
readonly id: {
|
|
512
|
+
type: "string";
|
|
513
|
+
optional: false;
|
|
514
|
+
customType: string;
|
|
515
|
+
};
|
|
516
|
+
readonly mimeType: {
|
|
533
517
|
type: "string";
|
|
534
518
|
optional: false;
|
|
535
519
|
customType: string;
|
|
520
|
+
} & {
|
|
521
|
+
serverName: string;
|
|
522
|
+
};
|
|
523
|
+
readonly status: {
|
|
524
|
+
type: "string";
|
|
525
|
+
optional: false;
|
|
526
|
+
customType: "PENDING" | "COMPLETE" | "FAILED";
|
|
527
|
+
} & {
|
|
528
|
+
serverName: string;
|
|
529
|
+
};
|
|
530
|
+
readonly totalSize: {
|
|
531
|
+
type: "number";
|
|
532
|
+
optional: false;
|
|
533
|
+
customType: number;
|
|
534
|
+
} & {
|
|
535
|
+
serverName: string;
|
|
536
536
|
};
|
|
537
537
|
};
|
|
538
538
|
primaryKey: readonly [string, ...string[]];
|
|
@@ -780,259 +780,259 @@ export declare const schema: {
|
|
|
780
780
|
relationships: {
|
|
781
781
|
readonly user: {
|
|
782
782
|
accounts: [{
|
|
783
|
-
readonly sourceField: readonly ("id" | "
|
|
784
|
-
readonly destField: readonly ("id" | "
|
|
783
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
784
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
785
785
|
readonly destSchema: "account";
|
|
786
786
|
readonly cardinality: "many";
|
|
787
787
|
}];
|
|
788
788
|
contacts: [{
|
|
789
|
-
readonly sourceField: readonly ("id" | "
|
|
790
|
-
readonly destField: readonly ("
|
|
789
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
790
|
+
readonly destField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
791
791
|
readonly destSchema: "contact";
|
|
792
792
|
readonly cardinality: "many";
|
|
793
793
|
}];
|
|
794
794
|
drafts: [{
|
|
795
|
-
readonly sourceField: readonly ("id" | "
|
|
796
|
-
readonly destField: readonly ("type" | "status" | "
|
|
795
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
796
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
797
797
|
readonly destSchema: "draft";
|
|
798
798
|
readonly cardinality: "many";
|
|
799
799
|
}];
|
|
800
800
|
pushNotificationTokens: [{
|
|
801
|
-
readonly sourceField: readonly ("id" | "
|
|
802
|
-
readonly destField: readonly ("id" | "
|
|
801
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
802
|
+
readonly destField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
803
803
|
readonly destSchema: "userPushNotificationToken";
|
|
804
804
|
readonly cardinality: "many";
|
|
805
805
|
}];
|
|
806
806
|
threads: [{
|
|
807
|
-
readonly sourceField: readonly ("id" | "
|
|
808
|
-
readonly destField: readonly ("
|
|
807
|
+
readonly sourceField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
808
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
809
809
|
readonly destSchema: "thread";
|
|
810
810
|
readonly cardinality: "many";
|
|
811
811
|
}];
|
|
812
812
|
};
|
|
813
|
-
readonly userPushNotificationToken: {
|
|
814
|
-
user: [{
|
|
815
|
-
readonly sourceField: readonly ("id" | "createdAt" | "token" | "userId")[];
|
|
816
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
817
|
-
readonly destSchema: "user";
|
|
818
|
-
readonly cardinality: "one";
|
|
819
|
-
}];
|
|
820
|
-
};
|
|
821
|
-
readonly contact: {
|
|
822
|
-
user: [{
|
|
823
|
-
readonly sourceField: readonly ("id" | "name" | "userId" | "emailAddress")[];
|
|
824
|
-
readonly destField: readonly ("id" | "profilePicture" | "undoSendEnabled" | "name" | "views")[];
|
|
825
|
-
readonly destSchema: "user";
|
|
826
|
-
readonly cardinality: "one";
|
|
827
|
-
}];
|
|
828
|
-
};
|
|
829
813
|
readonly account: {
|
|
830
814
|
aliases: [{
|
|
831
|
-
readonly sourceField: readonly ("id" | "
|
|
832
|
-
readonly destField: readonly ("
|
|
815
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
816
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
833
817
|
readonly destSchema: "accountAlias";
|
|
834
818
|
readonly cardinality: "many";
|
|
835
819
|
}];
|
|
836
820
|
drafts: [{
|
|
837
|
-
readonly sourceField: readonly ("id" | "
|
|
838
|
-
readonly destField: readonly ("type" | "status" | "
|
|
821
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
822
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
839
823
|
readonly destSchema: "draft";
|
|
840
824
|
readonly cardinality: "many";
|
|
841
825
|
}];
|
|
842
826
|
labels: [{
|
|
843
|
-
readonly sourceField: readonly ("id" | "
|
|
844
|
-
readonly destField: readonly ("
|
|
827
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
828
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
845
829
|
readonly destSchema: "accountLabel";
|
|
846
830
|
readonly cardinality: "many";
|
|
847
831
|
}];
|
|
848
832
|
primaryAlias: [{
|
|
849
|
-
readonly sourceField: readonly ("id" | "
|
|
850
|
-
readonly destField: readonly ("
|
|
833
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
834
|
+
readonly destField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
851
835
|
readonly destSchema: "accountAlias";
|
|
852
836
|
readonly cardinality: "one";
|
|
853
837
|
}];
|
|
854
838
|
threads: [{
|
|
855
|
-
readonly sourceField: readonly ("id" | "
|
|
856
|
-
readonly destField: readonly ("
|
|
839
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
840
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
857
841
|
readonly destSchema: "thread";
|
|
858
842
|
readonly cardinality: "many";
|
|
859
843
|
}];
|
|
860
844
|
user: [{
|
|
861
|
-
readonly sourceField: readonly ("id" | "
|
|
862
|
-
readonly destField: readonly ("id" | "
|
|
845
|
+
readonly sourceField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
846
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
863
847
|
readonly destSchema: "user";
|
|
864
848
|
readonly cardinality: "one";
|
|
865
849
|
}];
|
|
866
850
|
};
|
|
867
|
-
readonly
|
|
868
|
-
|
|
869
|
-
readonly sourceField: readonly ("
|
|
870
|
-
readonly destField: readonly ("id" | "
|
|
871
|
-
readonly destSchema: "
|
|
872
|
-
readonly cardinality: "one";
|
|
873
|
-
}];
|
|
874
|
-
};
|
|
875
|
-
readonly accountLabel: {
|
|
876
|
-
account: [{
|
|
877
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
878
|
-
readonly destField: readonly ("id" | "userId" | "color" | "displayName" | "imapConnectionStatus" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId")[];
|
|
879
|
-
readonly destSchema: "account";
|
|
851
|
+
readonly contact: {
|
|
852
|
+
user: [{
|
|
853
|
+
readonly sourceField: readonly ("emailAddress" | "id" | "name" | "userId")[];
|
|
854
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
855
|
+
readonly destSchema: "user";
|
|
880
856
|
readonly cardinality: "one";
|
|
881
857
|
}];
|
|
882
|
-
threads: [{
|
|
883
|
-
readonly sourceField: readonly ("id" | "name" | "accountId" | "path" | "specialUse" | "uidValidity" | "unreadCount")[];
|
|
884
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
885
|
-
readonly destSchema: "threadLabel";
|
|
886
|
-
readonly cardinality: "many";
|
|
887
|
-
}, {
|
|
888
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "labelId" | "lastSyncedAt" | "threadId" | "threadMessageId" | "uid")[];
|
|
889
|
-
readonly destField: readonly ("id" | "userId" | "accountId" | "subject" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "previewText" | "seen" | "senderEmail" | "senderName" | "words")[];
|
|
890
|
-
readonly destSchema: "thread";
|
|
891
|
-
readonly cardinality: "many";
|
|
892
|
-
}];
|
|
893
858
|
};
|
|
894
859
|
readonly draft: {
|
|
895
860
|
account: [{
|
|
896
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
897
|
-
readonly destField: readonly ("id" | "
|
|
861
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
862
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
898
863
|
readonly destSchema: "account";
|
|
899
864
|
readonly cardinality: "one";
|
|
900
865
|
}];
|
|
901
866
|
attachments: [{
|
|
902
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
867
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
903
868
|
readonly destField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
904
869
|
readonly destSchema: "draftAttachment";
|
|
905
870
|
readonly cardinality: "many";
|
|
906
871
|
}];
|
|
907
872
|
user: [{
|
|
908
|
-
readonly sourceField: readonly ("type" | "status" | "
|
|
909
|
-
readonly destField: readonly ("id" | "
|
|
873
|
+
readonly sourceField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
874
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
910
875
|
readonly destSchema: "user";
|
|
911
876
|
readonly cardinality: "one";
|
|
912
877
|
}];
|
|
913
878
|
};
|
|
914
|
-
readonly draftAttachment: {
|
|
915
|
-
draft: [{
|
|
916
|
-
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
917
|
-
readonly destField: readonly ("type" | "status" | "id" | "userId" | "accountId" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "scheduledFor" | "updatedAt" | "body" | "error" | "subject")[];
|
|
918
|
-
readonly destSchema: "draft";
|
|
919
|
-
readonly cardinality: "one";
|
|
920
|
-
}];
|
|
921
|
-
};
|
|
922
879
|
readonly thread: {
|
|
923
880
|
account: [{
|
|
924
|
-
readonly sourceField: readonly ("
|
|
925
|
-
readonly destField: readonly ("id" | "
|
|
881
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
882
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
926
883
|
readonly destSchema: "account";
|
|
927
884
|
readonly cardinality: "one";
|
|
928
885
|
}];
|
|
929
886
|
labels: [{
|
|
930
|
-
readonly sourceField: readonly ("
|
|
931
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
887
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
888
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
932
889
|
readonly destSchema: "threadLabel";
|
|
933
890
|
readonly cardinality: "many";
|
|
934
891
|
}, {
|
|
935
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
936
|
-
readonly destField: readonly ("
|
|
892
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
893
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
937
894
|
readonly destSchema: "accountLabel";
|
|
938
895
|
readonly cardinality: "many";
|
|
939
896
|
}];
|
|
940
897
|
messages: [{
|
|
941
|
-
readonly sourceField: readonly ("
|
|
942
|
-
readonly destField: readonly ("
|
|
898
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
899
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
943
900
|
readonly destSchema: "threadMessage";
|
|
944
901
|
readonly cardinality: "many";
|
|
945
902
|
}];
|
|
946
903
|
threadByLabel: [{
|
|
947
|
-
readonly sourceField: readonly ("
|
|
948
|
-
readonly destField: readonly ("
|
|
904
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
905
|
+
readonly destField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
949
906
|
readonly destSchema: "threadByLabel";
|
|
950
907
|
readonly cardinality: "many";
|
|
951
908
|
}];
|
|
952
909
|
user: [{
|
|
953
|
-
readonly sourceField: readonly ("
|
|
954
|
-
readonly destField: readonly ("id" | "
|
|
910
|
+
readonly sourceField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
911
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
955
912
|
readonly destSchema: "user";
|
|
956
913
|
readonly cardinality: "one";
|
|
957
914
|
}];
|
|
958
915
|
};
|
|
916
|
+
readonly userPushNotificationToken: {
|
|
917
|
+
user: [{
|
|
918
|
+
readonly sourceField: readonly ("id" | "userId" | "createdAt" | "token")[];
|
|
919
|
+
readonly destField: readonly ("id" | "name" | "views" | "profilePicture" | "undoSendEnabled")[];
|
|
920
|
+
readonly destSchema: "user";
|
|
921
|
+
readonly cardinality: "one";
|
|
922
|
+
}];
|
|
923
|
+
};
|
|
924
|
+
readonly accountAlias: {
|
|
925
|
+
account: [{
|
|
926
|
+
readonly sourceField: readonly ("accountId" | "emailAddress" | "id" | "isPrimary" | "name")[];
|
|
927
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
928
|
+
readonly destSchema: "account";
|
|
929
|
+
readonly cardinality: "one";
|
|
930
|
+
}];
|
|
931
|
+
};
|
|
932
|
+
readonly accountLabel: {
|
|
933
|
+
account: [{
|
|
934
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
935
|
+
readonly destField: readonly ("id" | "imapConnectionStatus" | "color" | "displayName" | "mailProcessedCount" | "mailTotalCount" | "primaryAliasId" | "userId")[];
|
|
936
|
+
readonly destSchema: "account";
|
|
937
|
+
readonly cardinality: "one";
|
|
938
|
+
}];
|
|
939
|
+
threads: [{
|
|
940
|
+
readonly sourceField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
941
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
942
|
+
readonly destSchema: "threadLabel";
|
|
943
|
+
readonly cardinality: "many";
|
|
944
|
+
}, {
|
|
945
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
946
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
947
|
+
readonly destSchema: "thread";
|
|
948
|
+
readonly cardinality: "many";
|
|
949
|
+
}];
|
|
950
|
+
};
|
|
951
|
+
readonly draftAttachment: {
|
|
952
|
+
draft: [{
|
|
953
|
+
readonly sourceField: readonly ("status" | "id" | "draftId" | "fileName" | "mimeType" | "totalSize")[];
|
|
954
|
+
readonly destField: readonly ("type" | "status" | "accountId" | "id" | "userId" | "scheduledFor" | "body" | "error" | "fromAliasId" | "fromEmail" | "fromName" | "referencedMessageId" | "subject" | "updatedAt")[];
|
|
955
|
+
readonly destSchema: "draft";
|
|
956
|
+
readonly cardinality: "one";
|
|
957
|
+
}];
|
|
958
|
+
};
|
|
959
959
|
readonly threadLabel: {
|
|
960
960
|
label: [{
|
|
961
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
962
|
-
readonly destField: readonly ("
|
|
961
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
962
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
963
963
|
readonly destSchema: "accountLabel";
|
|
964
964
|
readonly cardinality: "one";
|
|
965
965
|
}];
|
|
966
966
|
message: [{
|
|
967
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
968
|
-
readonly destField: readonly ("
|
|
967
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
968
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
969
969
|
readonly destSchema: "threadMessage";
|
|
970
970
|
readonly cardinality: "one";
|
|
971
971
|
}];
|
|
972
972
|
thread: [{
|
|
973
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
974
|
-
readonly destField: readonly ("
|
|
973
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
974
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
975
975
|
readonly destSchema: "thread";
|
|
976
976
|
readonly cardinality: "one";
|
|
977
977
|
}];
|
|
978
978
|
};
|
|
979
979
|
readonly threadByLabel: {
|
|
980
980
|
label: [{
|
|
981
|
-
readonly sourceField: readonly ("
|
|
982
|
-
readonly destField: readonly ("
|
|
981
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
982
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
983
983
|
readonly destSchema: "accountLabel";
|
|
984
984
|
readonly cardinality: "one";
|
|
985
985
|
}];
|
|
986
986
|
thread: [{
|
|
987
|
-
readonly sourceField: readonly ("
|
|
988
|
-
readonly destField: readonly ("
|
|
987
|
+
readonly sourceField: readonly ("threadId" | "latestMessageDate" | "labelId")[];
|
|
988
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
989
989
|
readonly destSchema: "thread";
|
|
990
990
|
readonly cardinality: "one";
|
|
991
991
|
}];
|
|
992
992
|
};
|
|
993
993
|
readonly threadMessage: {
|
|
994
994
|
attachments: [{
|
|
995
|
-
readonly sourceField: readonly ("
|
|
996
|
-
readonly destField: readonly ("id" | "fileName" | "mimeType" | "
|
|
995
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
996
|
+
readonly destField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
997
997
|
readonly destSchema: "threadMessageAttachment";
|
|
998
998
|
readonly cardinality: "many";
|
|
999
999
|
}];
|
|
1000
1000
|
labels: [{
|
|
1001
|
-
readonly sourceField: readonly ("
|
|
1002
|
-
readonly destField: readonly ("accountId" | "uidValidity" | "
|
|
1001
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1002
|
+
readonly destField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1003
1003
|
readonly destSchema: "threadLabel";
|
|
1004
1004
|
readonly cardinality: "many";
|
|
1005
1005
|
}, {
|
|
1006
|
-
readonly sourceField: readonly ("accountId" | "uidValidity" | "
|
|
1007
|
-
readonly destField: readonly ("
|
|
1006
|
+
readonly sourceField: readonly ("accountId" | "uidValidity" | "threadMessageId" | "threadId" | "labelId" | "lastSyncedAt" | "uid")[];
|
|
1007
|
+
readonly destField: readonly ("accountId" | "id" | "name" | "specialUse" | "path" | "uidValidity" | "unreadCount")[];
|
|
1008
1008
|
readonly destSchema: "accountLabel";
|
|
1009
1009
|
readonly cardinality: "many";
|
|
1010
1010
|
}];
|
|
1011
1011
|
recipients: [{
|
|
1012
|
-
readonly sourceField: readonly ("
|
|
1013
|
-
readonly destField: readonly ("type" | "
|
|
1012
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1013
|
+
readonly destField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
1014
1014
|
readonly destSchema: "threadMessageRecipient";
|
|
1015
1015
|
readonly cardinality: "many";
|
|
1016
1016
|
}];
|
|
1017
1017
|
thread: [{
|
|
1018
|
-
readonly sourceField: readonly ("
|
|
1019
|
-
readonly destField: readonly ("
|
|
1018
|
+
readonly sourceField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1019
|
+
readonly destField: readonly ("accountId" | "id" | "userId" | "subject" | "previewText" | "senderEmail" | "senderName" | "flagged" | "hasAttachments" | "labelIdList" | "latestMessageDate" | "latestMessageId" | "messageCount" | "seen" | "words")[];
|
|
1020
1020
|
readonly destSchema: "thread";
|
|
1021
1021
|
readonly cardinality: "one";
|
|
1022
1022
|
}];
|
|
1023
1023
|
};
|
|
1024
1024
|
readonly threadMessageRecipient: {
|
|
1025
1025
|
message: [{
|
|
1026
|
-
readonly sourceField: readonly ("type" | "
|
|
1027
|
-
readonly destField: readonly ("
|
|
1026
|
+
readonly sourceField: readonly ("type" | "emailAddress" | "id" | "name" | "threadMessageId")[];
|
|
1027
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1028
1028
|
readonly destSchema: "threadMessage";
|
|
1029
1029
|
readonly cardinality: "one";
|
|
1030
1030
|
}];
|
|
1031
1031
|
};
|
|
1032
1032
|
readonly threadMessageAttachment: {
|
|
1033
1033
|
message: [{
|
|
1034
|
-
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "
|
|
1035
|
-
readonly destField: readonly ("
|
|
1034
|
+
readonly sourceField: readonly ("id" | "fileName" | "mimeType" | "size" | "threadMessageId")[];
|
|
1035
|
+
readonly destField: readonly ("accountId" | "id" | "envelopeDate" | "envelopeSubject" | "previewText" | "senderEmail" | "senderName" | "threadId" | "unsubscribeUrl")[];
|
|
1036
1036
|
readonly destSchema: "threadMessage";
|
|
1037
1037
|
readonly cardinality: "one";
|
|
1038
1038
|
}];
|