@vtexlab/planner-contracts
Version:
Contracts to use in an Eventual-Driven Architecture (EDA)
16 lines (15 loc) • 656 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContentPlatform = exports.Planner = void 0;
const event_1 = require("./services/contentPlatform/event");
const event_2 = require("./services/planner/event");
const command_1 = require("./services/planner/command");
var Planner;
(function (Planner) {
Planner.Event = event_2.plannerEvent;
Planner.Command = command_1.plannerCommand;
})(Planner || (exports.Planner = Planner = {}));
var ContentPlatform;
(function (ContentPlatform) {
ContentPlatform.Event = event_1.contentPlatformEvent;
})(ContentPlatform || (exports.ContentPlatform = ContentPlatform = {}));