intercom-client
Version:
Official Node bindings to the Intercom API
26 lines (25 loc) • 779 B
JavaScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SubscriptionType = void 0;
var SubscriptionType;
(function (SubscriptionType) {
SubscriptionType.State = {
Live: "live",
Draft: "draft",
Archived: "archived",
};
SubscriptionType.ConsentType = {
OptOut: "opt_out",
OptIn: "opt_in",
};
let ContentTypes;
(function (ContentTypes) {
ContentTypes.Item = {
Email: "email",
SmsMessage: "sms_message",
};
})(ContentTypes = SubscriptionType.ContentTypes || (SubscriptionType.ContentTypes = {}));
})(SubscriptionType || (exports.SubscriptionType = SubscriptionType = {}));
;