@rewaa/event-broker
Version:
A broker for all the events that Rewaa will ever produce or consume
12 lines • 538 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutboxEventStatus = void 0;
var OutboxEventStatus;
(function (OutboxEventStatus) {
OutboxEventStatus["Error"] = "Error";
OutboxEventStatus["Pending"] = "Pending";
OutboxEventStatus["Processed"] = "Processed";
OutboxEventStatus["Failed"] = "Failed";
OutboxEventStatus["PartiallyProcessed"] = "PartiallyProcessed";
})(OutboxEventStatus = exports.OutboxEventStatus || (exports.OutboxEventStatus = {}));
//# sourceMappingURL=types.js.map