@remit/domain-enums 0.0.3 → 0.0.4

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 +1 -2
  2. package/enums.js +1 -2
  3. package/package.json +1 -1
package/enums.d.ts CHANGED
@@ -84,9 +84,8 @@ export declare const QuarantineFailureStage: {
84
84
  };
85
85
 
86
86
  export declare const QuarantineFailureCode: {
87
- readonly "UnterminatedMultipartBoundary": "UnterminatedMultipartBoundary";
88
87
  readonly "UnknownCharset": "UnknownCharset";
89
- readonly "TruncatedBody": "TruncatedBody"
88
+ readonly "UnreadableBody": "UnreadableBody"
90
89
  };
91
90
 
92
91
  export declare const AccountConfigState: {
package/enums.js CHANGED
@@ -84,9 +84,8 @@ export const QuarantineFailureStage = {
84
84
  };
85
85
 
86
86
  export const QuarantineFailureCode = {
87
- "UnterminatedMultipartBoundary": "UnterminatedMultipartBoundary",
88
87
  "UnknownCharset": "UnknownCharset",
89
- "TruncatedBody": "TruncatedBody"
88
+ "UnreadableBody": "UnreadableBody"
90
89
  };
91
90
 
92
91
  export const AccountConfigState = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",