@remit/domain-enums 0.0.17 → 0.0.19
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/enums.d.ts +37 -13
- package/enums.js +37 -13
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -322,6 +322,19 @@ export declare const DisplayNameCorrespondence: {
|
|
|
322
322
|
readonly "NoClaim": "NoClaim"
|
|
323
323
|
};
|
|
324
324
|
|
|
325
|
+
export declare const MessageStatus: {
|
|
326
|
+
readonly "active": "active";
|
|
327
|
+
readonly "deleting": "deleting";
|
|
328
|
+
readonly "deleted": "deleted";
|
|
329
|
+
readonly "moving": "moving"
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export declare const MessageSyncStatus: {
|
|
333
|
+
readonly "synced": "synced";
|
|
334
|
+
readonly "pending": "pending";
|
|
335
|
+
readonly "failed": "failed"
|
|
336
|
+
};
|
|
337
|
+
|
|
325
338
|
export declare const PlacementAction: {
|
|
326
339
|
readonly "MoveToInbox": "MoveToInbox";
|
|
327
340
|
readonly "MoveToJunk": "MoveToJunk"
|
|
@@ -362,19 +375,6 @@ export declare const OutboxAttachmentRejectionReason: {
|
|
|
362
375
|
readonly "SizeMismatch": "SizeMismatch"
|
|
363
376
|
};
|
|
364
377
|
|
|
365
|
-
export declare const MessageStatus: {
|
|
366
|
-
readonly "active": "active";
|
|
367
|
-
readonly "deleting": "deleting";
|
|
368
|
-
readonly "deleted": "deleted";
|
|
369
|
-
readonly "moving": "moving"
|
|
370
|
-
};
|
|
371
|
-
|
|
372
|
-
export declare const MessageSyncStatus: {
|
|
373
|
-
readonly "synced": "synced";
|
|
374
|
-
readonly "pending": "pending";
|
|
375
|
-
readonly "failed": "failed"
|
|
376
|
-
};
|
|
377
|
-
|
|
378
378
|
export declare const AuthenticityVerdict: {
|
|
379
379
|
readonly "NotEvaluated": "NotEvaluated";
|
|
380
380
|
readonly "NotChecked": "NotChecked";
|
|
@@ -452,6 +452,30 @@ export declare const LabelAction: {
|
|
|
452
452
|
readonly "Remove": "Remove"
|
|
453
453
|
};
|
|
454
454
|
|
|
455
|
+
export declare const CalendarSuggestionState: {
|
|
456
|
+
readonly "Pending": "Pending";
|
|
457
|
+
readonly "Accepted": "Accepted";
|
|
458
|
+
readonly "Declined": "Declined";
|
|
459
|
+
readonly "Tentative": "Tentative";
|
|
460
|
+
readonly "Dismissed": "Dismissed";
|
|
461
|
+
readonly "Superseded": "Superseded"
|
|
462
|
+
};
|
|
463
|
+
|
|
464
|
+
export declare const CalendarInviteMethod: {
|
|
465
|
+
readonly "Request": "Request";
|
|
466
|
+
readonly "Reply": "Reply";
|
|
467
|
+
readonly "Cancel": "Cancel";
|
|
468
|
+
readonly "Counter": "Counter";
|
|
469
|
+
readonly "Publish": "Publish";
|
|
470
|
+
readonly "None": "None"
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
export declare const CalendarSuggestionSource: {
|
|
474
|
+
readonly "IcalendarPart": "IcalendarPart";
|
|
475
|
+
readonly "IcalendarAttachment": "IcalendarAttachment";
|
|
476
|
+
readonly "TextHeuristic": "TextHeuristic"
|
|
477
|
+
};
|
|
478
|
+
|
|
455
479
|
export declare const MessageSystemFlag: {
|
|
456
480
|
readonly "Seen": "\\Seen";
|
|
457
481
|
readonly "Answered": "\\Answered";
|
package/enums.js
CHANGED
|
@@ -322,6 +322,19 @@ export const DisplayNameCorrespondence = {
|
|
|
322
322
|
"NoClaim": "NoClaim"
|
|
323
323
|
};
|
|
324
324
|
|
|
325
|
+
export const MessageStatus = {
|
|
326
|
+
"active": "active",
|
|
327
|
+
"deleting": "deleting",
|
|
328
|
+
"deleted": "deleted",
|
|
329
|
+
"moving": "moving"
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export const MessageSyncStatus = {
|
|
333
|
+
"synced": "synced",
|
|
334
|
+
"pending": "pending",
|
|
335
|
+
"failed": "failed"
|
|
336
|
+
};
|
|
337
|
+
|
|
325
338
|
export const PlacementAction = {
|
|
326
339
|
"MoveToInbox": "MoveToInbox",
|
|
327
340
|
"MoveToJunk": "MoveToJunk"
|
|
@@ -362,19 +375,6 @@ export const OutboxAttachmentRejectionReason = {
|
|
|
362
375
|
"SizeMismatch": "SizeMismatch"
|
|
363
376
|
};
|
|
364
377
|
|
|
365
|
-
export const MessageStatus = {
|
|
366
|
-
"active": "active",
|
|
367
|
-
"deleting": "deleting",
|
|
368
|
-
"deleted": "deleted",
|
|
369
|
-
"moving": "moving"
|
|
370
|
-
};
|
|
371
|
-
|
|
372
|
-
export const MessageSyncStatus = {
|
|
373
|
-
"synced": "synced",
|
|
374
|
-
"pending": "pending",
|
|
375
|
-
"failed": "failed"
|
|
376
|
-
};
|
|
377
|
-
|
|
378
378
|
export const AuthenticityVerdict = {
|
|
379
379
|
"NotEvaluated": "NotEvaluated",
|
|
380
380
|
"NotChecked": "NotChecked",
|
|
@@ -452,6 +452,30 @@ export const LabelAction = {
|
|
|
452
452
|
"Remove": "Remove"
|
|
453
453
|
};
|
|
454
454
|
|
|
455
|
+
export const CalendarSuggestionState = {
|
|
456
|
+
"Pending": "Pending",
|
|
457
|
+
"Accepted": "Accepted",
|
|
458
|
+
"Declined": "Declined",
|
|
459
|
+
"Tentative": "Tentative",
|
|
460
|
+
"Dismissed": "Dismissed",
|
|
461
|
+
"Superseded": "Superseded"
|
|
462
|
+
};
|
|
463
|
+
|
|
464
|
+
export const CalendarInviteMethod = {
|
|
465
|
+
"Request": "Request",
|
|
466
|
+
"Reply": "Reply",
|
|
467
|
+
"Cancel": "Cancel",
|
|
468
|
+
"Counter": "Counter",
|
|
469
|
+
"Publish": "Publish",
|
|
470
|
+
"None": "None"
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
export const CalendarSuggestionSource = {
|
|
474
|
+
"IcalendarPart": "IcalendarPart",
|
|
475
|
+
"IcalendarAttachment": "IcalendarAttachment",
|
|
476
|
+
"TextHeuristic": "TextHeuristic"
|
|
477
|
+
};
|
|
478
|
+
|
|
455
479
|
export const MessageSystemFlag = {
|
|
456
480
|
"Seen": "\\Seen",
|
|
457
481
|
"Answered": "\\Answered",
|