@remit/domain-enums 0.0.19 → 0.0.21

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 +14 -1
  2. package/enums.js +14 -1
  3. 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,11 @@ export declare const OutboxAttachmentRejectionReason: {
375
383
  readonly "SizeMismatch": "SizeMismatch"
376
384
  };
377
385
 
386
+ export declare const MessageClassificationState: {
387
+ readonly "NotExamined": "NotExamined";
388
+ readonly "Examined": "Examined"
389
+ };
390
+
378
391
  export declare const AuthenticityVerdict: {
379
392
  readonly "NotEvaluated": "NotEvaluated";
380
393
  readonly "NotChecked": "NotChecked";
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,11 @@ export const OutboxAttachmentRejectionReason = {
375
383
  "SizeMismatch": "SizeMismatch"
376
384
  };
377
385
 
386
+ export const MessageClassificationState = {
387
+ "NotExamined": "NotExamined",
388
+ "Examined": "Examined"
389
+ };
390
+
378
391
  export const AuthenticityVerdict = {
379
392
  "NotEvaluated": "NotEvaluated",
380
393
  "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.21",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",