@remit/domain-enums 0.0.11 → 0.0.13

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 +2 -0
  2. package/enums.js +2 -0
  3. package/package.json +1 -1
package/enums.d.ts CHANGED
@@ -255,6 +255,7 @@ export declare const SenderTrust: {
255
255
  export declare const DisplayNameCorrespondence: {
256
256
  readonly "Corresponds": "Corresponds";
257
257
  readonly "Lookalike": "Lookalike";
258
+ readonly "ForeignAddress": "ForeignAddress";
258
259
  readonly "Unrelated": "Unrelated";
259
260
  readonly "NoClaim": "NoClaim"
260
261
  };
@@ -278,6 +279,7 @@ export declare const OutboxMessageStatus: {
278
279
  readonly "queued": "queued";
279
280
  readonly "sending": "sending";
280
281
  readonly "sent": "sent";
282
+ readonly "unfiled": "unfiled";
281
283
  readonly "failed": "failed";
282
284
  readonly "blocked": "blocked"
283
285
  };
package/enums.js CHANGED
@@ -255,6 +255,7 @@ export const SenderTrust = {
255
255
  export const DisplayNameCorrespondence = {
256
256
  "Corresponds": "Corresponds",
257
257
  "Lookalike": "Lookalike",
258
+ "ForeignAddress": "ForeignAddress",
258
259
  "Unrelated": "Unrelated",
259
260
  "NoClaim": "NoClaim"
260
261
  };
@@ -278,6 +279,7 @@ export const OutboxMessageStatus = {
278
279
  "queued": "queued",
279
280
  "sending": "sending",
280
281
  "sent": "sent",
282
+ "unfiled": "unfiled",
281
283
  "failed": "failed",
282
284
  "blocked": "blocked"
283
285
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/domain-enums",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "type": "module",
5
5
  "main": "enums.js",
6
6
  "types": "enums.d.ts",