@remit/domain-enums 0.0.10 → 0.0.11
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 +10 -0
- package/enums.js +10 -0
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -311,6 +311,16 @@ export declare const MessageSyncStatus: {
|
|
|
311
311
|
readonly "failed": "failed"
|
|
312
312
|
};
|
|
313
313
|
|
|
314
|
+
export declare const AuthenticityVerdict: {
|
|
315
|
+
readonly "NotEvaluated": "NotEvaluated";
|
|
316
|
+
readonly "NotChecked": "NotChecked";
|
|
317
|
+
readonly "Aligned": "Aligned";
|
|
318
|
+
readonly "Authenticated": "Authenticated";
|
|
319
|
+
readonly "Routine": "Routine";
|
|
320
|
+
readonly "Caution": "Caution";
|
|
321
|
+
readonly "Impersonation": "Impersonation"
|
|
322
|
+
};
|
|
323
|
+
|
|
314
324
|
export declare const AuthResultVerdict: {
|
|
315
325
|
readonly "Pass": "Pass";
|
|
316
326
|
readonly "Fail": "Fail";
|
package/enums.js
CHANGED
|
@@ -311,6 +311,16 @@ export const MessageSyncStatus = {
|
|
|
311
311
|
"failed": "failed"
|
|
312
312
|
};
|
|
313
313
|
|
|
314
|
+
export const AuthenticityVerdict = {
|
|
315
|
+
"NotEvaluated": "NotEvaluated",
|
|
316
|
+
"NotChecked": "NotChecked",
|
|
317
|
+
"Aligned": "Aligned",
|
|
318
|
+
"Authenticated": "Authenticated",
|
|
319
|
+
"Routine": "Routine",
|
|
320
|
+
"Caution": "Caution",
|
|
321
|
+
"Impersonation": "Impersonation"
|
|
322
|
+
};
|
|
323
|
+
|
|
314
324
|
export const AuthResultVerdict = {
|
|
315
325
|
"Pass": "Pass",
|
|
316
326
|
"Fail": "Fail",
|