@remit/domain-enums 0.0.10 → 0.0.12
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 +11 -0
- package/enums.js +11 -0
- package/package.json +1 -1
package/enums.d.ts
CHANGED
|
@@ -278,6 +278,7 @@ export declare const OutboxMessageStatus: {
|
|
|
278
278
|
readonly "queued": "queued";
|
|
279
279
|
readonly "sending": "sending";
|
|
280
280
|
readonly "sent": "sent";
|
|
281
|
+
readonly "unfiled": "unfiled";
|
|
281
282
|
readonly "failed": "failed";
|
|
282
283
|
readonly "blocked": "blocked"
|
|
283
284
|
};
|
|
@@ -311,6 +312,16 @@ export declare const MessageSyncStatus: {
|
|
|
311
312
|
readonly "failed": "failed"
|
|
312
313
|
};
|
|
313
314
|
|
|
315
|
+
export declare const AuthenticityVerdict: {
|
|
316
|
+
readonly "NotEvaluated": "NotEvaluated";
|
|
317
|
+
readonly "NotChecked": "NotChecked";
|
|
318
|
+
readonly "Aligned": "Aligned";
|
|
319
|
+
readonly "Authenticated": "Authenticated";
|
|
320
|
+
readonly "Routine": "Routine";
|
|
321
|
+
readonly "Caution": "Caution";
|
|
322
|
+
readonly "Impersonation": "Impersonation"
|
|
323
|
+
};
|
|
324
|
+
|
|
314
325
|
export declare const AuthResultVerdict: {
|
|
315
326
|
readonly "Pass": "Pass";
|
|
316
327
|
readonly "Fail": "Fail";
|
package/enums.js
CHANGED
|
@@ -278,6 +278,7 @@ export const OutboxMessageStatus = {
|
|
|
278
278
|
"queued": "queued",
|
|
279
279
|
"sending": "sending",
|
|
280
280
|
"sent": "sent",
|
|
281
|
+
"unfiled": "unfiled",
|
|
281
282
|
"failed": "failed",
|
|
282
283
|
"blocked": "blocked"
|
|
283
284
|
};
|
|
@@ -311,6 +312,16 @@ export const MessageSyncStatus = {
|
|
|
311
312
|
"failed": "failed"
|
|
312
313
|
};
|
|
313
314
|
|
|
315
|
+
export const AuthenticityVerdict = {
|
|
316
|
+
"NotEvaluated": "NotEvaluated",
|
|
317
|
+
"NotChecked": "NotChecked",
|
|
318
|
+
"Aligned": "Aligned",
|
|
319
|
+
"Authenticated": "Authenticated",
|
|
320
|
+
"Routine": "Routine",
|
|
321
|
+
"Caution": "Caution",
|
|
322
|
+
"Impersonation": "Impersonation"
|
|
323
|
+
};
|
|
324
|
+
|
|
314
325
|
export const AuthResultVerdict = {
|
|
315
326
|
"Pass": "Pass",
|
|
316
327
|
"Fail": "Fail",
|