@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.
- package/enums.d.ts +5 -0
- package/enums.js +5 -0
- 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",
|