@enable-tech/shared-types
Version:
This package represents the single source of truth of the Types being used in the codebase (front-end and back-end) of enable.tech, It is an organization-scoped package. So, all the development teams belonging to it can participate to enhance it.
21 lines • 954 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.E_CampaignChannel = exports.E_CampaignStatus = void 0;
// ! NOTE: This type replaces the following type: CampaignStatus
var E_CampaignStatus;
(function (E_CampaignStatus) {
E_CampaignStatus["DRAFT"] = "DRAFT";
E_CampaignStatus["SCHEDULED"] = "SCHEDULED";
E_CampaignStatus["ACTIVE"] = "ACTIVE";
E_CampaignStatus["ENDED"] = "ENDED";
E_CampaignStatus["CANCELLED"] = "CANCELLED";
})(E_CampaignStatus || (exports.E_CampaignStatus = E_CampaignStatus = {}));
// ! NOTE: This type replaces the following type: CampaignChannel
var E_CampaignChannel;
(function (E_CampaignChannel) {
E_CampaignChannel["SMS"] = "SMS";
E_CampaignChannel["EMAIL"] = "EMAIL";
E_CampaignChannel["CHAT"] = "CHAT";
E_CampaignChannel["WALLET"] = "WALLET";
})(E_CampaignChannel || (exports.E_CampaignChannel = E_CampaignChannel = {}));
//# sourceMappingURL=index.js.map