customerio-node
Version:
A node client for the Customer.io event API. http://customer.io
13 lines (12 loc) • 488 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RegionEU = exports.RegionUS = exports.Region = void 0;
class Region {
constructor(trackUrl, apiUrl) {
this.trackUrl = trackUrl;
this.apiUrl = apiUrl;
}
}
exports.Region = Region;
exports.RegionUS = new Region('https://track.customer.io/api/v1', 'https://api.customer.io/v1');
exports.RegionEU = new Region('https://track-eu.customer.io/api/v1', 'https://api-eu.customer.io/v1');