@remit/domain-enums 0.0.21 → 0.0.23
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 +18 -0
- package/enums.js +18 -0
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -383,6 +383,18 @@ 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
|
+
readonly "NeverSpam": "neverSpam"
|
|
396
|
+
};
|
|
397
|
+
|
|
386
398
|
export declare const MessageClassificationState: {
|
|
387
399
|
readonly "NotExamined": "NotExamined";
|
|
388
400
|
readonly "Examined": "Examined"
|
|
@@ -530,6 +542,12 @@ export declare const ContentEncoding: {
|
|
|
530
542
|
readonly "Zstd": "zstd"
|
|
531
543
|
};
|
|
532
544
|
|
|
545
|
+
export declare const SenderOverride: {
|
|
546
|
+
readonly "None": "none";
|
|
547
|
+
readonly "Blocked": "blocked";
|
|
548
|
+
readonly "NeverSpam": "neverSpam"
|
|
549
|
+
};
|
|
550
|
+
|
|
533
551
|
export declare const AccountSettingName: {
|
|
534
552
|
readonly "Theme": "Theme";
|
|
535
553
|
readonly "Density": "Density";
|
package/enums.js
CHANGED
|
@@ -383,6 +383,18 @@ 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
|
+
"NeverSpam": "neverSpam"
|
|
396
|
+
};
|
|
397
|
+
|
|
386
398
|
export const MessageClassificationState = {
|
|
387
399
|
"NotExamined": "NotExamined",
|
|
388
400
|
"Examined": "Examined"
|
|
@@ -530,6 +542,12 @@ export const ContentEncoding = {
|
|
|
530
542
|
"Zstd": "zstd"
|
|
531
543
|
};
|
|
532
544
|
|
|
545
|
+
export const SenderOverride = {
|
|
546
|
+
"None": "none",
|
|
547
|
+
"Blocked": "blocked",
|
|
548
|
+
"NeverSpam": "neverSpam"
|
|
549
|
+
};
|
|
550
|
+
|
|
533
551
|
export const AccountSettingName = {
|
|
534
552
|
"Theme": "Theme",
|
|
535
553
|
"Density": "Density",
|