mailersend
Version:
Node.js helper module for MailerSend API
21 lines (20 loc) • 989 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ActivityEventType = void 0;
var ActivityEventType;
(function (ActivityEventType) {
ActivityEventType["QUEUED"] = "queued";
ActivityEventType["SENT"] = "sent";
ActivityEventType["DELIVERED"] = "delivered";
ActivityEventType["SOFT_BOUNCED"] = "soft_bounced";
ActivityEventType["HARD_BOUNCED"] = "hard_bounced";
ActivityEventType["OPENED"] = "opened";
ActivityEventType["OPENED_UNIQUE"] = "opened_unique";
ActivityEventType["CLICKED"] = "clicked";
ActivityEventType["CLICKED_UNIQUE"] = "clicked_unique";
ActivityEventType["UNSUBSCRIBED"] = "unsubscribed";
ActivityEventType["SPAM_COMPLAINTS"] = "spam_complaints";
ActivityEventType["SURVEY_OPENED"] = "survey_opened";
ActivityEventType["SURVEY_SUBMITTED"] = "survey_submitted";
ActivityEventType["DEFERRED"] = "deferred";
})(ActivityEventType || (exports.ActivityEventType = ActivityEventType = {}));