-
Notifications
You must be signed in to change notification settings - Fork 17
/
types.ts
608 lines (540 loc) · 13.9 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
export type IMethodName =
| 'Mailbox/get'
| 'Mailbox/changes'
| 'Mailbox/set'
| 'Email/get'
| 'Email/changes'
| 'Email/query'
| 'Email/set'
| 'Email/import'
| 'Thread/get'
| 'EmailSubmission/get'
| 'EmailSubmission/changes'
| 'EmailSubmission/set';
export type IErrorName = 'error';
export type IInvocationName = IMethodName | IErrorName;
/**
* See https://jmap.io/spec-core.html#the-invocation-data-type
*/
export type IInvocation<ArgumentsType> = [
name: IInvocationName,
arguments: ArgumentsType,
methodCallId: string,
];
export type IEntityProperties =
| IMailboxProperties
| IEmailProperties
| IEmailSubmissionProperties
| IThreadProperties;
/**
* See https://jmap.io/spec-core.html#query
*/
export type IFilterCondition = IMailboxFilterCondition | IEmailFilterCondition;
export type IArguments =
| IGetArguments<IEntityProperties>
| ISetArguments<IEntityProperties>
| IQueryArguments<IEmailFilterCondition>
| IChangesArguments;
export interface IReplaceableAccountId {
/**
* If null, the library will replace its value by default account id.
*/
accountId: string | null;
}
/**
* See https://jmap.io/spec-core.html#get
*/
export interface IGetArguments<Properties extends IEntityProperties> extends IReplaceableAccountId {
ids: string[] | null;
properties?: (keyof Properties)[];
}
/**
* See https://jmap.io/spec-core.html#get
*/
export interface IGetResponse<Foo> {
accountId: string;
state: string;
list: Foo[];
notFound: string[];
}
/**
* See https://jmap.io/spec-core.html#changes
*/
export interface IChangesArguments extends IReplaceableAccountId {
sinceState: string;
maxChanges?: number | null;
}
/**
* See https://jmap.io/spec-core.html#changes
*/
export interface IChangesResponse {
accountId: string;
oldState: string;
newState: string;
hasMoreChanges: boolean;
created: string[];
updated: string[];
destroyed: string[];
}
/**
* See https://jmap.io/spec-core.html#set
*/
export interface ISetArguments<Properties extends IEntityProperties> extends IReplaceableAccountId {
ifInState?: string;
create?: { [id: string]: Partial<Properties> };
update?: { [id: string]: Partial<Properties> & { [jsonPointer: string]: any } };
destroy?: string[];
}
/**
* See https://jmap.io/spec-core.html#set
*/
export interface ISetResponse<Foo> {
accountId: string;
oldState?: string;
newState: string;
created?: { [key: string]: Foo };
updated?: { [key: string]: Foo | null };
destroyed?: string[];
notCreated?: { [id: string]: ISetError };
notUpdated?: { [id: string]: ISetError };
notDestroyed?: { [id: string]: ISetError };
}
/**
* See https://jmap.io/spec-core.html#query
*/
export interface IQueryArguments<FilterCondition extends IFilterCondition>
extends IReplaceableAccountId {
filter?: FilterCondition | IFilterOperator<FilterCondition>;
sort?: IComparator[];
position?: number;
anchor?: string;
anchorOffset?: number;
limit?: number;
calculateTotal?: boolean;
}
/**
* See https://jmap.io/spec-core.html#query
*/
export interface IQueryResponse {
accountId: string;
queryState: string;
canCalculateChanges: boolean;
position: number;
ids: string[];
total?: number;
limit?: number;
}
export type IEmailQueryArguments = IQueryArguments<IEmailFilterCondition>;
export type IEmailQueryResponse = IQueryResponse;
/**
* See https://jmap.io/spec-core.html#query
*/
export interface IFilterOperator<FilterCondition> {
operator: 'AND' | 'OR' | 'NOT';
conditions: (FilterCondition | IFilterOperator<FilterCondition>)[];
}
/**
* See https://jmap.io/spec-core.html#query
*/
export interface IComparator {
property: string;
isAscending?: boolean;
collation?: string;
}
/**
* See https://jmap.io/spec-core.html#the-request-object
*/
export interface IRequest {
using: string[];
methodCalls: IInvocation<IArguments>[];
createdIds?: { [creationId: string]: string };
}
/**
* See https://jmap.io/spec-core.html#the-jmap-session-resource
*/
export interface ICapabilities {
maxSizeUpload: number;
maxConcurrentUpload: number;
maxSizeRequest: number;
maxConcurrentRequests: number;
maxCallsInRequest: number;
maxObjectsInGet: number;
maxObjectsInSet: number;
collationAlgorithms: string[];
}
/**
* See https://jmap.io/spec-mail.html#additions-to-the-capabilities-object
*/
export interface IMailCapabilities {
maxMailboxesPerEmail?: number;
maxMailboxDepth?: number;
maxSizeMailboxName: number;
maxSizeAttachmentsPerEmail: number;
emailQuerySortOptions: string[];
mayCreateTopLevelMailbox: boolean;
}
/**
* See https://jmap.io/spec-core.html#the-jmap-session-resource
*/
export interface IAccount {
name: string;
isPersonal: boolean;
isReadOnly: boolean;
accountCapabilities: { [key: string]: IMailCapabilities };
}
/**
* See https://jmap.io/spec-core.html#the-jmap-session-resource
*/
export interface ISession {
capabilities: ICapabilities;
accounts: { [accountId: string]: IAccount };
primaryAccounts: { [key: string]: string };
username: string;
apiUrl: string;
downloadUrl: string;
uploadUrl: string;
eventSourceUrl: string;
state: string;
}
export interface EmailHeader {
name: string;
value: string;
}
export type Attachment = File;
/**
* See https://jmap.io/spec-mail.html#emailget
*/
export interface IEmailGetArguments extends IGetArguments<IEmailProperties> {
bodyProperties?: string[];
fetchTextBodyValues?: boolean;
fetchHTMLBodyValues?: boolean;
fetchAllBodyValues?: boolean;
maxBodyValueBytes?: number;
}
/**
* See https://jmap.io/spec-mail.html#properties-of-the-email-object
*/
export interface IEmailProperties {
id: string;
blobId: string;
threadId: string;
mailboxIds: { [key: string]: boolean };
keywords: IEmailKeywords;
from: IEmailAddress[] | null;
to: IEmailAddress[] | null;
bodyValues: {
[bodyPartId: string]: IEmailBodyValue;
} | null;
textBody: Partial<IEmailBodyPart>[] | null;
htmlBody: Partial<IEmailBodyPart>[] | null;
subject: string;
date: Date;
size: number;
preview: string;
attachments: Attachment[] | null;
createdModSeq: number;
updatedModSeq: number;
receivedAt: IUtcDate;
headers: EmailHeader[] | null;
}
export type IUtcDate = string;
export type ITrue = true;
/**
* See https://jmap.io/spec-mail.html#properties-of-the-email-object
*/
export interface IEmailKeywords {
$draft?: ITrue;
$seen?: ITrue;
$flagged?: ITrue;
$answered?: ITrue;
$forwarded?: ITrue;
$phishing?: ITrue;
$junk?: ITrue;
$notjunk?: ITrue;
}
/**
* See https://jmap.io/spec-mail.html#properties-of-the-email-object
*/
export interface IEmailAddress {
name: string;
email: string;
}
/**
* See https://jmap.io/spec-mail.html#threads
*/
export interface IThreadProperties {
id: string;
emailIds: string[];
}
export type IThreadGetArguments = IGetArguments<IThreadProperties>;
export type IThreadGetResponse = IGetResponse<IThreadProperties>;
/**
* See https://jmap.io/spec-core.html#uploading-binary-data
*/
export interface IUploadResponse {
accountId: string;
blobId: string;
type: string;
size: number;
}
/**
* See https://jmap.io/spec-mail.html#emailimport
*/
export interface IEmailImport {
blobId: string;
mailboxIds: { [Id: string]: ITrue };
keywords: IEmailKeywords;
receivedAt: IUtcDate;
}
export interface IEmailImportArguments extends IReplaceableAccountId {
ifInState: string | null;
emails: { [Id: string]: IEmailImport };
}
export interface IEmailImportResponse {
accountId: string;
oldState?: string | null;
newState: string;
created?: { [Id: string]: IEmailProperties } | null;
notCreated?: { [id: string]: ISetError } | null;
}
/**
* See https://jmap.io/spec-mail.html#mailboxes
*/
export interface IMailboxRights {
mayReadItems: boolean;
mayAddItems: boolean;
mayRemoveItems: boolean;
mayCreateChild: boolean;
mayRename: boolean;
mayDelete: boolean;
}
/**
* See https://jmap.io/spec-mail.html#mailboxes
*/
export interface IMailboxProperties {
id: string;
name: string;
parentId?: string;
role?: string;
sortOrder: number;
totalEmails: number;
unreadEmails: number;
totalThreads: number;
unreadThreads: number;
myRights: IMailboxRights;
isSubscribed: false;
}
export type IMailboxGetArguments = IGetArguments<IMailboxProperties>;
export type IMailboxGetResponse = IGetResponse<IMailboxProperties>;
export type IMailboxChangesArguments = IChangesArguments;
/**
* See https://jmap.io/spec-mail.html#mailboxchanges
*/
export interface IMailboxChangesResponse extends IChangesResponse {
updatedProperties: string[] | null;
}
export type IMailboxSetArguments = ISetArguments<IMailboxProperties>;
export type IMailboxSetResponse = ISetResponse<IMailboxProperties>;
/**
* See https://jmap.io/spec-core.html#method-level-errors
*/
export interface IError {
type: IErrorType;
}
/**
* See https://jmap.io/spec-core.html#creation-of-jmap-error-codes-registry
*/
export type IErrorType =
| 'accountNotFound'
| 'accountNotSupportedByMethod'
| 'accountReadOnly'
| 'anchorNotFound'
| 'alreadyExists'
| 'cannotCalculateChanges'
| 'forbidden'
| 'fromAccountNotFound'
| 'fromAccountNotSupportedByMethod'
| 'invalidArguments'
| 'invalidPatch'
| 'invalidProperties'
| 'notFound'
| 'notJSON'
| 'notRequest'
| 'overQuota'
| 'rateLimit'
| 'requestTooLarge'
| 'invalidResultReference'
| 'serverFail'
| 'serverPartialFail'
| 'serverUnavailable'
| 'singleton'
| 'stateMismatch'
| 'tooLarge'
| 'tooManyChanges'
| 'unknownCapability'
| 'unknownMethod'
| 'unsupportedFilter'
| 'unsupportedSort'
| 'willDestroy';
/**
* See https://jmap.io/spec-core.html#set
*/
export interface ISetError {
type: IErrorType;
description?: string;
properties?: string[];
}
export interface IMailboxEmailList {
id: string; // mailboxId . (Max_Int64 - EmailDate) . uid
threadId: string;
messageId: string;
updatedModSeq: number; // Documentation says it is string, must be an error
created: Date;
deleted: Date | null;
}
export type IEmailChangesArguments = IChangesArguments;
export type IEmailChangesResponse = IChangesResponse;
export type IThreadChangesResponse = IChangesResponse;
/**
* See https://jmap.io/spec-mail.html#properties-of-the-email-object
*/
export interface IEmailBodyValue {
value: string;
isEncodingProblem: boolean;
isTruncated: boolean;
}
/**
* See https://jmap.io/spec-mail.html#properties-of-the-email-object
*/
export interface IEmailBodyPart {
partId: string;
blobId: string;
size: number;
headers: EmailHeader[];
name: string | null;
type: string;
charset: string | null;
disposition: string | null;
cid: string | null;
language: string[] | null;
location: string | null;
subParts: IEmailBodyPart[] | null;
bodyStructure: IEmailBodyPart;
bodyValues: { [key: string]: IEmailBodyValue };
textBody: IEmailBodyPart[]; // text/plain
htmlBody: IEmailBodyPart[]; // text/html
attachments: IEmailBodyPart[];
hasAttachment: boolean;
preview: string;
}
/**
* See https://jmap.io/spec-mail.html#emailset
*/
export interface IEmailSetBodyPart {
partId: string;
type: string;
}
/**
* See https://jmap.io/spec-mail.html#mailboxquery
*/
export interface IMailboxFilterCondition {
parentId?: string | null;
name?: string;
role?: string | null;
hasAnyRole?: boolean;
isSubscribed?: boolean;
}
/**
* See https://jmap.io/spec-mail.html#emailquery
*/
export interface IEmailFilterCondition {
inMailbox?: string;
inMailboxOtherThan?: string[];
before?: IUtcDate;
after?: IUtcDate;
minSize?: number;
maxSize?: number;
allInThreadHaveKeyword?: string;
someInThreadHaveKeyword?: string;
noneInThreadHaveKeyword?: string;
hasKeyword?: string;
notKeyword?: string;
hasAttachment?: boolean;
text?: string;
from?: string;
to?: string;
cc?: string;
bcc?: string;
subject?: string;
body?: string;
header?: string[];
}
export type IEmailGetResponse = IGetResponse<IEmailProperties>;
export type IEmailSetArguments = ISetArguments<IEmailProperties>;
export type IEmailSetResponse = ISetResponse<IEmailProperties>;
/**
* See https://jmap.io/spec-mail.html#email-submission
*/
export interface DeliveryStatus {
smtpReply: string;
delivered: 'queued' | 'yes' | 'no' | 'unknown';
displayed: 'unknown' | 'yes';
}
/**
* See https://jmap.io/spec-mail.html#email-submission
*/
export interface Address {
email: string;
parameters?: { [parameterName: string]: string | null } | null;
}
/**
* See https://jmap.io/spec-mail.html#email-submission
*/
export interface Envelope {
mailFrom: Address;
rcptTo: Address[];
}
/**
* See https://jmap.io/spec-mail.html#email-submission
*/
export interface IEmailSubmissionProperties {
id: string;
identityId: string;
emailId: string;
threadId: string;
envelope: Envelope | null;
sendAt: IUtcDate;
undoStatus: 'pending' | 'final' | 'canceled';
deliveryStatus: { [recipientEmailAddress: string]: DeliveryStatus } | null;
dsnBlobIds: string[];
mdnBlobIds: string[];
}
/**
* See https://jmap.io/spec-mail.html#emailsubmissionget
*/
export type IEmailSubmissionGetArguments = IGetArguments<IEmailSubmissionProperties>;
/**
* See https://jmap.io/spec-mail.html#emailsubmissionchanges
*/
export type IEmailSubmissionChangesArguments = IChangesArguments;
/**
* See https://jmap.io/spec-mail.html#emailsubmissionchanges
*/
export type IEmailSubmissionChangesResponse = IChangesResponse;
/**
* See https://jmap.io/spec-mail.html#emailsubmissionget
*/
export type IEmailSubmissionGetResponse = IGetResponse<IEmailSubmissionProperties>;
/**
* See https://jmap.io/spec-mail.html#emailsubmissionset
*/
export type IEmailSubmissionSetArguments = ISetArguments<IEmailSubmissionProperties> & {
onSuccessUpdateEmail?: {
[emailSubmissionId: string]: Partial<IEmailProperties> & { [jsonPointer: string]: any };
} | null;
onSuccessDestroyEmail?: string[] | null;
};
/**
* See https://jmap.io/spec-mail.html#emailsubmissionset
*/
export type IEmailSubmissionSetResponse = ISetResponse<IEmailSubmissionProperties>;