Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
No EOL
784 B
Text
20 lines
No EOL
784 B
Text
"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 |