@clxmedia/emailhub-client 1.1.5 → 1.1.6

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 (2) hide show
  1. package/dist/client.js +2 -1
  2. package/package.json +1 -1
package/dist/client.js CHANGED
@@ -71,7 +71,8 @@ class MockEmailHubClient {
71
71
  console.log(JSON.stringify(msg));
72
72
  console.log('----------------End mock email send-----------------');
73
73
  }
74
- return uuid.v4();
74
+ const xMailGuid = msg && msg.CustomID ? msg.CustomID : uuid.v4();
75
+ return xMailGuid;
75
76
  });
76
77
  }
77
78
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/emailhub-client",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "CLXperience EmailHub Client",
5
5
  "author": "Brandon Thompson <brandont@clxmedia.com>",
6
6
  "license": "MIT",