@remit/domain-enums 0.0.19 → 0.0.20

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 +5 -0
  2. package/enums.js +5 -0
  3. package/package.json +1 -1
package/enums.d.ts CHANGED
@@ -375,6 +375,11 @@ export declare const OutboxAttachmentRejectionReason: {
375
375
  readonly "SizeMismatch": "SizeMismatch"
376
376
  };
377
377
 
378
+ export declare const MessageClassificationState: {
379
+ readonly "NotExamined": "NotExamined";
380
+ readonly "Examined": "Examined"
381
+ };
382
+
378
383
  export declare const AuthenticityVerdict: {
379
384
  readonly "NotEvaluated": "NotEvaluated";
380
385
  readonly "NotChecked": "NotChecked";
package/enums.js CHANGED
@@ -375,6 +375,11 @@ export const OutboxAttachmentRejectionReason = {
375
375
  "SizeMismatch": "SizeMismatch"
376
376
  };
377
377
 
378
+ export const MessageClassificationState = {
379
+ "NotExamined": "NotExamined",
380
+ "Examined": "Examined"
381
+ };
382
+
378
383
  export const AuthenticityVerdict = {
379
384
  "NotEvaluated": "NotEvaluated",
380
385
  "NotChecked": "NotChecked",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",