@remit/domain-enums 0.0.20 → 0.0.22
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 +20 -1
- package/enums.js +20 -1
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -332,7 +332,15 @@ export declare const MessageStatus: {
|
|
|
332
332
|
export declare const MessageSyncStatus: {
|
|
333
333
|
readonly "synced": "synced";
|
|
334
334
|
readonly "pending": "pending";
|
|
335
|
-
readonly "failed": "failed"
|
|
335
|
+
readonly "failed": "failed";
|
|
336
|
+
readonly "abandoned": "abandoned"
|
|
337
|
+
};
|
|
338
|
+
|
|
339
|
+
export declare const MessageMutation: {
|
|
340
|
+
readonly "none": "none";
|
|
341
|
+
readonly "move": "move";
|
|
342
|
+
readonly "delete": "delete";
|
|
343
|
+
readonly "copy": "copy"
|
|
336
344
|
};
|
|
337
345
|
|
|
338
346
|
export declare const PlacementAction: {
|
|
@@ -375,6 +383,17 @@ export declare const OutboxAttachmentRejectionReason: {
|
|
|
375
383
|
readonly "SizeMismatch": "SizeMismatch"
|
|
376
384
|
};
|
|
377
385
|
|
|
386
|
+
export declare const AddressFlagKey: {
|
|
387
|
+
readonly "Trusted": "trusted";
|
|
388
|
+
readonly "Blocked": "blocked";
|
|
389
|
+
readonly "Muted": "muted";
|
|
390
|
+
readonly "Vip": "vip";
|
|
391
|
+
readonly "JunkOnly": "junkOnly";
|
|
392
|
+
readonly "Category": "category";
|
|
393
|
+
readonly "AutoArchive": "autoArchive";
|
|
394
|
+
readonly "Unsubscribed": "unsubscribed"
|
|
395
|
+
};
|
|
396
|
+
|
|
378
397
|
export declare const MessageClassificationState: {
|
|
379
398
|
readonly "NotExamined": "NotExamined";
|
|
380
399
|
readonly "Examined": "Examined"
|
package/enums.js
CHANGED
|
@@ -332,7 +332,15 @@ export const MessageStatus = {
|
|
|
332
332
|
export const MessageSyncStatus = {
|
|
333
333
|
"synced": "synced",
|
|
334
334
|
"pending": "pending",
|
|
335
|
-
"failed": "failed"
|
|
335
|
+
"failed": "failed",
|
|
336
|
+
"abandoned": "abandoned"
|
|
337
|
+
};
|
|
338
|
+
|
|
339
|
+
export const MessageMutation = {
|
|
340
|
+
"none": "none",
|
|
341
|
+
"move": "move",
|
|
342
|
+
"delete": "delete",
|
|
343
|
+
"copy": "copy"
|
|
336
344
|
};
|
|
337
345
|
|
|
338
346
|
export const PlacementAction = {
|
|
@@ -375,6 +383,17 @@ export const OutboxAttachmentRejectionReason = {
|
|
|
375
383
|
"SizeMismatch": "SizeMismatch"
|
|
376
384
|
};
|
|
377
385
|
|
|
386
|
+
export const AddressFlagKey = {
|
|
387
|
+
"Trusted": "trusted",
|
|
388
|
+
"Blocked": "blocked",
|
|
389
|
+
"Muted": "muted",
|
|
390
|
+
"Vip": "vip",
|
|
391
|
+
"JunkOnly": "junkOnly",
|
|
392
|
+
"Category": "category",
|
|
393
|
+
"AutoArchive": "autoArchive",
|
|
394
|
+
"Unsubscribed": "unsubscribed"
|
|
395
|
+
};
|
|
396
|
+
|
|
378
397
|
export const MessageClassificationState = {
|
|
379
398
|
"NotExamined": "NotExamined",
|
|
380
399
|
"Examined": "Examined"
|