@remit/domain-enums 0.0.21 → 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 +11 -0
- package/enums.js +11 -0
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -383,6 +383,17 @@ export declare const OutboxAttachmentRejectionReason: {
|
|
|
383
383
|
readonly "SizeMismatch": "SizeMismatch"
|
|
384
384
|
};
|
|
385
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
|
+
|
|
386
397
|
export declare const MessageClassificationState: {
|
|
387
398
|
readonly "NotExamined": "NotExamined";
|
|
388
399
|
readonly "Examined": "Examined"
|
package/enums.js
CHANGED
|
@@ -383,6 +383,17 @@ export const OutboxAttachmentRejectionReason = {
|
|
|
383
383
|
"SizeMismatch": "SizeMismatch"
|
|
384
384
|
};
|
|
385
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
|
+
|
|
386
397
|
export const MessageClassificationState = {
|
|
387
398
|
"NotExamined": "NotExamined",
|
|
388
399
|
"Examined": "Examined"
|