Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
20 lines
784 B
Plaintext
20 lines
784 B
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.DEFAULT_CONFIG = exports.EndOperation = void 0;
|
|
var EndOperation;
|
|
(function (EndOperation) {
|
|
EndOperation["AutoAck"] = "auto ack";
|
|
EndOperation["Ack"] = "ack";
|
|
EndOperation["AckAll"] = "ackAll";
|
|
EndOperation["Reject"] = "reject";
|
|
EndOperation["Nack"] = "nack";
|
|
EndOperation["NackAll"] = "nackAll";
|
|
EndOperation["ChannelClosed"] = "channel closed";
|
|
EndOperation["ChannelError"] = "channel error";
|
|
EndOperation["InstrumentationTimeout"] = "instrumentation timeout";
|
|
})(EndOperation = exports.EndOperation || (exports.EndOperation = {}));
|
|
exports.DEFAULT_CONFIG = {
|
|
consumeTimeoutMs: 1000 * 60,
|
|
useLinksForConsume: false,
|
|
};
|
|
//# sourceMappingURL=types.js.map |