@remit/domain-enums 0.0.22 → 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.
Files changed (3) hide show
  1. package/enums.d.ts +8 -1
  2. package/enums.js +8 -1
  3. package/package.json +1 -1
package/enums.d.ts CHANGED
@@ -391,7 +391,8 @@ export declare const AddressFlagKey: {
391
391
  readonly "JunkOnly": "junkOnly";
392
392
  readonly "Category": "category";
393
393
  readonly "AutoArchive": "autoArchive";
394
- readonly "Unsubscribed": "unsubscribed"
394
+ readonly "Unsubscribed": "unsubscribed";
395
+ readonly "NeverSpam": "neverSpam"
395
396
  };
396
397
 
397
398
  export declare const MessageClassificationState: {
@@ -541,6 +542,12 @@ export declare const ContentEncoding: {
541
542
  readonly "Zstd": "zstd"
542
543
  };
543
544
 
545
+ export declare const SenderOverride: {
546
+ readonly "None": "none";
547
+ readonly "Blocked": "blocked";
548
+ readonly "NeverSpam": "neverSpam"
549
+ };
550
+
544
551
  export declare const AccountSettingName: {
545
552
  readonly "Theme": "Theme";
546
553
  readonly "Density": "Density";
package/enums.js CHANGED
@@ -391,7 +391,8 @@ export const AddressFlagKey = {
391
391
  "JunkOnly": "junkOnly",
392
392
  "Category": "category",
393
393
  "AutoArchive": "autoArchive",
394
- "Unsubscribed": "unsubscribed"
394
+ "Unsubscribed": "unsubscribed",
395
+ "NeverSpam": "neverSpam"
395
396
  };
396
397
 
397
398
  export const MessageClassificationState = {
@@ -541,6 +542,12 @@ export const ContentEncoding = {
541
542
  "Zstd": "zstd"
542
543
  };
543
544
 
545
+ export const SenderOverride = {
546
+ "None": "none",
547
+ "Blocked": "blocked",
548
+ "NeverSpam": "neverSpam"
549
+ };
550
+
544
551
  export const AccountSettingName = {
545
552
  "Theme": "Theme",
546
553
  "Density": "Density",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",