@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.
Files changed (3) hide show
  1. package/enums.d.ts +11 -0
  2. package/enums.js +11 -0
  3. 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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",