@vtexlab/planner-contracts
Version:
Contracts to use in an Eventual-Driven Architecture (EDA)
13 lines (12 loc) • 491 B
JavaScript
import { contentPlatformEvent } from "./services/contentPlatform/event";
import { plannerEvent } from "./services/planner/event";
import { plannerCommand } from "./services/planner/command";
export var Planner;
(function (Planner) {
Planner.Event = plannerEvent;
Planner.Command = plannerCommand;
})(Planner || (Planner = {}));
export var ContentPlatform;
(function (ContentPlatform) {
ContentPlatform.Event = contentPlatformEvent;
})(ContentPlatform || (ContentPlatform = {}));