Work in progress on integration of IVIS.

Some fixes.
This commit is contained in:
Tomas Bures 2019-08-31 11:46:18 +02:00
parent 3a17d7fd75
commit 2aaa8f45b3
11 changed files with 188 additions and 12 deletions

View file

@ -30,10 +30,12 @@ const ListActivityType = {
};
const CampaignTrackerActivityType = {
DELIVERED: 1,
SENT: 1,
BOUNCED: 2,
OPENED: 3,
CLICKED: 4
UNSUBSCRIBED: 3,
COMPLAINED: 4,
OPENED: 5,
CLICKED: 6
};
const BlacklistActivityType = {
@ -45,4 +47,5 @@ const BlacklistActivityType = {
module.exports.EntityActivityType = EntityActivityType;
module.exports.BlacklistActivityType = BlacklistActivityType;
module.exports.CampaignActivityType = CampaignActivityType;
module.exports.ListActivityType = ListActivityType;
module.exports.ListActivityType = ListActivityType;
module.exports.CampaignTrackerActivityType = CampaignTrackerActivityType;